]> git.lyx.org Git - lyx.git/blob - ChangeLog
c160990810f78a819e43b277198efa91290edc70
[lyx.git] / ChangeLog
1 2000-10-12  Dekel Tsur  <dekelts@tau.ac.il>
2
3         * src/encoding.C (read): Fixed bug that caused an error message at 
4         the end of the file.
5
6         * po/Makefile.in.in: Fixed rule for ext_l10n.h
7
8         * lib/lyxrc.example: Fixed hebrew example.
9
10 2000-10-13  Allan Rae  <rae@lyx.org>
11
12         * src/frontends/xforms/FormPreferences.C (input): reworking the checking
13         (build, update, apply): New inputs in various tabfolders
14
15         * src/frontends/xforms/FormToc.C: use new button policy.
16         * src/frontends/ButtonPolicies.h (class IgnorantPolicy): for dialogs that
17         either can't use any existing policy or where it just doesn't care.
18
19         * src/frontends/xforms/FormTabular.h: removed copyright notice that
20         said it was mine.
21
22         * src/lyx_gui_misc.[Ch] (updateAllVisibleBufferRelatedDialogs): added a
23         bool parameter which is ignored.
24
25         * src/buffer.C (setReadonly):
26         * src/BufferView_pimpl.C (buffer): 
27         * src/frontends/kde/FormCopyright.h (update): 
28         * src/frontends/kde/FormCitation.[Ch] (update): 
29         * src/frontends/kde/FormIndex.[Ch] (update): 
30         * src/frontends/kde/FormPrint.[Ch] (update): 
31         * src/frontends/kde/FormRef.[Ch] (update): 
32         * src/frontends/kde/FormToc.[Ch] (update): 
33         * src/frontends/kde/FormUrl.[Ch] (update): 
34         * src/frontends/gnome/FormCopyright.h (update): 
35         * src/frontends/gnome/FormCitation.[Ch] (update): 
36         * src/frontends/gnome/FormError.[Ch] (update): 
37         * src/frontends/gnome/FormIndex.[Ch] (update): 
38         * src/frontends/gnome/FormPrint.[Ch] (update): 
39         * src/frontends/gnome/FormRef.h (update): 
40         * src/frontends/gnome/FormToc.[Ch] (update): 
41         * src/frontends/gnome/FormUrl.[Ch] (update): 
42         * src/frontends/xforms/FormGraphics.[Ch] (update): reflect new changes
43         to updateBufferDependent and DialogBase
44
45         * src/frontends/xforms/FormCitation.[hC]: 
46         * src/frontends/xforms/FormDocument.[hC]: also removed restore()
47         * src/frontends/xforms/FormError.[Ch]: 
48         * src/frontends/xforms/FormGraphics.[Ch]: 
49         * src/frontends/xforms/FormIndex.[Ch]: 
50         * src/frontends/xforms/FormParagraph.[Ch]: also added missing "virtual"s
51         and fixed readOnly handling.
52         * src/frontends/xforms/FormPrint.[Ch]: 
53         * src/frontends/xforms/FormRef.[Ch]: 
54         * src/frontends/xforms/FormTabular.[Ch]:
55         * src/frontends/xforms/FormToc.[Ch]:
56         * src/frontends/xforms/FormUrl.[Ch]: 
57         * src/frontends/xforms/FormInset.[Ch]:
58         * src/frontends/xforms/FormBase.[hC]: modifications to use the new
59         form of updateBufferDependent.
60
61         * src/frontends/xforms/FormBase.C (hide): only call disconnect()
62         if form()->visible just in case someone does stuff to the form in a
63         derived class.
64
65         * src/frontends/DialogBase.h (enum): removed enum since we can now use
66         the buttoncontroller for everything the enum used to be used for.
67         (update) It would seem we need to force all dialogs to use a bool
68         parameter or have two update functions.  I chose to go with one.
69         I did try removing update() from here and FormBase and defining the
70         appropriate update signatures in FormBaseB[DI] but then ran into the
71         problem of the update() call in FormBase::show().  Whatever I did to get
72         around that would require another function and that just got more
73         confusing.  Hence the decision to make everyone have an update(bool).
74         An alternative might have been to override show() in FormBaseB[DI] and
75         that would allow the different and appropriate update signatures.
76
77         * src/frontends/Dialogs.h (updateBufferDependent): now takes a bool.
78         true == buffer change occurred.  I decided against using a default
79         template parameter since not all compilers support that at present.
80
81 2000-10-11  Angus Leeming <a.leeming@ic.ac.uk>
82
83         * src/frontends/xforms/FormBase.[Ch] (FormBase) : made less of a "swiss
84         army knife" by removing functionality.
85         (clearStore): removed. All such housekeeping on hide()ing the dialog
86         is to be carried out by overloaded disconnect() methods.
87         (dialogIsOpen): removed. Relevant only to Inset dialogs anyway, but
88         superceded by Baruch's neat test (FormGraphics) to update an existing
89         dialog if a new signal is recieved rather than block all new signals
90         until it is closed.
91         (cba_, parent_, updateOrHide): removed to new FormInset class. Relevant
92         only to Inset dialogs.
93         (FormBaseBI, FormBaseBD): new classes derived from FormBase for
94         "Buffer Independent" and "Buffer Dependent" dialogs respectively.
95
96         * src/frontends/xforms/FormCommand.[Ch]: renamed as FormInset.[Ch]
97
98         * src/frontends/xforms/FormInset.[Ch] (FormInset): New class, defined
99         as a base class to all inset dialogs. Used solely to connect/disconnect
100         the Inset::hide signal and to define what action to take on receipt of
101         a UpdateBufferDependent signal.
102         (FormCommand): now derived from FormInset.
103
104         * src/frontends/xforms/FormCitation.[Ch] (clearStore): reworked as
105         disconnect().
106
107         * src/frontends/xforms/FormCopyright.[Ch]:
108         * src/frontends/xforms/FormPreferences.[Ch]:
109         now derived from FormBaseBI.
110
111         * src/frontends/xforms/FormDocument.[Ch]:
112         * src/frontends/xforms/FormParagraph.[Ch]:
113         * src/frontends/xforms/FormPrint.[Ch]:
114         now derived from FormBaseBD.
115
116         * src/frontends/xforms/FormError.[Ch]: now derived from FormInset.
117
118         * src/frontends/xforms/FormCitation.[Ch]:
119         * src/frontends/xforms/FormError.[Ch]:
120         * src/frontends/xforms/FormRef.[Ch]:
121         * src/frontends/xforms/FormToc.[Ch]:
122         (clearStore): reworked as disconnect().
123
124         * src/frontends/xforms/Makefile.am: removed FormCommand.[Ch], adding
125         FormInset.[Ch].
126
127 2000-10-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
128
129         * src/converter.C (runLaTeX): constify buffer argument
130         (scanLog): ditto.
131
132         * src/frontends/support/Makefile.am (INCLUDES): fix.
133
134         * src/buffer.h: add std:: qualifier
135         * src/insets/figinset.C (addpidwait): ditto
136         * src/MenuBackend.C: ditto
137         * src/buffer.C: ditto
138         * src/bufferlist.C: ditto
139         * src/layout.C: ditto
140         * src/lyxfunc.C: ditto
141
142 2000-10-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
143
144         * src/lyxtext.h (bidi_level): change return type to
145         LyXParagraph::size_type. 
146
147         * src/lyxparagraph.h: change size_type to
148         TextContainer::difference_type. This should really be
149         TextContainer::size_type, but we need currently to support signed
150         values. 
151
152 2000-10-11  Marko Vendelin <markov@ioc.ee>
153         * src/frontends/gnome/FormError.h
154         * src/frontends/gnome/FormRef.C
155         * src/frontends/gnome/FormRef.h
156         * src/frontends/gnome/FormError.C
157         * src/frontends/gnome/Makefile.am
158         * src/frontends/gnome/pixbutton.h: FormError and FormRef are ported 
159         to Gnome frontend. Both dialogs use "action" area.
160
161 2000-10-12  Baruch Even  <baruch.even@writeme.com>
162
163         * src/graphics/GraphicsCacheItem_pimpl.C:
164         * src/graphics/Renderer.C:
165         * src/graphics/XPM_Renderer.C: Corrected resolution of conflicts.
166         It now compiles.
167
168 2000-10-12  Juergen Vigna  <jug@sad.it>
169
170         * src/insets/insettext.C (draw): fixed drawing bug (specifically
171         visible when selecting).
172
173         * development/Code_rules/Rules: fixed some typos.
174
175 2000-10-09  Baruch Even  <baruch.even@writeme.com>
176
177         * src/filedlg.C (GroupCache::find): de-inlined the function, makes
178         compiling on egcs 1.1.2 possible.
179         
180         * src/filedlg.C (comp_direntry::operator() ): ditto.
181
182 2000-08-31  Baruch Even  <baruch.even@writeme.com>
183
184         * src/lyx_cb.[hC] (ShowMessage): Result of the const-ificiation of the 
185         Buffer parameter.
186
187         * src/frontends/xforms/FormGraphics.C: Changed the dialog to be
188         transient it now only gets freed when the object is destructed.
189
190 2000-08-24  Baruch Even  <baruch.even@writeme.com>
191
192         * src/frontends/FormGraphics.h:
193         * src/frontends/FormGraphics.C: Changed to use ButtonController and
194         ButtonPolicies.
195
196 2000-08-20  Baruch Even  <baruch.even@writeme.com>
197
198         * src/insets/insetgraphics.C:
199         (draw): Added messages to the drawn rectangle to report status.
200         (updateInset): Disabled the use of the inline graphics,
201         (draw): ditto.
202
203 2000-08-17  Baruch Even  <baruch.even@writeme.com>
204
205         * src/frontends/support: Directory added for the support of GUII LyX.
206
207         * src/frontends/support/LyXImage.h:     
208         * src/frontends/support/LyXImage.C:  Base class for GUII holding of
209         images.
210
211         * src/frontends/support/LyXImage_X.h:
212         * src/frontends/support/LyXImage_X.C: Implementation of the Xlib
213         version of LyXImage, this uses the Xlib Pixmap.
214
215         * src/PainterBase.h:
216         * src/PainterBase.C:
217         * src/Painter.h:
218         * src/Painter.C: Added a new method image() to draw LyXImage-s, a GUII 
219         replacement     to Pixmap.
220
221         * src/insets/insetgraphics.h:
222         * src/insets/insetgraphics.C:
223         * src/graphics/GraphicsCacheItem.h:
224         * src/graphics/GraphicsCacheItem.C:
225         * src/graphics/GraphicsCacheItem_pimpl.h:
226         * src/graphics/GraphicsCacheItem_pimpl.C: Changed to use LyXImage
227         instead  of Pixmap.
228
229         * src/graphics/GraphicsCacheItem.h:
230         * src/graphics/GraphicsCacheItem.C: Added the Clone() method to create 
231         another copy of the object.
232
233         * src/insets/insetgraphics.C (Clone): Changed to create a second copy
234         of cacheHandle, this fixed a bug that sent LyX crashing.
235
236         * src/graphics/XPM_Renderer.h:
237         * src/graphics/XPM_Renderer.C:
238         * src/graphics/EPS_Renderer.h:
239         * src/graphics/EPS_Renderer.C: Changed to Unix LF from DOS CRLF.
240
241 2000-10-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
242
243         * src/lyxfunc.C (processKeySym): only handle the
244         lockinginset/inset stuff if we have a buffer and text loaded...
245
246         * lib/Makefile.am (EXTRA_DIST): add encodings and languages
247
248 2000-10-12    <larsbj@baywatch.lyx.org>
249
250         * src/support/lyxfunctional.h: add operator= that takes a reference
251
252         * src/lyxserver.C (mkfifo): make first arg const
253
254         * src/layout.h: renamed name(...) to setName(...) to work around
255         bugs in egcs.
256
257         * src/buffer.C (setFileName): had to change name of function to
258         work around bugs in egcs. (renamed from fileName) 
259
260 2000-10-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
261
262         * src/support/translator.h: move helper template classes to
263         lyxfunctional.h, include "support/lyxfunctional.h"
264
265         * src/support/lyxmanip.h: add delaration of fmt
266
267         * src/support/lyxfunctional.h: new file
268         (class_fun_t): new template class
269         (class_fun): helper template function
270         (back_insert_fun_iterator): new template class
271         (back_inserter_fun): helper template function
272         (compare_memfun_t): new template class
273         (compare_memfun): helper template function
274         (equal_1st_in_pair): moved here from translator
275         (equal_2nd_in_pair): moved here from translator
276
277         * src/support/fmt.C: new file
278         (fmt): new func, can be used for a printf substitute when still
279         using iostreams ex. lyxerr << fmg("Hello %s", "Jürgen") << endl;
280
281         * src/support/StrPool.C: add some comments
282
283         * src/support/Makefile.am (libsupport_la_SOURCES): add fmt.C and
284         lyxfunctional.h
285
286         * src/insets/figinset.C (addpidwait): use std::copy with
287         ostream_iterator to fill the pidwaitlist
288
289         * src/graphics/XPM_Renderer.C (renderImage): use ScreenOfDisplay
290
291         * src/frontends/xforms/Toolbar_pimpl.C (updateLayoutList): remove
292         c_str() 
293
294         * src/frontends/xforms/Menubar_pimpl.C: make several file scope
295         variables static
296
297         * src/frontends/xforms/FormParagraph.C (input): use lyx::atoi
298
299         * src/frontends/xforms/FormDocument.C (build): remove c_str()
300         (class_update): ditto
301         (BulletPanel): ditto
302         (CheckChoiceClass): move initialization of tc and tct
303
304         * src/tabular.C: remove current_view
305         (OldFormatRead): similar to right below [istream::ignore]
306
307         * src/lyxlex_pimpl.C (next): add code for faster skipping of
308         chars, unfortunately this is buggy on gcc 2.95.2, so currently
309         unused [istream::ignore]
310
311         * src/lyxfunc.C: include "support/lyxfunctional.h"
312         (getInsetByCode): use std::find_if and compare_memfun
313
314         * src/lyxfont.C (stateText): remove c_str()
315
316         * src/lyx_main.C (setDebuggingLevel): make static
317         (commandLineHelp): make static
318
319         * src/lyx_gui_misc.C (getScreenDPI): use ScreenOfDisplay to get
320         Screen* together with fl_get_display() and fl_screen
321
322         * src/lyx_gui.C (LyXGUI): use ScreenOfDisplay to get Screen*
323         togheter with fl_get_display() and fl_screen
324         (create_forms): remove c_str()
325
326         * src/layout.C: include "support/lyxfunctional.h"
327         (hasLayout): use std::find_if and compare_memfun
328         (GetLayout): use std::find_if and comapre_memfun
329         (delete_layout): use std::remove_if and compare_memfun
330         (NumberOfClass): use std:.find_if and compare_memfun
331
332         * src/gettext.h: change for the new functions
333
334         * src/gettext.C: new file, make _(char const * str) and _(string
335         const & str) real functions.
336
337         * src/font.C (width): rewrite slightly to avoid one extra variable
338
339         * src/debug.C: initialize Debug::ANY here
340
341         * src/commandtags.h: update number comments
342
343         * src/combox.h (get): make const func
344         (empty): make const
345         (getline): make const
346
347         * src/combox.C (input_cb): handle case where fl_get_input can
348         return NULL
349
350         * src/bufferlist.C: add <functional>, "support/lyxmanip.h",
351         "support/lyxfunctional.h", remove current_view variable.
352         (resize): use std::for_each with std::mem_fun
353         (getFileNames): use std::copy with back_inserter_fun
354         (getBuffer): change arg type to unsigned int
355         (emergencyWriteAll): call emergencyWrite with std::for_each and
356         class_fun.
357         (emergencyWrite): new method, the for loop in emergencyWriteAll
358         has been unrolled.
359         (exists): use std::find_if with compare_memfun
360         (getBuffer): use std::find_if and compare_memfun
361
362         * src/buffer.h: add typedefs for iterator_category, value_type
363         difference_type, pointer and reference for inset_iterator
364         add postfix ++ for inset_iterator
365         make inset_iterator::getPos() const
366
367         * src/buffer.C: added support/lyxmanip.h
368         (readFile): use lyxerr << fmt instead of printf
369         (makeLaTeXFile): use std::copy to write out encodings
370
371         * src/Painter.C (text): rewrite slightly to avoid extra font variable
372
373         * src/MenuBackend.C (read): remove c_str(), as well as strdup and
374         free and the char * temp.
375         (hasMenu): use std::find_if and compare_memfun
376         (getMenu): ditto
377
378         * src/Makefile.am (lyx_SOURCES): added gettext.C
379
380         * src/LyXAction.C (retrieveActionArg): clear the arg, use
381         string::insert small change to avoid temporary
382
383         * src/LColor.C (getGUIName): remove c_str()
384
385         * several files: change all occurrences of fl_display to
386         fl_get_display() 
387
388         * config/lyxinclude.m4 (LYX_PROG_CXX): add a 2.97 clause so
389         that -pedantic is not used for gcc 2.97 (cvs gcc)
390
391         * boost/Makefile.am: begin slowly to prepare for a real boost lib
392
393 2000-10-11  Allan Rae  <rae@lyx.org>
394
395         * src/frontends/xforms/FormPreferences.C (input): template path must be
396         a readable directory.  It doesn't need to be writeable.
397         (build, delete, update, apply): New inputs in the various tabfolders
398
399         * src/frontends/xforms/forms/form_preferences.fd: 
400         * src/frontends/xforms/FormPreferences.h: New tabfolder and added
401         several new entries to existing folders.  Shuffled some existing stuff
402         around. 
403
404         * src/frontends/xforms/forms/form_print.fd: 
405         * src/frontends/xforms/FormPrint.C (apply): rename unsorted to collated.
406         Should probably rework PrinterParams as well.  Note that the switch to
407         collated is effectively the same as !unsorted so changing PrinterParams
408         will require a lot of fiddly changes to reverse the existing logic.
409
410         * src/lyx_cb.C (TimerCB): cleaned up Angus's patch.
411
412 2000-10-10  Angus Leeming <a.leeming@ic.ac.uk>
413
414         * src/lyx_cb.C (TimerCB): fix crash when fd_form_title doesn't exist.
415
416 2000-10-10  Allan Rae <rae@lyx.org>
417
418         * src/lyxrc.[Ch]:
419         * src/lyxfunc.C (Dispatch): 
420         * src/lyx_gui.C: 
421         * src/BufferView_pimpl.C (scrollCB): cursor_follows_scrollbar made a
422         member of LyXRC
423
424         * src/lyxrc.C (output): Only write the differences between system lyxrc
425         and the users settings.
426
427         * src/lyx_main.C:
428         * src/lyxrc.[Ch]: commented out noncopyable so I can keep a
429         system_lyxrc. 
430         I'll rewrite this later, after 1.1.6 probably, to keep a single
431         LyXRC but two instances of a LyXRCStruct.
432
433 2000-10-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
434
435         * lib/Makefile.am (pkgdata_DATA): add encoding and languages
436
437         * src/tabular.h: add a few std:: qualifiers.
438
439         * src/encoding.C: add using directive.
440         * src/language.C: ditto.
441
442         * src/insets/insetquotes.C (Validate): use languages->lang()
443         instead of only language.
444
445 2000-10-07  Dekel Tsur  <dekelts@tau.ac.il>
446
447         * lib/languages: New file.
448
449         * lib/encodings: New file.
450
451         * src/language.C (Languages): New class.
452         (read): New method. Reads the languages from the 'languages' file.
453
454         * src/encoding.C (Encodings): New class.
455         (read): New method. Reads the encodings from the 'encodings' file.
456
457         * src/lyx_main.C (init): Call to LyXSetStyle() after languages
458         initialization.
459
460         * src/bufferparams.h and a lot of files: Deleted the member language,
461         and renamed language_info to language
462
463         * src/buffer.C (makeLaTeXFile): Use babel() instead of lang()
464         * src/lyxfont.C (latexWriteStartChanges): ditto.
465         * src/paragraph.C (validate,TeXOnePar): ditto.
466         
467         * src/lyxfont.C (update): Restored deleted code.
468
469         * src/frontends/xforms/FormDocument.C (build): Made the combox taller
470
471 2000-10-10  Angus Leeming <a.leeming@ic.ac.uk>
472
473        * src/BufferView_pimpl.C (buffer): cleaned up a little.
474
475        * src/insets/figinset.[Ch]:
476        * src/insets/insetinclude.[Ch]:
477        * src/insets/insetinclude.[Ch]:
478        * src/insets/insetparent.[Ch]:
479        * src/insets/insetref.[Ch]:
480        * src/insets/insettabular.[Ch] (c-tor): Buffer passed as const &.
481
482        * src/insets/*.[Ch]:
483        * src/mathed/formula.[Ch]:
484        * src/mathed/formulamacro.C (Clone): passed Buffer const &.
485
486        * src/buffer.C (parseSingleLyXformat2Token, readInset):
487        * src/lyx_cb.C (FigureApplyCB):
488        * src/lyxfunc.C (getStatus, Dispatch):
489        * src/frontends/xforms/FormTabular.C:  use modified c-tors to some
490        insets.
491
492        * src/lyxfunc.C (Dispatch): string "ref" not used. Removed.
493
494        * src/converter.[Ch] (Formats::View):
495        * src/lyx_cb.[Ch] (ShowMessage): constify Buffer * parameter.
496
497        * src/paragraph.C (CopyIntoMinibuffer, Clone): Insets::Clone() passed
498        *current_view->buffer(). This will change later, but this patch is way
499        big enough already!
500
501 2000-10-09  Juergen Vigna  <jug@sad.it>
502
503         * src/text.C (GetRow): small fix.
504
505         * src/BufferView_pimpl.C (cursorPrevious): 
506         (cursorNext): added LyXText parameter to function.
507
508         * src/insets/insettabular.C (LocalDispatch): activate cell inset on
509         keypress depending on cursor position.
510
511 2000-10-06  Juergen Vigna  <jug@sad.it>
512
513         * src/insets/insettabular.C (Ascii): finally call right ascii-function.
514         (copySelection): redone this function and also copy ascii representa-
515         tion to clipboard.
516
517         * src/tabular.C (Ascii): 
518         (AsciiPrintCell): 
519         (AsciiBottomHLine): 
520         (AsciiTopHLine): 
521         (print_n_chars): new functions to realize the ascii export of tabulars.
522
523 2000-10-05  Juergen Vigna  <jug@sad.it>
524
525         * src/lyx_gui_misc.C (updateAllVisibleBufferRelatedDialogs): small fix
526         if we don't have a buffer.
527
528 2000-10-10  Allan Rae  <rae@lyx.org>
529
530         * src/frontends/xforms/FormPreferences.[Ch] (hide): Fix the problem
531         with closing dialog.  It seems that nested tabfolders require hiding
532         of inner tabfolders before hiding the dialog itself.  Actually all I
533         did was hide the active outer folder.
534
535         * src/BufferView_pimpl.C (buffer): don't call updateBufferDependent
536         unless there really is a buffer.  hideBufferDependent is called
537         instead.
538
539         * po/Makefile.in.in (POTFILES.in): one little tweak to ensure
540         POTFILES.in stays in $(srcdir).
541
542 2000-10-09  Dekel Tsur  <dekelts@tau.ac.il>
543
544         * lib/lyxrc.example: Few changes.
545
546 2000-10-05  Angus Leeming <a.leeming@ic.ac.uk>
547
548         * src/BufferView_pimpl.C (buffer): only need one the
549         updateBufferDependent signal to be emitted once! Moved to the end of
550         the method to allow bv_->text to be updated first.
551
552         * src/frontends/xforms/FormBase.[Ch]: replaced the two signals uSignal_
553         and hSignal_ with Dialogs * and BufferDependency variables.
554         New Buffer * parent_, initialised when the dialog is launched. Used to
555         check whether to update() or hide() dialog in the new, private
556         updateOrHide() method that is connected to the updateBufferDependent
557         signal. Daughter classes dictate what to do using the
558         ChangedBufferAction enum, passed to the c-tor.
559
560         * src/frontends/xforms/FormCitation.C:
561         * src/frontends/xforms/FormCommand.C:
562         * src/frontends/xforms/FormCopyright.C:
563         * src/frontends/xforms/FormDocument.C:
564         * src/frontends/xforms/FormError.C:
565         * src/frontends/xforms/FormIndex.C:
566         * src/frontends/xforms/FormPreferences.C:
567         * src/frontends/xforms/FormPrint.C:
568         * src/frontends/xforms/FormRef.C:
569         * src/frontends/xforms/FormToc.C:
570         * src/frontends/xforms/FormUrl.C (c-tor): modified call to FormBase
571         c-tor.
572
573         * src/frontends/xforms/FormCommand.[Ch] (c-tor) passed a
574         ChangedBufferAction enum.
575
576         * src/frontends/xforms/FormParagraph.[Ch]
577         * src/frontends/xforms/forms/form_paragraph.fd: now derived from
578         FormBase.
579         
580 2000-10-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
581
582         * lib/bind/cua.bind: fix a bit.
583         * lib/bind/emacs.bind: ditto.
584
585         * lib/bind/menus.bind: remove real menu entries from there.
586
587         * src/spellchecker.C: make sure we only include strings.h when
588         _AIX is defined.        
589
590 2000-10-05  Dekel Tsur  <dekelts@tau.ac.il>
591
592         * src/frontends/xforms/Menubar_pimpl.C (get_new_submenu): New
593         function. It enlarges the maximum number of pup when needed.
594         (add_toc2): Open a new menu if maximum number of items per menu has 
595         reached.
596         
597 2000-10-05  John Levon  <moz@compsoc.man.ac.uk>
598
599         * src/frontends/kde/FormPrint.C: fix error reporting
600
601         * src/frontends/xforms/FormDocument.C: fix compiler
602         warnings
603
604         * lib/.cvsignore: add Literate.nw
605
606 2000-10-05  Dekel Tsur  <dekelts@tau.ac.il>
607
608         * buffer.C
609         * bufferview_funcs.[Ch]
610         * lyxfont.[Ch]
611         * text.C
612         * text2.C: Add support for numbers in RTL text.
613
614 2000-10-06  Allan Rae  <rae@lyx.org>
615
616         * po/Makefile.in.in (POTFILES.in, POTFILES): Fixed
617         to be gettext.m4 friendly again.  ext_l10n.h is now
618         generated into $top_srcdir instead of $top_builddir
619         so that lyx.pot will be built correctly -- without
620         duplicate parsing of ext_l10n.h.
621
622 2000-10-04  John Levon  <moz@compsoc.man.ac.uk>
623
624         * src/frontends/kde/FormCitation.C: make the dialog
625         behave more sensibly
626
627 2000-10-03  John Levon  <moz@compsoc.man.ac.uk>
628
629         * config/kde.m4: fix consecutive ./configure runs,
630         look for qtarch, fix library order
631
632         * src/frontends/kde/Makefile.am: tidy up,
633         add Print dialog, add .dlg dependencies
634
635         * src/frontends/kde/FormPrint.C:
636         * src/frontends/kde/FormPrint.h:
637         * src/frontends/kde/formprintdialog.C:
638         * src/frontends/kde/formprintdialog.h:
639         * src/frontends/kde/formprintdialogdata.C:
640         * src/frontends/kde/formprintdialogdata.h:
641         * src/frontends/kde/dlg/formprintdialog.dlg: add
642         print dialog
643
644         * src/frontends/kde/dlg/README: Added explanatory readme
645         
646         * src/frontends/kde/dlg/checkinitorder.pl: small perl
647         script to double-check qtarch's output
648
649         * src/frontends/kde/formindexdialog.C:
650         * src/frontends/kde/formindexdialogdata.C:
651         * src/frontends/kde/formindexdialogdata.h:
652         * src/frontends/kde/dlg/formindexdialog.dlg: update
653         for qtarch, minor fixes
654
655 2000-10-05  Allan Rae  <rae@lyx.org>
656
657         * src/BufferView_pimpl.C (buffer): don't hide all buffer dependent
658         dialogs when switching buffers update them instead.  It's up to each
659         dialog to decide if it should still be visible or not.
660         update() should return a bool to control visiblity within show().
661         Or perhaps better to set a member variable and use that to control
662         visibility.
663
664         * lib/build-listerrors: create an empty "listerrors" file just to stop
665         make trying to regenerate it all the time if you don't have noweb
666         installed.
667
668         * .cvsignore: ignore distdir and dist.tar.gz using rule lyx-*
669
670         * po/Makefile.in.in (ext_l10n.h): added a rule to build
671         $(top_builddir)/src/ext_l10n.h.  The rule has to go here because po/
672         is built before src/ and ext_l10n.h isn't actually needed to build lyx.
673         (POTFILES.in): added a rule to build POTFILES.in.  It is also now safe
674         to rebuild POTFILES.in with scrap *.[hC] files in xforms/forms/.
675
676         * autogen.sh: po/POTFILES.in and src/ext_l10n.h now generated by make.
677
678 2000-10-04  Angus Leeming <a.leeming@ic.ac.uk>
679
680         * src/BufferView_pimpl.C (buffer): emit hideBufferDependent when
681         deleting buffer. Closes all buffer-dependent dialogs.
682
683         * src/frontends/xforms/FormBase.[Ch] (input): modified to pass
684         FL_OBJECT * also.
685         * src/frontends/xforms/FormCitation.[Ch]:
686         * src/frontends/xforms/FormPreferences.[Ch]:
687         * src/frontends/xforms/FormPrint.[Ch]:
688         * src/frontends/xforms/FormRef.[Ch]:
689         * src/frontends/xforms/FormUrl.[Ch]: ditto
690
691         * src/frontends/xforms/FormDocument.[Ch]:
692         * src/frontends/xforms/forms/form_document.C.patch:
693         * src/frontends/xforms/forms/form_document.fd: all input callbacks now
694         pass through a single input() function.
695
696 2000-10-04  John Levon  <moz@compsoc.man.ac.uk>
697
698         * lib/build-listerrors: return status as OK
699
700 2000-10-04  Dekel Tsur  <dekelts@tau.ac.il>
701
702         * lib/lyxrc.example: Updated to new export code
703
704 2000-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
705
706         * src/mathed/math_parser.C (LexInitCodes): set lexcode of "@" to
707         LexAlpha. 
708
709         * src/mathed/formula.C (LocalDispatch): add '@' as an LM_TC_VAR
710         character. 
711
712         * lib/layouts/amsart.layout: include lyxmacros.inc, so that
713         LyX-Code is defined.
714         * lib/layouts/amsbook.layout: ditto.
715
716         * boost/Makefile.am: fix typo. 
717
718         * src/frontends/xforms/Menubar_pimpl.C (create_submenu): use
719         Menu::expand. 
720         (add_lastfiles): removed.
721         (add_documents): removed.
722         (add_formats): removed.
723
724         * src/frontends/Menubar.C: remove useless "using" directive.
725
726         * src/MenuBackend.h: add a new MenuItem constructor.
727
728         * src/MenuBackend.[Ch] (Menu::expand): new method. Used in the
729         xforms frontend.
730
731 2000-10-04  Allan Rae  <rae@lyx.org>
732
733         * lib/Makefile.am (listerrors):
734         * lib/build-listerrors: make $builddir != $srcdir compiles work again.
735         I haven't got notangle installed so Kayvan please test. The output
736         should end up in $builddir.  This also allows people who don't have
737         noweb installed to complete the make process without error.
738
739         * src/frontends/xforms/FormCommand.[Ch] (showInset):
740         * src/frontends/xforms/FormError.[Ch] (showInset): fix warnings found
741         by JMarc's picky compiler.
742
743 2000-10-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
744
745
746         * src/insets/insettabular.C (setPos): change for loop to not use
747         sequencing operator. Please check this Jürgen.
748
749         * src/frontends/xforms/Menubar_pimpl.C (makeMenubar): use "c"
750         instead of 'c'
751         * src/insets/insetcite.C (getScreenLabel): ditto
752         * src/support/filetools.C (QuoteName): ditto
753         (ChangeExtension): ditto
754
755         * src/BufferView_pimpl.C (scrollCB): make heigt int
756
757         * src/BufferView2.C (insertInset): comment out unused arg
758
759         * boost/Makefile.am (EXTRADIST): new variable
760
761 2000-10-03  Dekel Tsur  <dekelts@tau.ac.il>
762
763         * src/exporter.C (IsExportable): Fixed
764         
765         * lib/configure.m4: Small fix
766
767 2000-10-03  Dekel Tsur  <dekelts@tau.ac.il>
768
769         * src/insets/insetbutton.C (width): Changed to work with no GUI.
770         * src/insets/insetbib.C (bibitemWidest): ditto.
771         * src/lyx_gui_misc.C (AskQuestion,AskConfirmation,askForText): ditto.
772             
773 2000-10-03  Juergen Vigna  <jug@sad.it>
774
775         * src/BufferView2.C (theLockingInset): removed const because of
776         Agnus's compile problems.
777
778         * src/insets/insettext.C (LocalDispatch): set the language of the
779         surronding paragraph on inserting the first character.
780
781         * various files: changed use of BufferView::the_locking_inset.
782         
783         * src/BufferView2.C (theLockingInset): 
784         (theLockingInset): new functions.
785
786         * src/BufferView.h: removed the_locking_inset.
787
788         * src/lyxtext.h: added the_locking_inset
789
790         * src/BufferView_pimpl.C (checkInsetHit): y_tmp form uint to int.
791
792         * src/insets/lyxinset.h: added bool to ShowInsetCursor definition.
793
794 2000-10-02  Angus Leeming <a.leeming@ic.ac.uk>
795
796         * src/mathed/formula.C (IsMacro): declared but not referenced; removed.
797         * src/mathed/math_cursor.C (IsAlpha): ditto.
798         * src/mathed/math_inset.C (strnew): ditto.
799         * src/mathed/math_iter.C: SizeFont declared but not referenced;removed.
800         (IMetrics): cxp set but never used; removed.
801         * src/insets/figinset.C (InitFigures): removed redundant for loop, now
802         that the variable in question has been removed also!
803
804
805         * src/insets/insetbib.[Ch]: remove need to store Buffer * owner by
806         using the Buffer * passed to Latex(), using the BufferView * passed to
807         bibitemMaxWidth() bibitemWidest() and by passing a Buffer* to getKeys()
808
809         * src/insets/insetinclude.C: use the Buffer * passed to Latex(),
810         Linuxdoc() and DocBook() rather than the stored Buffer * master.
811
812         * src/lyxfunc.C (Dispatch): used new InsetBibtex c-tor
813         * src/buffer.C (readInset): used new InsetBibtex c-tor
814         * (getBibkeyList): used new InsetBibtex::getKeys
815
816 2000-10-01  Dekel Tsur  <dekelts@tau.ac.il>
817
818         * lib/configure.m4
819         * lib/build-listerrors
820         * src/converter.C
821         * src/exporter.C: Add literate programming support to the export code
822
823         * src/buffer.C
824         * src/lyx_cb.C: Remove old literate code.
825
826         * src/lyxrc.[Ch]: Remove many obsolete (due to new export code)
827         variables.
828
829         * src/lyxfunc.C (getStatus): Use Exporter::IsExportable
830         * src/converter.C (View, Convert): Use QuoteName.
831
832         * src/insets/figinset.C (Preview): Use Formats::View.
833
834         * lib/configure.m4: Add sgml->dvi converter to lyxrc.default
835         
836 2000-10-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
837
838         * src/lyxfunc.C (Dispatch): move declaration of text variable at
839         the top of the function, because compaq cxx complains that the
840         "goto exit_with_message" when the function is disabled bypasses
841         its initialization.
842         (MenuNew): try a better fix for the generation of new file names.
843         This time, I used AddName() instead of AddPath(), hoping Juergen
844         will be happier :)
845
846 2000-10-03  Allan Rae  <rae@lyx.org>
847
848         * src/frontends/xforms/forms/form_preferences.fd:
849         * src/frontends/xforms/FormPreferences.[Ch]: redesign of dialog using
850         nested tabfolders has begun.  The old "Miscellaneous" was renamed as
851         "Look and Feel"->"General" but will need to be split up further into
852         general output and general input tabs.  Current plan is for four outer
853         tabfolders: "Look and Feel" for colours, bindings, fonts and other HCI
854         stuff; "Inputs" for input and import configuration; "Outputs" for
855         output and export configuration; and one more whatever is left over
856         called "General".  The leftovers at present look like being which
857         viewers to use, spellchecker, language support and might be better
858         named "Support".  I've put "Paths" in "Inputs" for the moment as this
859         seems reasonable for now at least.
860         One problem remains: X error kills LyX when you close Preferences.
861
862 2000-10-02  Angus Leeming <a.leeming@ic.ac.uk>
863
864         * src/frontends/xforms/FormBase.[Ch]: removed "meaningless" const.
865         qualifier from form()
866         * src/frontends/xforms/FormCitation.[Ch]:
867         * src/frontends/xforms/FormCopyright.[Ch]:
868         * src/frontends/xforms/FormDocument.[Ch]:
869         * src/frontends/xforms/FormError.[Ch]:
870         * src/frontends/xforms/FormIndex.[Ch]:
871         * src/frontends/xforms/FormPreferences.[Ch]:
872         * src/frontends/xforms/FormPrint.[Ch]:
873         * src/frontends/xforms/FormRef.[Ch]:
874         * src/frontends/xforms/FormToc.[Ch]:
875         * src/frontends/xforms/FormUrl.[Ch]: ditto.
876
877         * src/frontends/xforms/FormCitation.[Ch]:
878         * src/frontends/xforms/FormIndex.[Ch]:
879         * src/frontends/xforms/FormRef.[Ch]:
880         * src/frontends/xforms/FormUrl.[Ch]: Renamed a few buttons, consistent
881         with Allan's naming policy
882         
883         * src/frontends/xforms/FormCitation.C: some static casts to remove
884         compiler warnings.
885
886 2000-10-02  Juergen Vigna  <jug@sad.it>
887
888         * src/insets/insettabular.C (LocalDispatch): fixed selection code,
889         now you can type or do stuff inside the table-cell also when in dummy
890         position, fixed visible cursor.
891
892         * src/insets/insettext.C (Edit): fixing cursor-view position.
893
894         * src/lyxfunc.C (Dispatch): use * text variable so that it can
895         be used for equal functions in lyxfunc and insettext.
896
897         * src/text.C (GetVisibleRow): fixed a small clear_area bug.
898
899 2000-10-02  John Levon  <moz@compsoc.man.ac.uk>
900
901         * src/frontends/gnome/FormCitation.h:
902         * src/frontends/gnome/FormCopyright.h:
903         * src/frontends/gnome/FormIndex.h:
904         * src/frontends/gnome/FormPrint.h:
905         * src/frontends/gnome/FormToc.h:
906         * src/frontends/gnome/FormUrl.h:
907         * src/frontends/kde/FormCitation.h:
908         * src/frontends/kde/FormCopyright.h:
909         * src/frontends/kde/FormIndex.h:
910         * src/frontends/kde/FormRef.h:
911         * src/frontends/kde/FormToc.h:
912         * src/frontends/kde/FormUrl.h: fix remaining users of
913         support/utility.hpp 
914
915 2000-10-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
916
917         * src/buffer.C (linuxDocHandleFootnote): remove const modifier
918         from depth argument.
919         (DocBookHandleCaption): ditto.
920         (DocBookHandleFootnote): ditto.
921         (SimpleDocBookOnePar): ditto.
922
923         * src/frontends/xforms/FormDocument.h (form): remove extra
924         FormDocument:: qualifier.
925
926         * sigc++/macros/basic_signal.h.m4: remove erroneous virtual
927         destructor. 
928         * sigc++/handle.h: ditto.
929
930         * src/lyx_gui_misc.C: add "using" directive.
931
932         * src/cheaders/cstddef: new file, needed by the boost library (for
933         compaq cxx).
934
935 2000-10-02  Juergen Vigna  <jug@sad.it>
936
937         * src/insets/insettext.C (SetFont): better support.
938
939         * src/insets/insettabular.C (draw): fixed drawing of single cell.
940
941         * src/screen.C (DrawOneRow): some uint refixes!
942
943 2000-10-02  Allan Rae  <rae@lyx.org>
944
945         * boost/.cvsignore: ignore Makefile as well
946
947         * src/lyxfunc.C (Dispatch): missing break; and moved the '}' for
948         LFUN_UNKNOWN_ACTION: so it doesn't wrap around default:.
949
950         * src/frontends/xforms/FormPreferences.[Ch] (restore): D'oh.
951         Left this one out by accident.
952
953         * src/frontends/xforms/FormBase.h (restore): default to calling
954         update() since that will restore the original/currently-applied values.
955         Any input() triggered error messages will require the derived classes
956         to redefine restore().
957
958         * src/frontends/xforms/FormDocument.C: initialize a few variables to
959         avoid a segfault.  combo_doc_class is the main concern.
960
961 2000-10-01  Kayvan A. Sylvan  <kayvan@camel.internal.sylvan.com>
962
963         * Simplify build-listerrors in view of GUI-less export ability!
964
965 2000-10-01  Dekel Tsur  <dekelts@tau.ac.il>
966
967         * src/lyx_main.C (easyParse): Disable gui when exporting
968
969         * src/insets/figinset.C: 
970         * src/LaTeX.C
971         * src/converter.C
972         * src/lyx_gui_misc.C
973         * src/tabular.C: Changes to allow no-gui.
974
975 2000-10-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
976
977         * src/support/utility.hpp: removed file
978         * src/support/block.h: removed file
979
980         * src/support/Makefile.am (libsupport_la_SOURCES): remove block.h
981         and utility.hpp
982
983         * src/mathed/formula.C: add support/lyxlib.h
984         * src/mathed/formulamacro.C: ditto
985
986         * src/bufferparams.h: use boost/array.hpp instead of support/block.h
987         * src/lyxparagraph.h: ditto
988
989         * src/Makefile.am (BOOST_INCLUDES): the boost include dir
990         * src/frontends/Makefile.am (INCLUDES): ditto
991         * src/frontends/gnome/Makefile.am (BOOST_INCLUDES): ditto
992         * src/frontends/kde/Makefile.am (BOOST_INCLUDES): ditto
993         * src/frontends/xforms/Makefile.am (BOOST_INCLUDES): ditto
994         * src/graphics/Makefile.am (BOOST_INCLUDES): ditto
995         * src/insets/Makefile.am (BOOST_INCLUDES): ditto
996         * src/mathed/Makefile.am (BOOST_INCLUDES): ditto
997
998         * src/BufferView.h: use boost/utility.hpp
999         * src/LColor.h: ditto
1000         * src/LaTeX.h: ditto
1001         * src/LyXAction.h: ditto
1002         * src/LyXView.h: ditto
1003         * src/bufferlist.h: ditto
1004         * src/lastfiles.h: ditto
1005         * src/layout.h: ditto
1006         * src/lyx_gui.h: ditto
1007         * src/lyx_main.h: ditto
1008         * src/lyxlex.h: ditto
1009         * src/lyxrc.h: ditto
1010         * src/frontends/ButtonPolicies.h: ditto
1011         * src/frontends/Dialogs.h: ditto
1012         * src/frontends/xforms/FormBase.h: ditto
1013         * src/frontends/xforms/FormGraphics.h: ditto
1014         * src/frontends/xforms/FormParagraph.h: ditto
1015         * src/frontends/xforms/FormTabular.h: ditto
1016         * src/graphics/GraphicsCache.h: ditto
1017         * src/graphics/Renderer.h: ditto
1018         * src/insets/ExternalTemplate.h: ditto
1019         * src/insets/insetcommand.h: ditto
1020         * src/support/path.h: ditto
1021
1022         * config/lyxinclude.m4 (LYX_PROG_CXX): change clause for 2.96
1023         and introduce clause for 2.97.
1024
1025         * boost/libs/README: new file
1026
1027         * boost/boost/utility.hpp: new file
1028
1029         * boost/boost/config.hpp: new file
1030
1031         * boost/boost/array.hpp: new file
1032
1033         * boost/Makefile.am: new file
1034
1035         * boost/.cvsignore: new file
1036
1037         * configure.in (AC_OUTPUT): add boost/Makefile
1038
1039         * Makefile.am (SUBDIRS): add boost
1040
1041 2000-10-01  Dekel Tsur  <dekelts@tau.ac.il>
1042
1043         * src/support/lstrings.C (suffixIs): Fixed.
1044
1045 2000-10-01  Allan Rae  <rae@lyx.org>
1046
1047         * src/PrinterParams.h: moved things around to avoid the "can't
1048         inline call" warning.
1049
1050         * src/frontends/xforms/RadioButtonGroup.h: turned a comment
1051         into doc++ documentation.
1052
1053         * src/frontends/xforms/FormCommand.[Ch]: support button policy
1054
1055         * src/frontends/xforms/FormRef.C: make use of button controller
1056         * src/frontends/xforms/FormDocument.[Ch]: convert to use FormBase
1057         cleaned up button controller usage.
1058         * src/frontends/xforms/FormPreferences.[Ch]: convert to use FormBase
1059         * src/frontends/xforms/FormPrint.[Ch]: convert to use FormBase and
1060         use the button controller
1061
1062         * src/frontends/xforms/forms/*.fd: and associated generated files
1063         updated to reflect changes to FormBase.  Some other FormXxxx files
1064         also got minor updates to reflect changes to FormBase.
1065
1066         * src/frontends/xforms/FormBase.[Ch]: (ok, cancel): new
1067         (hide): made virtual.
1068         (input): return a bool. true == valid input
1069         (RestoreCB, restore): new
1070         (CancelCB, OKCB): renamed from HideCB and ApplyHideCB.
1071         Changes to allow derived dialogs to use a ButtonController and
1072         make sense when doing so: OK button calls ok() and so on.
1073
1074         * src/frontends/xforms/ButtonController.h (class ButtonController):
1075         Switch from template implementation to taking Policy parameter.
1076         Allows FormBase to provide a ButtonController for any dialog.
1077
1078         * src/frontends/xforms/FormPrint.C (connect): setup sizing at show-time
1079         Probably should rename connect and disconnect.
1080         (apply): use the radio button groups
1081         (form): needed by FormBase
1082         (build): setup the radio button groups
1083
1084 2000-09-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
1085
1086         * several files: type changes to reduce the number of warnings and
1087         to unify type hangling a bit. Still much to do. 
1088
1089 2000-09-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1090
1091         * lib/images/*: rename a bunch of icons to match Dekel converter
1092         changes. 
1093
1094         * src/buffer.h (SimpleLinuxDocOnePar): remove const qualifier to
1095         last parameter.
1096
1097         * src/frontends/xforms/FormBase.C (disconnect): remove bogus test. 
1098
1099         * sigc++/macros/basic_signal.h.m4: fix class Signal_ to have a
1100         virtual destructor
1101         * sigc++/handle.h: ditto for class Handle. 
1102
1103 2000-09-27  John Levon  <moz@compsoc.man.ac.uk>
1104
1105         * config/kde.m4: make Qt fail immediately if Qt2 is picked up
1106
1107 2000-09-28  Dekel Tsur  <dekelts@tau.ac.il>
1108
1109         * src/intl.C (InitKeyMapper): Correct the value of n due to the
1110         removal of the "default" language.
1111
1112         * src/combox.h (getline): Check that sel > 0
1113
1114 2000-09-29  José Abílio Matos <jamatos@fep.up.pt>
1115
1116         * lib/examples/docbook_example.lyx
1117         * lib/examples/docbook_article.lyx: file renamed to avoid confusion.
1118
1119         * lib/layouts/docbook-book.layout: new docbook book layout.
1120
1121         * lib/layouts/linuxdoc.layout: LatexName of Style SGML is now dummy.
1122         
1123         * lib/layouts/manpage.layout: Same as above. Style SubSection removed.
1124
1125         * src/insets/figinset.C (DocBook):fixed small typo.
1126
1127         * src/insets/insetinclude.C (DocBook): new export for verbatim type.
1128
1129         * src/insets/insetinclude.h: string include_label doesn't need to be
1130         mutable.
1131         
1132 2000-09-29  Allan Rae  <rae@lyx.org>
1133
1134         * src/frontends/xforms/FormBase.[Ch] (connect, disconnect): new.
1135         Allow derived type to control connection and disconnection from signals
1136         of its choice if desired.
1137
1138 2000-09-28  Juergen Vigna  <jug@sad.it>
1139
1140         * src/insets/insettabular.C (update): fixed cursor setting when
1141         the_locking_inset changed.
1142         (draw): made this a bit cleaner.
1143         (InsetButtonPress): fixed!
1144
1145         * various files: added LyXText Parameter to fitCursor call.
1146         
1147         * src/BufferView.C (fitCursor): added LyXText parameter.
1148
1149         * src/insets/insettabular.C (draw): small draw fix.
1150
1151         * src/tabular.C: right setting of left/right celllines.
1152
1153         * src/tabular.[Ch]: fixed various types in funcions and structures. 
1154         * src/insets/insettabular.C: ditto
1155         * src/frontends/xforms/FormTabular.C: ditto
1156
1157 2000-09-28  Allan Rae  <rae@lyx.org>
1158
1159         * src/paragraph.C (TeXOnePar): fixed output of '\n'.  The problem was
1160         that the #ifdef's had been applied to part of what should have been
1161         a complete condition.  It's possible there are other tests that
1162         were specific to tables that are also wrong now that InsetTabular is
1163         being used. Now we need to fix the output of '\n' after a table in a
1164         float for the same reason as the original condition:
1165         "don't insert this if we would be adding it before or after a table
1166         in a float.  This little trick is needed in order to allow use of
1167         tables in \subfigures or \subtables."
1168         Juergen can you check this?
1169
1170 2000-09-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
1171
1172         * src/insets/insettext.C (Ascii): return numer of '\n' in the text
1173         outputed to the ostream.
1174
1175         * several files: fixed types based on warnings from cxx 
1176
1177 2000-09-26  John Levon  <moz@compsoc.man.ac.uk>
1178
1179         * src/frontends/kde/Makefile.am: fix rule for
1180         formindexdialogdata_moc.C
1181
1182         * src/.cvsignore: add ext_l10n.h to ignore
1183
1184         * acconfig.h: stop messing with __STRICT_ANSI__ 
1185         * config/gnome.m4: remove option to set -ansi
1186         * config/kde.m4: remove option to set -ansi
1187         * config/lyxinclude.m4: don't set -ansi 
1188
1189 2000-09-27  Juergen Vigna  <jug@sad.it>
1190
1191         * various files: remove "default" language check.
1192         
1193         * src/insets/insetquotes.C: removed use of current_view.
1194
1195         * src/lyxfunc.C (MenuNew): I don't know how put the AddPath here but
1196         the one should have red ears by now!
1197
1198         * src/insets/insettext.C (LocalDispatch): fixed setting of same layouts
1199         in more then one paragraph. Fixed cursor-movement/selection.
1200
1201         * src/frontends/xforms/FormParagraph.C: disable pagebreaks for
1202         paragraphs inside a text inset.
1203
1204         * src/text.C (GetVisibleRow): paint top/bottom line only as wide as the
1205         text-inset if this owner is an inset.
1206
1207 2000-09-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
1208
1209         * src/Bullet.h: changed type of font, character and size to int
1210
1211         * src/buffer.C (asciiParagraph): remove actcell and fname1.
1212
1213         * src/insets/inseturl.[Ch]: 
1214         * src/insets/insetref.[Ch]:
1215         * src/insets/insetlabel.[Ch]: add linelen to Ascii
1216
1217 2000-09-26  Angus Leeming <a.leeming@ic.ac.uk>
1218
1219         * src/buffer.C (readFile): block-if statement rearranged to minimise
1220         bloat. Patch does not reverse Jean-Marc's change ;-)
1221
1222         * src/frontends/xforms/FormBase.[Ch]: Renamed some of the callbacks.
1223         Class rewritten to store pointers to hide/update signals directly,
1224         rather than Dialogs *. Also defined an enum to ease use. All xforms
1225         forms can now be derived from this class.
1226
1227         * src/frontends/xforms/FormCommand.[Ch]
1228         * src/frontends/xforms/FormCopyright.[Ch]: now derived from FormBase.
1229
1230         * src/frontends/xforms/FormError.[Ch]: moved inclusion of inseterror.h
1231         out of header file.
1232
1233         * src/frontends/xforms/forms/form_citation.fd
1234         * src/frontends/xforms/forms/form_copyright.fd
1235         * src/frontends/xforms/forms/form_error.fd
1236         * src/frontends/xforms/forms/form_index.fd
1237         * src/frontends/xforms/forms/form_ref.fd
1238         * src/frontends/xforms/forms/form_toc.fd
1239         * src/frontends/xforms/forms/form_url.fd: remamed callbacks
1240
1241         * src/frontends/xforms/forms/makefile: small change to work with DEC sh.
1242
1243         * src/insets/insetfoot.C: removed redundent using directive.
1244
1245 2000-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1246
1247         * lib/layouts/siamltex.layout: new textclass for SIAM journals,
1248         from Kornelia Pietsch <pietsch@mathematik.tu-chemnitz.de>
1249
1250         * src/frontends/xforms/Menubar_pimpl.C: menu buttons are now
1251         created in the constructors in different groups. Then set() just
1252         have to show the groups as needed. This fixes the redraw problems
1253         (and is how the old menu code worked).
1254
1255         * src/support/lyxlib.h: declare the methods as static when we do
1256         not have namespaces.
1257
1258 2000-09-26  Juergen Vigna  <jug@sad.it>
1259
1260         * src/buffer.C (asciiParagraph): new function.
1261         (writeFileAscii): new function with parameter ostream.
1262         (writeFileAscii): use now asciiParagraph.
1263
1264         * various inset files: added the linelen parameter to the Ascii-func.
1265         
1266         * src/tabular.C (Write): fixed error in writing file introduced by
1267         the last changes from Lars.
1268
1269         * lib/bind/menus.bind: removed not supported functions.
1270
1271         * src/insets/insettext.C (Ascii): implemented this function.
1272
1273         * src/insets/lyxinset.h (Ascii): added linelen parameter.
1274
1275         * src/tabular.C (write_attribute[int,string,bool]): new functions.
1276         (Write): use of the write_attribute functions.
1277
1278         * src/bufferlist.C (close): fixed reasking question!
1279
1280 2000-09-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
1281
1282         * src/support/unlink.C src/support/remove.C src/support/mkdir.C:
1283         new files use the everwhere possible.
1284         
1285         * several files: 
1286         * src/form1.C src/form1.h src/layout_forms.C src/layout_forms.h
1287         src/log_form.C src/lyx.C:
1288         regenerated
1289         
1290         * src/buffer.C (runLaTeX): remove func
1291         
1292         * src/PaperLayout.C: removed file
1293         * src/ParagraphExtra.C: likewise
1294         * src/bullet_forms.C: likewise
1295         * src/bullet_forms.h: likewise
1296         * src/bullet_forms_cb.C: likewise
1297         
1298         * src/Makefile.am (lyx_SOURCES): remove PaperLayout.C,
1299         ParagraphExtra.C, bullet_forms.C, bullet_forms.h and
1300         bullet_forms_cb.C 
1301
1302         * several files: remove all traces of the old fd_form_paragraph,
1303         and functions belonging to that.
1304         
1305         * several files: remove all traces of the old fd_form_document,
1306         and functions belonging to that.
1307         
1308         * several files: constify local variables were possible.
1309         
1310         * several files: remove all code that was dead when NEW_EXPORT was
1311         defined 
1312         
1313         * several files: removed string::c_str in as many places as
1314         possible.
1315         
1316         * forms/makefile (SRCS,OBJS,COBJS): removed bullet_forms.[fd,c,C]
1317         (e): be a bit more outspoken when patching
1318         (updatesrc): only move files if changed.
1319
1320         * forms/layout_forms.h.patch: regenerated
1321         
1322         * forms/layout_forms.fd: remove form_document and form_paragraph
1323         and form_quotes and form_paper and form_table_options and
1324         form_paragraph_extra 
1325
1326         * forms/form1.fd: remove form_table
1327
1328         * forms/fdfix.sh: remove sed rules for fl_set_object_lcolor and
1329         the fdui->... rewrite. Update some comments to xforms 0.88
1330
1331         * forms/bullet_forms.C.patch: removed file
1332         * forms/bullet_forms.fd: likewise
1333         * forms/bullet_forms.h.patch: likewise
1334         
1335         * development/Code_rules/Rules: added a section on switch
1336         statements. Updated some comment to xforms 0.88.
1337
1338 2000-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1339
1340         * src/buffer.C (readFile): make sure that the whole version number
1341         is read after \lyxformat (even when it contains a comma)
1342
1343         * lib/ui/default.ui: change shortcut of math menu to M-a.
1344
1345 2000-09-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1346
1347         * src/vspace.C (nextToken): use isStrDbl() to check for proper
1348         double values.
1349
1350         * src/LyXView.C (updateWindowTitle): show the full files name in
1351         window title, limited to 30 characters.
1352
1353         * src/support/lyxstring.C (lyxstring): fix it correctly this time.
1354         When a number of characters has been given, we should not assume
1355         that the string is 0-terminated.
1356
1357         * src/intl.C (InitKeyMapper): remove a bunch of string::c_str()
1358         calls (fixes some memory leaks)
1359         
1360         * src/intl.[Ch]: add a destructor for Intl, in order to delete the
1361         trans member on exit.
1362
1363 2000-09-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1364
1365         * src/converter.C (GetReachable): fix typo.
1366
1367         * src/lyxlex.C (GetFloat): rewrite to use strToDbl() and
1368         understand ',' instead of '.'.
1369         (GetInteger): rewrite to use strToInt().
1370
1371 2000-09-26  Juergen Vigna  <jug@sad.it>
1372
1373         * src/frontends/xforms/FormParagraph.C: fixed de/activation of fields,
1374         better visibility and error-message on wrong VSpace input.
1375
1376         * src/language.C (initL): added english again.
1377
1378 2000-09-25  Juergen Vigna  <jug@sad.it>
1379
1380         * src/frontends/kde/Dialogs.C (Dialogs): 
1381         * src/frontends/gnome/Dialogs.C (Dialogs): 
1382         * src/frontends/kde/Makefile.am: 
1383         * src/frontends/gnome/Makefile.am: added FormParagraph from xforms.
1384
1385         * src/frontends/xforms/forms/makefile: added form_paragraph.fd.
1386
1387         * src/frontends/xforms/Dialogs.C (Dialogs): added FormParagraph.
1388
1389         * src/frontends/xforms/Makefile.am: added files for FormParagraph.
1390
1391         * src/frontends/xforms/FormParagraph.C: 
1392         * src/frontends/xforms/FormParagraph.h:
1393         * src/frontends/xforms/form_paragraph.C:
1394         * src/frontends/xforms/form_paragraph.h:
1395         * src/frontends/xforms/forms/form_paragraph.fd: new files for the new
1396         paragraph layout.
1397
1398         * src/lyxfunc.C (Dispatch): call the new layout paragraph.
1399
1400         * src/tabular.C (OldFormatRead): forgot to delete the temporary
1401         Paragraph-Data after use.
1402
1403         * src/insets/insettext.C (LocalDispatch): don't set the layout on
1404         non breakable paragraphs.
1405
1406 2000-09-25  Garst R. Reese <reese@isn.net>
1407
1408         * src/language.C (initL): added missing language_country codes.
1409
1410 2000-09-25  Juergen Vigna  <jug@sad.it>
1411
1412         * src/insets/insettext.C (InsetText):
1413         (deleteLyXText): remove the not released LyXText structure!
1414
1415 2000-09-24  Marko Vendelin <markov@ioc.ee>
1416
1417         * src/frontends/gnome/mainapp.C
1418         * src/frontends/gnome/mainapp.h: added support for keyboard 
1419         accelerators
1420
1421         * src/frontends/gnome/FormCitation.C
1422         * src/frontends/gnome/FormCitation.h
1423         * src/frontends/gnome/Makefile.am
1424         * src/frontends/gnome/pixbutton.h: completed the rewrite of 
1425         FormCitation to use "action area" in mainapp window
1426
1427         * src/frontends/gnome/Menubar_pimpl.C   
1428         * src/frontends/gnome/Menubar_pimpl.h: Gnome menu can handle
1429         large TOC.
1430
1431 2000-09-23  Dekel Tsur  <dekel@math.tau.ac.il>
1432
1433         * src/mathed/formula.C (MathFuncInset::Metrics): Use default 
1434         width/descent/ascent values if name is empty.
1435         (mathed_string_height): Use std::max.
1436
1437 2000-09-25  Allan Rae  <rae@lyx.org>
1438
1439         * src/frontends/xforms/forms/form_preferences.fd: resize to stop
1440         segfault.  This will be completely redesigned soon.
1441
1442         * sigc++: updated libsigc++.  Fixes struct timespec bug.
1443
1444         * development/tools/makeLyXsigc.sh:  .cvsignore addition
1445
1446 2000-09-23  Lars Gullik Bjønnes  <larsbj@lyx.org>
1447
1448         * several files: removed almost all traces of the old table
1449         (tabular) code.
1450
1451         * src/TableLayout.C: removed file
1452         
1453 2000-09-22  Juergen Vigna  <jug@sad.it>
1454
1455         * src/frontends/kde/Dialogs.C: added credits forms.
1456
1457         * src/frontends/gnome/Makefile.am (libgnome_la_OBJADD): added forms.
1458
1459         * src/frontends/gnome/Dialogs.C: added some forms.
1460
1461         * src/spellchecker.C (init_spell_checker): set language in pspell code
1462         (RunSpellChecker): some modifications for setting language string.
1463
1464         * src/language.[Ch]: added language_country code.
1465
1466 2000-09-21  Angus Leeming <a.leeming@ic.ac.uk>
1467
1468         * src/frontends/Dialogs.h: added new signal showError.
1469         Rearranged existing signals in some sort of alphabetical order.
1470
1471         * src/frontends/xforms/Makefile.am: added new files, FormBase.[Ch],
1472         FormError.[Ch], form_error.[Ch]
1473         * src/frontends/xforms/forms/makefile: added new file form_error.fd
1474         * src/frontends/xforms/Dialogs.C: added new xforms dialog FormError.
1475
1476         * src/frontends/xforms/FormBase.[Ch]: new base class for xforms
1477         dialogs. I think that this can be used as the base to all these
1478         dialogs.
1479
1480         * src/frontends/xforms/FormError.[Ch]
1481         * src/frontends/xforms/forms/form_error.fd: new files. Xforms
1482         implementation of InsetError dialog.
1483         
1484         * src/insets/inseterror.[Ch]: rendered GUI-independent.
1485
1486         * src/frontends/kde/Dialogs.C: added new xforms dialog FormError.
1487         * src/frontends/kde/Makefile.am: ditto
1488
1489 2000-09-21  Dekel Tsur  <dekel@math.tau.ac.il>
1490
1491         * src/mathed/math_cursor.[Ch]: Removed class members macroln and
1492         macrobf. This fixes a bug of invisible text.
1493
1494 2000-09-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1495
1496         * lib/doc/LaTeXConfig.lyx.in: updated.
1497
1498         * src/language.C (initL): remove language "francais" and change a
1499         bit the names of the two other french variations.
1500
1501         * src/support/lyxstring.C (lyxstring): do not apply strlen() on a
1502         string that may not be 0-terminated.
1503
1504 2000-09-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
1505
1506         * src/Makefile.am (lyx_SOURCES): remove table.C and Table.h
1507
1508 2000-09-20  Marko Vendelin <markov@ioc.ee>
1509
1510         * src/frontends/gnome/FormCitation.C
1511         * src/frontends/gnome/FormIndex.C
1512         * src/frontends/gnome/FormToc.C
1513         * src/frontends/gnome/FormUrl.C: cleanup the loops, reordering
1514         the variable initialization to shut up the warnings
1515
1516 2000-09-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
1517
1518         * src/table.[Ch]: deleted files
1519         
1520         * src/lyxfunc.C (Dispatch): Don't pass 0 as argument to Dispatch
1521         second arg.
1522
1523 2000-09-18  Juergen Vigna  <jug@sad.it>
1524
1525         * src/insets/insettext.C (LocalDispatch): fixed Backspace/Delete
1526         problems with selection. Inserted new LFUN_PASTESELECTION.
1527         (InsetButtonPress): inserted handling of middle mouse-button paste.
1528
1529         * src/spellchecker.C: changed word to word.c_str().
1530
1531 2000-09-16  Kayvan A. Sylvan  <kayvan@sylvan.com>
1532
1533         * src/Makefile.am: Add sources to lyx_SOURCES so they will be
1534           included in the ``make dist'' tarball.
1535
1536 2000-09-15  Juergen Vigna  <jug@sad.it>
1537
1538         * src/CutAndPaste.C (cutSelection): small fix return the right
1539         end position after cut inside one paragraph only.
1540
1541         * src/insets/insettext.C (resizeLyXText): only reset the cursor if
1542         we are locked as otherwise we don't have a valid cursor position!
1543
1544         * src/insets/figinset.C (draw): small bugfix but why is this needed???
1545
1546 2000-09-19  Angus Leeming <a.leeming@ic.ac.uk>
1547
1548         * src/frontends/kde/FormRef.C: added using directive.
1549         * src/frontends/kde/FormToc.C: ditto
1550
1551         * src/frontends/kde/formtocdialog.h: changed endl to std::endl.
1552
1553         * src/frontends/kde/FormRef.h: removed trailing comma from enums.
1554
1555 2000-09-19  Marko Vendelin <markov@ioc.ee>
1556         
1557         * src/frontends/gnome/Menubar_pimpl.C
1558         * src/frontends/gnome/Menubar_pimpl.h: Gnome menus show now
1559         Toc, ViewFormats, UpdateFormats, and ExportFormats.
1560
1561         * src/frontends/gnome/mainapp.C
1562         * src/frontends/gnome/mainapp.h: support for menu update used 
1563         by Toc menu.
1564
1565         * src/frontends/gnome/mainapp.C
1566         * src/frontends/gnome/mainapp.h: support for "action" area in the
1567         main window. This area is used by small simple dialogs, such as
1568         FormUrl.
1569
1570         * src/frontends/gnome/FormIndex.C
1571         * src/frontends/gnome/FormIndex.h
1572         * src/frontends/gnome/FormUrl.C
1573         * src/frontends/gnome/FormUrl.h: rewrite to use main window action
1574         area
1575
1576         * src/frontends/gnome/FormCitation.C
1577         * src/frontends/gnome/FormCitation.h: rewrite to use main window
1578         action area. Only "Insert new citation" is implemented.
1579
1580 2000-09-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
1581
1582         * src/buffer.C (Dispatch): fix call to Dispatch
1583         * src/insets/insetref.C (Edit): likewise
1584         * src/insets/insetparent.C (Edit): likewise
1585         * src/insets/insetinclude.C (include_cb): likewise
1586         * src/frontends/xforms/FormUrl.C (apply): likewise
1587         * src/frontends/xforms/FormToc.C (apply): likewise
1588         * src/frontends/xforms/FormRef.C (apply): likewise
1589         * src/frontends/xforms/FormIndex.C (apply): likewise
1590         * src/frontends/xforms/FormCitation.C (apply): likewise
1591         * src/lyxserver.C (callback): likewise
1592         * src/lyxfunc.C (processKeySym): likewise
1593         (Dispatch): likewise
1594         (Dispatch): likewise
1595         * src/lyx_cb.C (LayoutsCB): likewise
1596
1597         * Makefile.am (sourcedoc): small change
1598
1599 2000-09-18  Lars Gullik Bjønnes  <larsbj@lyx.org>
1600
1601         * src/main.C (main): Don't make an empty GUIRunTime object. all
1602         methods are static. constify a bit remove unneded using + headers.
1603
1604         * src/tabular.C: some more const to local vars move some loop vars
1605         
1606         * src/spellchecker.C: added some c_str after some word for pspell
1607
1608         * src/frontends/GUIRunTime.h: add new static method setDefaults
1609         * src/frontends/xforms/GUIRunTime.C (setDefaults): 
1610         * src/frontends/kde/GUIRunTime.C (setDefaults): 
1611         * src/frontends/gnome/GUIRunTime.C (setDefaults): new method
1612
1613         * src/mathed/math_cursor.C (MacroModeClose): don't call SetName
1614         with strnew in arg, use correct emptystring when calling SetName.
1615
1616         * several files: remove all commented code with relation to
1617         HAVE_SSTREAM beeing false. We now only support stringstream and
1618         not strstream. 
1619
1620 2000-09-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1621
1622         * src/lyxfunc.C: construct correctly the automatic new file
1623         names. 
1624
1625         * src/text2.C (IsStringInText): change type of variable i to shut
1626         off a warning.
1627
1628         * src/support/sstream.h: do not use namespaces if the compiler
1629         does not support them.
1630
1631 2000-09-15  Marko Vendelin <markov@ioc.ee>
1632         * src/frontends/gnome/FormCitation.C
1633         * src/frontends/gnome/FormCitation.h
1634         * src/frontends/gnome/diainsertcitation_interface.c
1635         * src/frontends/gnome/dialogs/diainsertcitation.glade: adds
1636         regexp support to FormCitation [Gnome].
1637             
1638 2000-09-15  John Levon  <moz@compsoc.man.ac.uk>
1639
1640         * acconfig.h
1641         * configure.in: remove unused KDE/GTKGUI define
1642
1643         * src/frontends/kde/FormRef.C
1644         * src/frontends/kde/FormRef.h
1645         * src/frontends/kde/formrefdialog.C
1646         * src/frontends/kde/formrefdialog.h: double click will
1647         go to reference, now it is possible to change a cross-ref
1648         after the fact
1649
1650         * src/frontends/kde/FormToc.C
1651         * src/frontends/kde/FormToc.h
1652         * src/frontends/kde/formtocdialog.C
1653         * src/frontends/kde/formtocdialog.h: add a depth
1654         slider
1655
1656         * src/frontends/kde/Makefile.am: add QtLyXView.h
1657         to the sources list
1658
1659 2000-09-15  Angus Leeming  <a.leeming@ic.ac.uk>
1660
1661         * src/frontends/kde/FormCitation.h: added some using directives.
1662
1663         * src/frontends/kde/FormToc.h: corrected definition of doTree.
1664
1665         * src/frontends/kde/GUIRunTime.C (initApplication): use lyxerr not
1666         cerr. 
1667
1668         * src/mathed/math_defs.h: redefine SetAlign to use string rather
1669         than char *.
1670         
1671 2000-09-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1672
1673         * src/buffer.C (pop_tag): revert for the second time a change by
1674         Lars, who seems to really hate having non-local loop variables :)
1675
1676         * src/Lsstream.h: add "using" statements.
1677
1678         * src/support/copy.C (copy): add a bunch of std:: qualifiers
1679         * src/buffer.C (writeFile): ditto
1680
1681 2000-09-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
1682
1683         * src/buffer.C (writeFile): try to fix the locale modified format
1684         number to always be as we want it.
1685
1686         * src/WorkArea.C (work_area_handler): try to workaround the bugs
1687         in XForms 0.89. C-space is now working again.
1688
1689         * src/Lsstream.h src/support/sstream.h: new files.
1690
1691         * also commented out all cases where strstream were used.
1692         
1693         * src/Bullet.h (c_str): remove method.
1694         
1695         * remove all stuff that is irrelevant when NEW_MENUBAR is defined
1696         
1697         * a lot of files: get rid of "char const *" and "char *" is as
1698         many places as possible. We only want to use them in interaction
1699         with system of other libraries, not inside lyx.
1700         
1701         * a lot of files: return const object is not of pod type. This
1702         helps ensure that temporary objects is not modified. And fits well
1703         with "programming by contract".
1704
1705         * configure.in: check for the locale header too 
1706
1707         * Makefile.am (sourcedoc): new tag for generation of doc++
1708         documentation 
1709
1710 2000-09-14  Juergen Vigna  <jug@sad.it>
1711
1712         * src/frontends/xforms/FormDocument.C (ComboInputCB): fixed the
1713         callback to check which combo called it and do the right action.
1714
1715         * src/combox.C (combo_cb): added combo * to the callbacks.
1716         (Hide): moved call of callback after Ungrab of the pointer.
1717
1718         * src/intl.h: removed LCombo2 function.
1719
1720         * src/intl.C (LCombo): added Combox * to call and removed LCombo2
1721         function as this can now be handled in one function.
1722
1723         * src/combox.h: added Combox * to callback prototype.
1724
1725         * src/frontends/xforms/Toolbar_pimpl.C: 
1726         * src/lyx_cb.C (LayoutsCB): added Combox * to function call.
1727
1728 2000-09-14  Garst Reese    <reese@isn.net>
1729
1730         * lib/tex/hollywood.cls changed length of parenthicals to 1.5in
1731         moved usepackage{xxx}'s to beginning of file. Changed left margin
1732         to 1.5in, right margin to 1in. Forced headrulewidth to 0, removed
1733         underlining from title. Thanks to John Culleton for useful suggestions.
1734
1735 2000-09-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1736
1737         * src/lyxlex_pimpl.C (setFile): change error message to debug
1738         message. 
1739
1740 2000-09-13  Juergen Vigna  <jug@sad.it>
1741
1742         * src/frontends/xforms/FormDocument.C: implemented choice_class
1743         as combox and give callback to combo_language so OK/Apply is activated
1744         on change.
1745
1746         * src/bufferlist.C (newFile): small fix so already named files
1747         (via an open call) are not requested to be named again on the
1748         first save!
1749
1750 2000-09-13  John Levon  <moz@compsoc.man.ac.uk>
1751
1752         * src/frontends/kde/Makefile.am
1753         * src/frontends/kde/FormRef.C
1754         * src/frontends/kde/FormRef.h
1755         * src/frontends/kde/formrefdialog.C
1756         * src/frontends/kde/formrefdialog.h: implement
1757         cross-ref dialog
1758
1759 2000-09-13  John Levon  <moz@compsoc.man.ac.uk>
1760
1761         * src/frontends/kde/formtocdialog.C
1762         * src/frontends/kde/formtocdialog.h
1763         * src/frontends/kde/FormToc.C
1764         * src/frontends/kde/FormToc.h: change to make TOC hierarchical properly
1765
1766 2000-09-11  John Levon  <moz@compsoc.man.ac.uk>
1767
1768         * src/frontends/kde/FormCitation.C: fix thinko
1769         where we didn't always display the reference text
1770         properly
1771
1772         * src/frontends/kde/formurldialog.C
1773         * src/frontends/kde/formurldialog.h
1774         * src/frontends/kde/FormUrl.C
1775         * src/frontends/kde/FormUrl.h: minor cleanups
1776
1777         * src/frontends/kde/QtLyXView: wrapper to avoid Qt namespace mangling
1778
1779         * src/frontends/kde/Makefile.am
1780         * src/frontends/kde/FormToc.C
1781         * src/frontends/kde/FormToc.h
1782         * src/frontends/kde/FormCitation.C
1783         * src/frontends/kde/FormCitation.h
1784         * src/frontends/kde/FormIndex.C
1785         * src/frontends/kde/FormIndex.h
1786         * src/frontends/kde/formtocdialog.C
1787         * src/frontends/kde/formtocdialog.h
1788         * src/frontends/kde/formcitationdialog.C
1789         * src/frontends/kde/formcitationdialog.h
1790         * src/frontends/kde/formindexdialog.C
1791         * src/frontends/kde/formindexdialog.h: new Toc,Citation,Index dialogs
1792
1793 2000-09-12  Juergen Vigna  <jug@sad.it>
1794
1795         * src/frontends/gnome/GUIRunTime.C (initApplication): make id + version
1796         static strings.
1797
1798 2000-09-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1799
1800         * src/frontends/xforms/GUIRunTime.C (initApplication): use lyxerr,
1801         not cerr.
1802
1803 2000-09-09  Dekel Tsur  <dekel@math.tau.ac.il>
1804
1805         * src/converter.C (Add, Convert): Added support for converter flags:
1806         needaux, resultdir, resultfile.
1807         (Convert): Added new parameter view_file.
1808         (dvips_options): Fixed letter paper option.
1809
1810         * src/exporter.C (Export, BufferExtension): Added support for Docbook.
1811         (Export, GetExportableFormats, GetViewableFormats): Added support
1812         for Ascii.
1813
1814         * src/lyx_main.C (LyX): Call to QuitLyX() to remove temporary
1815         directory!
1816         (easyParse): Fixed to work with new export code.
1817         
1818         * src/support/filetools.C (DeleteAllFilesInDir) Fixed to delete
1819         directories.
1820
1821         * lyx-devel-export/lib/configure.m4: Changed flags of tth.
1822
1823         * lib/bind/*.bind: Replaced
1824         buffer-view,buffer-view-ps,buffer-typeset,buffer-typeset-ps by
1825         buffer-view dvi,buffer-view ps,buffer-update dvi,buffer-update ps
1826
1827 2000-09-11  Juergen Vigna  <jug@sad.it>
1828
1829         * src/lyx_gui.C (runTime): uses global guiruntime variable.
1830
1831         * src/main.C (main): now GUII defines global guiruntime!
1832
1833         * src/frontends/gnome/GUIRunTime.C (initApplication): 
1834         * src/frontends/kde/GUIRunTime.C (initApplication): 
1835         * src/frontends/xforms/GUIRunTime.C (initApplication): 
1836         * src/frontends/GUIRunTime.h: added new function initApplication.
1837
1838         * src/spellchecker.C (sc_accept_word): change to add_to_session.
1839
1840         * src/vspace.C (nextToken): fixed error with number 0cm as unvalid.
1841
1842 2000-09-08  Juergen Vigna  <jug@sad.it>
1843
1844         * src/lyx_gui.C (create_forms): don't display the "default" entry as
1845         we have already "Reset".
1846
1847         * src/language.C (initL): inserted "default" language and made this
1848         THE default language (and not american!)
1849
1850         * src/paragraph.C: inserted handling of "default" language!
1851
1852         * src/lyxfont.C: ditto
1853
1854         * src/text.C: ditto
1855
1856         * src/paragraph.C: output the \\par only if we have a following
1857         paragraph otherwise it's not needed.
1858
1859 2000-09-05  Juergen Vigna  <jug@sad.it>
1860
1861         * config/pspell.m4: added entry to lyx-flags
1862
1863         * src/spellchecker.C: modified version from Kevin for using pspell
1864
1865 2000-09-01  Marko Vendelin <markov@ioc.ee>
1866         * src/frontends/gnome/Makefile.am
1867         * src/frontends/gnome/FormCitation.C
1868         * src/frontends/gnome/FormCitation.h
1869         * src/frontends/gnome/diainsertcitation_callbacks.c
1870         * src/frontends/gnome/diainsertcitation_callbacks.h
1871         * src/frontends/gnome/diainsertcitation_interface.c
1872         * src/frontends/gnome/diainsertcitation_interface.h
1873         * src/frontends/gnome/dialogs/diainsertcitation.glade: Insert Citation 
1874         dialog for Gnome frontend
1875
1876         * src/main.C: Gnome libraries require keeping application name
1877         and its version as strings
1878
1879         * src/frontends/gnome/mainapp.C: Change the name of the main window
1880         from GnomeLyX to PACKAGE
1881
1882 2000-09-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1883
1884         * src/frontends/Liason.C: add "using: declaration.
1885
1886 2000-08-31  Dekel Tsur  <dekel@math.tau.ac.il>
1887
1888         * src/mathed/math_macro.C (Metrics): Set the size of the template
1889
1890         * src/mathed/formulamacro.C (Latex): Fixed the returned value
1891
1892 2000-09-04  Dekel Tsur  <dekel@math.tau.ac.il>
1893
1894         * src/converter.C (add_options): New function.
1895         (SetViewer): Change $$FName into '$$FName'.
1896         (View): Add options when running xdvi
1897         (Add): Change $$FName into '$$FName'. Same for $$BaseName/$$OutName.
1898         (Convert): The 3rd parameter is now the desired filename. Converts
1899         calls to lyx::rename if necessary.
1900         Add options when running dvips.
1901         (dvi_papersize,dvips_options): New methods.
1902
1903         * src/exporter.C (Export): Use getLatexName() instead of fileName().
1904
1905         * src/frontends/Liason.C (printBuffer): Removed duplicate code by
1906         using a call to Converter::dvips_options.
1907         Fixed to work with nex export code.
1908
1909         * src/support/copy.C
1910         * src/support/rename.C: New files
1911
1912         * src/support/syscall.h
1913         * src/support/syscall.C: Added Starttype SystemDontWait.
1914
1915         * lib/ui/default.ui: Changed to work with new export code
1916
1917         * lib/configure.m4: Changed to work with new export code
1918
1919         * src/encoding.C: Changed latex name for iso8859_7 encoding.
1920
1921 2000-09-04  Angus Leeming  <a.leeming@ic.ac.uk> +
1922
1923         * src/frontends/xforms/Menubar_pimpl.C: added two using directives
1924         so that code compiles with DEC cxx.
1925         
1926         * src/frontends/xforms/FormCitation.C (setSize): code re-writtenn
1927         to work correctly! Also now supports the additional elements
1928         neeeded by natbib.
1929         
1930 2000-09-01  Allan Rae  <rae@lyx.org>
1931
1932         * src/frontends/ButtonPolicies.C: renamed all the references to
1933         PreferencesPolicy::{AllButtons,BOGUS} to be ButtonPolicy.
1934
1935         * src/frontends/ButtonPolicies.h: rename AllButtons to ALL_BUTTONS
1936         since it's a const not a type.
1937
1938         * src/frontends/xforms/ButtonController.h: cleanup before Lars does.
1939
1940 2000-08-31  Juergen Vigna  <jug@sad.it>
1941
1942         * src/insets/figinset.C: Various changes to look if the filename has
1943         an extension and if not add it for inline previewing.
1944
1945 2000-08-31  Lars Gullik Bjønnes  <larsbj@lyx.org>
1946
1947         * src/frontends/ButtonPolicies.h: add a Button AllButtons.
1948         make buttonStatus and isReadOnly be const methods. (also reflect
1949         this in derived classes.)
1950
1951         * src/frontends/ButtonPolicies.C: remove sum_ and bogus_
1952         (nextState): change to be static inline, pass the StateMachine as
1953         a const reference
1954         (PreferencesPolicy): remove casts
1955         (OkCancelPolicy): remvoe casts
1956         (OkCancelReadOnlyPolicy): remove casts
1957         (NoRepeatedApplyReadOnlyPolicy): remove casts
1958         (OkApplyCancelReadOnlyPolicy): remove casts
1959         (OkApplyCancelPolicy): remove casts
1960         (NoRepeatedApplyPolicy): remove casts
1961
1962 2000-08-31  Angus Leeming  <a.leeming@ic.ac.uk>
1963
1964         * src/converter.C: added some using directives
1965
1966         * src/frontends/ButtonPolicies.C: changes to overcome
1967         "need lvalue" error with DEC c++
1968
1969         * src/frontends/xforms/FormDocument.C (c-tor): use C callback
1970         to WMHideCB for DEC c++
1971
1972         * src/frontends/xforms/Menubar_pimpl.C: added using directive
1973
1974         * src/frontends/xforms/forms/form_document.C.patch: use C callback
1975         to BulletBMTableCB for DEC c++
1976
1977 2000-08-31  Allan Rae  <rae@lyx.org>
1978
1979         * src/lyx_gui.C (create_forms): build combo_language2 which is part of
1980         character dialog separately from old document dialogs combo_language.
1981         Stops a segfault.
1982
1983 2000-08-30  Dekel Tsur  <dekel@math.tau.ac.il>
1984
1985         * src/commandtags.h: Added LFUN_GOTO_PARAGRAPH.
1986         Removed LFUN_REF_CREATE.
1987
1988         * src/MenuBackend.C: Added new tags: toc and references
1989
1990         * src/frontends/xforms/Menubar_pimpl.C: Removed the use of StrPool
1991         (add_lastfiles, add_documents, add_formats): Removed the unused smn
1992         parameter.
1993         (add_toc, add_references): New methods.
1994         (create_submenu): Handle correctly the case when there is a
1995         seperator after optional menu items.
1996
1997         * src/lyxfunc.C (getStatus): Handle LFUN_REF_BACK.
1998         (dispatch): Combined the code for LFUN_REF_CREATE and LFUN_REF_INSERT.
1999         (dispatch): New code for LFUN_GOTO_PARAGRAPH.
2000
2001         * src/frontends/xforms/FormToc.C (apply): Use Dispatch.
2002
2003 2000-08-30  Dekel Tsur  <dekel@math.tau.ac.il>
2004
2005         * src/converter.[Ch]: New file for converting between different
2006         formats.
2007         
2008         * src/export.[Ch]: New file for exporting a LyX file to different
2009         formats.
2010         
2011         * src/lyx_cb.C: Remove many functions when NEW_EXPORT is defined:
2012         MenuRunLaTeX, MakeLaTeXOutput, RunScript, CreatePostscript,
2013         PreviewPostscript, PreviewDVI, AskOverwrite, MenuMakeLaTeX,
2014         MenuMakeLinuxDoc, MenuMakeDocBook, MenuMakeHTML,
2015         MenuMakeHTML_LinuxDoc, MenuMakeHTML_DocBook, RunLinuxDoc,
2016         RunDocBook, MenuExport.
2017         
2018         * src/lyxfunc.C (Dispatch): Use the Exporter::Export and
2019         Exporter::Preview methods if NEW_EXPORT is defined.     
2020         
2021         * src/buffer.C (Dispatch): Use Exporter::Export.
2022         
2023         * src/lyxrc.C: Added new tags: \converter and \viewer.
2024         
2025         * src/commandtags.h
2026         * src/LyXAction.C: Define new lyx-function: buffer-update.
2027         Remove obsolete buffer-typeset,buffer-typeset-ps & buffer-view-ps
2028         when NEW_EXPORT is defined.
2029         
2030         * src/MenuBackend.C: Added new tags: updateformats and viewformats.
2031         
2032         * src/frontends/xforms/Menubar_pimpl.C (add_formats) New method.
2033         
2034         * lib/ui/default.ui: Added submenus "view" and "update" to the 
2035         "file" menu.
2036         
2037         * src/filetools.C (GetExtension): New function.
2038         
2039         * src/LaTeX.C (LaTeX): Add "-pdf" to depfile if pdflatex is used.
2040
2041 2000-08-29  Allan Rae  <rae@lyx.org>
2042
2043         * lib/bind/xemacs.bind: update a binding due to Juergen's recent work
2044
2045         * src/frontends/xforms/FormDocument.C (checkReadOnly): new function
2046         (EnableDocumentLayout): removed
2047         (DisableDocumentLayout): removed
2048         (build): make use of ButtonController's read-only handling to
2049         de/activate various objects. Replaces both of the above functions.
2050
2051         * src/frontends/xforms/ButtonController.h (readWrite): was read_write
2052         (readOnly): was read_only
2053         (refresh): fixed dumb mistakes with read_only_ handling
2054
2055         * src/frontends/xforms/forms/form_document.fd:
2056         * src/frontends/xforms/forms/form_tabular.fd: Use FL_FLAT_BOX for the
2057         tabbed dialogs so the tabs look more like tabs and so its easier to
2058         work out which is the current tab.
2059
2060         * src/lyx_gui_misc.C (updateAllVisibleBufferRelatedDialogs): fix
2061         segfault with form_table
2062
2063         * src/frontends/ButtonPolicies.C: All policies now support UNDO_ALL.
2064
2065 2000-08-28  Juergen Vigna  <jug@sad.it>
2066
2067         * acconfig.h: added USE_PSPELL.
2068
2069         * src/config.h.in: added USE_PSPELL.
2070
2071         * autogen.sh: added pspell.m4
2072
2073         * config/pspell.m4: new file.
2074
2075         * src/spellchecker.C: implemented support for pspell libary.
2076
2077 2000-08-25  Juergen Vigna  <jug@sad.it>
2078
2079         * src/LyXAction.C (init): renamed LFUN_TABLE to
2080         LFUN_DIALOG_TABULAR_INSERT and fixed all it's occurences.
2081
2082         * src/lyxfunc.C (getStatus): fix for disabled Edit->Table entries.
2083
2084         * src/lyxscreen.h: add force_clear variable and fuction to force
2085         a clear area when redrawing in LyXText.
2086
2087         * src/text.C (GetVisibleRow): look if the screen forces a redraw.
2088
2089 2000-08-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
2090
2091         * some whitespace and comment changes.
2092         
2093         * src/lyx_gui.C (LyXGUI): use C++ style casts instead of C ones.
2094
2095         * src/buffer.C: up te LYX_FORMAT to 2.17
2096
2097 2000-08-23  Juergen Vigna  <jug@sad.it>
2098
2099         * src/BufferView_pimpl.C (tripleClick): disable this when in a
2100         locking_inset.
2101
2102         * src/insets/insettabular.C (pasteSelection): delete the insets
2103         LyXText as it is not valid anymore.
2104         (copySelection): new function.
2105         (pasteSelection): new function.
2106         (cutSelection): new function.
2107         (LocalDispatch): implemented cut/copy/paste of cell selections.
2108
2109         * src/insets/insettext.C (resizeLyXText): don't need resize if I still
2110         don't have a LyXText.
2111
2112         * src/LyXAction.C (init): a NEW_TABULAR define too much.
2113
2114         * src/lyx_gui_misc.C (CloseAllBufferRelatedDialogs): another missing
2115         NEW_TABULAR define.
2116
2117 2000-08-22  Juergen Vigna  <jug@sad.it>
2118
2119         * src/lyx_gui_misc.C (updateAllVisibleBufferRelatedDialogs): 
2120         ifdef form_table out if NEW_TABULAR.
2121
2122 2000-08-21  Juergen Vigna  <jug@sad.it>
2123
2124         * src/insets/insettabular.C (TabularFeatures): BoxType is enum now.
2125         (draw): fixed draw position so that the cursor is positioned in the
2126         right place.
2127         (InsetMotionNotify): hide/show cursor so the position is updated.
2128         (GENERAL): fixed cursor_pos to show only 0/1 (begin/end of cell),
2129         using cellstart() function where it should be used.
2130
2131         * src/insets/insettext.C (draw): ditto.
2132
2133         * src/tabular.C: fixed initialization of some missing variables and
2134         made BoxType into an enum.
2135
2136 2000-08-22  Marko Vendelin <markov@ioc.ee>
2137         * src/frontends/gnome/Menubar_pimpl.C: Mathces LyX action with Gnome 
2138         stock menu item using action numerical value, not its string
2139         representation.
2140
2141
2142 2000-08-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
2143
2144         * src/frontends/xforms/Makefile.am (libxforms_la_SOURCES): add
2145         GUIRunTime.C remove GUIRunTime_pimpl.[Ch]
2146
2147         * src/frontends/xforms/GUIRunTime_pimpl.[Ch]: removed file
2148
2149         * src/frontends/xforms/GUIRunTime.C: new file
2150
2151         * src/frontends/kde/Makefile.am (libkde_la_SOURCES): add
2152         GUIRunTime.C and remove GUIRunTime_pimpl.[Ch]
2153
2154         * src/frontends/kde/GUIRunTime_pimpl.[Ch]: removed file
2155
2156         * src/frontends/kde/GUIRunTime.C: new file
2157
2158         * src/frontends/gnome/Makefile.am (libgnome_la_SOURCES): add
2159         GUIRunTime.C and remove GUIRunTime_pimpl.[Ch]
2160
2161         * src/frontends/gnome/GUIRunTime_pimpl.[Ch]: removed file
2162
2163         * src/frontends/gnome/GUIRunTime.C: new file
2164
2165         * src/frontends/Makefile.am (libfrontends_la_SOURCES): removed
2166         GUIRunTime.C 
2167
2168         * src/frontends/GUIRunTime.h: removed constructor and destructor,
2169         small change to documetentation.
2170
2171         * src/frontends/GUIRunTime.C: removed file
2172
2173         * src/text2.C (MeltFootnoteEnvironment): add some NEW_TABULAR
2174
2175         * src/lyxparagraph.h: enable NEW_TABULAR as default
2176
2177         * src/lyxfunc.C (processKeySym): remove some commented code
2178
2179         * src/lyx_gui_misc.C (updateAllVisibleBufferRelatedDialogs): add
2180         NEW_TABULAR around the fd_form_table_options.
2181
2182         * src/lyx_gui.C (runTime): call the static member function as
2183         GUIRunTime::runTime().
2184
2185 2000-08-21  Allan Rae  <rae@lyx.org>
2186
2187         * src/frontends/xforms/FormDocument.h: D'oh.  Forgot to change the
2188         policy here also.
2189
2190 2000-08-21  Dekel Tsur  <dekel@math.tau.ac.il>
2191
2192         * src/Spacing.C (writeEnvirBegin): Small fix when sstream not present
2193
2194 2000-08-21  Allan Rae  <rae@lyx.org>
2195
2196         * src/frontends/xforms/ButtonController.h (setOK): renamed from setOk to
2197         keep Garst happy ;-)
2198         * src/frontends/xforms/FormPreferences.C (build): use setOK
2199         * src/frontends/xforms/FormDocument.C (build): use setOK
2200         (FormDocument): use the appropriate policy.
2201
2202 2000-08-21  Allan Rae  <rae@lyx.org>
2203
2204         * src/frontends/xforms/ButtonController.h (class ButtonController): Allow
2205         automatic [de]activation of arbitrary objects when in a read-only state.
2206
2207         * src/frontends/ButtonPolicies.h: More documentation
2208         (isReadOnly): added to support the above.
2209
2210         * src/frontends/xforms/forms/form_preferences.fd: Changed Ok -> Save
2211
2212 2000-08-18  Juergen Vigna  <jug@sad.it>
2213
2214         * src/insets/insettabular.C (getStatus): changed to return func_status.
2215
2216         * src/lyxfunc.C (getStatus): fixed TabularFeatures menu to always
2217         display toggle menu entries if they are.
2218
2219         * src/lyx_cb.C: #ifdef'ed out layout stuff which is in the
2220         new document layout now.
2221
2222         * src/lyxfunc.C: ditto
2223
2224         * src/lyx_gui_misc.C: ditto
2225
2226         * src/lyx_gui.C: ditto
2227
2228         * lib/ui/default.ui: removed paper and quotes layout as they are now
2229         all in the document layout tabbed folder.
2230
2231         * src/frontends/xforms/forms/form_document.fd: added Restore
2232         button and callbacks for all inputs for Allan's ButtonPolicy.
2233
2234         * src/frontends/xforms/FormDocument.C (ChoiceClassCB): added.
2235         (CheckChoiceClass): added missing params setting on class change.
2236         (UpdateLayoutDocument): added for updating the layout on params.
2237         (build): forgot to RETURN_ALWAYS input_doc_spacing.
2238         (FormDocument): Implemented Allan's ButtonPolicy with the
2239         PreferencesPolicy.
2240
2241 2000-08-17  Allan Rae  <rae@lyx.org>
2242
2243         * src/frontends/xforms/Dialogs.C (Dialogs): Make a temporary connection
2244         so we can at least see the credits again.
2245
2246         * src/frontends/xforms/FormPreferences.C: Used the appropriate button
2247         controller calls for the appropriate callbacks.  Note that since Ok
2248         calls apply followed by cancel, and apply isn't a valid input for the
2249         APPLIED state, the bc_ calls have to be made in the static callback not
2250         within each of the real callbacks.
2251
2252         * src/frontends/xforms/ButtonController.h (Ok): renamed from Okay()
2253         (setOk): renamed from setOkay()
2254
2255 2000-08-17  Juergen Vigna  <jug@sad.it>
2256
2257         * src/frontends/gnome/Menubar_pimpl.C (openByName): put this function
2258         in the implementation part.
2259         (composeUIInfo): don't show optional menu-items.
2260
2261         * src/lyxfunc.C (getStatus): use insets LyXText if the_locking_inset.
2262
2263         * src/insets/insettext.C (UpdateLocal): call to LyXView::showState()
2264
2265         * src/bufferview_funcs.C (CurrentState): fixed to show also the
2266         text-state when in a text-inset.
2267
2268         * src/frontends/kde/GUIRunTime_pimpl.C: include xforms for now.
2269
2270 2000-08-17  Marko Vendelin <markov@ioc.ee>
2271         * src/frontends/gnome/FormIndex.C
2272         * src/frontends/gnome/FormIndex.h
2273         * src/frontends/gnome/FormToc.C
2274         * src/frontends/gnome/FormToc.h
2275         * src/frontends/gnome/dialogs
2276         * src/frontends/gnome/diatoc_callbacks.c
2277         * src/frontends/gnome/diatoc_callbacks.h
2278         * src/frontends/gnome/diainsertindex_callbacks.h
2279         * src/frontends/gnome/diainsertindex_callbacks.c
2280         * src/frontends/gnome/diainsertindex_interface.c
2281         * src/frontends/gnome/diainsertindex_interface.h
2282         * src/frontends/gnome/diatoc_interface.h
2283         * src/frontends/gnome/diatoc_interface.c
2284         * src/frontends/gnome/Makefile.am: Table of Contents and 
2285         Insert Index dialogs implementation for Gnome frontend
2286
2287         * src/frontends/gnome/GUIRunTime_pimpl.C: fix some small bugs
2288
2289         * src/frontends/gnome/Menubar_pimpl.C: remove historical comments
2290
2291         * src/frontends/gnome/diainserturl_interface.c: make the dialog
2292         resizable
2293
2294 2000-08-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
2295
2296         * src/frontends/xforms/GUIRunTime_pimpl.C: constructor and
2297         destructor. Don't definde if you don't need it
2298         (processEvents): made static, non-blocking events processing for
2299         xforms.
2300         (runTime): static method. event loop for xforms
2301         * similar as above for kde and gnome.
2302         
2303         * src/frontends/GUIRunTime.C (GUIRunTime): new Pimpl() is wrong
2304         new Pimpl is correct
2305         (runTime): new method calss the real frontends runtime func.
2306
2307         * src/lyx_gui.C (runTime): change to use the GUIRunTime::runTime
2308
2309 2000-08-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
2310
2311         * src/lyx_gui.C (create_forms): fix the "No change" gettext missing
2312
2313 2000-08-16  Juergen Vigna  <jug@sad.it>
2314
2315         * src/lyx_gui.C (runTime): added GUII RunTime support.
2316
2317         * src/frontends/Makefile.am: 
2318         * src/frontends/GUIRunTime.[Ch]:
2319         * src/frontends/xforms/GUIRunTime_pimpl.[Ch]:
2320         * src/frontends/kde/GUIRunTime_pimpl.[Ch]:
2321         * src/frontends/gnome/GUIRunTime_pimpl.[Ch]: added GUII runtime support
2322
2323         * src/LyXAction.C (init): added dummy LFUN_INSERT_URL.
2324
2325         * src/frontends/Makefile.am (INCLUDES): don't set the FRONTENDS include
2326         as this is already set in ${FRONTEND_INCLUDE} if needed.
2327
2328         * configure.in (CPPFLAGS): setting the include dir for the frontend
2329         directory and don't set FRONTEND=xforms for now as this is executed
2330         always.
2331
2332 2000-08-16 John Levon (moz@compsoc.man.ac.uk)
2333  
2334         * src/frontends/kde/Makefile.am:
2335         * src/frontends/kde/FormUrl.C:
2336         * src/frontends/kde/FormUrl.h:
2337         * src/frontends/kde/formurldialog.h:
2338         * src/frontends/kde/formurldialog.C: Add KDE URL dialog
2339
2340 2000-08-15  Kayvan A. Sylvan <kayvan@sylvan.com>
2341
2342         * src/frontend/Makefile.am: Add gnome and kde to dist tar file.
2343
2344 2000-08-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
2345
2346         * src/BufferView_pimpl.C (workAreaKeyPress): enable the
2347         processKeySym
2348         
2349 2000-08-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
2350
2351         * src/WorkArea.C (work_area_handler): more work to get te
2352         FL_KEYBOARD to work with xforms 0.88 too, please test.
2353
2354         * src/BufferView_pimpl.C (workAreaKeyPress): add XForms 0.88 guard.
2355
2356 2000-08-15  Dekel Tsur  <dekel@math.tau.ac.il>
2357
2358         * src/frontends/ButtonPolicies.C: make gcc happy when compiling with
2359         -pedantic
2360
2361 2000-08-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
2362
2363         * src/Timeout.h: remove Qt::emit hack.
2364
2365         * several files: changes to allo doc++ compilation
2366         
2367         * src/lyxfunc.C (processKeySym): new method
2368         (processKeyEvent): comment out if FL_REVISION < 89
2369
2370         * src/WorkArea.C: change some debugging levels.
2371         (WorkArea): set wantkey to FL_KEY_ALL
2372         (work_area_handler): enable the FL_KEYBOARD clause, this enables
2373         clearer code and the use of compose with XForms 0.89. Change to
2374         use signals instead of calling methods in bufferview directly.
2375
2376         * src/Painter.C: change some debugging levels.
2377
2378         * src/LyXView.C: don't setup of use the KeyPressMask_raw_callback
2379         if FL_REVISION < 89
2380
2381         * src/BufferView_pimpl.C (Pimpl): Connect to the WorkArea signals.
2382         (workAreaKeyPress): new method
2383
2384 2000-08-14  Juergen Vigna  <jug@sad.it>
2385
2386         * src/frontends/kde/Dialogs.C (Dialogs): added missing dialogs.
2387
2388         * config/kde.m4: addes some features
2389
2390         * src/frontends/kde/Makefile.am (libkde_la_OBJADD): modified to 
2391         include missing xforms dialogs.
2392
2393         * src/Timeout.h: a hack to be able to compile with qt/kde.
2394
2395         * sigc++/.cvsignore: added acinclude.m4
2396
2397         * lib/.cvsignore: added listerros
2398
2399         * src/frontends/Makefile.am: modified for now to ALWAYS compile the
2400         xforms tree as objects are needed for other frontends.
2401
2402         * src/frontends/gnome/Makefile.am (libgnome_la_OBJADD): added for
2403         linking with not yet implemented xforms objects.
2404
2405         * src/frontends/gnome/Dialogs.C (Dialogs): added FormDocument.
2406
2407 2000-08-14  Baruch Even  <baruch.even@writeme.com>
2408
2409         * src/frontends/xforms/FormGraphics.h:
2410         * src/frontends/xforms/FormGraphics.C:
2411         * src/frontends/xforms/RadioButtonGroup.h:
2412         * src/frontends/xforms/RadioButtonGroup.C:
2413         * src/insets/insetgraphics.h:
2414         * src/insets/insetgraphics.C:
2415         * src/insets/insetgraphicsParams.h:
2416         * src/insets/insetgraphicsParams.C: Changed indentation to use tabs
2417         instead of spaces, and various other indentation issues to make the
2418         sources more consistent.
2419
2420 2000-08-14  Marko Vendelin <markov@ioc.ee>
2421
2422         * src/frontends/gnome/dialogs/diaprint.glade
2423         * src/frontends/gnome/FormPrint.C
2424         * src/frontends/gnome/FormPrint.h
2425         * src/frontends/gnome/diaprint_callbacks.c
2426         * src/frontends/gnome/diaprint_callbacks.h
2427         * src/frontends/gnome/diaprint_interface.c
2428         * src/frontends/gnome/diaprint_interface.h: Print dialog Gnome 
2429         implementation
2430         
2431         * src/frontends/gnome/dialogs/diainserturl.glade
2432         * src/frontends/gnome/FormUrl.C
2433         * src/frontends/gnome/FormUrl.h
2434         * src/frontends/gnome/diainserturl_callbacks.c
2435         * src/frontends/gnome/diainserturl_callbacks.h
2436         * src/frontends/gnome/diainserturl_interface.c
2437         * src/frontends/gnome/diainserturl_interface.h: Insert Url dialog
2438         Gnome implementation
2439
2440         * src/frontends/gnome/Dialogs.C
2441         * src/frontends/gnome/Makefile.am: added Print, Insert Url  and
2442         all other dialogs. Copy all unimplemented dialogs from Xforms
2443         frontend
2444         
2445         * src/frontends/gnome/support.c
2446         * src/frontends/gnome/support.h: support files generated by Glade
2447
2448         * autogen.sh
2449         * configure.in
2450         * config/gnome.m4: Gnome configuration scripts
2451
2452         * config/lyxinclude.m4: cleanup: frontend renamed from gtk to gnome in
2453         configure --help message
2454
2455         * src/lyx_gui.C: Gnome/Gtk releases control in LyXGUI::runTime()
2456         only if there are no events pendling in Gnome/Gtk. This enhances
2457         the performance of menus.
2458
2459
2460 2000-08-14  Allan Rae  <rae@lyx.org>
2461
2462         * lib/Makefile.am: listerrors cleaning
2463
2464         * lib/listerrors: removed -- generated file
2465         * acinclude.m4: ditto
2466         * sigc++/acinclude.m4: ditto
2467
2468         * src/frontends/xforms/forms/form_citation.fd:
2469         * src/frontends/xforms/FormCitation.C (setSize): Made the form a more
2470         manageable size.
2471
2472         * src/frontends/xforms/forms/makefile: I renamed the `install` target
2473         `updatesrc` and now we have a `test` target that does what `updatesrc`
2474         used to do. I didn't like having an install target that wasn't related
2475         to the dist.
2476
2477         * src/frontends/xforms/Form*.[hC]: Removed the free() member functions
2478         on all except FormGraphics.  This may yet happen. Followed by a major
2479         cleanup including using FL_TRANSIENT for most of the dialogs.  More
2480         changes to come when the ButtonController below is introduced.
2481
2482         * src/frontends/xforms/ButtonController.h: New file for managing up to
2483         four buttons on a dialog according to an externally defined policy.
2484         * src/frontends/xforms/Makefile.am: added above
2485
2486         * src/frontends/ButtonPolicies.[hC]: New files full of policies for Ok,
2487         Apply and Cancel/Close buttons and everything in between and beyond.
2488         * src/frontends/Makefile.am: added above.
2489
2490         * src/frontends/xforms/forms/form_preferences.fd:
2491         * src/frontends/xforms/FormPreferences.[hC]: Uses the ButtonController
2492         and removed variable 'status' as a result. Fixed the set_minsize thing.
2493         Use the new screen-font-update after checking screen fonts were changed
2494         Added a "Restore" button to restore the original lyxrc values while
2495         editing.  This restores everything not just the last input changed.
2496         That's still a tricky one.  As is the "LyX: this shouldn't happen..."
2497
2498         * src/LyXAction.C: screen-font-update added for updating buffers after
2499         screen font settings have been changed.
2500         * src/commandtags.h: ditto
2501         * src/lyxfunc.C: ditto
2502
2503         * forms/lyx.fd: removed screen fonts dialog.
2504         * src/lyx_gui.C: ditto
2505         * src/menus.[Ch]: ditto
2506         * src/lyx.[Ch]: ditto
2507         * src/lyx_cb.C: ditto + code from here moved to make
2508         screen-font-update. And people wonder why progress on GUII is
2509         slow.  Look at how scattered this stuff was!  It takes forever
2510         just find it all. 
2511
2512         * forms/fdfix.sh: Fixup the spacing after commas.
2513         * forms/makefile: Remove date from generated files. Fewer clashes now.
2514         * forms/bullet_forms.C.patch: included someones handwritten changes
2515
2516         * src/lyxrc.[Ch]: Added a commented out system_lyxrc.  Will use it RSN
2517         once I've discovered why LyXRC was made noncopyable.
2518         * src/lyx_main.C: ditto
2519
2520 2000-08-14  Angus Leeming  <a.leeming@ic.ac.uk>
2521
2522         * src/frontends/xforms/forms/fdfix.sh:
2523         * src/frontends/xforms/forms/fdfixh.sed:
2524         * src/frontends/xforms/forms/fdfixc.sed: New file from Angus
2525         * src/frontends/xforms/Form*.[hC]:
2526         * src/frontends/xforms/form_*.[hC]: Massive rewrite of the generation
2527         scripts to rename all the "FL_OBJECT * form_xxxx" to "form" and to
2528         provide a destructor for the struct FD_form_xxxx. Another version of
2529         the set_[max|min]size workaround and a few other cleanups. Actually,
2530         Angus' patch from 20000809.
2531
2532 2000-08-13      Baruch Even  <baruch.even@writeme.com>
2533
2534         * src/insets/insetgraphics.C (Clone): Added several fields that needed
2535         copying.
2536
2537 2000-08-11  Juergen Vigna  <jug@sad.it>
2538
2539         * src/insets/insetgraphics.C (InsetGraphics): changing init
2540         order because of warnings.
2541
2542         * src/frontends/xforms/forms/makefile: adding patching .C with
2543         .C.patch files.
2544
2545         * src/frontends/xforms/forms/fdfix.sh: changing patching file .c
2546         from .C.patch to .c.patch
2547
2548         * src/frontends/xforms/FormCommand.C (FormCommand): changing init
2549         order because of warning.
2550
2551         * src/frontends/xforms/Dialogs.C (Dialogs): added FormDialog
2552
2553         * src/frontends/Liason.C (setMinibuffer): new helper function
2554
2555         * src/frontends/Dialogs.h (class Dialogs): inserting showLayoutDocument
2556
2557         * src/lyxfunc.C (Dispatch): calling new Document-Layout
2558
2559         * lib/ui/default.ui: commented out PaperLayout entry
2560
2561         * src/frontends/xforms/form_document.[Ch]: new added files 
2562         
2563         * src/frontends/xforms/FormDocument.[Ch]: ditto
2564
2565         * src/frontends/xforms/forms/form_document.fd: ditto
2566
2567         * src/frontends/xforms/forms/form_document.C.patch: ditto
2568
2569 2000-08-10  Juergen Vigna  <jug@sad.it>
2570
2571         * src/insets/insetgraphics.C (draw): fixed access to 0 cacheHandle.
2572         (InsetGraphics): initialized cacheHandle to 0.
2573         (draw): changed call to updateInset to status=CHANGE_IN_DRAW.
2574
2575 2000-08-10      Baruch Even  <baruch.even@writeme.com>
2576
2577         * src/graphics/GraphicsCache.h:
2578         * src/graphics/GraphicsCache.C (addFile, removeFile): Changed to work 
2579         correctly as a cache.
2580
2581         * src/graphics/GraphicsCacheItem.h:
2582         * src/graphics/GraphicsCacheItem.C: Changed to the pimpl idiom to allow
2583         reference counting.
2584
2585         * src/graphics/GraphicsCacheItem_pimpl.h:
2586         * src/graphics/GraphicsCacheItem_pimpl.C: The implementation of the
2587         GraphicsCacheItem.
2588
2589         * src/insets/insetgraphics.h: 
2590         * src/insets/insetgraphics.C: Changed from using a signal notification
2591         to polling when image is not loaded.
2592
2593 2000-08-10  Allan Rae  <rae@lyx.org>
2594
2595         * development/tools/makeLyXsigc.sh: Updated to allow Signal3.  Note
2596         that there are two functions that have to been taken out of line by
2597         hand and aren't taken care of in the script.  (Just a reminder note)
2598
2599         * sigc++/macros/*.h.m4: Updated as above.
2600
2601 2000-08-09  Juergen Vigna  <jug@sad.it>
2602
2603         * src/insets/insettext.C (draw): small fix for clearing rectangle.
2604
2605         * src/insets/insettabular.C: make drawing of single cell smarter.
2606
2607 2000-08-09  Marko Vendelin <markov@ioc.ee>
2608         * src/frontends/gnome/Menubar_pimpl.C
2609         * src/frontends/gnome/Menubar_pimpl.h: Gnome frontend Menubar
2610         implementation: new files
2611         
2612         * src/frontends/gnome/mainapp.C
2613         * src/frontends/gnome/mainapp.h: Gnome main window (temporary
2614         implementation)
2615
2616         * src/main.C: create Gnome main window
2617
2618         * src/frontends/xforms/Menubar_pimpl.h
2619         * src/frontends/Menubar.C
2620         * src/frontends/Menubar.h: added method Menubar::update that calls 
2621         Menubar_pimpl::update and xforms/Menubar_pimpl::update (empty one)
2622
2623         * src/LyXView.C: calls Menubar::update to update the state
2624         of menu items
2625
2626         * src/frontends/gnome/Makefile.am: added new files
2627         
2628         * src/frontends/Makefile.am: added frontend compiler options
2629
2630 2000-08-08  Juergen Vigna  <jug@sad.it>
2631
2632         * src/lyx_cb.C (AutoSave): autosave for unnamed files enabled!
2633
2634         * src/bufferlist.C (close): 
2635         * src/bufferlist.C (QwriteAll): remove Autosave-files for Unnamed()
2636         documents if exiting without saving.
2637
2638         * src/buffer.C (save): use removeAutosaveFile()
2639
2640         * src/support/filetools.C (removeAutosaveFile): new function.
2641
2642         * src/lyx_cb.C (MenuWrite): returns a bool now.
2643         (MenuWriteAs): check if file could really be saved and revert to the
2644         old name if not.
2645         (MenuWriteAs): removing old autosavefile if existant.
2646
2647         * src/frontends/xforms/FormRef.h: puting FD_form_ref declaration
2648         before Goto toggle declaration, because of compiler warning.
2649
2650         * src/frontends/xforms/FormRef.C: forgot include of <algorithm>
2651
2652         * src/lyxfunc.C (MenuNew): small fix.
2653
2654         * src/lyxrc.C (output): added RC_NEW_ASK_FILENAME tag.
2655
2656         * src/bufferlist.C (newFile):
2657         * src/lyxfunc.C (MenuNew): use the new_ask_filename tag from lyxrc.
2658
2659         * src/lyxrc.C: added new_ask_filename tag
2660
2661 2000-08-07  Angus Leeming  <a.leeming@ic.ac.uk>
2662
2663         * src/lyx.fd: removed code pertaining to form_ref
2664         * src/lyx.[Ch]: ditto
2665         * src/lyx_cb.C: ditto
2666         * src/lyx_gui.C: ditto
2667         * src/lyx_gui_misc.C: ditto
2668
2669         * src/BufferView_pimpl.C (restorePosition): update buffer only
2670         if file has changed
2671
2672         * src/commandtags.h (LFUN_REFTOGGLE): removed
2673         (LFUN_INSERT_REF): renamed LFUN_REF_INSERT
2674         (LFUN_REFGOTO): renamed LFUN_REF_GOTO
2675         (LFUN_REFBACK): renamed LFUN_REF_BACK
2676
2677         * src/LyXAction.C: removed code pertaining to LFUN_REFTOGGLE
2678         * src/menus.C: ditto
2679         * src/lyxfunc.C (Dispatch): ditto.
2680         InsertRef dialog is now GUI-independent.
2681
2682         * src/texrow.C: added using std::endl;
2683
2684         * src/insets/insetref.[Ch]: strip out large amounts of code.
2685         The inset is now a container and this functionality is now
2686         managed by a new FormRef dialog
2687         
2688         * src/frontends/Dialogs.h (showRef, createRef): new signals
2689
2690         * src/frontends/xforms/FormIndex.[Ch],
2691         src/frontends/xforms/FormUrl.[Ch]: workaround an xforms bug
2692         when setting dialog's min/max size
2693         * src/frontends/xforms/FormIndex.[Ch]: ditto
2694
2695         * src/frontends/xforms/FormRef.[Ch],
2696         src/frontends/xforms/forms/form_ref.fd: new xforms
2697         implementation of an InsetRef dialog
2698
2699         * src/graphics/GraphicsCache.[Ch]: small changes to compile with
2700         DEC cxx
2701
2702         * src/graphics/XPM_Renderer.C (isImageFormatOK):
2703         ios::nocreate is not part of the standard. Removed.
2704
2705 2000-08-07  Baruch Even  <baruch.even@writeme.com>
2706
2707         * src/graphics/Renderer.h:
2708         * src/graphics/Renderer.C: Added base class for rendering of different
2709         image formats into Pixmaps.
2710
2711         * src/graphics/XPM_Renderer.h:
2712         * src/graphics/XPM_Renderer.C: Taken from GraphicsCacheItem and placed
2713         in a different class.
2714
2715         * src/graphics/GraphicsCacheItem.C: factored out the rendering in order to
2716         easily add support for other formats.
2717
2718         * src/insets/figinset.C: plugged a leak of an X resource.
2719
2720 2000-08-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
2721
2722         * src/CutAndPaste.[Ch]: make all metods static. 
2723
2724         * development/Code_rules/Rules: more work, added section on
2725         Exceptions, and a References section.
2726
2727         * a lot of header files: work to make doc++ able to generate the
2728         source documentation, some workarounds of doc++ problems. Doc++ is
2729         now able to generate the documentation.
2730
2731 2000-08-07  Juergen Vigna  <jug@sad.it>
2732
2733         * src/insets/insettabular.C (recomputeTextInsets): removed function
2734
2735         * src/tabular.C (SetWidthOfMulticolCell): 
2736         (SetWidthOfCell): 
2737         (calculate_width_of_column_NMC): fixed return value so that it really
2738         only returns true if the column-width has changed (there where
2739         problems with muliticolumn-cells in this column).
2740
2741 2000-08-04  Juergen Vigna  <jug@sad.it>
2742
2743         * src/BufferView_pimpl.C (checkInsetHit): changed so that it looks
2744         also on the scrollstatus of the inset.
2745         (workAreaMotionNotify): ditto.
2746
2747         * src/texrow.C (getIdFromRow): fixed compile problem on egcs-1.1.2.
2748
2749 2000-08-01  Juergen Vigna  <jug@sad.it>
2750
2751         * src/insets/insettabular.C (resetPos): scroll tabular automatically.
2752
2753         * src/commandtags.h: 
2754         * src/LyXAction.C (init): 
2755         * src/insets/inset.C (LocalDispatch): added support for
2756         LFUN_SCROLL_INSET.
2757
2758         * src/insets/inset.C (scroll): new functions.
2759
2760         * src/insets/insettext.C (removeNewlines): new function.
2761         (SetAutoBreakRows): removes forced newlines in the text of the
2762         paragraph if autoBreakRows is set to false.
2763
2764         * src/tabular.C (Latex): generates a parbox around the cell contents
2765         if needed.
2766
2767         * src/frontends/xforms/FormTabular.C (local_update): removed
2768         the radio_useparbox button.
2769
2770         * src/tabular.C (UseParbox): new function
2771
2772 2000-08-06  Baruch Even  <baruch.even@writeme.com>
2773
2774         * src/graphics/GraphicsCache.h:
2775         * src/graphics/GraphicsCache.C:
2776         * src/graphics/GraphicsCacheItem.h:
2777         * src/graphics/GraphicsCacheItem.C: Made them to actually do something
2778         usefull.
2779
2780         * src/insets/insetgraphics.h:
2781         * src/insets/insetgraphics.C: Added the use of the GraphicsCache and the
2782         drawing of the inline image.
2783
2784         * src/buffer.C: Fixed a bug where a loaded InsetGraphics would be loaded 
2785         into the wrong position.
2786
2787         * src/lyxfunc.C: When adding an InsetGraphics the edit dialog is now
2788         launched.
2789
2790 2000-08-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
2791
2792         * src/support/translator.h: move all typedefs to public section
2793
2794         * src/support/filetools.C (MakeLatexName): return string const
2795         (QuoteName): ditto
2796         (TmpFileName): ditto
2797         (FileOpenSearch): ditto
2798         (FileSearch): ditto
2799         (LibFileSearch): ditto
2800         (i18nLibFileSearch): ditto
2801         (GetEnv): ditto
2802         (GetEnvPath): ditto
2803         (CreateTmpDir): ditto
2804         (CreateBufferTmpDir): ditto
2805         (CreateLyXTmpDir): ditto
2806         (GetCWD): ditto
2807         (OnlyPath): ditto
2808         (MakeAbsPath): ditto
2809         (AddName): ditto
2810         (OnlyFilename): ditto
2811         (ExpandPath): ditto
2812         (NormalizePath): ditto
2813         (CleanupPath): ditto
2814         (GetFileContents): ditto
2815         (ReplaceEnvironmentPath): ditto
2816         (MakeRelPath): ditto
2817         (AddPath): ditto
2818         (ChangeExtension): ditto
2819         (MakeDisplayPath): ditto
2820         (do_popen): return cmdret const
2821         (findtexfile): return string const
2822
2823         * src/support/DebugStream.h: add some /// to please doc++
2824
2825         * src/frontends/DialogBase.h (endif): add some /// to please doc++
2826
2827         * src/texrow.C (same_rownumber): functor to use with find_if
2828         (getIdFromRow): rewritten to use find_if and to not update the
2829         positions. return true if row is found
2830         (increasePos): new method, use to update positions
2831
2832         * src/lyxlex_pimpl.h: make LyXLex::Pimpl noncopyable
2833
2834         * src/lyxlex_pimpl.C (verifyTable): new method
2835         (pushTable): use it
2836         (Pimpl): use it
2837         (GetString): return string const
2838         (pushTable): rewrite to use std::stack
2839         (popTable): ditto
2840         (setFile): better check
2841         (setStream): ditto
2842
2843         * src/lyxlex.h: make LyXLex noncopyable
2844
2845         * src/lyxlex.C (text): return char const * const
2846         (GetString): return string const
2847         (getLongString): return string const
2848
2849         * src/lyx_gui_misc.C (askForText): return pair<...> const
2850
2851         * src/lastfiles.[Ch] (operator): return string const
2852
2853         * src/buffer.C (parseSingleLyXformat2Token): pass string to
2854         istringstream not char const *. 
2855         move token.end() out of loop.
2856         (readFile): move initializaton of token
2857
2858         * src/BufferView2.C (insertErrors): run texrow.increasePos if
2859         getIdFromRow is successful.
2860
2861         * lib/bind/emacs.bind: don't include menus bind
2862
2863         * development/Code_rules/Rules: the beginnings of making this
2864         better and covering more of the unwritten rules that we have.
2865
2866         * development/Code_rules/Recommendations: a couple of wording
2867         changes. 
2868
2869 2000-08-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2870
2871         * src/support/strerror.c: remove C++ comment.
2872
2873 2000-08-04  Angus Leeming  <a.leeming@ic.ac.uk>
2874
2875         * src/commandtags.h: LFUN_INDEX_CREATE_LAST reverts to
2876         LFUN_INDEX_INSERT_LAST
2877
2878         * src/texrow.C (getIdFromRow): changed from const_iterator to
2879         iterator, allowing code to compile with DEC cxx
2880
2881         * src/frontends/xforms/FormCitation.[Ch]: made vector<string>
2882         stores part of the class, as suggested by Allan. Will allow
2883         multiple LyXViews.
2884         (apply): test to apply uses InsetCommandParams operator!=
2885
2886         * src/frontends/xforms/FormIndex.C: moved set_minsize into build
2887         (apply): test to apply uses InsetCommandParams operator!=
2888
2889         * src/frontends/xforms/FormToc.[Ch]: made vector<string>
2890         stores part of the class.
2891         (update): removed limits on min/max size.
2892
2893         * src/frontends/xforms/FormUrl.C: moved set_minsize into build
2894         (apply): test to apply uses InsetCommandParams operator!=
2895
2896         * src/insets/insetcommand.[Ch] InsetCommand made noncopyable
2897         (Read, Write, scanCommand, getCommand): moved functionality
2898         into InsetCommandParams.
2899         (Clone): removed
2900         (getScreenLabel): made pure virtual
2901         new InsetCommandParams operators== and !=
2902         
2903         * src/insets/insetbib.[Ch] (InsetBibKey, InsetBibtex): new
2904         c-tors based on InsetCommandParams. Removed others.
2905         * src/insets/insetinclude.[Ch]: ditto
2906         * src/insets/insetlabel.[Ch]: ditto
2907         * src/insets/insetparent.[Ch]: ditto
2908         * src/insets/insetref.[Ch]: ditto. Also moved gotoLabel into .C
2909         
2910         * src/buffer.C (parseSingleLyXformat2Token, readInset): all
2911         insets derived from InsetCommand created using similar c-tors
2912         based on InsetCommandParams
2913         * src/lyx_cb.C (MenuInsertLabel, RefSelectCB): ditto
2914         * src/menus.C (ShowRefsMenu): ditto
2915         * src/paragraph.C (Clone): ditto
2916         * src/text2.C (SetCounter): ditto
2917         * src/lyxfunc.C (Dispatch) ditto
2918         Also recreated old InsetIndex behaviour exactly. Can now
2919         index-insert at the start of a paragraph and index-insert-last
2920         without launching the pop-up.
2921
2922 2000-08-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
2923
2924         * lib/lyxrc.example: mark te pdf options as non functional.
2925
2926         * src/support/lstrings.C (strToInt): move initalization of tmpstr
2927         (isStrDbl): move tmpstr.end() out of loop.
2928         (strToDbl): move intialization of tmpstr
2929         (lowercase): return string const and move tmp.end() out of loop.
2930         (uppercase): return string const and move tmp.edn() out of loop.
2931         (prefixIs): add assertion
2932         (suffixIs): ditto
2933         (contains): ditto
2934         (contains): ditto
2935         (contains): ditto
2936         (containsOnly): ditto
2937         (containsOnly): ditto
2938         (containsOnly): ditto
2939         (countChar): make last arg char not char const
2940         (token): return string const
2941         (subst): return string const, move tmp.end() out of loop.
2942         (subst): return string const, add assertion
2943         (strip): return string const
2944         (frontStrip): return string const, add assertion
2945         (frontStrip): return string const
2946         (split): ditto
2947         (split): ditto
2948         (rsplit): ditto
2949
2950         * src/support/lstrings.C: add inclde "LAssert.h"
2951         (isStrInt): move tmpstr.end() out of loop.
2952
2953         * src/frontends/xforms/Toolbar_pimpl.C (activate): move
2954         toollist.end() out of loop.
2955         (deactivate): move toollist.end() out of loop.
2956         (update): move toollist.end() out of loop.
2957         (updateLayoutList): move tc.end() out of loop.
2958         (add): move toollist.end() out of loop.
2959
2960         * src/frontends/xforms/Menubar_pimpl.C (create_submenu): move
2961         md.end() out of loop.
2962
2963         * src/texrow.h: make getIdFromRow const, make rowlist mutable.
2964
2965         * src/texrow.C (getIdFromRow): make const, more rowlist.end() out
2966         of loop.
2967
2968         * src/paragraph.C (Erase): move fontlist.end() out of loop.
2969         (Erase): move insetlist.end() out of loop.
2970
2971         * src/lyx_sendfax_main.C: make show_logfile static and to take a
2972         ref to const string as first arg. Move initialization of some
2973         variables, whitespace changes.
2974
2975         * src/kbmap.C (defkey): move table.end() out of loop.
2976         (kb_keymap): move table.end() out of loop.
2977         (findbinding): move table.end() out of loop.
2978
2979         * src/MenuBackend.C (hasMenu): move end() out of loop.
2980         (getMenu): move end() out of loop.
2981         (getMenu): move menulist_.end() out of loop.
2982
2983         * src/Makefile.am (#lyx_LDFLAGS): interesting option commented out.
2984
2985         * src/LaTeXFeatures.C (getIncludedFiles): move IncludedFiles.end()
2986         out of loop.
2987
2988         * src/LColor.C (getFromGUIName): move infotab.end() out of loop.
2989         (getFromLyXName): move infotab.end() out of loop.
2990
2991         * config/lyxinclude.m4 (CXXFLAGS): change for 2.96 add
2992         -fvtable-thunks -ffunction-sections -fdata-sections 
2993
2994 2000-08-03  Dekel Tsur  <dekel@math.tau.ac.il>
2995
2996         * src/frontends/xforms/RadioButtonGroup.h: Changed <forms.h> to
2997         FORMS_H_LOCATION.
2998
2999 2000-08-03  Angus Leeming  <a.leeming@ic.ac.uk>
3000
3001         * src/frontends/xforms/FormCommand.[Ch] (d-tor): removed
3002
3003         * src/frontends/xforms/FormCitation.[Ch],
3004         src/frontends/xforms/FormIndex.[Ch],
3005         src/frontends/xforms/FormToc.[Ch],
3006         src/frontends/xforms/FormUrl.[Ch] (d-tors): call free()
3007
3008 2000-08-03  Angus Leeming  <a.leeming@ic.ac.uk>
3009
3010         * src/commandtags.h: renamed, created some flags for citation
3011         and index
3012
3013         * src/lyx_gui_misc.C: stripped out old FD_index_form code
3014
3015         * src/lyxfunc.C (dispatch): use signals to insert index entry
3016         
3017         * src/frontends/Dialogs.h: new signal createIndex
3018
3019         * src/frontends/xforms/FormCommand.[Ch],
3020         src/frontends/xforms/FormCitation.[Ch],
3021         src/frontends/xforms/FormToc.[Ch],
3022         src/frontends/xforms/FormUrl.[Ch]: clean up and comment better
3023
3024         * src/insets/insetindex.[Ch]: GUI-independent
3025
3026         * src/frontends/xforms/FormIndex.[Ch],
3027         * src/frontends/xforms/forms/form_index.fd: xforms implementation
3028         of the Index dialog
3029         
3030 2000-08-01  Dekel Tsur  <dekel@math.tau.ac.il>
3031
3032         * src/mathed/math_write.C (MathDecorationInset::Write) Put \protect 
3033         before \overbrace, \underbrace, \overleftarrow, or \overrightarrow.
3034         
3035 2000-08-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
3036
3037         * src/insets/insetref.C (Latex): rewrite so that there is now
3038         question that a initialization is requested.
3039
3040         * src/insets/insetcommand.h: reenable the hide signal
3041
3042 2000-08-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3043
3044         * src/frontends/xforms/Menubar_pimpl.C (create_submenu): try to
3045         fix handling of shortcuts (many bugs :)
3046         (add_lastfiles): ditto.
3047
3048         * lib/ui/default.ui: fix a few shortcuts.
3049
3050 2000-07-27  Kayvan A. Sylvan  <kayvan@sylvan.com>
3051
3052         * Makefile.am: Fix ``rpmdist'' target to return the exit
3053         status of the ``rpm'' command, instead of the last command in
3054         the chain (the ``rm lyx.xpm'' command, which always returns
3055         success).
3056
3057 2000-08-02  Allan Rae  <rae@lyx.org>
3058
3059         * src/frontends/xforms/FormUrl.C (FormUrl): Initialise ALL variables.
3060         * src/frontends/xforms/FormCitation.C (FormCitation): ditto
3061         * src/frontends/xforms/FormToc.C (FormToc): ditto
3062
3063         * src/frontends/xforms/Makefile.am: A few forgotten files
3064
3065         * src/frontends/xforms/FormCommand.C (showInset): The rest of the
3066         Signals-not-copyable-problem Lars' started commenting out.
3067
3068         * src/frontends/xforms/form_toc.[hC]: new files.  TOC crashes lyx.
3069
3070 2000-08-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
3071
3072         * src/insets/insetcommand.h: Signals is not copyable so anoter
3073         scheme for automatic hiding of forms must be used.
3074
3075         * src/frontends/xforms/FormCitation.h: don't inerit from
3076         noncopyable, FormCommand already does that.
3077         * src/frontends/xforms/FormToc.h: ditto
3078         * src/frontends/xforms/FormUrl.h: ditto
3079
3080         * src/frontends/xforms/FormCitation.C: add include <algorithm>
3081
3082 2000-08-01  Angus Leeming  <a.leeming@ic.ac.uk>
3083
3084         * src/insets/insetcommand.h (hide): new SigC::Signal0
3085         (d-tor) new virtual destructor emits hide signal
3086
3087         * src/insets/insetcite.[Ch] (hide, d-tor, EditMessage): removed
3088         * src/insets/inseturl.[Ch]  (hide, d-tor): ditto
3089
3090         * src/insets/insettoc.[Ch]: one inset now deals with TOC, LOA,
3091         LOF and LOT. Inset is now GUI-independent
3092
3093         * src/insets/insetloa.[Ch]: redundant
3094         * src/insets/insetlof.[Ch]: ditto
3095         * src/insets/insetlot.[Ch]: ditto
3096         
3097         * src/frontends/xforms/forms/form_url.fd: tweaked!
3098         * src/frontends/xforms/forms/form_citation.fd: ditto
3099
3100         * src/frontends/xforms/FormCommand.[Ch]: new base class to those
3101         dialogs dealing with InsetCommand insets
3102
3103         * src/frontends/xforms/FormCitation.[Ch]: now makes use of
3104         FormCommand base class
3105         * src/frontends/xforms/FormUrl.[Ch]: ditto
3106
3107         * src/frontends/xforms/forms/form_toc.fd: Xforms implementation
3108         of the TOC dialog
3109         * src/frontends/xforms/FormToc.[Ch]: ditto
3110
3111         * src/frontends/Dialogs.h (showCitation, showTOC, showUrl): all
3112         passed a generic InsetCommand pointer
3113         * src/frontends/xforms/Dialogs.C (c-tor): create instance of FormToc
3114
3115         * src/lyxfunc.C (Dispatch) : modified to accomodate new FormToc class
3116         and modified InsetTOC class
3117         * src/buffer.C: ditto
3118
3119         * forms/lyx.fd: strip out old FD_form_toc code
3120         * src/lyx_gui_misc.C: ditto
3121         * src/lyx_gui.C: ditto
3122         * src/lyx_cb.C: ditto
3123         * src/lyx.[Ch]: ditto
3124  
3125 2000-08-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
3126
3127         * src/support/utility.hpp: tr -d '\r'
3128
3129 2000-08-01  Juergen Vigna  <jug@sad.it>
3130
3131         * src/insets/insettabular.h: removed initFeatures() as it's not needed.
3132
3133         * src/commandtags.h: 
3134         * src/LyXAction.C (init): added LFUN_LAYOUT_TABULAR and
3135         LFUN_TABULAR_FEATURES.
3136
3137         * src/lyxfunc.C (getStatus): implemented LFUN_TABULAR_FEATURES and
3138         LFUN_LAYOUT_TABULAR.
3139
3140         * src/insets/insettabular.C (getStatus): implemented helper function.
3141
3142         * lib/ui/default.ui: implemented edit-table-menu and layout-tabular.
3143
3144 2000-07-31  Juergen Vigna  <jug@sad.it>
3145
3146         * src/text.C (draw): fixed screen update problem for text-insets.
3147
3148         * src/text2.C (SetParagrpah): call an update of the inset-owner when
3149         something changed probably this has to be added in various other
3150         functions too.
3151
3152         * src/insets/insettext.C (cy): fixed to give back the right cursor.y().
3153
3154 2000-07-31  Baruch Even <baruch.even@writeme.com>
3155
3156         * src/frontends/xforms/RadioButtonGroup.C: Changed to use home-brew
3157         templates to satisfy compaq cxx.
3158
3159
3160 2000-07-31  Lars Gullik Bjønnes  <larsbj@lyx.org>
3161
3162         * src/support/translator.h (equal_1st_in_pair::operator()): take
3163         const ref pair_type as arg. 
3164         (equal_2nd_in_pair::operator()): ditto
3165         (Translator::~Translator): remove empty d-tor.
3166
3167         * src/graphics/GraphicsCache.C: move include config.h to top, also
3168         put initialization of GraphicsCache::singleton here.
3169         (~GraphicsCache): move here
3170         (addFile): take const ref as arg
3171         (removeFile): ditto
3172
3173         * src/lyxlex_pimpl.C (setFile): comment in old behaviour
3174
3175         * src/BufferView2.C (insertLyXFile): change te with/without header
3176         check slightly.
3177
3178 2000-07-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3179
3180         * src/frontends/xforms/FormGraphics.C (apply): add some
3181         static_cast. Not very nice, but required by compaq cxx.
3182
3183         * src/frontends/xforms/RadioButtonGroup.h: include header
3184         <utility> instead of <pair.h>
3185
3186         * src/insets/insetgraphicsParams.C: add using directive. 
3187         (readResize): change return type to void. 
3188         (readOrigin): ditto.
3189
3190         * src/lyxfunc.C (getStatus): add missing break for build-program
3191         function; add test for Literate for export functions.
3192
3193         * lib/ui/default.ui: fix Insert->TOC->TOC; comment out invalid
3194         entries in Options menu.
3195
3196 2000-07-31  Baruch Even <baruch.even@writeme.com>
3197
3198         * src/frontends/xforms/Toolbar_pimpl.C (toolbarItem::operator=):
3199         protect against auto-allocation; release icon when needed.
3200
3201 2000-07-31  Matej Cepl <CeplM@seznam.cz>
3202
3203         * lib/kbd/czech.kmap: new file. standard Czech keyboard as found
3204         on usual typewriter.
3205
3206         * lib/kbd/czech-prg.kmap: simpler czech kmap (which was the
3207         earlier czech.kmap), useful only for programming.
3208
3209 2000-07-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3210
3211         * src/frontends/xforms/FormCitation.h: fix conditioning around
3212         #pragma. 
3213
3214 2000-07-31  Juergen Vigna  <jug@sad.it>
3215
3216         * src/frontends/xforms/FormTabular.C (local_update): changed
3217         radio_linebreaks to radio_useparbox and added radio_useminipage.
3218
3219         * src/tabular.C: made support for using minipages/parboxes.
3220
3221         * src/bufferlist.C (QwriteAll): small fix for asking for save.
3222
3223         * src/insets/insetgraphics.C (draw): just draw the inset so that the
3224         cursor is visible.
3225         (descent): so the cursor is in the middle.
3226         (width): bit smaller box.
3227
3228         * src/insets/insetgraphics.h: added display() function.
3229
3230 2000-07-31  Baruch Even <baruch.even@writeme.com>
3231
3232         * src/frontends/Dialogs.h: Added showGraphics signals.
3233
3234         * src/frontends/xforms/forms/form_graphics.fd: Added file, the
3235         xforms form definition of the graphics dialog.
3236
3237         * src/frontends/xforms/FormGraphics.h: 
3238         * src/frontends/xforms/FormGraphics.C: Added files, the
3239         GUIndependent code of InsetGraphics
3240
3241         * src/insets/insetgraphics.h: 
3242         * src/insets/insetgraphics.C: Major writing to make it work.
3243
3244         * src/insets/insetgraphicsParams.h:     
3245         * src/insets/insetgraphicsParams.C: Added files, parameter passing
3246         struct between InsetGraphics and GUI.
3247
3248         * src/LaTeXFeatures.h:
3249         * src/LaTeXFeatures.C (c-tor, require, getPackages): Enabled
3250         support for graphicx package. 
3251
3252         * src/buffer.C (parseSingleLyXformat2Token): Fixed read support
3253         for the graphics inset.
3254
3255         * src/support/translator.h: Added file, used in
3256         InsetGraphicsParams. this is a template to translate between two
3257         types.
3258
3259         * src/frontends/xforms/RadioButtonGroup.h: 
3260         * src/frontends/xforms/RadioButtonGroup.C: Added files, Comprise a
3261         way to easily control a radio button group.
3262
3263 2000-07-28  Juergen Vigna  <jug@sad.it>
3264
3265         * src/insets/insettabular.C (LocalDispatch): 
3266         (TabularFeatures): added support for lyx-functions of tabular features.
3267         (cellstart): refixed this function after someone wrongly changed it.
3268
3269         * src/commandtags.h:
3270         * src/LyXAction.C (init): added support for tabular-features
3271
3272 2000-07-28  Allan Rae  <rae@lyx.org>
3273
3274         * src/frontends/xforms/FormPreferences.C (build): Setup input return
3275         checking.  NOTE: It seems that pressing ESC to cancel the dialog also
3276         triggers the callback for input checking. As a result we sometimes get
3277         "LyX: This shouldn't happen..." printed to cerr.
3278         (input): Started using status variable since I only free() on 
3279         destruction.  Some input checking for paths and font sizes.
3280
3281         * src/frontends/xforms/FormPreferences.h: Use status to control 
3282         activation of Ok and Apply
3283
3284         * src/frontends/xforms/forms/form_preferences.fd: Setup input return
3285         callback.  Also resized to stop segfaults with 0.88.  The problem is
3286         that xforms-0.88 requires the folder to be wide enough to fit all the
3287         tabs.  If it isn't it causes all sorts of problems.
3288
3289         * src/frontends/xforms/FormCopyright.[hC]: forward declare FD_form...
3290
3291         * src/frontends/xforms/forms/README: Reflect reality.
3292
3293         * src/frontends/xforms/forms/fdfix.sh: Clean up comments
3294         * src/frontends/xforms/forms/makefile: ditto.
3295
3296         * src/commandtags.h: Get access to new Preferences dialog
3297         * src/LyXAction.C: ditto
3298         * src/lyxfunc.C: ditto
3299         * lib/ui/default.ui: ditto
3300
3301 2000-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3302
3303         * src/frontends/xforms/forms/makefile (.c.C): change call to fdfix.sh.
3304
3305         * src/frontends/xforms/Makefile.am (libxforms_la_SOURCES): add a
3306         few files.
3307
3308         * src/frontends/xforms/form_url.[Ch]: added.
3309
3310 2000-07-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
3311
3312         * src/insets/insetbib.h: fixed bug in previous commit
3313
3314         * src/frontends/xforms/FormUrl.h: ditto
3315
3316         * src/frontends/xforms/FormPrint.h: ditto
3317
3318         * src/frontends/xforms/FormPreferences.h: ditto
3319
3320         * src/frontends/xforms/FormCopyright.h: ditto
3321
3322         * src/frontends/xforms/FormCitation.C: ditto
3323
3324         * src/frontends/Dialogs.h (class Dialogs): use noncopyable, remove
3325         private copyconstructor and private default contructor
3326
3327         * src/support/Makefile.am: add utility.hpp
3328
3329         * src/support/utility.hpp: new file from boost
3330
3331         * src/insets/insetbib.h: set owner in clone
3332
3333         * src/frontends/xforms/FormCitation.C: added missing include
3334         algorithm
3335
3336         * src/insets/form_url.[Ch]: removed
3337
3338 2000-07-26  Kayvan A. Sylvan <kayvan@sylvan.com>
3339
3340         * development/lyx.spec.in
3341         * Makefile.am: Fix buglet for LyX RPM generation resulting from
3342         file/directory re-organization.
3343
3344 2000-07-26  Angus Leeming  <a.leeming@ic.ac.uk>
3345
3346         * src/insets/insetcommand.[Ch]: moved the string data and
3347         associated manipulation methods into a new stand-alone class
3348         InsetCommandParams. This class has two additional methods
3349         getAsString() and setFromString() allowing the contents to be
3350         moved around as a single string.
3351         (addContents) method removed.
3352         (setContents) method no longer virtual.
3353
3354         * src/buffer.C (readInset): made use of new InsetCitation,
3355         InsetUrl constructors based on InsetCommandParams.
3356
3357         * src/commandtags.h: add LFUN_INSERT_URL
3358
3359         * src/lyxfunc.C (Dispatch): changed to accomadate GUI-
3360         independent InsetUrl and use InsetCommandParams to extract
3361         string info and create new Insets.
3362
3363         * src/frontends/Dialogs.h: add signals showUrl, createUrl.
3364
3365         * src/frontends/xforms/FormCitation.C (apply): uses 
3366         InsetCommandParams.
3367
3368         * src/frontends/xforms/form_url.C
3369         * src/frontends/xforms/form_url.h
3370         * src/frontends/xforms/FormUrl.h
3371         * src/frontends/xforms/FormUrl.C
3372         * src/frontends/xforms/forms/form_url.fd: new files
3373
3374         * src/insets/insetcite.[Ch]: removed unused constructors.
3375
3376         * src/insets/insetinclude.[Ch]: no longer store filename
3377
3378         * src/insets/inseturl.[Ch]: GUI-independent.
3379
3380 2000-07-26  Juergen Vigna  <jug@sad.it>
3381         * renamed frontend from gtk to gnome as it is that what is realized
3382         and did the necessary changes in the files.
3383         
3384 2000-07-26  Marko Vendelin <markov@ioc.ee>
3385         * autogen.sh
3386         * configure.in: cleaning up gnome configuration scripts
3387
3388 2000-07-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3389
3390         * src/frontends/xforms/Menubar_pimpl.C (set): fix the disappearing
3391         shortcuts syndrom by redrawing them explicitely (a better solution
3392         would be appreciated).
3393
3394         * src/lyxfunc.C (getStatus): fix crash when functions are disabled.
3395
3396         * src/frontends/xforms/Menubar_pimpl.C (set): fix the shortcut of
3397         the button.
3398
3399         * src/lyx_cb.C (MenuExport): change html export to do the right
3400         thing depending of the document type (instead of having
3401         html-linuxdoc and html-docbook).
3402         * src/lyxfunc.C (getStatus): update for html
3403         * lib/ui/default.ui: simplify due to the above change.
3404         * src/menus.C (ShowFileMenu): update too (in case we need it).
3405
3406         * src/MenuBackend.C (read): if a menu is defined twice, add the
3407         new entries to the exiting one.
3408
3409 2000-07-26  Juergen Vigna  <jug@sad.it>
3410
3411         * src/buffer.h: added functions setUnnamed(bool) and isUnnamed().
3412
3413         * src/lyx_cb.C (MenuWriteAs): Changed to react right for unnamed docs
3414         and return a bool if it did actual save the file.
3415         (AutoSave): don't autosave a unnamed doc.
3416
3417         * src/bufferlist.C (close) (QwriteAll) (emergencyWriteAll):
3418         check if this is an UNNAMED new file and react to it.
3419         (newFile): set buffer to unnamed and change to not mark a new
3420         buffer dirty if I didn't do anything with it.
3421
3422         * src/lyxfunc.C (MenuNew): Changed to not ask for filename on new.
3423
3424 2000-07-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
3425
3426         * src/frontends/Menubar.h: make "struct Pimpl;" public + the
3427         friend as per Angus's patch posted to lyx-devel.
3428
3429         * src/ext_l10n.h: updated
3430
3431         * src/frontends/xforms/Toolbar_pimpl.C (updateLayoutList): run
3432         gettext on the style string right before inserting them into the
3433         combox. 
3434
3435         * autogen.sh: add code to extract style strings form layout files,
3436         not good enough yet. 
3437
3438         * src/frontends/gtk/.cvsignore: add MAKEFILE
3439
3440         * src/MenuBackend.C (read): run the label strings through gettext
3441         before storing them in the containers.
3442
3443         * src/ext_l10n.h: new file 
3444
3445         * autogen.sh : generate the ext_l10n.h file here
3446
3447 2000-07-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3448
3449         * src/lyxrc.C (read): do not use LyXLex::lex() to parse set_color
3450         arguments. 
3451
3452         * lib/ui/default.ui: fix a couple of typos.
3453
3454         * config/gnome/gtk.m4: added (and added to the list of files in 
3455         autogen.sh).
3456
3457         * src/insets/insetinclude.C (unique_id): fix when we are using
3458         lyxstring instead of basic_string<>. 
3459         * src/insets/insettext.C (LocalDispatch): ditto.
3460         * src/support/filetools.C: ditto.
3461
3462         * lib/configure.m4: create the ui/ directory if necessary.
3463
3464         * src/LyXView.[Ch] (updateToolbar): new method.
3465
3466         * src/BufferView_pimpl.C (buffer): update the toolbar when
3467         opening/closing buffer.
3468
3469 2000-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3470
3471         * src/LyXAction.C (getActionName): enhance to return also the name
3472         and options of pseudo-actions.
3473         (init): New lyxfunc LFUN_MATH_PANEL=="math-panel".
3474
3475         * lib/ui/default.ui: use OptItem in the vc submenu (intented just
3476         as an example of what is possible). Used in File->Build too (more
3477         useful) and in the import/export menus (to mimick the complicated
3478         handling of linuxdoc and friends). Try to update all the entries.
3479
3480         * src/frontends/xforms/Menubar_pimpl.C (create_submenu): handle
3481         optional entries.
3482
3483         * src/MenuBackend.C (read): Parse the new OptItem tag.
3484
3485         * src/MenuBackend.h: Add a new optional_ data member (used if the
3486         entry should be omitted when the lyxfunc is disabled).
3487
3488         * src/frontends/xforms/Menubar_pimpl.C (string_width): new
3489         function, used as a shortcut.
3490         (create_submenu): align correctly the shortcuts on the widest
3491         entry.
3492         
3493         * src/MenuBackend.h: MenuItem.label() only returns the label of
3494         the menu without shortcut; new method shortcut().
3495         
3496 2000-07-14  Marko Vendelin <markov@ioc.ee>
3497
3498         * src/frontends/gtk/Dialogs.C:
3499         * src/frontends/gtk/FormCopyright.C:
3500         * src/frontends/gtk/FormCopyright.h:
3501         * src/frontends/gtk/Makefile.am: added these source-files for the
3502         Gtk/Gnome support of the Copyright-Dialog.
3503
3504         * src/main.C: added Gnome::Main initialization if using
3505         Gtk/Gnome frontend-GUI.
3506
3507         * src/lyx_gui.C: added Gnome event loop if using Gtk/Gnome
3508         frontend-GUI.
3509         * config/gnome/aclocal-include.m4
3510         * config/gnome/compiler-flags.m4
3511         * config/gnome/curses.m4
3512         * config/gnome/gnome--.m4
3513         * config/gnome/gnome-bonobo-check.m4
3514         * config/gnome/gnome-common.m4
3515         * config/gnome/gnome-fileutils.m4
3516         * config/gnome/gnome-ghttp-check.m4
3517         * config/gnome/gnome-gnorba-check.m4
3518         * config/gnome/gnome-guile-checks.m4
3519         * config/gnome/gnome-libgtop-check.m4
3520         * config/gnome/gnome-objc-checks.m4
3521         * config/gnome/gnome-orbit-check.m4
3522         * config/gnome/gnome-print-check.m4
3523         * config/gnome/gnome-pthread-check.m4
3524         * config/gnome/gnome-support.m4
3525         * config/gnome/gnome-undelfs.m4
3526         * config/gnome/gnome-vfs.m4
3527         * config/gnome/gnome-x-checks.m4
3528         * config/gnome/gnome-xml-check.m4
3529         * config/gnome/gnome.m4
3530         * config/gnome/gperf-check.m4
3531         * config/gnome/gtk--.m4
3532         * config/gnome/linger.m4
3533         * config/gnome/need-declaration.m4: added configuration scripts
3534         for Gtk/Gnome frontend-GUI
3535
3536         * configure.in: added support for the --with-frontend=gtk option
3537
3538         * autogen.sh: added config/gnome/* to list of config-files
3539
3540         * acconfig.h: added define for GTKGUI-support
3541
3542         * config/lyxinclude.m4: added --with-frontend[=value] option value
3543         for Gtk/Gnome frontend-GUI support.
3544
3545 2000-07-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
3546
3547         * src/support/lstrings.C (prefixIs): rewrite so that gcc bastring
3548         can be used.
3549         (suffixIs): ditto
3550
3551         * src/paragraph.C (GetChar): remove non-const version
3552
3553         * src/lyxlex_pimpl.C (compare_tags): rewritten to suit cvs gcc 2.96
3554         (search_kw): use it.
3555
3556         * src/lyx_main.C (init): if "preferences" exist, read that instead
3557         of "lyxrc".
3558         (ReadRcFile): return bool if the file could be read ok.
3559         (ReadUIFile): add a check to see if lex file is set ok.
3560
3561         * src/lyx_cb.C (InsertAsciiFile): rewrite a bit so that gcc
3562         bastring can be used instead of lyxstring (still uses the old code
3563         if std::string is good enough or if lyxstring is used.)
3564
3565         * src/encoding.C: make the arrays static, move ininle functions
3566         here
3567         * src/encoding.h: from here.
3568
3569         * src/buffer.C: have last_isnet_read as a file scope variable for now.
3570         (parseSingleLyXformat2Token): move inset parsing to separate method
3571         (readInset): new private method
3572
3573         * src/Variables.h: remove virtual from get().
3574
3575         * src/ToolbarDefaults.C: include lyxparagraph.h temporary to get
3576         access to NEW_INSETS and NEW_TABULAR
3577
3578         * src/MenuBackend.h: remove superfluous forward declaration of
3579         MenuItem. Add documentations tags "///", remove empty MenuItem
3580         destructor, remove private default contructor.
3581
3582         * src/MenuBackend.C (MenuItem): remove unneeded copy contructor 
3583         (add): return *this
3584         (read): more string mlabel and mname to where they are used
3585         (read): remove unused variables mlabel and mname
3586         (defaults): unconditional clear, make menusetup take advantage of
3587         add returning Menu &.
3588
3589         * src/LyXView.h: define NEW_MENUBAR as default
3590
3591         * src/LyXAction.C: include lyxparagraph.h temporary to get access
3592         to NEW_INSETS and NEW_TABULAR.
3593         (init): commetn out some funcs that is obsolete when NEW_INSETS is
3594         defined. Change some of the "xxxx-inset-insert" functions names to
3595         "xxxx-insert".
3596
3597         * several files: more enahncements to NEW_INSETS and the resulting
3598         LyXParagraph code.
3599         
3600         * lib/lyxrc.example (\date_insert_format): move to misc section 
3601
3602         * config/lyxinclude.m4 (LYX_CXX_STL_STRING): allow to use the gcc
3603         bastring and use AC_CACHE_CHECK. 
3604         (LYX_CXX_GOOD_STD_STRING): new check. Checks if the std::string of
3605         the system have the newest methods. uses AC_CACHE_CHECK 
3606         (LYX_CXX_MUTABLE): use AC_CACHE_CHECK 
3607         (LYX_CXX_PARTIAL): use AC_CACHE_CHECK 
3608         (LYX_CXX_NAMESPACES): use AC_CACHE_CHECK
3609
3610         * configure.in: add LYX_CXX_GOOD_STD_STRING
3611
3612         * acinclude.m4: recreated
3613
3614 2000-07-24  Amir Karger
3615
3616         * README: add Hebrew, Arabic kmaps
3617         * ANNOUNCE: typo
3618
3619 2000-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3620
3621         * src/buffer.C (writeFileAscii): Define actcell as an int instead
3622         of int*.
3623
3624 2000-07-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3625
3626         * Lot of files: add pragma interface/implementation.
3627         
3628         * src/lyx_main.C (ReadUFile): new method. Read the UI file.
3629
3630         * lib/ui/default.ui: new file (ans new directory). Contains the
3631         default menu and toolbar.
3632
3633         * src/lyxrc.[Ch]: new variable ui_file. Move toolbardefaults to
3634         global space. Toolbars are now read (as menus) in ui files. 
3635
3636         * src/debug.C: change Debug::TOOLBAR to Debug::GUI.
3637
3638         * src/lyxfunc.C (getStatus): do not exit immediately if a command
3639         is disabled because the document is read-only. We want to have the
3640         toggle state of the function anyway.
3641         (getStatus): add code for LFUN_VC* functions (mimicking what is
3642         done in old-style menus)
3643         
3644         * src/lyxfunc.C (Dispatch): news functions LFUN_SWITCHBUFFER,
3645         LFUN_HELP_CREDITS, LFUN_HELP_VERSION, LFUN_HELP_OPEN.
3646
3647         * src/LyXView.[Ch]: add code for the NEW_MENUBAR define.
3648         * src/BufferView_pimpl.C: ditto. 
3649         * src/lyxfunc.C: ditto.         
3650
3651         * src/LyXView.h: add a define NEW_MENUBAR (commented out by
3652         default). This replaces old-style menus by new ones.
3653         
3654         * src/MenuBackend.[Ch]: new classes MenuBackend, Menu and
3655         MenuItem. Contain the data structure of a menu.
3656
3657         * src/insets/insettext.C: use LyXView::setLayout instead of
3658         accessing directly the toolbar combox.
3659         * src/lyxfunc.C (Dispatch): ditto.
3660
3661         * src/LyXView.C (setLayout): new method, which just calls
3662         Toolbar::setLayout(). 
3663         (updateLayoutChoice): move part of this method in Toolbar.
3664
3665         * src/toolbar.[Ch]: removed.
3666         
3667         * src/frontend/xforms/Toolbar_pimpl.[Ch]: new files. The xforms
3668         implementation the toolbar. 
3669
3670         * src/frontend/Toolbar.[Ch]: new files. The abstract interface of
3671         the toolbar. It might make sense to merge it with ToolbarDefaults
3672         later. 
3673         (setLayout): new function. 
3674         (updateLayoutList): ditto.
3675         (openLayoutList): ditto.
3676         
3677         * src/frontend/xforms/Toolbar_pimpl.[Ch]: new files. Contain the
3678         xforms implementation of the toolbar.
3679         (get_toolbar_func): comment out, since I do not
3680         know what it is good for. 
3681         
3682         * src/ToolbarDefaults.h: Add the ItemType enum.
3683
3684         * src/support/StrPool.[Ch]: new class. Acts as a reference holder
3685         for a list of allocated C strings. Used in Menubar xforms
3686         implementation to avoid memory leaks.
3687
3688         * src/support/lstrings.[Ch] (uppercase): new version taking and
3689         returning a char.
3690         (lowercase): ditto.
3691
3692         * lib/bind/xemacs.bind: remove bogus binding for lyx-quit.
3693         * lib/bind/emacs.bind: ditto.
3694
3695 2000-07-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
3696
3697         * src/toolbar.h: include commandtags.h instead of lyxfunc.h,
3698         forward decl of LyXView.
3699
3700         * src/toolbar.C (toolbarItem): moved from toolbar.h
3701         (toolbarItem::clean): ditto
3702         (toolbarItem::~toolbarItem): ditto
3703         (toolbarItem::operator): ditto
3704
3705         * src/text2.C (SetLayout): commetn out USE_OLD_SETUP_LAYOUT stuff
3706
3707         * src/paragraph.h: control the NEW_TABULAR define from here
3708
3709         * src/buffer.C: remove define USE_PARSE_FUNCTION, change
3710         USE_TABULAR_INSETS to NEW_TABULAR
3711
3712         * src/ToolbarDefaults.C: add include "lyxlex.h"
3713
3714         * files using the old table/tabular: use NEW_TABULAR to control
3715         compilation of old tabular stuff. 
3716
3717         * src/paragraph.C (SimpleTeXOnePar): NEW_INSETS: move some #ifdef
3718         to correct place.
3719
3720         * src/buffer.C (parseSingleLyXformat2Token): NEW_INSETS: fix the
3721         planemet in reading of old style floats, fix the \end_deeper
3722         problem when reading old style floats. 
3723
3724 2000-07-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
3725
3726         * src/paragraph.C (writeFile): NEW_INSETS: move a misplaced #endif
3727
3728 2000-07-20  Serge Winitzki <winitzki@erebus.phys.cwru.edu>
3729
3730         * lib/bind/sciword.bind: updated.
3731
3732 2000-07-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
3733
3734         * src/paragraph.C (writeFile): NEW_INSETS: possible fix to the
3735         layout write problem
3736
3737 2000-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3738
3739         * src/Makefile.am (INCLUDES): remove image directory from include
3740         path. 
3741
3742         * src/bullet_forms.C (create_form_form_bullet): small cleanup.
3743         * src/bullet_forms_cb.C (BulletPanelCB): ditto.
3744
3745         * src/LyXView.C (create_form_form_main): read the application icon
3746         from the disk.
3747
3748         * lib/images/*.xpm: change the icons to use transparent color for
3749         background. 
3750
3751         * src/toolbar.C (update): change the color of the button when it
3752         is toggled on.
3753
3754 2000-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3755
3756         * src/lyxfunc.C (Dispatch): use LyXView::ShowState instead of
3757         setting explicitely the minibuffer.
3758         * src/BufferView_pimpl.C (workAreaButtonRelease): ditto.
3759
3760         * src/LyXView.C (showState): new function. Shows font information
3761         in minibuffer and update toolbar state.
3762         (LyXView): call Toolbar::update after creating the
3763         view. 
3764
3765         * src/toolbar.C: change toollist to be a vector instead of a
3766         linked list.
3767         (BubbleTimerCB): get help string directly from the callback
3768         argument of the corresponding icon (which is the action) 
3769         (set): remove unnecessary ugliness.
3770         (update): new function. update the icons (depressed, disabled)
3771         depending of the status of the corresponding action.
3772         
3773         * src/toolbar.h: remove help in toolbarItem
3774
3775 2000-07-19  Dekel Tsur  <dekel@math.tau.ac.il>
3776
3777         * src/Painter.C (text): Added code for using symbol glyphs from
3778         iso10646 fonts. Currently diabled.
3779
3780         * src/encoding.C: Added new encodings: iso8859_3,iso8859_9 and
3781         symbol_encoding.
3782
3783         * src/language.C (initL): Fixed encodings for esperanto,lsorbian,
3784         magyar,turkish and usorbian.
3785
3786         * src/paragraph.C (isMultiLingual): Made more efficient.
3787
3788         * src/mathed/formula.C (LocalDispatch): Fixed behavior of greek
3789         keyboard.
3790
3791         * src/mathed/math_symbols.C (math_insert_greek): Changed to use
3792         LocalDispatch(..,LFUN_SELFINSERT,..) instead of math_insert_symbol().
3793         Also changed the prototype to "bool math_insert_greek(char)".
3794    
3795 2000-07-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
3796
3797         * lots of files: apply the NEW_INSETS on all code that will not be
3798         needed when we move to use the new insets. Enable the define in
3799         lyxparagrah.h to try it.
3800         
3801         * src/insets/insettabular.C (cellstart): change to be a static
3802         inline function
3803         (InsetTabular): initialize buffer in the initializer list.
3804
3805 2000-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
3806
3807         * src/frontends/xforms/FormPrint.[Ch] : moved #include
3808         form_print.h out of the header file. Replaced with forward
3809         declarations of the relevant struct.
3810
3811         * src/frontends/xforms/FormPreferences.[Ch] : ditto for
3812         form_preferences.h.
3813
3814         * src/commandtags.h: do not include "debug.h" which does not
3815         belong there. #include it in some other places because of this
3816         change. 
3817
3818 2000-07-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3819
3820         * src/insets/insetcaption.C: add a couple "using" directives.
3821
3822         * src/toolbar.C (add): get the help text directly from lyxaction.
3823         (getPixmap): nuked.
3824         (setPixmap): new function. Loads from disk and sets a pixmap on a
3825         botton; the name of the pixmap file is derived from the command
3826         name. 
3827
3828         * src/toolbar.h: remove members isBitmap and pixmap from
3829         toobarItem struct. 
3830
3831         * lib/images/*.xbm *_bw.xpm: remove (not used any more).
3832         * lib/images/: move many files from images/banner.xpm.
3833
3834         * src/lyx_gui.C (create_forms): read banner pixmap from file.
3835
3836         * src/lyx_gui.C (create_forms): remove TWO_COLORS_ICONS support.
3837         * src/toolbar.C: ditto.
3838         * configure.in: ditto.
3839         * INSTALL: document. 
3840
3841         * src/spellchecker.C (ShowSpellChecker): use CancelCloseCB when
3842         the spellchecker popup is closed from the WM.
3843
3844 2000-07-19  Juergen Vigna  <jug@sad.it>
3845
3846         * src/insets/insetfloat.C (Write): small fix because we use the
3847         insetname for the type now!
3848
3849 2000-07-18  Angus Leeming  <a.leeming@ic.ac.uk>
3850
3851         * src/frontends/xforms/forms/form_citation.fd: object sizes are
3852         now set here
3853
3854         * src/frontends/Dialogs.h: removed hideCitation signal
3855
3856         * src/insets/insetcite.h: added hide signal
3857
3858         * src/insets/insetcite.C (~InsetCitation): emits new signal
3859         (getScreenLabel): "intelligent" label should now fit on the screen!
3860
3861         * src/frontends/xforms/FormCitation.[Ch] (hideInset): removed
3862
3863         * src/frontends/xforms/FormCitation.C (showInset): connects
3864         hide() to the inset's hide signal
3865         (show): modified to use fl_set_object_position rather than
3866         fl_set_object_geometry wherever possible
3867         
3868 2000-07-18  Lars Gullik Bjønnes  <larsbj@lyx.org>
3869
3870         * src/insets/lyxinset.h: add caption code
3871
3872         * src/insets/insetfloat.C (type): new method
3873
3874         * src/insets/insetcaption.C (Write): new method
3875         (Read): new method
3876         (LyxCode): new method
3877
3878         * src/text2.C (SetCounter): revert Jürgens code, but use his idea
3879         to get it right together with using the FloatList.
3880
3881         * src/commandtags.h: add LFUN_INSET_CAPTION
3882         * src/lyxfunc.C (Dispatch): handle it
3883
3884         * src/buffer.C (parseSingleLyXformat2Token): add code to read a
3885         caption inset.
3886
3887         * src/Variables.[Ch]: make expand take a const reference, remove
3888         the destructor, some whitespace changes.
3889
3890         * src/LyXAction.C (init): add caption-inset-insert
3891
3892         * src/FloatList.C (FloatList): update the default floats a bit.
3893
3894 2000-07-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3895
3896         * src/Variables.[Ch]: new files. Intended to be used for language
3897         specific strings (like \chaptername) and filename substitution in
3898         commands. 
3899
3900         * src/trans.C (AddDeadkey): replace keyword "all" with "native" in
3901         kmap files.
3902         * lib/kbd/american.kmap: update
3903
3904         * src/trans_mgr.C (normalkey): do not test allowAccent anymore.
3905
3906         * src/bufferparams.[Ch]: remove member allowAccents.
3907
3908         * src/menus.C (ShowOptionsMenu): remove the LaTeX entry.
3909
3910         * src/LaTeXLog.C: use the log_form.h header.
3911         * src/lyx_gui.C: ditto.
3912         * src/lyx_gui_misc.C: ditto.
3913         * src/lyxvc.h: ditto.
3914
3915         * forms/log_form.fd: new file, created from latexoptions.fd. I
3916         kept the log popup and nuked the options form.
3917
3918         * src/{la,}texoptions.[Ch]: removed.
3919         * src/lyx_cb.C (LaTeXOptions): ditto
3920
3921         * src/lyx_gui.C (create_forms): do not handle the
3922         fd_latex_options form. 
3923
3924 2000-07-18  Juergen Vigna  <jug@sad.it>
3925
3926         * src/insets/insetfloat.C (InsetFloat): use setInsetName to set the
3927         name of the inset so that it can be requested outside (text2.C).
3928
3929         * src/text2.C (SetCounter): modified so it sees insetfloat for caption
3930         labels.
3931
3932 2000-07-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
3933
3934         * src/mathed/formula.h (ConvertFont): constify
3935
3936         * src/mathed/formula.C (Read): add warning if \end_inset is not
3937         found on expected place.
3938
3939         * src/insets/lyxinset.h (ConvertFont): consify
3940
3941         * src/insets/insetquotes.C (ConvertFont): constify
3942         * src/insets/insetquotes.h: ditto
3943
3944         * src/insets/insetinfo.h: add labelfont
3945
3946         * src/insets/insetinfo.C (InsetInfo): set the labelfont
3947         (ascent): use labelfont
3948         (descent): likewise
3949         (width): likewise
3950         (draw): likewise
3951         (Write): make .lyx file a bit nicer
3952
3953         * src/insets/insetfloat.C (Write): simplify somewhat...
3954         (Read): add warning if arg is not found
3955
3956         * src/insets/insetcollapsable.C: add using std::max
3957         (Read): move string token and add warning in arg is not found
3958         (draw): use std::max to get the right ty
3959         (getMaxWidth): simplify by using std::max
3960
3961         * src/insets/insetsection.h: new file
3962         * src/insets/insetsection.C: new file
3963         * src/insets/insetcaption.h: new file
3964         * src/insets/insetcaption.C: new file
3965
3966         * src/insets/inset.C (ConvertFont): constify signature
3967
3968         * src/insets/Makefile.am (libinsets_la_SOURCES): add
3969         insetcaption.[Ch] and insetsection.[Ch]
3970
3971         * src/layout.h: remove LABEL_FIRST_COUNTER from enum, change all
3972         uses to use LABEL_COUNTER_CHAPTER instead.
3973         * src/text2.C (SetCounter): here
3974
3975         * src/counters.h: new file
3976         * src/counters.C: new file
3977         * src/Sectioning.h: new file
3978         * src/Sectioning.C: new file
3979
3980         * src/Makefile.am (lyx_SOURCES): add Sectioning.[hC] and counters.[Ch]
3981
3982 2000-07-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3983
3984         * lib/Makefile.am (listerrors): build-listerrors is in ${srcdir},
3985         not always in "."!
3986
3987         * src/paragraph.[Ch] (SimpleTeXSpecialChars): fix the definition of
3988         the last argument.
3989
3990 2000-07-17  Juergen Vigna  <jug@sad.it>
3991
3992         * src/tabular.C (Validate): check if array-package is needed.
3993         (SetVAlignment): added support for vertical alignment.
3994         (SetLTFoot): better support for longtable header/footers
3995         (Latex): modified to support added features.
3996
3997         * src/LaTeXFeatures.[Ch]: added array-package.
3998
3999 2000-07-17  R. Lahaye  <lahaye@postech.ac.kr>
4000
4001         * src/lyx_gui.C (LyXGUI): make sure that the height is large
4002         enough. 
4003
4004 2000-07-17  Kayvan Sylvan <ksylvan@synopsys.com>
4005
4006         * configure.in: do not forget to put a space after -isystem.
4007
4008 2000-07-10  Dekel Tsur  <dekel@math.tau.ac.il>
4009
4010         * lib/kbd/arabic.kmap: a few fixes.
4011
4012 2000-07-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
4013
4014         * some whitespace chagnes to a number of files.
4015         
4016         * src/support/DebugStream.h: change to make it easier for
4017         doc++ to parse correctly.
4018         * src/support/lyxstring.h: ditto
4019
4020         * src/mathed/math_utils.C (compara): change to have only one
4021         operator()
4022         (MathedLookupBOP): change because of the above.
4023
4024         * src/mathed/math_delim.C (math_deco_compare): change to have only
4025         one operator()
4026         (search_deco): change becasue of the above.
4027
4028         * src/insets/insettabular.C (DrawCellSelection): use std::swap
4029         instead of manually coded one.
4030
4031         * src/insets/insetquotes.C (Read): read the \end_inset too
4032
4033         * src/insets/insetlatex.h: remove file
4034         * src/insets/insetlatex.C: remove file
4035         
4036         * src/insets/insetindex.[Ch] (InsetPrintIndex): remove default
4037         constructor 
4038         (InsetPrintIndex): remove destructor
4039
4040         * src/insets/insetinclude.h: remove default constructor
4041
4042         * src/insets/insetfloat.C: work to make it work better
4043
4044         * src/insets/inseterror.[Ch] (InsetError): remove default constructor
4045
4046         * src/insets/insetcite.h (InsetCitation): remove default constructor
4047
4048         * src/insets/insetbutton.[Ch] (InsetButton): remove default constructor
4049
4050         * src/text.C (GetColumnNearX): comment out some currently unused code.
4051
4052         * src/paragraph.C (writeFile): move some initializations closer to
4053         first use.
4054         (CutIntoMinibuffer): small change to use new matchIT operator
4055         (Erase): ditto
4056         (Erase): ditto
4057         (InsertChar): ditto
4058         (InsertInset): ditto
4059         (GetInset): ditto
4060         (GetInset): ditto
4061         (InsetIterator): ditto
4062         (Erase): small change to use new matchFT operator
4063         (InsertChar): ditto
4064         (GetFontSettings): ditto
4065         (HighestFontInRange): ditto
4066         (SetFont): ditto
4067
4068         * src/lyxparagraph.h: some chars changed to value_type
4069         (matchIT): because of some stronger checking (perhaps too strong)
4070         in SGI STL, the two operator() unified to one.
4071         (matchFT): ditto
4072
4073         * src/lyxfunc.C (Dispatch): code to insert InsetFloat improved
4074
4075         * src/buffer.C (parseSingleLyXformat2Token): static string to hold
4076         the last inset read added
4077         (parseSingleLyXformat2Token): some more (future) compability code added
4078         (parseSingleLyXformat2Token): warning about solitary \end_inset added
4079         (parseSingleLyXformat2Token): set last_inset_read
4080         (parseSingleLyXformat2Token): more code to read new "Float" correctly
4081         (parseSingleLyXformat2Token): don't double intializw string next_token
4082
4083         * src/TextCache.C (text_fits::operator()): add const's to the signature
4084         (has_buffer::operator()): ditto
4085
4086         * src/Floating.h: add some comments on the class
4087
4088         * src/FloatList.[Ch] (typeExist): new method
4089         (getType): ditto
4090
4091         * src/BackStack.h: added default constructor, wanted by Gcc.
4092
4093 2000-07-14  Juergen Vigna  <jug@sad.it>
4094
4095         * src/insets/insettext.C (clear): fixed for multiple paragraps/layouts.
4096
4097         * src/frontends/xforms/forms/form_tabular.fd: updated a bit.
4098
4099         * src/insets/insettabular.C (resizeLyXText): need this to be able to
4100         do a redraw when the window is resized!
4101         (LocalDispatch): small fix so LFUN_TAB works only with locked_inset.
4102
4103         * src/insets/insettext.C (resizeLyXText): added function to correctly
4104         being able to resize the LyXWindow.
4105
4106         * src/table.C (Read): fixed read on DOS-lyx-file (lf-lr)
4107
4108 2000-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
4109
4110         * src/frontends/Dialogs.h (hideCitation) : new signal to prevent
4111         crashes when closing dialog to a deleted inset.
4112
4113         * src/insets/insetcite.[Ch] (Edit) : the return of this former
4114         method! Now similar to other insets.
4115
4116 2000-07-13  Juergen Vigna  <jug@sad.it>
4117
4118         * src/text.C (GetVisibleRow): fixed clearing of rows with insets!
4119
4120         * lib/examples/Literate.lyx: small patch!
4121
4122         * src/insets/insetbib.C (Read): added this function because of wrong
4123         Write (without [begin|end]_inset).
4124
4125 2000-07-11  Juergen Vigna  <jug@sad.it>
4126
4127         * src/BufferView2.C (open_new_inset): changed to a bool returnvalue
4128         as the insertInset could not be good!
4129
4130         * src/screen.C (ToggleSelection): fixed toggle selection bug as
4131         the bool param should not be last.
4132
4133 2000-07-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4134
4135         * sigc++/configure.in: fix bug in threading-related code (Yes, I
4136         did submit that to Karl).
4137
4138         * configure.in: use -isystem instead of -I for X headers. This
4139         fixes a problem on solaris with a recent gcc; 
4140         put the front-end code after the X detection code;
4141         configure in sigc++ before lib/
4142
4143         * src/lyx_main.C (commandLineHelp): remove -display from command
4144         line help.
4145
4146 2000-07-09  Kayvan A. Sylvan  <kayvan@sylvan.com>
4147
4148         * lib/Makefile.am: added lib/build-listerrors to DIST tarfile.
4149         Also put in Makefile rules for building the ``listerrors''
4150         program for parsing errors from literate programs written in LyX.
4151
4152         * lib/build-listerrors: Added small shell script as part of compile
4153         process. This builds a working ``listerrors'' binary if noweb is
4154         installed and either 1) the VNC X server is installed on the machine,
4155         or 2) the user is compiling from within a GUI. The existence of a GUI
4156         is necessary to use the ``lyx --export'' feature for now. This
4157         hack can be removed once ``lyx --export'' no longer requires a GUI to
4158         function.
4159
4160 2000-07-09  Bernard Michael Hurley <bernardh@westherts.ac.uk>
4161
4162         * lib/examples/Literate.lyx, src/Literate.[Ch]: Error messages are
4163         now passed back correctly from gcc and placed "under" error
4164         buttons in a Literate LyX source.
4165
4166 2000-07-08  Dekel Tsur  <dekel@math.tau.ac.il>
4167
4168         * src/text.C (GetColumnNearX): Better behavior when a RTL
4169         paragraph is ended by LTR text.
4170
4171         * src/text2.C (SetCurrentFont,CursorLeftIntern,CursorRightIntern):
4172         Ditto
4173
4174 2000-07-08  Dekel Tsur  <dekel@math.tau.ac.il>
4175
4176         * src/WorkArea.C  (request_clipboard_cb): Set clipboard_read to
4177         true when clipboard is empty.
4178
4179 2000-07-08  Dekel Tsur  <dekel@math.tau.ac.il>
4180
4181         * text.C (Backspace): Prevent rebreaking of a row if it is the last
4182         row of the paragraph.
4183         (SetHeightOfRow): Call to PrepareToPrint with 7th argument = false 
4184         to prevent calculation of bidi tables
4185
4186 2000-07-07  Juergen Vigna  <jug@sad.it>
4187
4188         * src/screen.C (ToggleSelection): added y_offset and x_offset
4189         parameters.
4190
4191         * src/insets/insettext.C (InsetMotionNotify): fixed selection with
4192         mouse.
4193
4194         * src/text.C (GetVisibleRow): fixed selection drawing in insets.
4195
4196         * src/insets/insettext.C: fixed Layout-Display!
4197
4198 2000-07-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4199
4200         * configure.in: add check for strings.h header.
4201
4202         * src/spellchecker.C: include <strings.h> in order to have a
4203         definition for bzero().
4204
4205 2000-07-07  Juergen Vigna  <jug@sad.it>
4206
4207         * src/insets/insettext.C (draw): set the status of the bv->text to
4208         CHANGED_IN_DRAW if top_x changed and so a reinit is necessary.
4209
4210         * src/screen.C (DrawOneRow): 
4211         (DrawFromTo): redraw the actual row if something has changed in it
4212         while drawing.
4213
4214         * src/text.C (draw): call an update of the toplevel-inset if something
4215         has changed inside while drawing.
4216
4217         * src/lyxtext.h: added CHANGED_IN_DRAW status.
4218
4219 2000-07-06  Angus Leeming  <a.leeming@ic.ac.uk>
4220
4221         * src/insets/insetbib.[Ch] (callback) new method, moving callback
4222         processing inside class.
4223
4224         * src/insets/insetindex.[Ch] (callback) new method, moving callback
4225         processing inside class.
4226
4227         * src/insets/insetindex.h new struct Holder, consistent with other
4228         insets.
4229
4230         * src/insets/insetcite.[Ch] and elsewhere: stripped out xforms
4231         citation dialog from main code and placed it in src/frontends/xforms.
4232         Dialog launched through signals instead of callbacks
4233         
4234 2000-07-06  R. Lahaye  <lahaye@postech.ac.kr>
4235
4236         * lyx.man: update the options description.
4237
4238 2000-07-05  R. Lahaye  <lahaye@postech.ac.kr>
4239
4240         * src/lyx_gui.C src/lyx_main.C: improve the -geometry support,
4241         handle neg values, set min width to 590, add doc about -display  
4242
4243 2000-07-05  Juergen Vigna  <jug@sad.it>
4244
4245         * src/insets/lyxinset.h: changed Painter & in ascent(), descent()
4246         calls to BufferView *.
4247
4248         * src/insets/insettext.C (checkAndActivateInset): small fix non
4249         HIGHLY_EDITABLE insets should not be entered by cursor-move-over!
4250
4251         * src/insets/insetcommand.C (Read): Fixed as insets should read till
4252         their \end_inset token!
4253
4254 2000-07-04  edscott  <edscott@imp.mx>
4255
4256         * src/lyxrc.C, src/lyxrc.h, src/BufferView_pimpl.C,
4257         lib/lyxrc.example: added option \wheel_jump
4258
4259 2000-07-04   R. Lahaye  <lahaye@postech.ac.kr>
4260
4261         * src/lyx_gui.C src/lyx_main.C: add support for -geometry, and
4262         remove support for -width,-height,-xpos and -ypos.
4263
4264 2000-07-01  Dekel Tsur  <dekel@math.tau.ac.il>
4265
4266         * src/encoding.[Ch]: New files.
4267
4268         * src/painter.C (text(int,int,XChar2b const *,...)): New method.
4269         (text): Call to the underline() method only when needed.
4270
4271         * src/font.C (XTextWidth16,width(XChar2b const *,...)): New methods.
4272
4273         * src/buffer.C (makeLaTeXFile): Compute automatically the input
4274           encoding(s) for the document.
4275
4276         * src/bufferparams.C (BufferParams): Changed default value of
4277         inputenc to "auto".
4278
4279         * src/language.C (newLang): Removed.
4280         (items[]): Added encoding information for all defined languages.
4281
4282         * src/lyx_gui.C (create_forms): Added "auto" option to the input
4283         encoding choice button.
4284
4285         * src/lyxrc.h (font_norm_type): New member variable.
4286         (set_font_norm_type): New method.
4287
4288         * src/paragraph.C (TeXOnePar): Put "\inputencoding{}" between
4289         paragraphs with different encodings.  
4290
4291         * src/text.C (is_arabic, is_nikud, TransformChar): Moved to encoding.C
4292         (TransformChar): Changed to work correctly with Arabic points.
4293         (draw): Added support for drawing Arabic points.
4294         (draw): Removed code for drawing underbars (this is done by
4295         the Painter!)
4296
4297         * src/support/textutils.h (IsPrintableNonspace): New function.
4298
4299         * src/BufferView_pimpl.h: Added "using SigC::Object".
4300         * src/LyXView.h: ditto.
4301
4302         * src/insets/insetinclude.h (include_label): Changed to mutable.
4303
4304 2000-07-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
4305
4306         * src/mathed/math_iter.h: remove empty destructor
4307
4308         * src/mathed/math_cursor.h: remove empty destructor
4309
4310         * src/insets/lyxinset.h: add THEOREM_CODE
4311
4312         * src/insets/insettheorem.[Ch]: new files 
4313
4314         * src/insets/insetminipage.C: (InsertInset): remove
4315
4316         * src/insets/insetmarginal.C: inherit from InsetFootLike instead
4317         of InsetCollapsable
4318         (InsertInset): remove
4319
4320         * src/insets/insetlist.C: (InsertList): remove
4321
4322         * src/insets/insetfootlike.[Ch]: new files 
4323
4324         * src/insets/insetfoot.C: inherit from InsetFootLike instead of
4325         InsetCollapsable.
4326         (Write): remove
4327         (InsertInset): ditto
4328
4329         * src/insets/insetert.C: remove include Painter.h, reindent
4330         (InsertInset): move to header
4331
4332         * src/insets/insetcollapsable.h: remove explicit from default
4333         contructor, remove empty destructor, add InsertInset
4334
4335         * src/insets/insetcollapsable.C (InsertInset): new func
4336
4337         * src/insets/Makefile.am (libinsets_la_SOURCES): add new files
4338
4339         * src/vspace.h: add explicit to constructor
4340
4341         * src/paragraph.C (SimpleTeXSpecialChars): use \, instead of
4342         \textcompwordmark, please test this.
4343
4344         * src/lyxrc.C: set ascii_linelen to 65 by default
4345
4346         * src/lyxfunc.C (Dispatch): handle LFUN_INSET_THEOREM
4347
4348         * src/commandtags.h: add LFUN_INSET_THEOREM
4349
4350         * src/buffer.C (parseSingleLyXformat2Token): handle insettheorem
4351         (makeLinuxDocFile): remove _some_ of the nice logic
4352         (makeDocBookFile): ditto
4353
4354         * src/Painter.[Ch]: (~Painter): removed
4355
4356         * src/LyXAction.C (init): entry for insettheorem added
4357
4358         * src/LaTeX.C: get rid of the all_files array, and the TEX_FILES
4359         enum
4360         (deplog): code to detect files generated by LaTeX, needs testing
4361         (deptex): removed
4362
4363 2000-07-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
4364
4365         * src/FloatList.[Ch]: moved inlines out of line to FloatList.C
4366
4367 2000-07-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
4368
4369         * src/LaTeX.C (deplog): Add a check for files that are going to be
4370         created by the first latex run, part of the project to remove the
4371         all_files array.
4372
4373         * src/LaTeX.[Ch]: Patch from Baruch to add hebrew table of
4374         contents to the extension list.
4375
4376 2000-07-04  Juergen Vigna  <jug@sad.it>
4377
4378         * src/text.C (NextBreakPoint): added support for needFullRow()
4379
4380         * src/insets/lyxinset.h: added needFullRow()
4381
4382         * src/insets/insetcollapsable.C: redone now this uses a text-inset
4383         and isn't one.
4384
4385         * src/insets/insettext.C: lots of changes for update!
4386
4387 2000-07-03 Angus Leeming <a.leeming@ic.ac.uk>
4388
4389         * src/LaTeXFeatures.h: add a missing std:: qualifier.
4390
4391 2000-07-02 José Abílio Matos <jamatos@fep.up.pt>
4392
4393         *  src/insets/insetinclude.C (InsetInclude): fixed
4394         initialization of include_label.
4395         (unique_id): now returns a string.
4396
4397 2000-07-01 José Abílio Matos <jamatos@fep.up.pt>
4398
4399         * src/LaTeXFeatures.h: new member IncludedFiles, for
4400         a map of key, included file name.
4401
4402         * src/LaTeXFeatures.C (getIncludedFiles): returns a string
4403         with the included files for inclusion in SGML preamble,
4404         i. e., linuxdoc and docbook.
4405
4406         * src/buffer.h:
4407         * src/buffer.C (makeLinuxDocFile): takes two new arguments,
4408         nice (is the generated linuxdoc code to be exported?), that
4409         allows to remove column, and only_body that will be true for
4410         slave documents. Insets are allowed inside SGML font type.
4411         New handling of the SGML preamble for included files.
4412         (makeDocBookFile): the same for docbook.
4413
4414         * src/insets/insetinclude.h:
4415         * src/insets/insetinclude.C (Validate): keeps a list of included files.
4416         (Linuxdoc): 
4417         (DocBook): new export methods.
4418
4419         * src/lyx_cb.C: adjust to the new calling sequence for makeLinuxDocFile
4420         and makeDocBookFile.
4421
4422         * src/lyx_main.C (easyParse): accept linuxdoc and docbook as
4423         formats to export with command line argument -x.
4424
4425 2000-06-29  Juergen Vigna  <jug@sad.it>
4426
4427         * src/mathed/formula.C (LocalDispatch): changed only-cursor-movements
4428         to return DISPATCHED_NOUPDATE so that a it does not redraw the inset!
4429
4430         * src/text.C (GetVisibleRow): added 'bool cleared' parameter as the
4431         region could already been cleared by an inset!
4432
4433 2000-06-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
4434
4435         * src/BufferView_pimpl.h: remove member variables lyx_focus and
4436         work_area_focus
4437
4438         * src/BufferView_pimpl.C (Pimpl): delete init of work_area_focus
4439         and lyx_focus
4440         (cursorToggle): remove special handling of lyx focus.
4441
4442 2000-06-28  Juergen Vigna  <jug@sad.it>
4443
4444         * src/text.C (GetVisibleRow): fixed clearing of text if rowHeight >
4445         insetHeight.
4446
4447 2000-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4448
4449         * src/insets/insetindex.C (Edit): add a callback when popup is
4450         closed by the WM.
4451
4452         * src/insets/insettext.C (LocalDispatch): 
4453         * src/insets/insetmarginal.h: 
4454         * src/insets/insetlist.h: 
4455         * src/insets/insetfoot.h: 
4456         * src/insets/insetfloat.h: 
4457         * src/insets/insetert.h: add a missing std:: qualifier.
4458
4459 2000-06-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
4460
4461         * src/support/lyxsum.C (sum): '\0' teminate file read when using
4462         strstream. 
4463
4464         * src/insets/lyxinset.h: add FLOAT_CODE and MINIPAGE_CODE
4465
4466         * src/insets/insettext.C (Read): remove tmptok unused variable
4467         (LocalDispatch): add not working LFUN_PARAGRAPH_SPACING
4468         (InsertInset): change for new InsetInset code
4469
4470         * src/insets/insettext.h: add TEXT inline method
4471
4472         * src/insets/insettext.C: remove TEXT macro
4473
4474         * src/insets/insetmarginal.C (Write): new method
4475         (Latex): change output slightly
4476
4477         * src/insets/insetfoot.C (Write): new method
4478         (Latex): change output slightly (don't use endl when no need)
4479
4480         * src/insets/insetert.C (Write): new method
4481
4482         * src/insets/insetcollapsable.h: make button_length, button_top_y
4483         and button_bottm_y protected.
4484
4485         * src/insets/insetcollapsable.C (Write): simplify code by using
4486         tostr. Also do not output the float name, the children class
4487         should to that to get control over own arguments
4488
4489         * src/insets/insetfloat.[Ch] src/insets/insetlist.[Ch]
4490         src/insets/insetminipage.[Ch]:
4491         new files
4492
4493         * src/insets/Makefile.am (libinsets_la_SOURCES): add new files
4494         
4495         * src/lyxfunc.C (Dispatch): cases for new insets/commands
4496
4497         * src/Makefile.am (lyx_SOURCES): add the new files
4498
4499         * src/LyXAction.C (init): add LFUN_INSET_MARGINAL,
4500         LFUN_INSET_MINIPAGE, LFUN_INSET_FLOAT, LFUN_INSET_LIST
4501         * src/commandtags.h: ditto
4502         
4503         * src/LaTeXFeatures.h: add a std::set of used floattypes
4504
4505         * src/LaTeXFeatures.C (getPackages): add basic support for float.sty
4506
4507         * src/FloatList.[Ch] src/Floating.h: new files
4508
4509         * src/CutAndPaste.C (SwitchLayoutsBetweenClasses): change call to
4510         InsertInset. 
4511         * src/lyx_cb.C (TableApplyCB): ditto
4512         * src/text.C: ditto
4513         * src/text2.C: ditto
4514         * src/buffer.C (SimpleLinuxDocOnePar): ditto
4515         (parseSingleLyXformat2Token): ditto + add code for
4516         backwards compability for old float styles + add code for new insets
4517         
4518         * src/lyxparagraph.[Ch] (InsertChar(size_type, char, LyXFont)): new
4519         method
4520         (InsertInset(size_type, Inset *, LyXFont)): new method
4521         (InsetChar(size_type, char)): changed to use the other InsetChar
4522         with a LyXFont(ALL_INHERIT).
4523         (InsetInset(size_type, Inset*)): changed to use InsetChar to
4524         insert the META_INSET.
4525         
4526         * sigc++/thread.cc (Privete<int>::operator int&): move definition
4527         out of line. 
4528         * sigc++/thread.h (Threads): from here
4529
4530         * sigc++/scope.cc (ScopeIterator_::ScopeIterator_): move
4531         definition out of line
4532         * sigc++/scope.h: from here
4533
4534 2000-06-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4535
4536         * src/lyxrc.C (read): make sure the .kmap files exist when a keymap
4537         is specified (adapted from a patch from edscott <edscott@imp.mx>).
4538
4539         * Makefile.am (bindist): new target.
4540
4541         * INSTALL: add instructions for doing a binary distribution.
4542
4543         * development/tools/README.bin.example: update a bit. 
4544
4545 2000-06-26  Lior Silberman <slior@math.huji.ac.il>
4546
4547         * src/lyxrc.C: 
4548         * lib/lyxrc.example: new lyxrc tag \set_color.
4549
4550         * src/lyxfunc.C (Dispatch): 
4551         * src/commandtags.h: 
4552         * src/LyXAction.C: new lyxfunc "set-color".
4553
4554         * src/LColor.[Ch] (setColor): new method to set colors from a lyxname
4555         and an x11name given as strings.
4556
4557         * src/ColorHandler.[Ch] (updateColor): new method. Updates the GC
4558         cache when a color is changed.
4559
4560 2000-06-26  Juergen Vigna  <jug@sad.it>
4561
4562         * src/lyxrow.C (width): added this functions and variable.
4563
4564         * src/insets/insetcite.C (create_form_citation_form): some Gravity
4565         changes.
4566
4567         * src/text.C (SetHeightOfRow): fixed calcualting of width.
4568
4569 2000-06-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4570
4571         * images/undo_bw.xpm: new icon.
4572         * images/redo_bw.xpm: ditto.
4573
4574         * configure.in (INSTALL_SCRIPT): change value to
4575         ${INSTALL} to avoid failures of install-script target.
4576         * lib/reLyX/configure.in (INSTALL_SCRIPT): ditto
4577
4578         * src/BufferView.h: add a magic "friend" declaration to please
4579         compaq cxx.
4580
4581 2000-06-23  Angus Leeming <a.leeming@ic.ac.uk>
4582
4583         * forms/cite.fd: modified to allow resizing without messing
4584         up the dialog.
4585
4586         * src/insetcite.C: Uses code from cite.fd almost without
4587         tweaking. ;-)
4588         User can now resize dialog in the x-direction.
4589         Resizing the dialog in the y-direction is prevented, as the
4590         code does this intelligently already.
4591
4592 2000-06-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4593
4594         * INSTALL: remove obsolete entry in "problems" section.
4595
4596         * lib/examples/sl_*.lyx: update of the slovenian examples.
4597
4598         * src/support/FileInfo.[Ch] (getBlockSize): remove.
4599
4600 2000-06-23  Juergen Vigna  <jug@sad.it>
4601
4602         * src/lyxtext.h: added a 'cleared' flag to draw() function.
4603
4604         * src/buffer.C (resize): delete the LyXText of textinsets.
4605
4606         * src/paragraph.C (SetInsetOwner): set the owner in the insets too.
4607
4608         * src/insets/lyxinset.h: added another parameter 'cleared' to
4609         the draw() function.
4610
4611         * src/lyxfunc.C (processKeyEvent): move cursor to the right of the
4612         unlocking inset in inset.
4613
4614 2000-06-22  Juergen Vigna  <jug@sad.it>
4615
4616         * src/lyxscreen.h: added some y_offset/x_offset parameters for drawings
4617         of insets and moved first to LyXText.
4618
4619         * src/mathed/formulamacro.[Ch]:
4620         * src/mathed/formula.[Ch]: changed prototype of draw() and GetCursorPos
4621
4622 2000-06-21  Juergen Vigna  <jug@sad.it>
4623
4624         * src/text.C (GetVisibleRow): look if I should clear the area or not
4625         using Inset::doClearArea() function.
4626
4627         * src/insets/lyxinset.h: added doClearArea() function and
4628         modified draw(Painter &, ...) to draw(BufferView *, ...)
4629
4630         * src/text2.C (UpdateInset): return bool insted of int
4631
4632 2000-06-20  Dekel Tsur  <dekel@math.tau.ac.il>
4633
4634         * src/lyx_gui.C (create_forms): Add "Reset" option to the language 
4635         combox in the character popup
4636
4637         * src/lyx_cb.C (UserFreeFont): Add argument to the method:
4638         BufferParams const & params
4639
4640 2000-06-20  Juergen Vigna  <jug@sad.it>
4641
4642         * src/insets/insettext.C (SetParagraphData): set insetowner on
4643         2- paragraphs.
4644
4645 2000-06-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
4646
4647         * src/Timeout.[Ch]: Change to use signals instead of callbacks.
4648         * src/LyXView.h (struct FD_form_main): remove, LyXView inherits
4649         from SigC::Object
4650         (form_main_): remove
4651         
4652         * src/LyXView.C (LyXView_AutosaveTimerCB): remove 
4653         (create_form_form_main): remove FD_form_main stuff, connect to
4654         autosave_timeout signal
4655
4656         * src/LyXView.[Ch] (getMainForm): remove 
4657         (UpdateTimerCB): remove
4658         * src/BufferView_pimpl.h: inherit from SigC::Object
4659
4660         * src/BufferView_pimpl.C (Pimpl): connect to cursor_timeout with
4661         signal instead of callback
4662
4663         * src/BufferView.[Ch] (cursorToggleCB): remove 
4664
4665 2000-06-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
4666
4667         * src/BufferView_pimpl.C: changes because of the one below
4668
4669         * src/screen.[Ch]: Made the lyxscreen take LyXText as argument
4670         instead of storing a pointer to a LyXText. 
4671
4672         * src/buffer.[Ch]: apply Baruch's remove isdviclean patch. 
4673
4674 2000-06-10  Dekel Tsur  <dekel@math.tau.ac.il>
4675
4676         * src/lyxparagraph.h
4677
4678         * src/paragraph.C: Changed fontlist to a sorted vector.
4679  
4680 2000-06-19  Juergen Vigna  <jug@sad.it>
4681
4682         * src/BufferView.h: added screen() function.
4683
4684         * src/insets/insettext.C (LocalDispatch): some selection code
4685         fixed.
4686
4687         * src/vspace.C (nextToken): use stringfunctions instead of sscanf.
4688
4689         * src/insets/insettext.C (SetParagraphData):
4690         (Read): 
4691         (InsetText):  fixes for multiple paragraphs.
4692
4693 2000-06-17  Kayvan A. Sylvan  <kayvan@sylvan.com>
4694
4695         * development/lyx.spec.in: Call configure with ``--without-warnings''
4696         to work around a bug with the Makefiles when doing ``make lyxrpm''.
4697         This should be fine, however, since we generally don't want to be
4698         verbose when making an RPM.
4699         
4700 2000-06-16  Dekel Tsur  <dekel@math.tau.ac.il>
4701
4702         * lib/scripts/fig2pstex.py: New file
4703
4704 2000-06-16  Juergen Vigna  <jug@sad.it>
4705
4706         * src/insets/insettabular.C (UpdateLocal): 
4707         * src/insets/insettext.C (UpdateLocal): fixed mark_dirty problem.
4708         (LocalDispatch): Changed all functions to use LyXText.
4709
4710 2000-06-15  Juergen Vigna  <jug@sad.it>
4711
4712         * src/text.C (SetHeightOfRow): call inset::update before requesting
4713         any width/height.
4714
4715         * src/insets/insettext.C (update): 
4716         * src/insets/insettabular.C (update): added implementation
4717
4718         * src/insets/lyxinset.h: added update function
4719
4720 2000-06-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4721
4722         * src/text.C (SelectNextWord): protect against null pointers with
4723         old-style string streams. (fix from Paul Theo Gonciari
4724         <gptheo@yahoo.com>) 
4725
4726         * src/cite.[Ch]: remove erroneous files.
4727
4728         * lib/configure.m4: update the list of created directories.
4729
4730         * src/lyxrow.C: include <config.h>
4731         * src/lyxcursor.C: ditto.
4732
4733 2000-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4734
4735         * lib/examples/decimal.lyx: new example file from Mike.
4736
4737         * src/insets/ExternalTemplate.C (readTemplates): Use LibFileSearch()
4738         to find template definitions (from Dekel)
4739
4740         * src/frontends/.cvsignore: add a few things.
4741
4742         * src/frontends/xforms/input_validators.[ch]: remove C++ comments.
4743
4744         * src/Timeout.C (TimeOut): remove default argument.
4745
4746         * src/LyXView.C (LyXView_AutosaveTimerCB): this should not have
4747         "C" linkage.
4748
4749         * src/insets/ExternalTemplate.C: add a "using" directive.
4750
4751         * src/lyx_main.h: remove the act_ struct, which seems unused
4752         anyway. 
4753
4754 2000-06-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
4755
4756         * LyX Developers Meeting: All files changed, due to random C++ (by
4757         coincidence) code generator script.
4758
4759         - external inset (cool!)
4760         - initial online editing of preferences
4761         - insettabular breaks insettext(s contents)
4762         - cleanup
4763         - some DocBook fixes
4764         - example files update
4765         - other cool stuff, create a diff and look for yourself.
4766
4767 2000-06-09  The Great LyX Application  <lyx@localhost.localdomain>
4768
4769         * src/insets/insettext.C (computeTextRows): if the maxWidth is
4770         -1 this is a non-line-breaking textinset.
4771
4772         * src/insets/insettabular.C (GetMaxWidthOfCell): returns now -1
4773         if there is no width set.
4774
4775 2000-06-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
4776
4777         * Lots of files: Merged the dialogbase branch.
4778
4779 2000-06-09  Allan Rae  <rae@lyx.org>
4780
4781         * src/xtl/, src/lyxfunc.[Ch], src/buffer.[Ch]:  Removed XTL and
4782         and the Dispatch methods that used it.
4783
4784         * src/frontends/Liason.[Ch]: replaced with a Liason namespace for 
4785         access to functions formerly kept in Dispatch.
4786
4787 2000-05-19  Allan Rae  <rae@lyx.org>
4788
4789         * src/PrinterParams.h, src/buffer.C, src/frontends/xforms/FormPrint.C:
4790         made to_page and count_copies integers again.  from_page remains a
4791         string however because I want to allow entry of a print range like
4792         "1,4,22-25" using this field.
4793
4794         * src/LyXAction.C: added action info and commands for buffer-print-xtl
4795         and printer-params-get.  These aren't useful from the minibuffer but
4796         could be used by a script/LyXServer app provided it passes a suitable
4797         auto_mem_buffer.  I guess I should take a look at how the LyXServer
4798         works and make it support xtl buffers.
4799
4800         * sigc++/: updated to libsigc++-1.0.1
4801
4802         * src/xtl/: updated to xtl-1.3.pl.11
4803
4804         * forms/makefile, forms/fdfix.sh, forms/layout_forms.fd: Made sure
4805         those changes done to the files in src/ are actually recreated when
4806         they  get regenerated. Please don't ever accept a patch that changes a
4807         dialog unless that patch includes the changes to the corresponding *.fd
4808         file.
4809
4810         * src/lyx_cb.C, src/support/lstrings.[hC]: Moved Stephen Witt's
4811         stringOnlyContains, renamed it and generalised it.
4812
4813         * lots-of-files: Rolled the "rae" branch over into the "dialogbase"
4814         branch.  Removed the remaining old form_print code.
4815
4816 2000-04-26  Allan Rae  <rae@lyx.org>
4817
4818         * ChangeLog, development/tools/lxtl.sh: D'oh! Got caught in the same
4819         trap I was trying to fix with the ID: fields in src/xtl/  :-)
4820
4821 2000-04-25  Allan Rae  <rae@lyx.org>
4822
4823         * src/xtl/: Updated to incorporate Angus's two patches as well as mine
4824         against a base of xtl-1.3.pl.4
4825
4826         * development/tools/lxtl.sh: fixed a couple of silly typos and now
4827         filter the Id: entries so they still show the xtl version number
4828         they are based on.
4829
4830         * src/support/lxtl.h: removed auto_mem_buffer which is now incorporated
4831         into the src/xtl code.  Patch still pending with José (XTL)
4832
4833 2000-04-24  Allan Rae  <rae@lyx.org>
4834
4835         * src/lyxfunc.[Ch] (Dispatch): Use a mem buffer as a parameter. This is
4836         both more generic and much safer. Use the new template functions.
4837         * src/buffer.[Ch] (Dispatch): ditto.
4838
4839         * src/frontends/xforms/FormPrint.C (update): Use new template functions
4840         and mem buffer more intelligently. Also a little general cleanup.
4841         (apply): ditto.
4842
4843         * configure.in (AC_OUTPUT): Extra stuff for xtl that I forgot.
4844         * development/tools/lxtl.sh: Ditto.  Makefile.am + .cvsignore
4845         * src/xtl/Makefile.am: ditto.
4846         * src/xtl/.cvsignore: ditto.
4847         * src/Makefile.am: ditto.
4848
4849         * src/PrinterParams.h: Removed the macros member functions. Added a
4850         testInvariant member function.  A bit of tidying up and commenting.
4851         Included Angus's idea for fixing operation with egcs-1.1.2.
4852
4853         * src/support/lxtl.h: Many changes.  Added auto_mem_buffer -- a really
4854         cool expansion of XTL's mem_buffer to support automatic memory
4855         management within the buffer itself.  Removed the various macros and
4856         replaced them with template functions that use either auto_mem_buffer
4857         or mem_buffer depending on a #define.  The mem_buffer support will
4858         disappear as soon as the auto_mem_buffer is confirmed to be good on
4859         other platforms/compilers.  That is, it's there so you've got something
4860         to compare against.
4861
4862         * src/xtl/objio.h: Changes to support auto_mem_buffer.  This has
4863         effectively forked XTL.  However I expect José will include my code
4864         into the next major release.  Also fixed a memory leak.
4865         * src/xtl/text.h: ditto.
4866         * src/xtl/xdr.h: ditto.
4867         * src/xtl/giop.h: ditto.
4868
4869 2000-04-16  Allan Rae  <rae@lyx.org>
4870
4871         * acinclude.m4, sigc++/acinclude.m4:  Removed -- they're generated
4872         by autogen.sh and removed by maintainer-clean anyway.
4873         * .cvsignore, sigc++/.cvsignore:  Support the above.
4874
4875         * sigc++/.cvsignore: Forgot that retbind.h was generated.
4876
4877         * src/buffer.C (Dispatch): Couldn't print a single page. Fixed.
4878
4879         * src/frontends/xforms/FormPrint.[Ch]: Switched to C callbacks using
4880         macros, renamed static callback-target member functions to suit new
4881         scheme and made them public.
4882         * src/frontends/xforms/forms/form_print.fd: ditto.
4883         * src/frontends/xforms/forms/form_copyright.fd: ditto.
4884
4885         * src/support/lxtl.h: small cleanup to use typedef instead of #define
4886         for gui_format.
4887
4888         * src/xtl/: New directory containing a minimal distribution of XTL.
4889         This is XTL-1.3.pl.4.
4890
4891         * development/tools/lxtl.sh: A script to generate the above mini-dist.
4892
4893 2000-04-15  Allan Rae  <rae@lyx.org>
4894
4895         * development/tools/makeLyXsigc.sh: Remove the library version numbers
4896
4897         * sigc++/:  Updated to libsigc++-1.0.0
4898
4899 2000-04-14  Allan Rae  <rae@lyx.org>
4900
4901         * src/frontends/xforms/xform_macros.h: Remove specific macros and just
4902         use the generic ones in future.  I'll modify my conversion script.
4903
4904         * src/frontends/xforms/FormCopyright.C: Reverse the earlier change.
4905
4906         * src/lyx_gui_misc.[Ch]: Removed references to form_print.
4907         (CloseAllBufferRelatedDialogs): Renamed.
4908         (updateAllVisibleBufferRelatedDialogs): ditto. Added LaTeXLog
4909
4910         * src/frontends/xforms/FormCopyright.C: Use the specific macros instead
4911         of the generic ones.  These are the same ones my conversion script
4912         generates.
4913
4914         * src/PrinterParams.h: Allow you to print a range of odd or even pages.
4915         * src/frontends/xforms/FormPrint.C (apply, update): ditto+small cleanup
4916         * src/buffer.C (Dispatch): ditto
4917
4918         * src/LyXView.C (LyXView): Use new signals instead of old hard coded
4919         functions for updating and hiding buffer dependent dialogs.
4920         * src/BufferView.C (buffer): ditto
4921         * src/buffer.C (setReadonly): ditto
4922         * src/lyxfunc.C (CloseBuffer): ditto
4923
4924         * src/buffer.h: Take setReadonly() out of line so I don't have to include
4925         Dialogs.h, and hence all the SigC stuff, into every file that includes
4926         buffer.h.  We also don't need to include lyx_gui_misc.h in everything.
4927
4928         * src/BufferView2.C: reduce the number of headers included by buffer.h
4929
4930 2000-04-11  Allan Rae  <rae@lyx.org>
4931
4932         * src/frontends/xforms/xform_macros.h:  A small collection of macros
4933         for building C callbacks.
4934
4935         * src/frontends/xforms/Makefile.am: Added above file.
4936
4937         * src/frontends/xforms/FormCopyright.[Ch]: Revised the C callback
4938         scheme again.  This time it should work for JMarc.  If this is
4939         successful I'll revise my conversion script to automate some of this.
4940         The static member functions in the class also have to be public for
4941         this scheme will work.  If the scheme works (it's almost identical to
4942         the way BufferView::cursorToggleCB is handled so it should work) then
4943         FormCopyright and FormPrint will be ready for inclusion into the main
4944         trunk immediately after 1.1.5 is released -- provided we're prepared
4945         for complaints about lame compilers not handling XTL.
4946
4947         * src/support/lxtl.h: Switched to XDR_format instead of raw_format.
4948
4949 2000-04-07  Allan Rae  <rae@lyx.org>
4950
4951         * config/lyxinclude.m4:  A bit more tidying up (Angus)
4952
4953         * src/LString.h: JMarc's <string> header fix
4954
4955         * src/PrinterParams.h: Used string for most data to remove some
4956         ugly code in the Print dialog and avoid even uglier code when 
4957         appending the ints to a string for output.
4958
4959         * src/buffer.C (Dispatch): Added a couple of braces to fix an error
4960         and moved "default:" back to the end of switch statement.  Cleaned
4961         up the printing so it uses the right function calls and so the
4962         "print to file" option actually puts the file in the right directory.
4963
4964         * src/frontends/xforms/Dialogs.C: Added FormPrint (Angus).
4965
4966         * src/frontends/xforms/FormPrint.C (PrintInputCB): moved input checking
4967         and Ok+Apply button control into a separate method: input (Angus).
4968         (input) Cleaned it up and improved it to be very thorough now.
4969         (All CB) static_cast used instead of C style cast (Angus).  This will
4970         probably change again once we've worked out how to keep gcc-2.8.1 happy
4971         with real C callbacks.
4972         (update) add a few "default:" labels to switches. Egcs-1.1.2 seems to
4973         ignore some of the bool settings and has random numbers instead. Needs
4974         some more investigation.  Added other input length checks and checking
4975         of file and printer names.
4976
4977         * src/frontends/xforms/FormPrint.h: Removed pragma statement so it
4978         would link (Angus).  Seems the old code doesn't compile with the pragma
4979         statement either.  Separated callback entries from internal methods.
4980
4981         * src/lyxfunc.C (Dispatch): LFUN_MENUPRINT calls new dialog (Angus).
4982
4983 2000-03-17  Allan Rae  <rae@lyx.org>
4984
4985         * src/lyxfunc.[Ch] (isAvailable): This is only temporary.  Do we really
4986         need it?  Maybe it could go in Dialogs instead?  I could make it a
4987         LFUN but you'd have to call Dispatch(int, int, char*) with dummy
4988         values to get the bool return value.
4989         (Dispatch): New overloaded method for xtl support.
4990
4991         * src/frontends/xforms/FormCopyright.[Ch]: Modified to use a friendly
4992         extern "C" callback instead of static member functions.  Hopefully,
4993         JMarc will be able to compile this.  I haven't changed 
4994         forms/form_copyright.fd yet. Breaking one of my own rules already.
4995
4996         * src/commandtags.h: New xtl-based LFUN's no description in LyXAction
4997         because they aren't useful from the minibuffer.  Maybe a LyXServer
4998         might want a help message though?
4999
5000         * src/buffer.[Ch] (Dispatch): New overloaded method for xtl support.
5001
5002         * config/lyxinclude.m4: Changes to g++ flags to suit compiling with
5003         xtl which needs both rtti and exceptions.
5004
5005         * src/support/Makefile.am:
5006         * src/support/lxtl.h: New file.  Some helper macros for using XTL.
5007
5008         * src/frontends/xforms/input_validators.[ch]: input filters and
5009         validators.  These conrol what keys are valid in input boxes.
5010         Use them and write some more.  Much better idea than waiting till
5011         after the user has pressed Ok to say that the input fields don't make
5012         sense.
5013
5014         * src/frontends/xforms/Makefile.am:
5015         * src/frontends/xforms/forms/form_print.fd:
5016         * src/frontends/xforms/forms/makefile:
5017         * src/frontends/xforms/FormPrint.[Ch]: Ported previous print form to
5018         new scheme.  Still have to make sure I haven't missed anything from
5019         the current implementation.
5020
5021         * src/Makefile.am, src/PrinterParams.h: New data store.
5022
5023         * other files: Added a couple of copyright notices.
5024
5025 2000-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5026
5027         * src/insets/insetbib.h: move Holder struct in public space.
5028
5029         * src/frontends/include/DialogBase.h: use SigC:: only when
5030         SIGC_CXX_NAMESPACES is defined.
5031         * src/frontends/include/Dialogs.h: ditto.
5032
5033         * sigc++/Makefile.am (%.h): use the autodected GNU m4.
5034
5035         * src/frontends/xforms/FormCopyright.[Ch]: do not
5036         mention SigC:: explicitely.
5037
5038 2000-03-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5039
5040         * config/lyxinclude.m4 (LYX_USE_FRONTEND): move the code which
5041         deals with testing KDE in main configure.in
5042         * configure.in: ditto.
5043
5044 2000-02-22  Allan Rae  <rae@lyx.org>
5045
5046         * Lots of files: Merged from HEAD
5047
5048         * All Makefile.am (ETAGS_ARGS): use parameter that is also compatible
5049         with the etags shipped with SuSE-6.3 (fancier than gnu-etags).
5050
5051         * autogen.sh: Fix JMarcs complaints by building a sigc++/acinclude.m4
5052
5053         * sigc++/: new minidist.
5054
5055 2000-02-14  Allan Rae  <rae@lyx.org>
5056
5057         * development/tools/makeLyXsigc.sh:  Small fix for Makefile.am
5058
5059 2000-02-08  Juergen Vigna  <jug@sad.it>
5060
5061         * src/frontends/kde/dlg/formcopyrightdialog.kdevdlg: the dialog data
5062         file for the buildin GUI builder of KDevelop of the copyright-dialog.
5063
5064         * src/frontends/kde/lyxgui.kdevprj: I added this as I use KDevelop
5065         for this port and so it is much easier for other people to port
5066         dialogs in a common development environment.
5067
5068         * src/frontends/kde/formcopyrightdialog_moc.C: needed MOC file for
5069         the QT/KDE implementation.
5070
5071         * src/frontends/kde/Dialogs.C:
5072         * src/frontends/kde/FormCopyright.C:
5073         * src/frontends/kde/FormCopyright.h:
5074         * src/frontends/kde/Makefile.am:
5075         * src/frontends/kde/formcopyrightdialog.C:
5076         * src/frontends/kde/formcopyrightdialog.h:
5077         * src/frontends/kde/formcopyrightdialogdata.C: added this source-files
5078         for the kde support of the Copyright-Dialog.
5079
5080         * src/frontends/Makefile.am (AUTOMAKE_OPTIONS): now uses @FRONTEND@
5081         subdir-substitution instead of hardcoded 'xforms' as we now have also
5082         the kde subdir.
5083
5084         * src/frontends/include/DialogBase.h (Object): just commented the
5085         label after #endif (nasty warning and I don't like warnings ;)
5086
5087         * src/main.C (main): added KApplication initialization if using
5088         KDE frontend-GUI.
5089
5090         * src/lyx_gui.C (runTime): added support for multiple toolkit support.
5091         For now only the KDE event-loop is added if frontend==kde.
5092
5093         * src/Makefile.am (lyx_DEPENDENCIES): added @FRONTEND_xxx@ support
5094
5095         * configure.in: added support for the --with-frontend[=value] option
5096
5097         * autogen.sh: added kde.m4 file to list of config-files
5098
5099         * acconfig.h: added define for KDEGUI-support
5100
5101         * config/kde.m4: added configuration functions for KDE-port
5102
5103         * config/lyxinclude.m4: added --with-frontend[=value] option with
5104         support for xforms and KDE.
5105
5106 2000-02-08  Allan Rae <rae@lyx.org>
5107
5108         * all Makefile.am:  Fixed up so the make targets dist, distclean, 
5109         install and uninstall all work even if builddir != srcdir.  Still
5110         have a new sigc++ minidist update to come.
5111
5112         * config/lyxinclude.m4: Some more builddir!=srcdir fixes.
5113
5114 2000-02-01  Allan Rae <rae@lyx.org>
5115
5116         * config/lyxinclude.m4, development/tools/makeLyXsigc.sh:
5117         Many mods to get builddir != srcdir working.
5118         
5119         * sigc++/: Upgraded to 0.8.7.  This includes many needed fixes both
5120         for building on NT and so we can do the builddir != srcdir stuff.
5121
5122 2000-01-30  Allan Rae <rae@lyx.org>
5123
5124         * sigc++/doc/*: Selected documentation for the libsigc++ mini dist.
5125         This will stay in "rae" branch.  We probably don't really need it in
5126         the main trunk as anyone who wants to help programming it should get
5127         a full library installed also.  So they can check both included and
5128         system supplied library compilation.
5129
5130         * sigc++/*, sigc++/macros/*, config/sigc++.m4, config/lyxinclude.m4:
5131         Added a 'mini' distribution of libsigc++.  If you feel the urge to 
5132         change something in these directories - Resist it.  If you can't 
5133         resist the urge then you should modify the following script and rebuild
5134         the dist.  LYX_WITH_SIGC in lyxinclude.m4 is the wrapper to make it
5135         all happen.  Still uses a hacked version of libsigc++'s configure.in.
5136         I'm quite happy with the results.  I'm not sure the extra work to turn
5137         the sigc++/configure.in into a few extra AC_DEFUNs in sigc++.m4 is
5138         worth the trouble and would probably lead to extra maintenance 
5139         headaches.
5140         I haven't tested the following important make targets: install, dist.
5141         Not ready for prime time but very close.  Maybe 1.1.5.
5142
5143         * development/tools/makeLyXsigc.sh:  A shell script to automatically
5144         generate our mini-dist of libsigc++.  It can only be used with a CVS
5145         checkout of libsigc++ not a tarball distribution.  It's well commented.
5146         This will end up as part of the libsigc++ distribution so other apps
5147         can easily have an included mini-dist.  If someone makes mods to the
5148         sigc++ subpackage without modifying this script to generate those
5149         changes I'll be very upset!
5150
5151         * src/frontends/:  Started the gui/system indep structure.
5152
5153         * src/frontends/include/Dialogs.h: Dialog container. All the Signal<>s
5154         to access the gui-indep dialogs are in this class.  Much improved
5155         design compared to previous revision.  Lars,  please refrain from
5156         moving this header into src/ like you did with Popups.h last time.
5157
5158         * src/frontends/include/DialogBase.h: Abstract base class for dialogs.
5159
5160         * src/frontends/xforms/:  Started the gui-indep system with a single
5161         dialog: FormCopyright.  Initial testing of use of libsigc++ was very
5162         successful.
5163
5164         * src/frontends/xforms/forms: Repository for the xforms .fd files.
5165         Here you'll find a very useful makefile and automated fdfix.sh that
5166         makes updating dailogs a no-brainer -- provided you follow the rules
5167         set out in the README.  I'm thinking about adding another script to
5168         automatically generate skeleton code for a new dialog given just the
5169         name of the dialog.
5170
5171         * src/commandtags.h, src/lyxfunc.C, src/menus.C:
5172         * src/credits.{Ch}, src/credits_form.{Ch}, forms/credits_form.fd:
5173         Made FormCopyright gui-indep and added a lyxfunc to get to it.
5174
5175 2000-06-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
5176
5177         * src/support/LSubstring.C (operator): simplify
5178
5179         * src/lyxtext.h: removed bparams, use buffer_->params instead
5180         
5181         * src/lyxrow.h: make Row a real class, move all variables to
5182         private and use accessors.
5183
5184         * src/lyxparagraph.h (getParLanguage): add BufferParamas as
5185         arguament.
5186         (isRightToLeftPar): ditto
5187         (ChangeLanguage): ditto
5188         (isMultiLingual): ditto
5189         (String): ditto
5190         (TeXOnePar): ditto
5191         (SimpleTeXOnePar): ditto
5192         (TeXEnvironment): ditto
5193         (GetEndLabel): ditto
5194         (SetLayout): ditto
5195         (SetOnlyLayout): ditto
5196         (BreakParagraph): ditto
5197         (BreakParagraphConservative): ditto
5198         (GetFontSettings): ditto
5199         (getFont): ditto
5200         (CopyIntoMinibuffer): ditto
5201         (CutIntoMinibuffer): ditto
5202         (PasteParagraph): ditto
5203         (SetPExtraType): ditto
5204         (UnsetPExtraType): ditto
5205         (DocBookContTableRows): ditto
5206         (SimpleDocBookOneTablePar): ditto
5207         (TeXDeeper): ditto
5208         (TeXFootnote): ditto
5209         (SimpleTeXOneTablePar): ditto
5210         (TeXContTableRows): ditto
5211         (SimpleTeXSpecialChars): ditto
5212         
5213
5214         * src/lyxcursor.h: make LyXCursor a real class, move all variables
5215         to private and use accessors.
5216
5217         * src/lyx_cb.C: remove char updatetimer, and all code that uses
5218         this, we did not use it anymore and has not been for ages. Just a
5219         waste of cpu cycles.
5220
5221         * src/language.h: make Language a real class, move all variables
5222         to private and use accessors.
5223
5224         * src/BufferView_pimpl.C (Pimpl): use new timer code.
5225         (create_view): remove
5226         (update): some changes for new timer
5227         (cursorToggle): use new timer
5228         (beforeChange): change for new timer
5229
5230         * src/BufferView.h (cursorToggleCB): removed last paramter because
5231         of new timer code. 
5232
5233         * src/BufferView.C (C_BufferView_CursorToggleCB): removed 
5234         (cursorToggleCB): change because of new timer code
5235
5236         * lib/CREDITS: updated own mailaddress
5237
5238 2000-06-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5239
5240         * src/support/filetools.C (PutEnv): fix the code in case neither
5241         putenv() nor setenv() have been found.
5242
5243         * INSTALL: mention the install-strip Makefile target.
5244
5245         * src/LyXAction.C (init): make LFUN_BUILDPROG available in
5246         read-only documents.
5247
5248 2000-06-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5249
5250         * lib/reLyX/configure.in (VERSION): avoid using a previously
5251         generated reLyX wrapper to find out $prefix.
5252
5253         * lib/examples/eu_adibide_lyx-atua.lyx: 
5254         * lib/examples/eu_adibide_gordina.lyx: new examples for the Basque
5255         translation of the Tutorial (Dooteo)
5256
5257 2000-06-06  Angus Leeming <a.leeming@ic.ac.uk>
5258
5259         * forms/cite.fd: new citation dialog
5260
5261         * src/insetcite.[Ch]: the new citation dialog is moved into
5262         its own files.
5263
5264         * src/insetbib.C: InsetBibtex::getKeys() uses STL containers
5265         (Dekel).
5266
5267         * src/insets/insetcommand.h: data members made private. 
5268
5269 2000-06-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
5270
5271         * LyX 1.1.5 released
5272
5273 2000-06-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
5274
5275         * src/version.h (LYX_RELEASE): to 1.1.5
5276
5277         * src/spellchecker.C (RunSpellChecker): return false if the
5278         spellchecker dies upon creation.
5279
5280 2000-06-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5281
5282         * lib/reLyX/reLyXmain.pl, lib/reLyX/LastLyX.pm: fix suffix of file
5283         in \include{} (from Tomasz Motylewski <motyl@stan.chemie.unibas.ch>) 
5284         
5285         * NEWS: update.
5286
5287         * lib/CREDITS: update entry for Martin Vermeer.
5288
5289 2000-06-06  Dekel Tsur  <dekel@math.tau.ac.il>
5290
5291         * src/text.C (draw): Draw foreign language bars at the bottom of
5292         the row instead of at the baseline.
5293
5294         * lib/examples/Minipage.lyx: Use the new multi-lingual support.
5295
5296 2000-06-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
5297
5298         * lib/bind/de_menus.bind: updated
5299
5300 2000-06-05  Dekel Tsur  <dekel@math.tau.ac.il>
5301
5302         * forms/lyx.fd: Correct gravity for objects in form_toc and form_ref
5303
5304 2000-06-05  Dekel Tsur  <dekel@math.tau.ac.il>
5305
5306         * src/menus.C (Limit_string_length): New function
5307         (ShowTocMenu): Limit the number of items/length of items in the
5308         LOT/LOF/LOA menus.
5309
5310         * src/paragraph.C (String): Correct result for a paragraph inside
5311         a footnote.
5312
5313 2000-06-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
5314
5315         * src/bufferlist.C (close): test of buf->getuser() == NULL
5316
5317 2000-06-02  Dekel Tsur  <dekel@math.tau.ac.il>
5318
5319         * src/BufferView2.C (removeAutoInsets): Fix a bug: 
5320         Do not call to SetCursor when the paragraph is a closed footnote!
5321
5322 2000-06-01  Dekel Tsur  <dekel@math.tau.ac.il>
5323
5324         * src/insets/insetlabel.C (Edit): Mark buffer as dirty when a
5325         label is changed.
5326
5327         * src/text.C (SetCursor): Made the computation of cursor_vpos safer.
5328
5329 2000-05-31 Dekel Tsur  <dekel@math.tau.ac.il>
5330
5331         * forms/lyx.fd
5332         * src/lyx_cb.C (RefSelectCB): Added "Go Back" button in the insert
5333         reference popup, that activates the reference-back action
5334
5335         * src/menus.C (ShowRefsMenu): Added "Go Back" menu item.
5336
5337         * src/menus.C (Add_to_refs_menu): Limit the size of each item in
5338         the menus. Also fixed a bug.
5339
5340         * src/lyx_cb.C (updateAllVisibleBufferRelatedPopups): Do not close 
5341         the math panels when switching buffers (unless new buffer is readonly).
5342
5343         * src/BufferView.C (NoSavedPositions)
5344         * src/BufferView_pimpl.C (NoSavedPositions): New methods
5345
5346 2000-06-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
5347
5348         * src/lyx_cb.C (MakeLaTeXOutput): we run MakeLaTeXOutput regard
5349         less of dvi dirty or not.
5350
5351         * src/trans_mgr.[Ch] (insert): change first parameter to string
5352         const &.  
5353
5354         * src/chset.[Ch] (encodeString): add const to first parameter
5355
5356 2000-05-31  Lars Gullik Bjønnes  <larsbj@lyx.org>
5357
5358         * src/support/lyxstring.C (begin): fix a "shared" string bug. use
5359         rep->get_own_copy()
5360         (end): ditto
5361
5362         * src/LaTeX.C (deplog): better searching for dependency files in
5363         the latex log. Uses now regexps.
5364
5365         * lib/layouts/stdlists.inc (lyxlist): fix the label to use \hfil
5366         instead of the box hack or \hfill. 
5367
5368 2000-05-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5369
5370         * src/lyxfunc.C (doImportHelper): do not create the file before
5371         doing the actual import. 
5372         (doImportASCIIasLines): create a new file before doing the insert.
5373         (doImportASCIIasParagraphs): ditto.
5374
5375         * lib/lyxrc.example: remove mention of non-existing commands
5376
5377         * lyx.man: remove mention of color-related switches.
5378
5379         * src/lyxrc.C: remove RC_SELECTIONCOLOR and RC_BACKGROUNDCOLOR. 
5380
5381         * src/lyx_gui.C: remove all the color-related ressources, which
5382         are not used anymore.
5383
5384         * src/lyx_gui_misc.C (WarnReadonly): use MakeDisplayPath on file
5385         name. 
5386
5387 2000-05-31 Dekel Tsur  <dekel@math.tau.ac.il>
5388
5389         * src/lyxrc.C (read): Add a missing break in the switch
5390
5391 2000-05-30 Dekel Tsur  <dekel@math.tau.ac.il>
5392
5393         * src/text2.C (InsertStringA): Fix a bug with insertion into table
5394         
5395         * src/trans_mgr.C (insertVerbatim): Do not use insetquote when the
5396         text is Hebrew.
5397  
5398 2000-05-27  Dekel Tsur  <dekel@math.tau.ac.il>
5399
5400         * src/text.C (draw): draw bars under foreign language words.
5401         
5402         * src/LColor.[Ch]: add LColor::language
5403
5404 2000-05-27 Dekel Tsur  <dekel@math.tau.ac.il>
5405
5406         * src/lyxcursor.h (boundary): New member variable
5407
5408         * src/text.C (IsBoundary): New methods
5409
5410         * src/text.C: Use the above for currect cursor movement when there
5411         is both RTL & LTR text.
5412         
5413         * src/text2.C: ditto
5414         
5415         * src/bufferview_funcs.C (ToggleAndShow): ditto
5416
5417 2000-05-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5418
5419         * src/text.C (DeleteLineForward): set selection to true to avoid
5420         that DeleteEmptyParagraphMechanism does some magic. This is how it
5421         is done in all other functions, and seems reasonable.
5422         (DeleteWordForward): do not jump over non-word stuff, since
5423         CursorRightOneWord() already does it.
5424         
5425         Remove the CHECK tag from DeleteLineForward, DeleteWordForward and
5426         DeleteWordBackward, since they seem safe to me (since selection is
5427         set to "true") DeleteEmptyParagraphMechanism does nothing.
5428
5429 2000-05-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5430
5431         * src/lyx_main.C (easyParse): simplify the code by factoring the
5432         part that removes parameters from the command line.
5433         (LyX): check wether wrong command line options have been given.
5434
5435 2000-05-29  Lior Silberman <slior@math.huji.ac.il>
5436
5437         * src/lyx_main.C : add support for specifying user LyX
5438         directory via command line option -userdir.
5439
5440 2000-05-26 Dekel Tsur  <dekel@math.tau.ac.il>
5441
5442         * src/menus.C (Add_to_toc_menu): Limit the number of popups, and
5443         the number of items per popup.
5444         (Add_to_refs_menu): Ditto.
5445         
5446 2000-05-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5447
5448         * src/lyxparagraph.h: renamed ClearParagraph() to
5449         StripLeadingSpaces() and moved it to paragraph.C. We pass the
5450         textclass as parameter, and do nothing if free_spacing is
5451         true. This fixes part of the line-delete-forward problems.
5452
5453         * src/CutAndPaste.C (cutSelection): use StripLeadingSpaces.
5454         (pasteSelection): ditto.
5455         (SwitchLayoutsBetweenClasses): more translatable strings.
5456
5457         * src/text2.C (CutSelection): use StripLeadingSpaces.
5458         (PasteSelection): ditto.
5459         (DeleteEmptyParagraphMechanism): ditto.
5460
5461 2000-05-26  Juergen Vigna  <jug@sad.it>
5462
5463         * src/TabularLayout.C (TabularOptionsCB): removed delete-table as this
5464         is not needed in tabular insets.
5465
5466         * src/insets/insettabular.C (TabularFeatures): added missing features.
5467
5468         * src/tabular.C (DeleteColumn):
5469         (AppendColumn): 
5470         (AppendRow): implemented this functions
5471         (cellsturct::operator=): clone the inset too; 
5472
5473 2000-05-23  Juergen Vigna  <jug@sad.it>
5474
5475         * src/insets/insettabular.C (LocalDispatch): better selection support
5476         when having multicolumn-cells.
5477
5478 2000-05-26  Jose Abilio Oliveira Matos <jamatos@novalis.fc.up.pt>
5479
5480         * lib/layouts/linuxdoc.layout: fix indentation of paragraphs.
5481
5482 2000-05-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5483
5484         * src/ColorHandler.C (getGCForeground): put more test into _()
5485
5486         * lib/examples/eu_splash.lyx: new file (Basque translation) from
5487         Dooteo. 
5488
5489         * config/lyxinclude.m4 (LYX_PROG_CXX): use ${CXX} and not g++ to
5490         get the version.
5491
5492 2000-05-25 Dekel Tsur  <dekel@math.tau.ac.il>
5493
5494         * src/lyx_cb.C (RefUpdateCB): disable appropriate buttons when
5495         there are no labels, or when buffer is readonly.
5496
5497         * src/menus.C (ShowRefsMenu) disable appropriate menu items when
5498         there are no labels, buffer is SGML, or when buffer is readonly.
5499
5500 2000-05-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
5501
5502         * src/LColor.C (LColor): change a couple of grey40 to grey60
5503         (LColor): rewore initalization to make compiles go some magnitude
5504         faster.
5505         (getGUIName): don't use gettext until we need the string.
5506
5507 2000-05-09  Dekel Tsur  <dekel@math.tau.ac.il>
5508
5509         * src/Bullet.[Ch]: Fixed a small bug.
5510
5511 2000-05-21  Dekel Tsur  <dekel@math.tau.ac.il>
5512
5513         * src/paragraph.C (String): Several fixes/improvements
5514
5515         * src/insets/insetbib.[Ch] (InsetCitation::Ascii) New method
5516
5517 2000-05-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
5518
5519         * src/paragraph.C (String): give more correct output.
5520
5521 2000-05-20  Dekel Tsur  <dekel@math.tau.ac.il>
5522
5523         * src/lyxfont.C (stateText) Do not output the language if it is
5524         eqaul to the language of the document.
5525
5526         * src/paragraph.C (TeXOnePar): Do not put language switch commands
5527         between two paragraphs with the same language.
5528
5529         * src/paragraph.C (getParLanguage) Return a correct answer for an
5530         empty dummy paragraph.
5531
5532         * src/menus.C (ShowTocMenu): Do not draw lines between LOF/LOT/LOA
5533         menus.
5534
5535         * src/menus.C (ShowLayoutMenu) Add "Start of Appendix" item to the
5536         layout menu.
5537
5538         * src/lyx_gui.C (init): Try to use helvetica (or fixed) fonts for
5539         the menus/popup, if requested fonts are unavailable.
5540
5541 2000-05-22  Juergen Vigna  <jug@sad.it>
5542
5543         * src/insets/insettabular.C (LocalDispatch): added some more cursor
5544         movement support (Up/Down/Tab/Shift-Tab).
5545         (LocalDispatch): added also preliminari cursor-selection.
5546
5547         * src/LyXAction.C (init): added SHIFT-Tab as tab-backward.
5548
5549         * src/paragraph.C (PasteParagraph): Hopefully now right!
5550
5551 2000-05-22  Garst R. Reese  <reese@isn.net>
5552
5553         * layouts/hollywood.layout, broadway.layout : move Dialogue to top
5554          of list, change all references to Environment to Command
5555         * tex/hollywood.cls : rewrite environments as commands, add 
5556         \uppercase to interiorshot and exteriorshot to force uppecase.
5557         * tex/broadway.cls : rewrite environments as commands. Tweak
5558         whitespace.
5559
5560 2000-05-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5561
5562         * src/menus.C (Add_to_toc_menu): fix the code which limits the
5563         size of items: use a constant intead of the hardcoded 40, and more
5564         importantly do not remove the %m and %x tags added at the end.
5565         (Add_to_refs_menu): use vector::size_type instead of
5566         unsigned int as basic types for the variables. _Please_ do not
5567         assume that size_t is equal to unsigned int. On an alpha, this is
5568         unsigned long, which is _not_ the same.
5569
5570         * src/language.C (initL): remove language "hungarian", since it
5571         seems that "magyar" is better.
5572
5573 2000-05-22  Juergen Vigna  <jug@sad.it>
5574
5575         * src/CutAndPaste.C: hopefully fixed memory the problem defenitively!
5576
5577         * src/tabular.C (OldFormatRead): added \end_deeper to the end LyXTable
5578         end markers!
5579
5580         * src/paragraph.C (PasteParagraph): Possibly a memory leak as
5581         next was deleted but not set to 0.
5582
5583 2000-05-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
5584
5585         * src/language.C (initL): change the initialization of languages
5586         so that compiles goes _fast_.
5587
5588         * src/menus.C (Add_to_toc_menu): limit the line length in TOC to
5589         40 chars.
5590
5591         * src/lyxfunc.C (processKeyEvent): initalize keysym_return to 0.
5592
5593 2000-05-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
5594
5595         * release 1.1.5pre3
5596
5597 2000-05-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
5598
5599         * src/WorkArea.C (request_clipboard_cb): give "C" linkage.
5600
5601 2000-05-19  Dekel Tsur  <dekel@math.tau.ac.il>
5602
5603         * src/commandtags.h
5604         * src/LyXAction.C
5605         * src/lyxfunc.C (Dispatch): Added LFUN_LOFVIEW, LFUN_LOTVIEW
5606         and LFUN_LOAVIEW
5607         
5608         * src/insets/insetlo*.[Ch]: Made editable
5609
5610 2000-05-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
5611
5612         * src/text2.C (SetSelection): call BufferView::stuffClipboard with
5613         the current selection.
5614
5615         * src/BufferView_pimpl.C (stuffClipboard): new method
5616
5617         * src/BufferView.C (stuffClipboard): new method
5618
5619         * src/paragraph.C (String): new method
5620
5621         * src/LColor.C (getFromLyXName): return LColor::inherit instead of
5622         LColor::ignore when lyxname is not found.
5623
5624         * src/BufferView.C (pasteSelection): new method
5625
5626         * src/BufferView_pimpl.C (pasteSelection): new method
5627
5628         * src/lyxfunc.C (Dispatch): use the new clipboard functions.
5629
5630         * src/WorkArea.C (request_clipboard_cb): new static function
5631         (getClipboard): new method
5632         (putClipboard): new method
5633
5634 2000-05-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
5635
5636         * LyX 1.1.5pre2 released
5637
5638 2000-05-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
5639
5640         * src/vspace.C (operator=): removed
5641         (operator=): removed
5642
5643         * src/lyx_gui_misc.C (askForText): manually set the type in make_pair
5644
5645         * src/layout.C (NumberOfClass): manually set the type in make_pair
5646         (NumberOfLayout): ditto
5647
5648         * src/language.C: use the Language constructor for ignore_lang
5649
5650         * src/language.h: add constructors to struct Language
5651
5652         * src/BufferView_pimpl.C (scrollDown): change to pair<float, float>
5653
5654         * src/text2.C (SetCursorIntern): comment out #warning
5655
5656         * src/mathed/math_symbols.C (pixmapFromBitmapData): add const_cast
5657
5658         * src/mathed/math_iter.h: initialize sx and sw to 0
5659
5660 2000-05-10  Dekel Tsur  <dekel@math.tau.ac.il>
5661
5662         * forms/lyx.fd: Redesign of form_ref
5663
5664         * src/LaTeXFeatures.[Ch]
5665         * src/buffer.C
5666         * src/lyx_cb.C
5667         * src/menus.C   
5668         * src/insets/insetref.[Ch]: Added support for varioref and prettyref.
5669
5670         * src/buffer.h
5671         * src/lyxparagraph.h: Added new classes: LyXParagraph::inset_iterator
5672         and Buffer::inset_iterator.
5673
5674         * src/menus.C: Added new menus: TOC and Refs.
5675
5676         * src/insets/insetlabel.C (Edit) Made InsetLabel editable.
5677
5678         * src/buffer.C (getTocList): New method.
5679
5680         * src/BufferView2.C (ChangeRefs): New method.
5681
5682         * src/buffer.C (getLabelList): New method. It replaces the old
5683         getReferenceList. The return type is vector<string> instead of 
5684         string.
5685
5686         * src/insets/insetinclude.C (getLabelList): New method. Replaces
5687         the old getLabel() and GetNumberOfLabels() methods.
5688         * src/insets/insetlabel.C (getLabelList): ditto
5689         * src/mathed/formula.C (getLabelList): ditto
5690         
5691         * src/paragraph.C (String): New method.
5692
5693         * src/lyx_cb.C (TocSelectCB,TocUpdateCB): Rewritten.
5694         Uses the new getTocList() method. 
5695         TocSelectCB() now calls to TocUpdateCB() before moving the cursor, 
5696         which automatically updates the contents of the browser.
5697         (RefUpdateCB): Use the new getLabelList method.
5698
5699         * src/lyxfunc.C (Dispatch): Give an error if the label is not found.
5700         
5701         * src/BufferView2.C (gotoLabel) Use the new getLabelList method.
5702
5703         * src/spellchecker.C: Added using std::reverse;
5704
5705 2000-05-19  Juergen Vigna  <jug@sad.it>
5706
5707         * src/tabular.C (Validate): fixed/added validating of LaTeXFeatures.
5708
5709         * src/insets/insettext.C (computeTextRows): small fix for display of
5710         1 character after a newline.
5711
5712         * src/tabular.C (OldFormatRead): fixed the OldFormatRead with regard
5713         to cont-rows!
5714
5715 2000-05-18  Juergen Vigna  <jug@sad.it>
5716
5717         * src/insets/insettabular.C (TabularFeatures): fixed update of display
5718         when changing width of column.
5719
5720         * src/tabular.C (set_row_column_number_info): setting of
5721         autobreak rows if necessary.
5722
5723 2000-05-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5724
5725         * src/lyxvc.C (toggleReadOnly): use VCS::status() instead of stat()
5726
5727         * src/vc-backend.*: renamed stat() to status() and vcstat to
5728         vcstatus. It happens that Tru64 Unix 5.0 has stat() as a macro and
5729         compilation broke. The new name seems more relevant, anyway.
5730
5731 2000-05-17  Juergen Vigna  <jug@sad.it>
5732
5733         * src/BufferView2.C (removeAutoInsets): fixed use of AutoDeleteInsets
5734         which was wrong if the removing caused removing of rows!
5735
5736         * src/lyxlex_pimpl.C (next, nextToken): insert support for pushToken.
5737         (pushToken): new function.
5738
5739         * src/text2.C (CutSelection): fix problem discovered with purify
5740
5741 2000-05-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5742
5743         * src/debug.C (showTags): enlarge the first column, now that we
5744         have 6-digits debug codes.
5745
5746         * lib/layouts/hollywood.layout:
5747         * lib/tex/hollywood.cls:        
5748         * lib/tex/brodway.cls: 
5749         * lib/layouts/brodway.layout: more commands and fewer
5750         environments. Preambles moved in the .cls files. Broadway now has 
5751         more options on scene numbering and less whitespace (from Garst)
5752
5753         * src/insets/insetbib.C (getKeys): make sure that we are in the
5754         document directory, in case the bib file is there.
5755
5756         * src/insets/insetbib.C (Latex): revert bogus change.
5757
5758 2000-05-16  Juergen Vigna  <jug@sad.it>
5759
5760         * src/insets/insettabular.C (UnlockInsetInInset): Changes to update
5761         the TabularLayout on cursor move.
5762
5763         * src/TabularLayout.C (TabularOptionsCB): Wrong call to MenuLayoutTable
5764
5765         * src/insets/insettabular.C (Clone): Clone the LyXTabular for
5766         undo-handling.
5767         (getCellXPos): 
5768         (draw): fixed cursor position and drawing so that the cursor is
5769         visible when before the tabular-inset.
5770
5771         * src/insets/insettext.C (init): drawLockedFrame was not initialized
5772         when creating from old insettext.
5773
5774         * src/tabular.C (Clone): added Clone of text-inset for undo-handling.
5775
5776 2000-05-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5777
5778         * lib/tex/hollywood.cls: better algorithm for page breaks (Garst)
5779         * lib/tex/brodway.cls: ditto 
5780
5781         * lib/layouts/brodway.layout: change alignment of parenthical
5782         layout (Garst)
5783         
5784 2000-05-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5785
5786         * config/lyxinclude.m4 (LYX_PATH_XFORMS): make it clear that only
5787         versions 0.88 and 0.89 are supported.
5788
5789 2000-05-15  Juergen Vigna  <jug@sad.it>
5790
5791         * src/insets/insetcollapsable.C (draw): enhancements in drawing and
5792         width calculating.
5793
5794         * src/insets/insettext.C (computeTextRows): redone completely this
5795         function in a much cleaner way, because of problems when having a
5796         fixed maxWidth.
5797         (draw): added a frame border when the inset is locked.
5798         (SetDrawLockedFrame): this sets if we draw the border or not.
5799         (SetFrameColor): this sets the frame color (default=insetframe).
5800
5801         * src/insets/lyxinset.h: added x() and y() functions which return
5802         the top_x and top_baseline values. Added a GetFirstLockingInsetOfType
5803         function which is needed to see if we have a locking inset of some
5804         type in this inset (needed for now in insettabular).
5805
5806         * src/vspace.C (inPixels): the same function also without a BufferView
5807         parameter as so it is easier to use it in some ocasions.
5808
5809         * src/lyxfunc.C: changed all places where insertInset was used so
5810         that now if it couldn't be inserted it is deleted!
5811
5812         * src/TabularLayout.C: 
5813         * src/TableLayout.C: added support for new tabular-inset!
5814
5815         * src/BufferView2.C (insertInset): this now returns a bool if the
5816         inset was really inserted!!!
5817
5818         * src/tabular.C (GetLastCellInRow): 
5819         (GetFirstCellInRow): new helper functions.
5820         (Latex): implemented for new tabular class.
5821         (TeXCellPostamble): 
5822         (TeXCellPreamble): 
5823         (TeXBottomHLine): 
5824         (TeXTopHLine): new Latex() helper functions.
5825
5826 2000-05-12  Juergen Vigna  <jug@sad.it>
5827
5828         * src/mathed/formulamacro.C (Read): 
5829         * src/mathed/formula.C (Read): read also the \end_inset here!
5830
5831 2000-05-10  Dekel Tsur  <dekel@math.tau.ac.il>
5832
5833         * src/mathed/math_write.C (MathParInset::Write): Fixed a bug:
5834         crush when saving formulae with unbalanced parenthesis.
5835
5836 20000-05-11  Dekel Tsur  <dekel@math.tau.ac.il>
5837
5838         * src/layout.C: Add new keyword "endlabelstring" to layout file
5839
5840         * src/text.C (GetVisibleRow): Draw endlabel string.
5841
5842         * lib/layouts/broadway.layout
5843         * lib/layouts/hollywood.layout: Added endlabel for the
5844         Parenthetical layout.
5845
5846         * lib/layouts/heb-article.layout: Do not use slanted font shape
5847         for Theorem like environments.
5848
5849         * src/buffer.C (makeLaTeXFile): Always add "american" to 
5850         the UsedLanguages list if document language is RTL. 
5851
5852 2000-05-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5853
5854         * add addendum to README.OS2 and small patch (from SMiyata)
5855
5856 2000-05-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5857
5858         * many files: correct the calls to ChangeExtension().
5859
5860         * src/support/filetools.C (ChangeExtension): remove the no_path
5861         argument, which does not belong there. Use OnlyFileName() instead.
5862
5863         * src/insets/insetbib.C (Latex): use absolute paths for bibtex
5864         files when LaTeXing a non-nice latex file.
5865
5866         * src/lyxlookup.C (isDeadEvent): use a switch statement instead of
5867         a chain of "if". Return false when deadkeys are not handled.
5868         
5869         * src/lyx_main.C (LyX): adapted the code for default bindings.
5870
5871         * src/kbmap.C (defaultKeyBindings): new method. Performs the default
5872         bindings for basic functionality (except deadkeys).
5873         (deadKeyBindings): new method. Performs the bindings of deadkeys.
5874
5875         * src/lyxrc.C (defaultKeyBindings): moved to lyx_main.C 
5876         several methods: handle override_x_deadkeys.
5877
5878         * src/lyxrc.h: remove the "bindings" map, which did not make much
5879         sense anyway. New variable override_x_deadkeys, defaulting to "true".
5880         
5881 2000-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5882
5883         * src/lyxfont.C (stateText): use a saner method to determine
5884         whether the font is "default". Seems to fix the crash with DEC
5885         cxx. 
5886
5887         * src/Bullet.[Ch] (Bullet): remove const on parameters.
5888
5889 2000-05-08  Juergen Vigna  <jug@sad.it>
5890
5891         * src/insets/insettabular.C (InsetButtonRelease): Now opens the
5892         TabularLayoutMenu with mouse-button-3
5893         (LocalDispatch): added LFUN_MENU_LAYOUT to open the Tabular-Layout.
5894
5895         * src/TabularLayout.C: added this file for having a Layout for
5896         tabular-insets.
5897
5898 2000-05-05  Juergen Vigna  <jug@sad.it>
5899
5900         * src/insets/insettabular.C (UpdateLocal): resetCursorPos when
5901         recalculating inset-widths.
5902         (TabularFeatures): activated this function so that I can change
5903         tabular-features via menu.
5904
5905         * src/menus.C (ShowEditMenu): inserted support for insettabular so
5906         that I can test some functions with the Table menu.
5907
5908 2000-05-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
5909
5910         * src/lyxfont.C (stateText): guard against stupid c++libs.
5911
5912         * src/tabular.C: add using std::vector
5913         some whitespace changes, + removed som autogenerated code.
5914
5915         * src/buffer.C (parseSingleLyXformat2Token): stupid bug.
5916
5917 2000-05-05  Juergen Vigna  <jug@sad.it>
5918
5919         * src/tabular.[Ch]: now using std:vector instead of arrays for all the
5920         row, columns and cellstructures.
5921
5922 2000-05-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
5923
5924         * lib/lyxrc.example: remove obsolete entries.
5925
5926         * src/buffer.C (parseSingleLyXformat2Token): patch from dekel, fix
5927         reading of protected_separator for free_spacing.
5928
5929 2000-05-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5930
5931         * src/text.C (draw): do not display an exclamation mark in the
5932         margin for margin notes. This is confusing, ugly and
5933         uninformative. 
5934
5935         * src/LaTeXFeatures.C (getPackages): load amssymb also when 'Use
5936         AMS math' is checked.
5937
5938         * src/buffer.C (makeLaTeXFile): do not depend on the textclass
5939         name to see whether including the amsmath package is needed.
5940
5941 2000-05-05  Dekel Tsur  <dekel@math.tau.ac.il>
5942
5943         * src/paragraph.C (validate): Compute UsedLanguages correctly
5944         (don't insert the american language if it doesn't appear in the
5945         document)
5946
5947         * src/paragraph.C (TeXOnePar,SimpleTeXOnePar,SimpleTeXSpecialChars)
5948         The argument of \thanks{} command is considered moving argument
5949
5950         * src/paragraph.C (SimpleTeXOnePar): Put \protect before \\ if in
5951         moving argument.
5952
5953 2000-05-04  Dekel Tsur  <dekel@math.tau.ac.il>
5954
5955         * src/text.C (GetVisibleRow): Improved drawing of vertical lines
5956         for appendix/minipage/depth. The lines can be now both in the footnote 
5957         frame, and outside the frame.
5958
5959         * src/text.C (SingleWidth,draw): Correct rendering of Hebrew vowels
5960         points ("nikud")
5961
5962 2000-05-05  Juergen Vigna  <jug@sad.it>
5963
5964         * src/table.[Ch]: removed the inset and buffer stuff as this is now
5965         neede only in tabular.[Ch].
5966
5967 2000-05-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
5968
5969         * src/insets/insetspecialchar.C (Read): allow command == '~' for
5970         PROTECTED_SEPARATOR 
5971         (Write): write '~' for PROTECTED_SEPARATOR
5972
5973 2000-05-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
5974
5975         * src/lyxparagraph.h: add a friend struct matchIT after the struct
5976         InsetTable.
5977
5978         * src/mathed/formula.C (drawStr): rename size to siz.
5979
5980         * src/insets/figinset.C (RestoreForm): rename pflags to piflags,
5981         possibly fix a bug by not changing the pflags = flags to piflags =
5982         flags.
5983
5984 2000-05-05  Juergen Vigna  <jug@sad.it>
5985
5986         * src/insets/insetbib.C: moved using directive
5987
5988         * src/ImportNoweb.C: small fix for being able to compile (missing
5989         include cstdlib)
5990
5991 2000-05-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
5992
5993         * config/lyxinclude.m4 (LYX_CXX_STL_STRING): change the test not
5994         to use clear, since we don't depend on this in the code. Add test
5995         for string::compare
5996
5997 2000-05-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5998
5999         * (various *.C files): add using std::foo directives to please dec
6000         cxx.
6001
6002         * replace calls to string::clear() to string::erase() (Angus)
6003
6004         * src/cheaders/cmath: modified to provide std::abs.
6005
6006 2000-05-04  Juergen Vigna  <jug@sad.it>
6007
6008         * src/insets/insettext.C: Prepared all for inserting of multiple
6009         paragraphs. Still display stuff to do (alignment and other things),
6010         but I would like to use LyXText to do this when we cleaned out the
6011         table-support stuff.
6012
6013         * src/insets/insettabular.C: Changed lot of stuff and added lots
6014         of functionality still a lot to do.
6015
6016         * src/tabular.C: Various functions changed name and moved to be
6017         const functions. Added new Read and Write functions and changed
6018         lots of things so it works good with tabular-insets (also removed
6019         some stuff which is not needed anymore * hacks *).
6020
6021         * src/lyxcursor.h: added operators == and != which just look if
6022         par and pos are (not) equal.
6023
6024         * src/buffer.C (latexParagraphs): inserted this function to latex
6025         all paragraphs form par to endpar as then I can use this too for
6026         text-insets.
6027
6028         * src/text2.C (SetLayout): Changed this to use a cursor this is needed
6029         so that I can call this to from text insets with their own cursor.
6030
6031         * src/buffer.C (makeLaTeXFile): added the output of one \n after the
6032         output off all paragraphs (because of the fix below)!
6033
6034         * src/paragraph.C (TeXOnePar): removed output of \n when we are in
6035         the very last paragraph (this could be also the last paragraph of an
6036         inset!)
6037
6038         * src/texrow.h: added rows() call which returns the count-variable.
6039
6040 2000-05-03  Jose Abilio Oliveira Matos <jamatos@novalis.fc.up.pt>
6041
6042         * lib/lyxrc.example: fix examples for exporting SGML to HTML.
6043
6044         * lib/configure.m4: better autodetection of DocBook tools.
6045
6046 2000-04-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
6047
6048         * src/lyx_main.C (easyParse): use lyxerr instead of cerr.
6049
6050         * src/lyx_cb.C: add using std::reverse;
6051
6052         * src/LaTeX.C (run): on error always run deleteFilesOnError before
6053         returning.
6054
6055         * src/LaTeX.[Ch] (deleteFilesOnError): new method. unlinks some
6056         selected files. Should fix repeated errors from generated files.
6057
6058 2000-04-27  Dekel Tsur  <dekel@math.tau.ac.il>
6059
6060         * src/lyx_cb.C (TocUpdateCB): Reverse strings for Hebrew paragraphs
6061
6062         * src/spellchecker.C (RunSpellChecker): Reverse Hebrew strings in
6063         the spellchecker popup. 
6064
6065         * lib/lyxrc.example:  Removed the \number_inset section
6066
6067 2000-04-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6068
6069         * src/insets/figinset.C (various): Use IsFileReadable() to make
6070         sure that the file actually exist. Relying on ghostscripts errors
6071         is a bad idea since they can lead to X server crashes.  
6072
6073 2000-04-27  Claus Hentschel <claus.hentschel@mbau.fh-hannover.de>
6074
6075         * intl/loadmsgcat.c (_nl_load_domain): pass O_BINARY as flag to
6076         open under CYGWIN 
6077
6078         * lib/lyxrc.example: smallish typo in description of
6079         \view_dvi_paper_option 
6080
6081 2000-04-26  André Pönitz <poenitz@mathematik.tu-chemnitz.de>
6082
6083         * src/lyxfunc.h:
6084         * src/lyxfunc.C: doImportHelper to factor out common code of the
6085         various import methods. New functions doImportASCIIasLines,
6086         doImportASCIIasParagraphs, doImportLaTeX, doImportNoWeb,
6087         doImportLinuxDoc  for the  format specific parts.
6088
6089         * buffer.h:
6090         * buffer.C: Dispatch  returns now a bool to indicate success
6091
6092         * lyx_gui.h:
6093         * lyx_gui.C: Add getLyXView() for member access
6094
6095         * lyx_main.C: Change logic for batch commands: First try
6096         Buffer::Dispatch (possibly without GUI), if that fails, use
6097         LyXFunc::Dispatch
6098
6099         * lyx_main.C: Add support for --import command line switch.
6100         Now 'lyx --import ascii file.txt' opens the GUI with file.txt loaded.
6101         Available Formats: Everything  accepted by 'buffer-import <format>'
6102
6103 2000-04-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
6104
6105         * src/lyx_gui.C (create_forms): small oneliner from Garst to have
6106         unnumbered parts.
6107
6108         * src/lyx_cb.C (ScreenApplyCB): clear the textcache so that the
6109         documents will be reformatted upon reentry.
6110
6111 2000-04-27  Juergen Vigna  <jug@sad.it>
6112
6113         * src/CutAndPaste.C (pasteSelection): last paragraph was not returned
6114         correctly only last pos this was a bug.
6115
6116 2000-04-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
6117
6118         * release of lyx-1.1.5pre1
6119
6120 2000-04-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6121
6122         * src/insets/insettabular.[Ch]: fix the Clone() declaration.
6123
6124         * src/menus.C: revert the change of naming (Figure->Graphic...)
6125         from 2000-04-11. It was incomplete and bad.
6126         
6127         * src/LColor.[Ch]: add LColor::depthbar.
6128         * src/text.C (GetVisibleRow): use it.
6129
6130         * README: update the languages list.
6131
6132 2000-04-25  Dekel Tsur  <dekel@math.tau.ac.il>
6133
6134         * src/text.C (GetVisibleRow): show the depth of paragraphs using
6135         vertical bars.
6136
6137 2000-04-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
6138
6139         * README: remove sections that were just wrong.
6140
6141         * src/text2.C (GetRowNearY): remove currentrow code
6142
6143         * src/text.C (GetRow): remove currentrow code
6144
6145         * src/screen.C (Update): rewritten a bit.
6146         (SmallUpdate): removed func
6147
6148         * src/lyxtext.h (text_status): removed NEED_LITTLE_REFRESH, never
6149         used.
6150         (FullRebreak): return bool
6151         (currentrow): remove var
6152         (currentrow_y): ditto
6153
6154         * src/lyxscreen.h (Draw): change arg to unsigned long
6155         (FitCursor): return bool
6156         (FitManualCursor): ditto
6157         (Smallpdate): remove func
6158         (first): change to unsigned long
6159         (DrawOneRow): change second arg to long (from long &)
6160         (screen_refresh_y): remove var
6161         (scree_refresh_row): ditto
6162         
6163         * src/lyxrow.h: change baseline to usigned int from unsigned
6164         short, this brings some implicit/unsigned issues out in the open.
6165
6166         * src/lyxfunc.C (moveCursorUpdate): update(0) == update(-2) change
6167         accordingly.
6168         (Dispatch): don't call updateScrollbar after fitCursor. Use update
6169         instead of smallUpdate.
6170
6171         * src/lyxcursor.h: change y to unsigned long
6172
6173         * src/buffer.h: don't call updateScrollbar after fitcursor
6174
6175         * src/buffer.C (parseSingleLyXformat2Token): move variables to
6176         where they are used. Removed "\\direction", this was not present
6177         in 1.1.4 and is already obsolete. Commented out some code that I
6178         believe to never be called.
6179         (runLiterate): don't call updateScrollbar after fitCursor
6180         (runLaTeX): ditto
6181         (buildProgram): ditto
6182         (runChktex): ditto
6183
6184         * src/WorkArea.h (workWidth): change return val to unsigned
6185         (width): ditto
6186         (height): ditto
6187         (redraw): remove the button redraws
6188         (setScrollbarValue): change for scrollbar
6189         (getScrollbarValue): change for scrollbar
6190         (getScrollbarBounds): change for scrollbar
6191
6192         * src/WorkArea.C (C_WorkArea_up_cb): removed func
6193         (C_WorkArea_down_cb): removed func
6194         (WorkArea): use fl_add_scrollbar instead of two buttons and a slider.
6195         (resize): change for scrollbar
6196         (setScrollbar): ditto
6197         (setScrollbarBounds): ditto
6198         (setScrollbarIncrements): ditto
6199         (up_cb): removed func
6200         (down_cb): removed func
6201         (scroll_cb): change for scrollbar
6202         (work_area_handler): ditto
6203
6204         * src/BufferView_pimpl.C (fitCursor): only call updateScrollbar
6205         when FitCursor did something.
6206         (updateScrollbar): some unsigned changes
6207         (downCB): removed func
6208         (scrollUpOnePage): removed func
6209         (scrollDownOnePage): remvoed func
6210         (workAreaMotionNotify): don't call screen->FitCursor but use
6211         fitCursor instead. and bool return val
6212         (workAreaButtonPress): ditto
6213         (workAreaButtonRelease): some unsigned changes
6214         (checkInsetHit): ditto
6215         (workAreaExpose): ditto
6216         (update): parts rewritten, comments about the signed char arg added
6217         (smallUpdate): removed func
6218         (cursorPrevious): call needed updateScrollbar
6219         (cursorNext): ditto
6220
6221         * src/BufferView2.C (allFloats): don't call updateScrollbar after
6222         fitCursor.
6223
6224         * src/BufferView.[Ch] (upCB): removed func
6225         (downCB): removed func
6226         (smallUpdate): removed func
6227
6228 2000-04-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
6229
6230         * src/lyxtext.h src/text.C src/text2.C: removed support for the
6231         currentrow, currentrow_y optimization. This did not help a lot and
6232         if we want to do this kind of optimization we should rather use
6233         cursor.row instead of the currentrow. 
6234
6235         * src/buffer.C (parseSingleLyXformat2Token): fixed mistake in
6236         buffer spacing and klyx spacing support.
6237
6238 2000-04-25  Dekel Tsur  <dekel@math.tau.ac.il>
6239
6240         * src/spellchecker.C (RunSpellChecker): Speedup spellchecking by
6241         a factor of 50!
6242
6243 2000-04-26  Juergen Vigna  <jug@sad.it>
6244
6245         * src/insets/figinset.C: fixes to Lars sstream changes!
6246
6247 2000-04-23  Dekel Tsur  <dekel@math.tau.ac.il>
6248
6249         * A lot of files: Added Ascii(ostream &) methods to all inset
6250         classes. Used when exporting to ASCII.
6251         
6252         * src/buffer.C (writeFileAscii,RoffAsciiTable)
6253         * src/paragraph.C (RoffContTableRows): Use the Ascii() methods
6254         instead of Latex()
6255
6256         * src/text2.C (ToggleFree): Disabled implicit word selection when
6257         there is a change in the language
6258         
6259         * src/insets/insetspecialchar.C (Linuxdoc,DocBook): Fixed a bug:
6260         no output was generated for end-of-sentence inset.
6261         
6262         * src/insets/lyxinset.h
6263         * src/buffer.C
6264         * src/lyxfunc.C
6265         * src/paragraph.C: Removed the insetnumber code
6266
6267         * src/text.C (SelectWordWhenUnderCursor): Cleaned the code.
6268
6269 2000-04-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
6270
6271         * src/buffer.C (parseSingleLyXformat2Token): remove no_isolatin1,
6272         no_babel and no_epsfig completely from the file.
6273         (parseSingleLyXformat2Token): add handling for per-paragraph
6274         spacing as written by klyx.
6275
6276         * src/insets/figinset.C: applied patch by Andre. Made it work with
6277         ostringstream too.
6278
6279 2000-04-20  Juergen Vigna  <jug@sad.it>
6280
6281         * src/insets/insettext.C (cutSelection): 
6282         (copySelection): Fixed with selection from right to left.
6283         (draw): now the rows are not recalculated at every draw.
6284         (computeTextRows): for now reset the inset-owner here (this is
6285         important for an undo or copy where the inset-owner is not set
6286         automatically!)
6287
6288         * src/BufferView_pimpl.C (workAreaMotionNotify): when passing the
6289         motion to the_locking_inset screen->first was forgotten, this was
6290         not important till we got multiline insets.
6291
6292 2000-04-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6293
6294         * src/mathed/formulamacro.C (Latex): remove CHECK comment, since
6295         code seems to be alright (it is code changed by Dekel, and the
6296         intent is indeed that all macros should be defined \protect'ed)
6297
6298         * NEWS: a bit of reorganisation of the new user-visible features.
6299
6300 2000-04-19  Juergen Vigna  <jug@sad.it>
6301
6302         * src/insets/insettext.C (init): using a LyXCursor now for cursor
6303         position. Set the inset_owner of the used paragraph so that it knows
6304         that it is inside an inset. Fixed cursor handling with mouse and
6305         cursor keys. Fixed wrong timed inset redraws and lots of other changes
6306         and cleanups to make TextInsets work better.
6307
6308         * src/insets/insettext.h: Using a LyXCursor now. Added a clear() call.
6309         Changed parameters of various functions and added LockInsetInInset().
6310
6311         * src/insets/insettext.C: 
6312
6313         * src/insets/insetcollapsable.h: 
6314         * src/insets/insetcollapsable.C: 
6315         * src/insets/insetfoot.h: 
6316         * src/insets/insetfoot.C: 
6317         * src/insets/insetert.h: 
6318         * src/insets/insetert.C: cleaned up the code so that it works now
6319         correctly with insettext.
6320
6321         * src/insets/inset.C: 
6322         * src/insets/lyxinset.h: inserted inset_owner and some more changes so
6323         that insets in insets are supported right.
6324
6325         * src/table.h: 
6326         * src/table.C: lots of changes for use with inset tabular (and cleanup)
6327
6328         * src/paragraph.C: some small fixes
6329
6330         * src/debug.h: inserted INSETS debug info
6331
6332         * src/lyxfunc.C (Dispatch): added code for InsetTabular and some inset
6333         fixes (f.ex. calling LFUN_DOWN if exiting inset with LFUN_DOWN).
6334
6335         * src/commandtags.h: 
6336         * src/LyXAction.C: insert code for InsetTabular.
6337
6338         * src/BufferView_pimpl.C (workAreaMotionNotify): do return always if
6339         not Button1MotionMask.
6340         (workAreaButtonRelease): send always a InsetButtonRelease event to
6341         the_locking_inset.
6342         (checkInsetHit): some setCursor fixes (always with insets).
6343
6344         * src/BufferView2.C (lockInset): returns a bool now and extended for
6345         locking insets inside insets.
6346         (showLockedInsetCursor): it is important to have the cursor always
6347         before the locked inset.
6348         (fitLockedInsetCursor): forgot adding of InsetInInsetY()-offset.
6349
6350         * src/BufferView.h: made lockInset return a bool.
6351
6352         * src/lyxtext.h: inserted function SetCursor(LyXCursor, ...).
6353
6354         * src/text2.C (SetCursor): This now has a version with a LyXCursor
6355         that is used also internally but can be called as public to have back
6356         a cursor pos which is not set internally.
6357         (SetCursorIntern): Changed to use above function.
6358
6359         * src/CutAndPaste.C (DeleteBuffer): forgot to inizialize textclass
6360
6361 2000-04-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
6362
6363         * ANNOUNCE: 
6364         * INSTALL: 
6365         * UPGRADING: 
6366         * NEWS: updated for prerelease of 1.1.5. Please comment and send
6367         patches for things that should be in or should be changed.
6368
6369         * src/* [insetfiles]: change "usigned char fragile" to bool
6370         fragile. There was only one point that could that be questioned
6371         and that is commented in formulamacro.C. Grep for "CHECK".
6372         
6373         * src/CutAndPaste.C (getBufferTextClass): unused func, removed.
6374         (DeleteBuffer): take it out of CutAndPaste and make it static.
6375
6376 2000-04-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
6377
6378         * src/paragraph.C (TeXOnePar): use the new method in Spacing to
6379         output the spacing envir commands. Also the new commands used in
6380         the LaTeX output makes the result better.
6381
6382         * src/Spacing.C (writeEnvirBegin): new method
6383         (writeEnvirEnd): new method
6384
6385 2000-04-18  Juergen Vigna  <jug@sad.it>
6386
6387         * src/CutAndPaste.C: made textclass a static member of the class
6388         as otherwise it is not accesed right!!!
6389
6390 2000-04-17  Dekel Tsur  <dekel@math.tau.ac.il>
6391
6392         * forms/layout_forms.fd
6393         * src/layout_forms.h
6394         * src/layout_forms.C (create_form_form_character)
6395         * src/lyx_cb.C (UserFreeFont)
6396         * src/lyx_gui.C (create_forms): Added GUI support for multi-lingual
6397         documents (in the layout->character popup).
6398
6399 2000-04-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6400
6401         * src/spellchecker.C (create_ispell_pipe): fix a bug where
6402         \spell_command was in fact not honored (from Kevin Atkinson).
6403
6404         * src/lyx_gui.C (~LyXGUI): make sure lyxViews is deleted when
6405         quitting (Angus)
6406
6407         * src/lyx_gui.h: make lyxViews private (Angus)
6408
6409 2000-04-15  Dekel Tsur  <dekel@math.tau.ac.il>
6410
6411         * src/mathed/math_write.C
6412         (MathMatrixInset::Write) Put \protect before \begin{array} and
6413         \end{array} if fragile
6414         (MathParInset::Write): Put \protect before \\ if fragile
6415
6416 2000-04-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
6417
6418         * src/lyx_gui.C (LyXGUI): initialize the LyXColorHandler. The
6419         initialization if the LyXColorHandler must be done after the
6420         connections to the XServer has been established.
6421
6422         * src/insets/figinset.C (runqueue): change the grabing a bit. Also
6423         get the background pixel from the lyxColorhandler so that the
6424         figures are rendered with the correct background color.
6425         (NextToken): removed functions.
6426         (GetPSSizes): use ifs >> string instead of NextToken.
6427
6428         * src/Painter.[Ch]: the color cache moved out of this file. 
6429
6430         * src/ColorHandler.[Ch]: new files. Holds the gc cache for color
6431         and lines.  
6432
6433 2000-04-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
6434
6435         * src/WorkArea.C (work_area_handler): call BufferView::enterView
6436         and Buffer::leaveView when FL_ENTER and FL_LEAVE.
6437
6438         * src/BufferView.C (enterView): new func
6439         (leaveView): new func
6440
6441         * src/BufferView_pimpl.C (enterView): new func, sets xterm cursor
6442         when approp.
6443         (leaveView): new func, undefines xterm cursor when approp.
6444
6445         * src/bufferview_funcs.C: moved SetXCursor to BufferView_pimp.C
6446         (AllowInput): delete the Workarea cursor handling from this func.
6447
6448         * src/Painter.C (underline): draw a slimer underline in most cases.
6449
6450         * src/lyx_main.C (error_handler): use extern "C"
6451
6452 2000-04-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
6453
6454         * src/insets/figinset.C (DocBook): small patch from Jose (jamatos)
6455         sent directly to me.
6456
6457         * src/text2.C (DeleteEmptyParagraphMechanism): small patch posted
6458         to the list by Dekel.
6459
6460         * src/lyxfunc.C (Dispatch): make PARAGRAPH_SPACING compile with
6461         strstream too.
6462
6463         * src/bufferview_funcs.[Ch]: two new files, moved several of the
6464         methods from lyx_cb.here.
6465
6466         * src/lyx_cb.C: in addition to the above; removed input_prohibited
6467         it was not used.
6468
6469 2000-04-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
6470
6471         * src/lyx_cb.[Ch]: made several functions take a BufferView* arg
6472         instead of using current_view directly. 
6473
6474         * src/lyxfunc.C (Dispatch): the paragraph-spacing implementation
6475
6476         * src/LyXAction.C (init): add the paragraph-spacing command.
6477
6478         * src/commandtags.h: add enum for LFUN_PARAGRAPH_SPACING
6479
6480         * src/buffer.C (parseSingleLyXformat2Token): read the paragraph spacing
6481
6482         * src/lyx_cb.C (CurrentState): output a string when the spacing is
6483         different from the documents.
6484
6485         * src/text.C (SetHeightOfRow): take paragraph spacing into
6486         account, paragraph spacing takes precedence over buffer spacing
6487         (GetVisibleRow): ditto
6488
6489         * src/paragraph.C (writeFile): output the spacing parameter too.
6490         (validate): set the correct features if spacing is used in the
6491         paragraph. 
6492         (Clear): set spacing to default
6493         (MakeSameLayout): spacing too
6494         (HasSameLayout): spacing too
6495         (SetLayout): spacing too
6496         (TeXOnePar): output the spacing commands
6497
6498         * src/lyxparagraph.h: added a spacing variable for use with
6499         per-paragraph spacing.
6500
6501         * src/Spacing.h: add a Default spacing and a method to check if
6502         the current spacing is default. also added an operator==
6503
6504         * src/text2.C (DeleteEmptyParagraphMechanism): added a
6505         RedoParagraphs.
6506
6507 2000-04-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6508
6509         * src/lyxserver.C (callback): fix dispatch of functions
6510
6511         * src/insets/insetlatexaccent.C (checkContents): turn bogus
6512         printf() into lyxerr call. 
6513
6514         * src/tex-strings.C (tex_fonts): add "pslatex" to the choice of
6515         fonts. 
6516
6517         * src/menus.C (ShowInsertMenu): rename "Figure" to "Graphic",
6518         "Table" to "Table Box", "Float" to "Floating Material"; deletes
6519         the "Float" from each of the subitems.
6520         (ShowHelpMenu): add entry for "FAQ" and "TOC".
6521
6522         * src/support/DebugStream.h: add an #ifdef to work around a gcc
6523         2.8.x compiler error. Yes, I know, gcc 2.8.1 is bad, but I
6524         documented the change so that the workaround can be nuked later.
6525
6526         * src/lyx_gui_misc.C (getScreenDPI): new function. Code moved from 
6527         LyX::init().
6528         
6529         * src/lyxlex_pimpl.C (next): do not re-declare the default value
6530         of arguments.
6531         * src/buffer.C (getLatexName): ditto
6532         (setReadonly): ditto
6533
6534 2000-04-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
6535
6536         * src/LaTeXFeatures.h: add a const reference to BufferParams, to
6537         avoid some uses of current_view. Added also a bufferParams()
6538         method to get at this.
6539
6540         * src/lyxtext.h: changed params->buffer and paramters->bparams.
6541
6542 2000-04-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
6543
6544         * src/lyxparagraph.[Ch]: removed
6545         operator<(LyXParagraph::InsetTable..., added a struct matchIT
6546         with operators used by lower_bound and
6547         upper_bound in InsetTable's
6548         Make struct InsetTable private again. Used matchpos.
6549
6550 2000-04-08  Dekel Tsur  <dekel@math.tau.ac.il>
6551         
6552         * src/lyx_cb.C (DocumentApplyCB): When changing the language of the
6553         document, the language of existing text is changed (unless the
6554         document is multi-lingual)
6555
6556         * src/buffer.C (ChangeLanguage,isMultiLingual) New methods.
6557
6558         * src/paragraph.C (ChangeLanguage,isMultiLingual) New methods.
6559
6560         * A lot of files: A rewrite of the Right-to-Left support.
6561    
6562 2000-04-10  Juergen Vigna  <jug@sad.it>
6563
6564         * src/BufferView2.C (showLockedInsetCursor): small bugfix for
6565         misplaced cursor when inset in inset is locked.
6566
6567         * src/insets/insettext.C (LocalDispatch): small fix so that a
6568         BREAKLINE is not inserted if we don't permit it with autBreakRows.
6569
6570         * src/insets/insetfoot.C (GetDrawFont): implemented this as the
6571         footnote font should be decreased in size twice when displaying.
6572
6573         * src/insets/insettext.C (GetDrawFont): inserted this function as
6574         the drawing-font may differ from the real paragraph font.
6575
6576         * src/lyxfunc.C (processKeyEvent): fixed Esc-handling when unlocking
6577         insets (inset in inset!).
6578
6579         * src/insets/insetfoot.C (InsertInsetAllowed): implemented the below
6580         function here because we don't want footnotes inside footnotes.
6581
6582         * src/insets/insettext.C (InsetText): forgot to set autoBreakRows for
6583         Cloned insets.
6584         (init): now set the inset_owner in paragraph.C
6585         (LocalDispatch): added some resetPos() in the right position
6586         (cutSelection): 
6587         (copySelection): 
6588         (pasteSelection): changed to use the new CutAndPaste-Class.
6589
6590         * src/insets/lyxinset.h: inserted new function InsertInsetAllowed
6591         which tells if it is allowed to insert another inset inside this one.
6592
6593         * src/lyx_cb.C (DocumentApplyCB): Using CutAndPaste-Class for
6594         SwitchLayoutsBetweenClasses.
6595
6596         * src/text2.C (InsertInset): checking of the new paragraph-function
6597         InsertInsetAllowed.
6598         (DeleteSimpleCutBuffer): removed (for now only with #ifdef) as this
6599         is not needed anymore here!
6600         (CutSelection): 
6601         (CopySelection): 
6602         (PasteSelection): redone (also with #ifdef) so that now this uses
6603         the CutAndPaste-Class.
6604         (SwitchLayoutsBetweenClasses): removed here and implemented in the
6605         CutAndPaste-Class.
6606         
6607         * src/CutAndPaste.[Ch]: added this for clean handling of CutAndPaste
6608         from/to text/insets.
6609
6610         * src/paragraph.C (LyXParagraph): inserted new inset_owner pointer
6611         so that the paragraph knows if it is inside an (text)-inset.
6612         (InsertFromMinibuffer): changed return-value to bool as now it
6613         may happen that an inset is not inserted in the paragraph.
6614         (InsertInsetAllowed): this checks if it is allowed to insert an
6615         inset in this paragraph.
6616         (PasteParagraph): 
6617         (BreakParagraphConservative): 
6618         (BreakParagraph) : small change for the above change of the return
6619         value of InsertFromMinibuffer.
6620
6621         * src/lyxparagraph.h: added inset_owner and the functions to handle
6622         this (SetInsetOwner(), InInset() and InsertInsetAllowed()).
6623
6624 2000-04-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
6625
6626         * src/BufferView.[Ch], src/BufferView_pimpl.[Ch]: move more
6627         functions from BufferView to BufferView::Pimpl to ease maintence.
6628         
6629         * src/text2.C (DeleteEmptyParagraphMechanism): update the cursor
6630         correctly. Also use SetCursorIntern instead of SetCursor.
6631
6632         * src/insets/insetinfo.C (draw): draw InsetInfo notes with the
6633         correct color.
6634
6635 2000-04-08  Lars Gullik Bjønnes  <larsbj@lyx.org>
6636
6637         * src/WorkArea.C (belowMouse): manually implement below mouse.
6638
6639         * src/*: Add "explicit" on several constructors, I added probably
6640         some unneeded ones. A couple of changes to code because of this.
6641
6642         * src/BufferView.[Ch]: Used the "pimpl" idiom to hide more of the
6643         implementation and private parts from the users of BufferView. Not
6644         quite finished.
6645
6646         * src/lyxlex.[Ch]: Used the "pimpl" idiom to hide more of the
6647         implementation and private parts from the users of LyXLex. Not
6648         quite finished.
6649
6650         * src/BufferView_pimpl.[Ch]: new files
6651
6652         * src/lyxlex_pimpl.[Ch]: new files
6653
6654         * src/LyXView.[Ch]: some inline functions move out-of-line
6655
6656 2000-04-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6657
6658         * src/lyxparagraph.h: make struct InsetTable public.
6659
6660         * src/support/lyxstring.h: change lyxstring::difference_type to be
6661         ptrdiff_t. Add std:: modifiers to streams.
6662
6663         * src/font.C: include the <cctype> header, for islower() and
6664         isupper(). 
6665
6666 2000-04-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
6667
6668         * src/font.[Ch]: new files. Contains the metric functions for
6669         fonts, takes a LyXFont as parameter. Better separation of concepts.
6670         
6671         * src/lyxfont.[Ch]: move the metric functions to font.[Ch] several
6672         changes because of this.
6673
6674         * src/PainterBase.[Ch] (width): remove, use the ones in font.C instead
6675
6676         * src/*: compile with -Winline and move functions that don't
6677         inline out of line.
6678         
6679         * src/lyx_cb.C (stringOnlyContains): use string::find_first_not_of
6680         instead of strspn.
6681
6682 2000-04-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
6683
6684         * src/paragraph.C (GetLabelstring): renamed from GetLabestring.
6685         (various files changed because of this)
6686
6687         * src/Painter.C (text): fixed the drawing of smallcaps.
6688
6689         * src/lyxfont.[Ch] (drawText): removed unused member func.
6690         (drawString): ditto
6691
6692         * src/*.C: added needed "using" statements and "std::" qualifiers. 
6693
6694 2000-03-31  Lars Gullik Bjønnes  <larsbj@lyx.org>
6695
6696         * src/*.h: removed all use of "using" from header files use
6697         qualifier std:: instead. 
6698
6699 2000-04-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6700
6701         * src/text.C (Backspace): some additional cleanups (we already
6702         know whether cursor.pos is 0 or not).
6703
6704         * lib/reLyX/Makefile.am (DESTDIR): add an empty value (since
6705         automake does not provide one).
6706
6707         * src/bmtable.h: replace C++ comments with C comments.
6708
6709 2000-04-02  Dekel Tsur <dekel@math.tau.ac.il>
6710
6711         * src/screen.C (ShowCursor): Change the shape of the cursor if
6712         the current language is not equal to the language of the document.
6713         (If the cursor change its shape unexpectedly, then you've found a bug)
6714
6715         * src/insets/insettext.C (LocalDispatch, UpdateLocal) Fixed some
6716         bugs [I hope...]
6717
6718         * src/insets/insetnumber.[Ch]: New files.
6719
6720         * src/LyXAction.C (init)
6721         * src/lyxfunc.C (dispatch): Add command number-inset-insert
6722
6723         * lyxrc.example
6724         * src/lyxrc.C: Renamed command \auto_mathmode to \number_inset
6725
6726         * src/lyxparagraph.h
6727         * src/paragraph.C: Changed insetlist to Vector<InsetTable>.
6728         (the vector is kept sorted).
6729
6730         * src/text.C (GetVisibleRow): Draw selection correctly when there
6731         is both LTR and RTL text.
6732
6733         * src/paragraph.C (Clone): Use the assignment operator for cloning,
6734         which is much faster.
6735
6736         * src/text.C (GetVisibleRow and other): Do not draw the last space 
6737         in a row if the direction of the last letter is not equal to the
6738         direction of the paragraph.
6739
6740         * src/lyxfont.C (latexWriteStartChanges):
6741         Check that font language is not equal to basefont language.
6742         (latexWriteEndChanges): ditto
6743
6744         * src/lyx_cb.C (StyleReset): Don't change the language while using
6745         the font-default command.
6746
6747         * src/paragraph.C (GetFirstFontSettings): Handle correctly an
6748         empty paragraph before a footnote.
6749
6750         * src/insets/insetcommand.C (draw): Increase x correctly.
6751
6752         * src/screen.C (ShowCursor): Change cursor shape if
6753         current language != document language.
6754
6755         * src/lyxfunc.C (dispatch): Added calls to owner->view()->setState()
6756
6757 2000-03-31  Juergen Vigna  <jug@sad.it>
6758
6759         * src/paragraph.C (GetInset): commented out text[pos] = ' '
6760         (Clone): changed mode how the paragraph-data is copied to the
6761         new clone-paragraph.
6762
6763         * src/lyxfunc.C (Dispatch): fixed small problem when calling
6764         GetInset(pos) with no inset anymore there (in inset UNDO)
6765
6766         * src/insets/insetcommand.C (draw): small fix as here x is
6767         incremented not as much as width() returns (2 before, 2 behind = 4)
6768
6769 2000-03-30  Juergen Vigna  <jug@sad.it>
6770
6771         * src/insets/insettext.C (InsetText): small fix in initialize
6772         widthOffset (should not be done in the init() function)
6773
6774 2000-03-29  Amir Karger <karger@lyx.org>
6775
6776         * lib/examples/it_ItemizeBullets.lyx: translation by 
6777         Stefano Mastella
6778
6779         * Implemented \textasciitilde and fixed a tiny bug in reLyX
6780
6781 2000-03-29  Juergen Vigna  <jug@sad.it>
6782
6783         * src/insets/insetcollapsable.C (Clone): same as in InsetFoot
6784
6785         * src/insets/insetfoot.C (Clone): small change as for the below
6786         new init function in the text-inset
6787
6788         * src/insets/insettext.C (init): new function as I've seen that
6789         clone did not copy the Paragraph-Data!
6790         (LocalDispatch): Added code so that now we have some sort of Undo
6791         functionality (well actually we HAVE Undo ;)
6792
6793         * src/text.C (Backspace): Small fix for the a | a Backspace problem
6794
6795 2000-03-24  Dekel Tsur <dekel@math.tau.ac.il>
6796         
6797         * src/paragraph.C (AutoDeleteInsets) Fixed a bug (wrong positions
6798         were erased)
6799
6800 2000-03-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
6801
6802         * src/main.C: added a runtime check that verifies that the xforms
6803         header used when building LyX and the library used when running
6804         LyX match. Exit with a message if they don't match. This is a
6805         version number check only.
6806
6807         * src/buffer.C (save): Don't allocate memory on the heap for
6808         struct utimbuf times.
6809
6810         * *: some using changes, use iosfwd instead of the real headers.
6811
6812         * src/lyxfont.C use char const * instead of string for the static
6813         strings. Rewrite some functions to use sstream.
6814
6815 2000-03-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6816
6817         * src/text.C (Backspace): hopefully fix the dreaded backaspace
6818         bug. 
6819
6820 2000-03-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6821
6822         * lib/layouts/svjog.layout: new file, for Springer-Verlag Journal
6823         of Geodesy (from Martin Vermeer)
6824
6825         * lib/layouts/svjour.inc: include file for the Springer svjour
6826         class. It can be used to support journals other than JoG.
6827
6828         * lib/Makefile.am: use $(DESTDIR) make variable (from Arkadiusz
6829         Miskiewicz <misiek@pld.org.pl>)
6830         * lib/reLyX/Makefile.am: ditto.
6831
6832 2000-03-27  Juergen Vigna  <jug@sad.it>
6833
6834         * src/insets/insettext.C: added Cut/Copy/Paste inside insets,
6835         also some modifications with operations on selected text.
6836
6837         * src/BufferView.C (checkInsetHit): Now hopefully fixed all the
6838         problems with clicking on insets (last famous words ;)
6839
6840         * src/insets/insetcommand.C (draw): 
6841         (width): Changed to have a bit of space before and after the inset so
6842         that the blinking cursor can be seen (otherwise it was hidden)
6843
6844 2000-03-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6845
6846         * config/gettext.m4 (AM_WITH_NLS): fix a gettext bug where -lintl
6847         would not be added to the link list when an installed gettext (not
6848         part of libc) is found.
6849
6850 2000-03-24  Juergen Vigna  <jug@sad.it>
6851
6852         * src/insets/insetcollapsable.C (Edit): 
6853         * src/mathed/formula.C (InsetButtonRelease): 
6854         (InsetButtonPress): fixed for new handling of ButtonPress/Release
6855         handling.
6856
6857         * src/BufferView.C (workAreaButtonPress): 
6858         (workAreaButtonRelease): 
6859         (checkInsetHit): Finally fixed the clicking on insets be handled
6860         correctly!
6861
6862         * src/insets/insetert.C (Edit): inserted this call so that ERT
6863         insets work always with LaTeX-font
6864
6865 2000-03-21  Kayvan A. Sylvan  <kayvan@camel.internal.sylvan.com>
6866
6867         * src/lyx_main.C (easyParse): Removed misplaced gui=false which
6868         caused lyx to startup with no GUI in place, causing in a crash
6869         upon startup when called with arguments.
6870
6871 2000-03-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6872
6873         * src/FontLoader.C: better initialization of dummyXFontStruct.
6874
6875 2000-03-20 José Abílio Matos <jamatos@lyx.org>
6876
6877         * src/lyxrc.[Ch] Removed \sgml_extra_options, added 6 other flags
6878         for linuxdoc and docbook import and export format options.
6879
6880         * lib/lyxrc.example Example of default values for the previous flags.
6881
6882         * src/lyx_cb.C Use those flags instead of the hardwired values for
6883         linuxdoc and docbook export.
6884
6885         * src/lyxfunc.[Ch] Added HTML export for linuxdoc and docbook, added
6886         linuxdoc import.
6887
6888         * src/menus.C Added menus entries for the new import/exports formats.
6889         
6890 2000-03-09 André Pönitz <poenitz@mathematik.tu-chemnitz.de>
6891
6892         * src/lyxrc.*: Added support for running without Gui 
6893         (\use_gui false)
6894           
6895         * src/FontLoader.C: sensible defaults if no fonts are needed
6896
6897         * src/lyx_cb.C: New function ShowMessage (writes either to the
6898         minibuffer or cout in case of no gui
6899         New function AskOverwrite for common stuff
6900         Consequently various changes to call these functions
6901
6902         * src/lyx_main.C:  allow gui = false and handle lyxrc \use_gui false
6903         wild guess at sensible screen resolution when having no gui
6904
6905         * src/lyxfont.C: no gui, no fonts... set some defaults
6906
6907 2000-03-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6908
6909         * src/LColor.C: made the command inset background a bit lighter.
6910
6911 2000-03-20  Hartmut Goebel <goebel@noris.net>
6912
6913         * lib/layouts/stdstruct.inc: split into stdtitle.inc and
6914         stdstruct.inc. Koma-Script added some title elements which
6915         otherwise have been listed below "bibliography". This split allows
6916         adding title elements to where they belong.
6917
6918         * lib/layouts/scrclass.inc: changed to include stdtitle.inc, then
6919         define the additional tilte elements and then include
6920         stdstruct.inc. 
6921
6922         * many other layout files: changed to include stdtitle.inc just
6923         before stdstruct.inc.
6924
6925 2000-03-18 Dekel Tsur <dekel@math.tau.ac.il>
6926
6927         * src/buffer.C: (save) Added the option to store all backup files
6928         in a single directory
6929
6930         * src/lyxrc.[Ch]: Added variable \backupdir_path
6931
6932         * lib/lyxrc.example: Added descriptions of recently added variables
6933
6934         * src/insets/insetbib.[Ch]: Fixed few bugs (crash when editing a
6935         bibtex inset, not closing the bibtex popup when deleting the inset)
6936
6937 2000-03-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6938
6939         * src/lyx_cb.C: add a couple using directives.
6940
6941 2000-03-17 José Abílio Matos <jamatos@lyx.org>
6942         * src/lyx_cb.C (RunLinuxDoc) Removed the flag==-1 option for linuxdoc 
6943         import based on the filename.
6944         
6945         * src/bufferlist.C () Removed the call to RunLinuxDoc where a linuxdoc
6946         file would be imported at start, if the filename where of a sgml file.
6947
6948         * src/support/filetools.C (IsSGMLfilename) Removed, no longer needed.
6949         
6950         * src/support/filetools.h (IsSGMLfilename) Removed, no longer needed.
6951         
6952 2000-03-16 Dekel Tsur <dekel@math.tau.ac.il>
6953         * src/lyxfont.h Replaced the member variable bits.direction by the
6954         member variable lang. Made many changes in other files.
6955         This allows having a multi-lingual document
6956
6957         * src/lyxfunc.C, src/lyx_cb.C Added a new command "language <l>"
6958         that change the current language to <l>.
6959         Removed the command "font-rtl"
6960
6961         * src/buffer.C Changed LYX_FORMAT to 2.16 (as I changed the file
6962         format for Hebrew documents)
6963
6964         * src/lyxrc.C, src/lyxfunc.C Added a new lyxrc command "auto_mathmode"
6965         When auto_mathmode is "true", pressing a digit key in normal mode 
6966         will cause entering into mathmode.
6967         If auto_mathmode is "rtl" then this behavior will be active only
6968         when writing right-to-left text.
6969
6970         * src/text2.C (InsertStringA) The string is inserted using the
6971         current font.
6972
6973         * src/paragraph.C (GetEndLabel) Gives a correct result for
6974         footnote paragraphs.
6975
6976         * src/paragraph.C (PreviousBeforeFootnote) Fixed a small bug
6977
6978 2000-03-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
6979
6980         * src/text.C (Backspace): move RemoveParagraph and RemoveRow in
6981         front of PasteParagraph. Never insert a ' '. This should at least
6982         fix some cause for the segfaults that we have been experiencing,
6983         it also fixes backspace behaviour slightly. (Phu!)
6984
6985         * src/support/lstrings.C (compare_no_case): some change to make it
6986         compile with gcc 2.95.2 and stdlibc++-v3
6987
6988         * src/text2.C (MeltFootnoteEnvironment): change type o
6989         first_footnote_par_is_not_empty to bool.
6990
6991         * src/lyxparagraph.h: make text private. Changes in other files
6992         because of this.
6993         (fitToSize): new function
6994         (setContentsFromPar): new function
6995         (clearContents): new function
6996         (SetChar): new function
6997
6998         * src/paragraph.C (readSimpleWholeFile): deleted.
6999
7000         * src/lyx_cb.C (InsertAsciiFile): don't use a LyXParagraph to hold
7001         the file, just use a simple string instead. Also read the file in
7002         a more maintainable manner.
7003
7004         * src/text2.C (InsertStringA): deleted.
7005         (InsertStringB): deleted.
7006
7007 2000-03-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
7008
7009         * src/text2.C (DeleteEmptyParagraphMechanism): don't run,
7010         RedoParagraphs from the doublespace handling part, just set status
7011         to NEED_MORE_REFRESH. Also don't update cursor position (should be
7012         done, but perhaps not like this.)
7013
7014 2000-03-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7015
7016         * src/text2.C (InsertStringA): don't forget to insert a META_INSET
7017         character when inserting an inset.
7018
7019 2000-03-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
7020
7021         * src/bufferparams.C (readLanguage): now takes "default" into
7022         consideration.
7023
7024         * src/lyx_main.C (LyX): remove the setup of lyxrc. (new)
7025         also initialize the toplevel_keymap with the default bindings from
7026         lyxrc. 
7027         
7028         * src/buffer.C (Buffer): remove lyxrc from the parameters.
7029
7030         * all files using lyxrc: have lyxrc as a real variable and not a
7031         pointer. remove all extern LyXRC * lyxrc. The equiv to this is
7032         done in lyxrc.h.
7033         
7034         * src/lyxrc.C: remove double call to defaultKeyBindings
7035
7036         * src/toolbar.[Ch]: Let the ToolbarDefaults handle the reading of
7037         toolbar defauls using lyxlex. Remove enums, structs, functions
7038         related to this. 
7039
7040         * src/lyxrc.h: use ToolbarDefaults instead of Toolbar for storing
7041         toolbar defaults. Also store default keybindings in a map.
7042
7043         * src/ToolbarDefaults.[Ch]: New file. This class is used for
7044         storing the toolbar defaults without any xforms dependencies. 
7045
7046         * src/insets/figinset.C: patch posted to list by Andre Poenitz
7047         applied. Changed to use iterators.
7048
7049 2000-03-11  Kayvan A. Sylvan  <kayvan@satyr.sylvan.com>
7050
7051         * development/lyx.spec.in: Fix to ``unset LINGUAS'' line for
7052         systems that don't have LINGUAS set to begin with.
7053
7054 2000-03-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
7055
7056         * src/text2.C (DeleteEmptyParagraphMechanism): small fix posted to
7057         the list by Dekel Tsur.
7058
7059 2000-03-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7060
7061         * src/insets/insetgraphics.C (GraphicxCB): declare with "C" linkage.
7062         * src/insets/form_graphics.C: ditto.
7063
7064         * src/insets/inseturl.C (Latex): the free_spc argument is not used.
7065
7066 2000-03-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
7067
7068         * src/bufferparams.C (readLanguage): use the new language map
7069
7070         * src/intl.C (InitKeyMapper): use the new language map
7071
7072         * src/lyx_gui.C (create_forms): use the new language map
7073
7074         * src/language.[Ch]: New files. Used for holding the information
7075         about each language. Now! Use this new language map enhance it and
7076         make it really usable for our needs. 
7077
7078 2000-03-09 Dekel Tsur <dekel@math.tau.ac.il>
7079         
7080         * screen.C (ShowCursor): Removed duplicate code.
7081         (ShowManualCursor): Support for 3 cursor shapes: Bar (default),
7082         L (LTR text in RTL document), and reversed-L (RTL text in LTR document)
7083         
7084         * src/text.C (NextBreakPoint,Fill): Moved declaration of left_margin
7085
7086         * src/lyxtext.h
7087         * src/text.C  Added TransformChar method. Used for rendering Arabic
7088         text correctly (change the glyphs of the letter according to the
7089         position in the word)
7090
7091         * src/buffer.C
7092         * src/paragraph.C
7093         * src/lyxrc.h
7094         * src/lyxrc.C  Added lyxrc command {language_command_begin,
7095         language_command_end,language_command_ltr,language_command_rtl,
7096         language_package} which allows the use of either arabtex or Omega
7097         for Arabic
7098
7099         * src/lyx_gui.C (init)
7100         * src/lyxrc.h
7101         * src/lyxrc.C Added lyxrc command screen_font_encoding_menu. Allows
7102         to use encoding for menu fonts which is different than the encoding
7103         for screen fonts
7104
7105         * src/buffer.C (makeLaTeXFile): If params.language = "default",
7106         do not load the babel package.
7107         To write an English document with Hebrew/Arabic, change the document
7108         language to "english".
7109
7110         * src/text2.C (SetCounter): Fixed appendix labels for Hebrew document
7111         (alphaCounter): changed to return char
7112         (loweralphaCounter, hebrewCounter, romanCounter): New functions
7113
7114         * lib/lyxrc.example  Added examples for Hebrew/Arabic
7115
7116         * src/layout.h
7117         * src/layout.C  Added layout command endlabeltype
7118
7119         * src/paragraph.C Added GetEndLabel(),LastPhysicalPar() const
7120
7121         * src/text.C (GetVisibleRow): Draw a box at the end of proof layout
7122
7123 2000-03-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
7124
7125         * src/mathed/math_delim.C (search_deco): return a
7126         math_deco_struct* instead of index.
7127
7128 2000-03-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
7129
7130         * All files with a USE_OSTREAM_ONLY within: removed all code that
7131         was unused when USE_OSTREAM_ONLY is defined.
7132         
7133         * src/support/lyxalgo.h (sorted): rewrote to use plain '<' instead
7134         of any less. Removed header and using.
7135
7136         * src/text.C (GetVisibleRow): draw the string "Page Break
7137         (top/bottom)" on screen when drawing a pagebreak line.
7138
7139 2000-03-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7140
7141         * lib/doc/LaTeXConfig.lyx.in: add description of textclass llncs.
7142
7143         * src/mathed/math_macro.C (draw): do some cast magic.
7144         (Metrics): ditto.
7145
7146         * src/mathed/math_defs.h: change byte* argument to byte const*.
7147
7148         * src/mathed/formulamacro.[Ch]: add free_spc to Latex() method.
7149
7150         * src/insets/insetfoot.[Ch]: Clone() always returns an Inset* (well I
7151         know it is right to return InsetFoot* too, but cxx does not like
7152         it...). 
7153
7154         * src/insets/insetcollapsable.[Ch] (Clone): make const.
7155
7156         * development/lyx.spec.in: unset LINGUAS to avoid i18n problems.
7157
7158         * src/mathed/math_delim.C: change == to proper assignment.
7159
7160 2000-03-09  Juergen Vigna  <jug@sad.it>
7161
7162         * src/insets/insettext.C (setPos): fixed various cursor positioning
7163         problems (via mouse and cursor-keys)
7164         (LocalDispatch): added posibility to add a Ctrl-Enter inside a text
7165         inset (still a small display problem but it works ;)
7166
7167         * src/insets/insetcollapsable.C (draw): added button_top_y and
7168         button_bottom_y to have correct values for clicking on the inset.
7169
7170         * src/support/lyxalgo.h: commented out 'using std::less'
7171
7172 2000-03-08  Juergen Vigna  <jug@sad.it>
7173
7174         * src/insets/insetcollapsable.C (InsetButtonRelease): Now a
7175         Button-Release event closes as it is alos the Release-Event
7176         which opens it.
7177
7178         * src/lyxfunc.C (Dispatch): forgot a break in the LFUN_INSET_ERT
7179
7180 2000-03-07  Kayvan A. Sylvan  <kayvan@camel.internal.sylvan.com>
7181
7182         * lib/layouts/literate-scrap.inc: Fixed initial comment. Now we
7183         can add multiple spaces in Scrap (literate programming) styles...
7184         which, by the way, is how I got hooked on LyX to begin with.
7185  
7186         * src/mathed/formula.C (Write): Added dummy variable to an
7187         inset::Latex() call.
7188         (Latex): Add free_spacing boolean to inset::Latex()
7189
7190         * src/mathed/formula.h (Latex): Added free_spacing boolean arg.
7191         
7192         * src/insets/lyxinset.h: Changed definition of the inset::Latex()
7193         virtual function to include the free_spacing boolean from
7194         the containing paragraph's style.
7195  
7196         * src/insets/inseturl.C, src/insets/inseturl.h (Latex):
7197         Added free_spacing boolean arg to match inset.h
7198         
7199         * src/insets/insettext.C, src/insets/insettext.h (Latex):
7200         Added free_spacing boolean arg to match inset.h
7201         
7202         * src/insets/insetspecialchar.C, src/insets/insetspecialchar.h (Latex):
7203         Added free_spacing boolean and made sure that if in a free_spacing
7204         paragraph, that we output normal space if there is a protected space.
7205         
7206         * src/insets/insetref.C, src/insets/insetref.h (Latex):
7207         Added free_spacing boolean arg to match inset.h
7208         
7209         * src/insets/insetquotes.C, src/insets/insetquotes.h (Latex):
7210         Added free_spacing boolean arg to match inset.h
7211         
7212         * src/insets/insetparent.C, src/insets/insetparent.h (Latex):
7213         Added free_spacing boolean arg to match inset.h
7214         
7215         * src/insets/insetlatexaccent.C, src/insets/insetlatexaccent.h (Latex):
7216         Added free_spacing boolean arg to match inset.h
7217         
7218         * src/insets/insetlatex.C, src/insets/insetlatex.h (Latex):
7219         Added free_spacing boolean arg to match inset.h
7220         
7221         * src/insets/insetlabel.C, src/insets/insetlabel.h (Latex): Added
7222         free_spacing boolean arg to match inset.h 
7223         
7224         * src/insets/insetinfo.C, src/insets/insetinfo.h (Latex):
7225         Added free_spacing boolean arg to match inset.h
7226         
7227         * src/insets/insetinclude.C, src/insets/insetinclude.h (Latex):
7228         Added free_spacing boolean arg to match inset.h
7229         
7230         * src/insets/insetgraphics.C, src/insets/insetgraphics.h (Latex):
7231         Added free_spacing boolean arg to match inset.h
7232         
7233         * src/insets/inseterror.C, src/insets/inseterror.h (Latex):
7234         Added free_spacing boolean arg to match inset.h
7235         
7236         * src/insets/insetcommand.C, src/insets/insetcommand.h (Latex):
7237         Added free_spacing boolean arg to match inset.h
7238         
7239         * src/insets/insetbib.C, src/insets/insetbib.h (Latex): Added
7240         free_spacing boolean arg to match inset.h
7241         
7242         * src/insets/figinset.C, src/insets/figinset.h (Latex): Added
7243         free_spacing boolean arg to match inset.h
7244         
7245         * src/text2.C (DeleteEmptyParagraphMechanism): Fix this to
7246         ignore free_spacing paragraphs. The user's spaces are left
7247         alone. 
7248         
7249         * src/text.C (InsertChar): Fixed the free_spacing layout
7250         attribute behavior. Now, if free_spacing is set, you can
7251         add multiple spaces in a paragraph with impunity (and they
7252         get output verbatim).
7253         (SelectSelectedWord): Added dummy argument to inset::Latex()
7254         call.
7255         
7256         * src/paragraph.C (TeXOnePar): Added dummy args to inset::Latex(...)
7257         calls.
7258         
7259         * src/lyxfunc.C (Dispatch): Hard-spaces input in free_spacing
7260         paragraph layouts now only input a simple space instead.
7261         Special character insets don't make any sense in free-spacing
7262         paragraphs.
7263         
7264         * src/buffer.C (parseSingleLyXformat2Token): Code to convert
7265         hard-spaces in the *input* file to simple spaces if the layout
7266         is free-spacing. This converts old files which had to have
7267         hard-spaces in free-spacing layouts where a simple space was
7268         preferrable.
7269         (writeFileAscii): Added free_spacing check to pass to the newly
7270         reworked inset::Latex(...) methods. The inset::Latex() code
7271         ensures that hard-spaces in free-spacing paragraphs get output
7272         as spaces (rather than "~").
7273         
7274 2000-03-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
7275         
7276         * src/mathed/math_delim.C (draw): draw the empty placeholder
7277         delims with a onoffdash line.
7278         (struct math_deco_compare): struct that holds the "functors" used
7279         for the sort and the binary search in math_deco_table.
7280         (class init_deco_table): class used for initial sort of the
7281         math_deco_table. 
7282         (search_deco): use lower_bound to do a binary search in the
7283         math_deco_table.
7284
7285 2000-03-08  Lars Gullik Bjønnes  <larsbj@lyx.org>
7286
7287         * src/lyxrc.C: a small secret thingie...
7288
7289         * src/lyxlex.C (printTable): changed to take a ostream as paramter
7290         and to not flush the stream as often as it used to.
7291
7292         * src/support/lyxalgo.h: new file 
7293         (sorted): template function used for checking if a sequence is
7294         sorted or not. Two versions with and without user supplied
7295         compare. Uses same compare as std::sort.
7296
7297         * src/lyxlex.C (LyXLex): check if the table is sorted, if not sort
7298         it and give warning on lyxerr.
7299         (pushTable): ditto
7300         (struct compare_tags): struct with function operators used for
7301         checking if sorted, sorting and lower_bound.
7302         (search_kw): use lower_bound instead of manually implemented
7303         binary search.
7304
7305 2000-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7306
7307         * src/insets/insetcollapsable.h: fix Clone() declaration.
7308         * src/insets/insetfoot.h: ditto.
7309
7310         * src/insets/lyxinset.h: remove an extra comma at the end of enum.
7311
7312 2000-03-08  Juergen Vigna  <jug@sad.it>
7313
7314         * src/insets/lyxinset.h: added owner call which tells us if
7315         this inset is inside another inset. Changed also the return-type
7316         of Editable to an enum so it tells clearer what the return-value is.
7317
7318         * src/insets/insettext.C (computeTextRows): fixed computing of
7319         textinsets which split automatically on more rows.
7320
7321         * src/insets/insetert.[Ch]: changed this to be of BaseType
7322         InsetCollapsable.
7323
7324         * src/insets/insetfoot.[Ch]: added footnote inset
7325
7326         * src/insets/insetcollapsable.[Ch]: added this BaseClass for
7327         collapsable insets (like footnote, ert, ...)
7328
7329 2000-03-08  Lars Gullik Bjønnes  <larsbj@lyx.org>
7330
7331         * src/lyxdraw.h: remvoe file
7332
7333         * src/lyxdraw.C: remove file
7334
7335         * src/insets/insettext.C: added <algorithm>.
7336
7337 2000-03-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
7338
7339         * src/mathed/math_panel.C (delim_cb): case MM_OK use string stream
7340         (matrix_cb): case MM_OK use string stream
7341
7342         * src/mathed/formula.C (LocalDispatch): case LFUN_SETXY use string
7343         stream.
7344
7345         * src/mathed/math_macro.C (draw): use string stream
7346         (Metrics): use string stream
7347
7348         * src/paragraph.C (TeXFootnote): for case LyXParagraph::FIG, write
7349         directly to the ostream.
7350
7351         * src/vspace.C (asString): use string stream.
7352         (asString): use string stream
7353         (asLatexString): use string stream
7354
7355         * src/lyx_cb.C (UpdateLayoutDocument): use string stream for
7356         setting Spacing::Other.
7357
7358         * src/LaTeXFeatures.C (getPackages): use string stream instead of
7359         sprintf when creating the stretch vale.
7360
7361         * src/text2.C (alphaCounter): changed to return a string and to
7362         not use a static variable internally. Also fixed a one-off bug.
7363         (SetCounter): changed the drawing of the labels to use string
7364         streams instead of sprintf.
7365
7366         * src/support/lyxmanip.h: rewrite the newlineanDepth ostream
7367         manipulator to use a scheme that does not require library support.
7368         This is also the way it is done in the new GNU libstdc++. Should
7369         work with DEC cxx now. 
7370
7371 2000-03-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
7372
7373         * src/mathed/math_inset.h (Write(ostream & os): add a space at the
7374         end. This fixes a bug. 
7375
7376         * src/mathed (all files concerned with file writing): apply the
7377         USE_OSTREAM_ONLY changes to mathed too.
7378         
7379         * src/support/DebugStream.h: make the constructor explicit.
7380
7381         * src/lyxfont.C (latexWriteStartChanges): small bug related to
7382         count and ostream squashed.
7383
7384 2000-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7385
7386         * src/support/Makefile.am (libsupport_la_SOURCES): add lyxmanip.h.
7387
7388         * src/buffer.C (makeLaTeXFile): add a .c_str(), since
7389         ostringstream uses STL strings, and we might not.
7390
7391         * src/insets/insetspecialchar.C: add using directive.
7392         * src/insets/insettext.C: ditto.
7393
7394 2000-03-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
7395
7396         * lib/layouts/seminar.layout: feeble attempt at a layout for
7397         seminar.cls, far from completet and could really use some looking
7398         at from people used to write layout files.
7399
7400         * src/support/lyxmanip.h (newlineAndDepth): ostream manipulator to
7401         use instead of the AddNewlineAndDepth funtion in lyx_cb.C. This is
7402         a lot nicer and works nicely with ostreams.
7403
7404         * src/mathed/formula.C (draw): a slightly different solution that
7405         the one posted to the list, but I think this one works too. (font
7406         size wrong in headers.)
7407
7408         * src/insets/insettext.C (computeTextRows): some fiddling on
7409         Jürgens turf, added some comments that he should read.
7410
7411         * src/lyxrc.C: remove all traces of RC_NOMENUACCELERATORS, never
7412         used and it gave compiler warnings.
7413         RC_SHOW_BANNER + "\\show_banner" added, also to reading and
7414         writing of lyxrc.
7415
7416         * src/lyx_gui.C (create_forms): do the right thing when
7417         show_banner is true/false.
7418
7419         * src/lyx_cb.C (TimerCB): no need to close or do anything if
7420         show_banner is false.
7421
7422         * most file writing files: Now use iostreams to do almost all of
7423         the writing. Also instead of passing string &, we now use
7424         stringstreams. mathed output is still not adapted to iostreams.
7425         This change can be turned off by commenting out all the occurences
7426         of the "#define USE_OSTREAM_ONLY 1" lines.
7427         
7428         * src/WorkArea.C (createPixmap): don't output debug messages.
7429         (WorkArea): don't output debug messages.
7430
7431         * lib/lyxrc.example: added a comment about the new variable
7432         \show_banner 
7433
7434         * development/Code_rules/Rules: Added some more commente about how
7435         to build class interfaces and on how better encapsulation can be
7436         achieved. 
7437
7438 2000-03-03  Juergen Vigna  <jug@sad.it>
7439
7440         * src/insets/insetert.C (InsetERT): Now ERT-insets break row
7441         automatically with the width of the LyX-Window
7442
7443         * src/insets/insettext.C (computeTextRows): fixed update bug in
7444         displaying text-insets (scrollvalues where not initialized!)
7445
7446 2000-03-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
7447
7448         * src/mathed/math_utils.C (MathedLookupBOP): using only res->id ==
7449         id in the check of the result from lower_bound is not enough since
7450         lower_bound can return last too, and then res->id will not be a
7451         valid construct.
7452
7453         *  all insets and some code that use them: I have conditionalized
7454         removed the Latex(string & out, ...) this means that only the
7455         Latex(ostream &, ...) will be used. This is a work in progress to
7456         move towards using streams for all output of files. 
7457
7458         * src/text.C (GetColumnNearX): initialize LyXParagraph::size_type
7459         c to 0.
7460
7461 2000-03-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7462
7463         * src/mathed/math_utils.C (MathedLookupBOP): fix the search
7464         routine (this fixes bug where greek letters were surrounded by too
7465         much white space).
7466
7467         * src/support/filetools.C (findtexfile): change a bit the search
7468         algorithm, to fix bug introduced in 1.1.4. Note that --format is
7469         no longer passed to kpsewhich, we may have to change that later.
7470
7471         * config/lyxinclude.m4 (LYX_PROG_CXX): better version-dependent
7472         warning options to avoid problems with X header files (from Angus
7473         Leeming).
7474         * acinclude.m4: regenerated.
7475
7476 2000-03-02  Juergen Vigna  <jug@sad.it>
7477
7478         * src/insets/insettext.C (WriteParagraphData): Using the
7479         par->writeFile() function for writing paragraph-data.
7480         (Read): Using buffer->parseSingleLyXformat2Token()-function
7481         for parsing paragraph data!
7482
7483         * src/buffer.C (readLyXformat2): removed all parse data and using
7484         the new parseSingleLyXformat2Token()-function.
7485         (parseSingleLyXformat2Token): added this function to parse (read)
7486         lyx-file-format (this is called also from text-insets now!)
7487
7488 2000-03-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
7489
7490         * src/paragraph.C (BeginningOfMainBody): initialize previous_char
7491         and temp.
7492
7493         * src/lyxfunc.C (Dispatch(LFUN_MENUSEARCH)): Do the Search dialog
7494         directly instead of going through a func. One very bad thing: a
7495         static LyXFindReplace, but I don't know where to place it. 
7496
7497         * src/lyxfr1.C (GetCurrentSelectionAsString): rewritten to use a
7498         string instead of char[]. Also changed to static.
7499         (GetSelectionOrWordAtCursor): changed to static inline
7500         (SetSelectionOverLenChars): ditto.
7501
7502         * src/lyxfr0.[Ch] src/lyxfr1.[Ch]: rewrite to get rid of
7503         current_view and global variables. both classes has changed names
7504         and LyXFindReplace is not inherited from SearchForm.
7505         
7506         * src/lyx_gui_misc.C (CloseAllBufferRelatedPopups): remove the
7507         fl_form_search form.
7508
7509         * src/lyx_gui.C (create_forms): removed the fl_form_search form.
7510
7511 2000-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7512
7513         * lib/bind/*.bind: make sure 'buffer-previous' function is not
7514         bound (from Kayvan).
7515
7516         * src/insets/Makefile.am (libinsets_la_SOURCES): add BoundingBox.h.
7517
7518         * lib/layouts/stdletter.inc: fix line spacing in Send_To_Address.
7519
7520 2000-03-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
7521
7522         * some things that I should comment but the local pub says head to
7523         swirly... 
7524         
7525         * comment out all code that belongs to the Roff code for Ascii
7526         export of tables. (this is unused)
7527         
7528         * src/LyXView.C: use correct type for global variable
7529         current_layout. (LyXTextClass::size_type)
7530
7531         * some code to get the new insetgraphics closer to working I'd be
7532         grateful for any help.
7533         
7534         * src/BufferView2.C (insertInset): use the return type of
7535         NumberOfLayout properly. (also changes in other files)
7536
7537         * src/insets/insetspecialchar.[Ch]: add the PROTECTED SEPARATOR to
7538         this as a test. I want to know what breaks because of this.
7539
7540         * src/BufferView.[Ch] (tripleClick): name change from trippleClick.
7541
7542 2000-02-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
7543
7544         * lib/layouts/stdlists.inc: changed the lyxlist latex definition
7545         to use a \makebox in the label, this allows proper justification
7546         with out using protected spaces or multiple hfills. Now it is
7547         "label" for left justified, "\hfill label\hfill" for center, and
7548         "\hfill label" for right justified. UserGuide.lyx sec. 3.3.6.5
7549         should be changed accordingly. 
7550
7551 2000-02-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7552
7553         * src/lyxtext.h: change SetLayout() to take a
7554         LyXTextClass::size_type instead of a char (when there is more than
7555         127 layouts in a class); also change type of copylayouttype.
7556         * src/text2.C (SetLayout): ditto.
7557         * src/LyXView.C (updateLayoutChoice): ditto.
7558
7559         * src/LaTeX.C (scanLogFile): errors where the line number was not
7560         given just after the '!'-line were ignored (from Dekel Tsur).
7561
7562         * lib/lyxrc.example: fix description of \date_insert_format
7563
7564         * lib/layouts/llncs.layout: new layout, contributed by Martin
7565         Vermeer. 
7566
7567 2000-02-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
7568
7569         * config/lyxinclude.m4 (LYX_PROG_CXX): remove case support for gcc
7570         2.7.* and add case support for gcc 2.96*. Gcc 2.96 only exists in
7571         cvs at gcc.gnu.org (currently it fails with ICE on insetbib.C,
7572         insetindex.C, insetloa.C, insettext.C, filetools.C, BufferView.C,
7573         BufferView2.C, LyXView.C, buffer.C, lyx_cb.C, lyxfunc.C,
7574         paragraph.C, text.C, text2.C)
7575
7576 2000-02-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7577
7578         * src/insets/insettext.C (LocalDispatch): remove extra break
7579         statement. 
7580
7581         * src/insets/insetert.[Ch] (Clone): change return value to Inset*
7582         * src/insets/insettext.[Ch] (Clone): change return value to Inset*
7583
7584         * src/mathed/formulamacro.[Ch] (draw): add missing const qualifier
7585         * src/insets/insettext.[Ch] (GetCursorPos): ditto
7586
7587         * src/insets/insetbib.h: move InsetBibkey::Holder and
7588         InsetCitation::Holder in public space.
7589
7590 2000-02-25  Lars Gullik Bjønnes <larsbj@lyx.org>
7591
7592         * src/insets/insettext.h: small change to get the new files from
7593         Juergen to compile (use "string", not "class string").
7594
7595         * src/insets/insettext.[Ch], src/insets/insertert.[Ch]: use string
7596         const & as parameter to LocalDispatch, use LyXFont const & as
7597         paramter to some other func. This also had impacto on lyxinsets.h
7598         and the two mathed insets.
7599
7600 2000-02-24  Juergen Vigna  <jug@sad.it>
7601
7602         * src/buffer.C:
7603         * src/commandtags.h: 
7604         * src/LyXAction.C:
7605         * src/lyxfunc.C: added code for LFUN_INSET_ERT and LFUN_INSET_TEXT
7606
7607         * src/BufferView.h
7608         * src/BufferView.C
7609         * src/BufferView2.C: added/updated code for various inset-functions
7610
7611         * src/insets/insetert.[Ch]: added implementation of InsetERT
7612
7613         * src/insets/insettext.[Ch]: added implementation of InsetText
7614
7615         * src/insets/inset.C (Edit): added "unsigned int button" parameter
7616         (draw): added preliminary code for inset scrolling not finshed yet
7617
7618         * src/insets/inset.C (LocalDispatch): changed arg parameter to string
7619         as it is in lyxfunc.C now
7620
7621         * src/insets/lyxinset.h: Added functions for text-insets
7622
7623 2000-02-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
7624
7625         * src/lyx_cb.C src/UpdateInset.[Ch]: move the updateinsetlist into
7626         BufferView and reimplement the list as a queue put inside its own
7627         class.
7628
7629         * src/bufferlist.[Ch] (updateInset): remove func, not needed.
7630
7631         * several files: use the new interface to the "updateinsetlist"
7632         
7633         * src/WorkArea.C (work_area_handler): call BufferView::doubleClick
7634         on doubleclick.
7635         (work_area_handler): call BufferView::trippleClick on trippleclick.
7636
7637         * src/BufferView.C (doubleClick): new function, selects word on
7638         doubleclick. 
7639         (trippleClick): new function, selects line on trippleclick.
7640
7641 2000-02-22  Allan Rae  <rae@lyx.org>
7642
7643         * lib/bind/xemacs.bind: buffer-previous not supported
7644
7645 2000-02-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7646
7647         * src/insets/insettoc.[Ch] (LinuxDoc, DocBook): mark the methods
7648         as const.
7649
7650 2000-02-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
7651
7652         * src/bufferlist.C: get rid of current_view from this file
7653
7654         * src/spellchecker.C: get rid of current_view from this file
7655
7656         * src/vspace.C: get rid of current_view from this file
7657         (inPixels): added BufferView parameter for this func
7658         (asLatexCommand): added a BufferParams for this func
7659
7660         * src/text.C src/text2.C: get rid of current_view from these
7661         files.
7662         
7663         * src/lyxfont.C (getFontDirection): move this function here from
7664         text.C
7665         
7666         * src/bufferparams.C (getDocumentDirection): move this function
7667         here from text.C
7668
7669         * src/paragraph.C (getParDirection): move this function here from
7670         text.C 
7671         (getLetterDirection): ditto
7672         
7673 2000-02-18  Lars Gullik Bjønnes  <larsbj@lyx.org>
7674
7675         * WorkArea, Painter, LyXScreen: Fixed the crash that occured on
7676         resize due to wrong pixmap beeing used. Also took the opurtunity
7677         to make the LyXScreen stateless on regard to WorkArea and some
7678         general cleanup in the same files.
7679         
7680 2000-02-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
7681
7682         * src/Makefile.am: add missing direction.h
7683
7684         * src/PainterBase.h: made the width functions const.
7685         
7686         * lib/kbd/iso8859-1.cdef: fix a couple of entries and define some
7687         missing ones.
7688         
7689         * src/insets/insetcommand.C (draw): draw Editable as buttons.
7690
7691         * src/insets/insetlatexaccent.C (draw): make the accents draw
7692         better, at present this will only work well with iso8859-1.
7693         
7694         * several files: remove the old drawing code, now we use the new
7695         painter only.
7696
7697         * several files: remove support for mono_video, reverse_video and
7698         fast selection.
7699
7700 2000-02-17  Juergen Vigna  <jug@sad.it>
7701
7702         * src/mathed/math_cursor.[Ch] (SelGetArea): Changed form int * to
7703         int ** as we have to return the pointer, otherwise we have only
7704         NULL pointers in the returning function.
7705
7706 2000-02-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7707
7708         * src/LaTeX.C (operator()): quote file name when running latex.
7709
7710 2000-02-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
7711
7712         * src/toolbar.C (set): use fl_set_object_helper for the tooltop
7713         (bubble tip), this removes our special handling of this.
7714
7715         * Remove all code that is unused now that we have the new
7716         workarea. (Code that are not active when NEW_WA is defined.)
7717
7718         * Make the uses of XSync not conditionalized on define USE_XSYNC.
7719         
7720 2000-02-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7721
7722         * src/lyxfunc.C (Dispatch): fix LFUN_LAYOUT when giving a
7723         nonexisting layout; correctly redirect obsoleted layouts.
7724
7725         * lib/lyxrc.example: document \view_dvi_paper_option
7726
7727         * src/lyxrc.[Ch]: add support for the \view_dvi_paper_option
7728         variable. 
7729
7730         * src/lyx_cb.C (RunScript): handle $$FName for command names. 
7731         (PreviewDVI): handle the view_dvi_paper_option variable.
7732         [Both from Roland Krause]
7733
7734 2000-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
7735
7736         * src/Painter.C (text(int,int,char,LyXFont)): call text(int, int,
7737         char const *, int, LyXFont)
7738         (text(int, int, string, LyXFont)): ditto 
7739
7740         * src/text.C (InsertCharInTable): attempt to fix the double-space
7741         feature in tables too.
7742         (BackspaceInTable): ditto.
7743         (GetVisibleRow): make bottom pagebreak line be a onoff line.
7744
7745 2000-02-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
7746
7747         * src/text2.C (owner): only complain if owner_ is set and bv != 0
7748
7749         * src/BufferView.C (resizeCurrentBuffer): set the owner of the
7750         newly found text in textcache to this.
7751         (buffer): set the owner of the text put into the textcache to 0
7752
7753         * src/insets/figinset.C (draw): fixed the drawing of figures with
7754         the new Painter.
7755
7756         * src/text.C src/mathed/math_cursor.C: nailed and fixed the
7757         drawing of mathframe, hfills, protected space, table lines. I have
7758         now no outstanding drawing problems with the new Painter code. 
7759
7760 2000-02-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7761
7762         * src/PainterBase.C (ellipse, circle): do not specify the default
7763         arguments. 
7764
7765         * src/LColor.h: add using directive.
7766
7767         * src/Painter.[Ch]: change return type of methods from Painter& to
7768         PainterBase&. Add a using directive.
7769
7770         * src/WorkArea.C: wrap xforms callbacks in C functions
7771         C_WorkArea_xxx. 
7772
7773         * lib/layouts/foils.layout: font fix and simplifications from Carl
7774         Ollivier-Gooch.
7775
7776 2000-02-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
7777
7778         * a lot of files: The Painter, LColor and WorkArea from the old
7779         devel branch has been ported to lyx-devel. Some new files and a
7780         lot of #ifdeffed code. The new workarea is enabled by default, but
7781         if you want to test the new Painter and LColor you have to compile
7782         with USE_PAINTER defined (do this in config.h f.ex.) There are
7783         still some rought edges, and I'd like some help to clear those
7784         out. It looks stable (loads and displays the Userguide very well).
7785         
7786
7787 2000-02-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7788
7789         * src/buffer.C (pop_tag): revert to the previous implementation
7790         (use a global variable for both loops).
7791
7792         * lib/kbd/iso8859-1.cdef: fix definition for \"{e}.
7793
7794         * src/lyxrc.C (LyXRC): change slightly default date format.
7795
7796         * src/paragraph.C (TeXOnePar): Generate a correct latex file when
7797         there is an English text with a footnote that starts with a Hebrew
7798         paragraph, or vice versa.
7799         (TeXFootnote): ditto.
7800
7801         * src/text.C (LeftMargin): allow for negative values for
7802         parindent. Thanks to Philip Lehman <lehman@gmx.net> for testing
7803         this out.
7804
7805         * src/lyx_gui.C (create_forms): add iso88595 as a possible choice
7806         for input encoding (cyrillic)
7807
7808 2000-02-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7809
7810         * src/lyx_gui.C (create_forms): make combo box taller (from Dekel
7811         Tsur). 
7812
7813         * src/toolbar.C (set): ditto
7814         * src/insets/insetbib.C (create_form_citation_form): ditto
7815
7816         * lib/CREDITS: added Dekel Tsur.
7817
7818         * lib/kbd/hebrew.kmap, lib/kbd/null.kmap,
7819         lib/layouts/heb-article.layout, lib/layouts/heb-letter.layout: new
7820         hebrew supports files from Dekel Tsur.
7821         
7822         * lib/kbd/iso8859-8.cdef: new file, from Tzafrir Cohen
7823         <tzafrir@technion.ac.il> 
7824
7825         * src/lyxrc.C: put \date_insert_format at the right place.
7826
7827         * src/buffer.C (makeLaTeXFile): fix the handling of
7828         BufferParams::sides when writing out latex files.
7829
7830         * src/BufferView2.C: add a "using" directive.
7831
7832         * src/support/lyxsum.C (sum): when we use lyxstring,
7833         ostringstream::str needs an additional .c_str().
7834
7835 2000-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
7836
7837         * src/support/filetools.C (ChangeExtension): patch from Etienne
7838         applied.
7839
7840         * src/TextCache.C (show): remove const_cast and make second
7841         parameter non-const LyXText *.
7842
7843         * src/TextCache.h: use non const LyXText in show.
7844
7845         * src/paragraph.C (SimpleTeXSpecialChars): patch to make urls work
7846         with hebrew.
7847
7848 2000-02-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
7849
7850         * src/support/lyxsum.C: rework to be more flexible.
7851         
7852         * several places: don't check if a pointer is 0 if you are going
7853         to delete it.
7854
7855         * src/text.C: remove some dead code.
7856
7857         * src/insets/figinset.C: remove some dead code
7858         
7859         * src/buffer.C: move the BufferView funcs to BufferView2.C
7860         remove all support for insetlatexdel
7861         remove support for oldpapersize stuff
7862         made some member funcs const
7863
7864         * src/kbmap.C: use a std::list to store the bindings in.
7865         
7866         * src/BufferView2.C: new file
7867
7868         * src/kbsequence.[Ch]: new files
7869         
7870         * src/LyXAction.C + others: remove all trace of buffer-previous
7871         
7872         * src/Bullet.[Ch]: moved ITEMIZE_DEFAULTS inside Bullet.C so that we
7873         only have one copy in the binary of this table.
7874         
7875         * hebrew patch: moved some functions from LyXText to more
7876         appropriate places. (LyXParagraph, BufferParams, LyXFont)
7877         
7878         * several files: remove support for XForms older than 0.88
7879         whitespace changes.
7880         remove some #if 0 #endif code
7881         
7882         * src/TextCache.[Ch]: new file. Holds the textcache.
7883
7884         * src/BufferView.C: changes to use the new TextCache interface.
7885         (waitForX): remove the now unused code.
7886         
7887         * src/BackStack.h: remove some commented code
7888
7889         * lib/bind/emacs.bind: remove binding for buffer-previous
7890
7891 2000-02-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
7892
7893         * applied the hebrew patch.
7894
7895         * src/lyxrow.h: make sure that all Row variables are initialized.
7896
7897         * src/text2.C (TextHandleUndo): comment out a delete, this might
7898         introduce a memory leak, but should also help us to not try to
7899         read freed memory. We need to look at this one.
7900
7901         * src/paragraph.C (SimpleDocBookOneTablePar): initialize column to 0
7902         (LyXParagraph): initalize footnotekind.
7903
7904         * src/lyxrc.C (output): added case RC_DATE_INSERT_FORMAT. Jug
7905         forgot this when applying the patch. Please heed the warnings.
7906
7907         * src/BufferView.C (buffer): a fix for the buffer-reload problem
7908         (aka. reformat problem)
7909
7910         * src/bufferlist.C (exists): made const, and use const_iterator
7911         (isLoaded): new func.
7912         (release): use std::find to find the correct buffer.
7913
7914         * src/bufferlist.h: made getState a const func.
7915         made empty a const func.
7916         made exists a const func.
7917         new func: isLoaded
7918
7919 2000-02-01  Juergen Vigna  <jug@sad.it>
7920
7921         * src/lyxfunc.C lyxrc.C: changed from insert-date to date-insert
7922
7923         * po/it.po: updated a bit the italian po file and also changed the
7924         'file nuovo' for newfile to 'filenuovo' without a space, this did
7925         annoy me a lot :)
7926         
7927         * src/lyxrc.C (LyXRC): added support for a default insert_date_format
7928         for the new insert_date command.
7929
7930         * src/lyxfunc.C (Dispatch): added support for a insert_date function
7931         from jdblair, to insert a date into the current text conforming to
7932         a strftime format (for now only considering the locale-set and not
7933         the document-language).
7934
7935 2000-01-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7936
7937         * src/lyxfont.C (textWidth): hopefully better fix for the Array
7938         Bounds Read error seen by purify. The problem was that islower is
7939         a macros which takes an unsigned char and uses it as an index for
7940         in array of characters properties (and is thus subject to the
7941         above error).
7942         (drawText): ditto.
7943
7944         * src/lyx_cb.C (UpdateLayoutDocument): use a switch to set
7945         correctly the paper sides radio buttons.
7946         (UpdateDocumentButtons): ditto.
7947
7948 2000-01-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
7949
7950         * src/kbmap.C (getsym + others): change to return unsigned int,
7951         returning a long can give problems on 64 bit systems. (I assume
7952         that int is 32bit on 64bit systems)
7953
7954 2000-01-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7955
7956         * src/lyxfunc.C (processKeyEvent): fix a the buffer returned by
7957         LyXLookupString to be zero-terminated. Really fixes problems seen
7958         by purify, I think.
7959
7960 2000-01-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
7961
7962         * src/lyxfunc.C (processKeyEvent): "fix" so that we never try to
7963         write a (char*)0 to the lyxerr stream.
7964
7965         * src/lastfiles.C: move algorithm before the using statemets.
7966
7967 2000-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7968
7969         * src/lastfiles.C: move using directives in global scope (egcs 1.x
7970         complains otherwise).
7971         * src/table.C: ditto
7972
7973         * lib/reLyX/reLyX.in: use variable @LYX_DIR@ as built-in data
7974         directory. 
7975
7976         * lib/reLyX/configure.in (LYX_DIR): re-introduce this variable
7977         that I removed earlier... It is really needed.
7978
7979         * lib/examples/multicol.lyx: new file, splitted from Extended.lyx. 
7980
7981 2000-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7982
7983         * INSTALL: update xforms home page URL.
7984
7985         * lib/configure.m4: fix a bug with unreadable layout files.
7986
7987         * src/table.C (calculate_width_of_column): add "using std::max"
7988         directive. 
7989
7990 2000-01-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
7991
7992         * several files: marked several lines with "DEL LINE", this is
7993         lines that can be deleted without changing anything.
7994         if (<ptr>) // DEL LINE  /* this line is _never_ needed. Delete
7995                                    checks this anyway */
7996                 delete <ptr>
7997
7998         * src/insets/insetlatexaccent.C: Changed some debugs to Debug::KEY
7999
8000         * src/DepTable.C (update): add a "+" at the end when the checksum
8001         is different. (debugging string only)
8002
8003         * src/paragraph.C (ReturnNextInsetPointer): fix bug that caused
8004         the next inset to not be displayed. This should also fix the list
8005         of labels in the "Insert Crossreference" dialog.
8006
8007 2000-01-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
8008
8009         * src/support/LSubstring.C (LSubstring): set pos to string::npos
8010         when regex was not found.
8011
8012         * src/support/lstrings.C (lowercase): use handcoded transform always.
8013         (uppercase): ditto
8014
8015         * src/text.C (Delete): fixed the crash. cursor.par->prev and
8016         old_cursor.par->prev could be 0.
8017
8018         * several files: changed post inc/dec to pre inc/dec
8019         
8020         * src/lastfiles.C (writeFile): use ostream_iterator and copy to
8021         write the lastfiles to file.
8022
8023         * src/BufferView.C (buffer): only show TextCache info when debugging
8024         (buffer): ditto
8025         (resizeCurrentBuffer): ditto
8026         (workAreaExpose): ditto
8027
8028         * lib/kbd/iso8859-7.cdef: changed to new quoting scheme
8029
8030         * lib/kbd/iso8859-2.cdef: changed to new quoting scheme
8031
8032         * src/insets/insetlatexaccent.C (Draw): make the display of UMLAUT
8033         a bit better by removing the special case for \i and \j.
8034
8035 2000-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8036
8037         * src/lyx_main.C (easyParse): remove test for bad comand line
8038         options, since this broke all xforms-related parsing.
8039
8040         * src/kbmap.C (getsym): set return type to unsigned long, as
8041         declared in header. On an alpha, long is _not_ the same as int.
8042
8043         * src/support/LOstream.h: add a "using std::flush;"
8044
8045         * src/insets/figinset.C: ditto.
8046
8047 2000-01-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
8048
8049         * src/bufferlist.C (write): use blinding fast file copy instead of
8050         "a char at a time", now we are doing it the C++ way.
8051
8052         * src/insets/figinset.C: get rid of struct pidwaitpit, use a
8053         std::list<int> instead.
8054         (addpidwait): reflect move to std::list<int>
8055         (sigchldchecker): ditto
8056
8057         * src/bmtable.c (fl_set_bmtable_file): have arguments in the X r5
8058         version also. 
8059
8060         * src/paragraph.C (FirstPhysicalPar): remove assert and comment
8061         that obviously was wrong...
8062
8063         * src/lyxfont.C (textWidth): have c as char c[2] instead of char
8064         c, this avoids warnings with purify and islower.
8065
8066         * src/insets/figinset.C: rename struct queue to struct
8067         queue_element and rewrite to use a std::queue. gsqueue is now a
8068         std::queue<queue_element>
8069         (runqueue): reflect move to std::queue
8070         (addwait): ditto
8071
8072         * src/support/lstrings.h (tostr): specialize for bool, otherwise
8073         we would get "1" "0" instead of "true" "false. Also make the tostr
8074         functions inline.
8075
8076 2000-01-21  Juergen Vigna  <jug@sad.it>
8077
8078         * src/buffer.C (writeFileAscii): Disabled code for special groff
8079         handling of tabulars till I fix this in table.C
8080
8081 2000-01-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8082
8083         * src/support/mkdir.C (mkdir): change second argument of mkdir to
8084         unsigned long int.
8085         * src/support/lyxlib.h: ditto.
8086
8087 2000-01-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
8088
8089         * src/insets/insetlatexaccent.C (Draw): make accents on top of 'i'
8090         and 'j' look better. This might fix the "macron" bug that has been
8091         observed.
8092
8093         * src/support/lstrings.[Ch] (tostr): reimplement all the tostr
8094         functions as one template function. Delete the old versions.
8095
8096         * src/support/lyxsum.C: move using std::ifstream inside
8097         MODERN_STL_STREAMS
8098
8099         * src/support/Makefile.am (libsupport_la_SOURCES): added mkdir.C
8100         and putenv.C
8101
8102         * src/mathed/formulamacro.C: delete #include "bufferlist.h" never used
8103
8104         * src/mathed/formula.C: delete #include "bufferlist.h" never used
8105
8106         * src/insets/figinset.C (InitFigures): use new instead of malloc
8107         to allocate memory for figures and bitmaps.
8108         (DoneFigures): use delete[] instead of free to deallocate memory
8109         for figures and bitmaps.
8110         (runqueue): use new to allocate 
8111         (getfigdata): use new/delete[] instead of malloc/free
8112         (RegisterFigure): ditto
8113
8114         * some files: moved some declarations closer to first use, small
8115         whitespace changes use preincrement instead of postincrement where
8116         it does not make a difference.
8117         
8118         * src/kbmap.[Ch]: delete code according to define NO_HASH, it is a
8119         step on the way to use stl::containers for key maps. 
8120
8121         * src/bufferlist.h: add a typedef for const_iterator and const
8122         versions of begin and end.
8123
8124         * src/bufferlist.[Ch]: change name of member variable _state to
8125         state_. (avoid reserved names)
8126         (makePup): removed
8127         (getFileNames): returns the filenames of the buffers in a vector.
8128
8129         * configure.in (ALL_LINGUAS): added ro
8130
8131         * src/support/putenv.C: new file
8132
8133         * src/support/mkdir.C: new file
8134
8135 2000-01-20  Allan Rae <rae@lyx.org>
8136
8137         * lib/layouts/IEEEtran.layout: Added several theorem environments
8138
8139         * lib/templates/IEEEtran.lyx: Example theorem environments and a
8140         couple of minor additions.
8141
8142         * lib/doc/LaTeXConfig.lyx.in:  Use URL insets for ftp sites 
8143         (except for those in footnotes of course)
8144
8145 2000-01-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
8146
8147         * src/lyxlookup.C (CloseLyXLookup): set xic=0; after destruction. 
8148
8149         * src/mathed/math_utils.C (MathedLookupBOP): rewrite to use
8150         std::sort and std::lower_bound instead of qsort and handwritten
8151         binarysearch.
8152         (struct compara): struct that holds the functors used by std::sort
8153         and std::lower_bound in MathedLookupBOP.
8154
8155 2000-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8156
8157         * src/support/LAssert.h: do not do partial specialization. We do
8158         not really need it.
8159
8160         * src/support/lyxlib.h: note that lyx::getUserName() and
8161         lyx::date() are not in use right now. Should these be suppressed?
8162
8163         * src/buffer.C (makeLaTeXFile): we do not need the user name here.
8164         (makeLinuxDocFile): do not put date and user name in linuxdoc
8165         headers. 
8166
8167         * src/support/lyxlib.h (kill): change first argument to long int,
8168         since that's what solaris uses.
8169
8170         * src/support/kill.C (kill): fix declaration to match prototype.
8171
8172         * config/lyxinclude.m4 (LYX_CXX_NAMESPACES): fix the macro to
8173         actually check whether namespaces are supported. This is not what
8174         it used to do.
8175
8176         * src/support/lyxsum.C: add a using directive.
8177
8178 2000-01-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
8179
8180         * src/support/kill.C: if we have namespace support we don't have
8181         to include lyxlib.h.
8182
8183         * src/support/lyxlib.h: use namespace lyx if supported.
8184
8185 2000-01-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
8186
8187         * src/support/date.C: new file
8188
8189         * src/support/chdir.C: new file
8190
8191         * src/support/getUserName.C: new file
8192
8193         * src/support/getcwd.C: new file
8194
8195         * src/support/abort.C: new file
8196
8197         * src/support/kill.C: new file
8198
8199         * src/support/lyxlib.h: moved all the functions in this file
8200         insede struct lyx. Added also kill and abort to this struct. This
8201         is a way to avoid the "kill is not defined in <csignal>", we make
8202         C++ wrappers for functions that are not ANSI C or ANSI C++.
8203
8204         * src/support/lyxsum.C (sum): use #ifdef MODERN_STL_STREAMS
8205         instead of #if __GLIBCPP__. Since lyxsum is now put inside struct
8206         lyx it has been renamed to sum.
8207
8208 2000-01-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8209
8210         * src/text.C: add using directives for std::min and std::max.
8211
8212 2000-01-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8213
8214         * src/texrow.C (getIdFromRow): actually return something useful in
8215         id and pos. Hopefully fixes the bug with positionning of errorbox
8216         insets. 
8217
8218         * src/lyx_main.C (easyParse): output an error and exit if an
8219         incorrect command line option has been given.
8220
8221         * src/spellchecker.C (ispell_check_word): document a memory leak.
8222
8223         * src/bufferlist.C (write): fix mismatched allocation/deletion,
8224         where a "struct utimbuf" is allocated with "new" and deleted with
8225         "delete[]". 
8226
8227 2000-01-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
8228
8229         * src/text2.C (CutSelection): don't delete double spaces.
8230         (PasteSelection): ditto
8231         (CopySelection): ditto
8232         
8233         * src/text.C (Backspace): don't delete double spaces.
8234
8235         * src/lyxlex.C (next): fix a bug that were only present with
8236         conformant std::istream::get to read comment lines, use
8237         std::istream::getline instead. This seems to fix the problem.
8238
8239 2000-01-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
8240
8241         * src/text2.C (DeleteEmptyParagraphMechanism): fix for the "not
8242         allowed to insert space before space" editing problem. Please read
8243         commends at the beginning of the function. Comments about usage
8244         are very welcome.
8245
8246         * src/text.C (InsertChar): fix for the "not allowed to insert
8247         space before space" editing problem.
8248
8249         * src/text2.C (DeleteEmptyParagraphMechanism): when
8250         IsEmptyTableRow can only return false this last "else if" will
8251         always be a no-op. Commented out.
8252
8253         * src/text.C (RedoParagraph): As far as I can understand tmp
8254         cursor is not really needed.
8255
8256         * src/lyxtext.[Ch] (IsEmptyTableCell): commented out. As used at
8257         present it could only return false anyway. 
8258         (several functions): Did something not so smart...added a const
8259         specifier on a lot of methods.
8260         
8261         * src/paragraph.C (BreakParagraph): removed the tmp->text.reserve
8262         and add a tmp->text.resize. The LyXParagraph constructor does the
8263         resize for us.
8264         (BreakParagraphConservative): ditto
8265
8266         * src/support/path.h (Path): add a define so that the wrong usage
8267         "Path("/tmp") will be flagged as a compilation error:
8268         "`unnamed_Path' undeclared (first use this function)"
8269
8270 2000-01-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8271
8272         * config/lyxinclude.m4 (LYX_FUNC_PUTENV_ARGTYPE): fix the macro,
8273         which was bogus for several reasons.
8274
8275         * src/LaTeX.C (scanAux): fix the regular expression used to scan
8276         .aux files. 
8277         (runBibTeX): ditto.
8278
8279         * autogen.sh: do not use "type -path" (what's that anyway?).
8280
8281         * src/support/filetools.C (findtexfile): remove extraneous space
8282         which caused a kpsewhich warning (at least with kpathsea version
8283         3.0). 
8284
8285 2000-01-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
8286
8287         * src/mathed/Makefile.am (noinst_LTLIBRARIES): use .la
8288
8289         * src/insets/Makefile.am (noinst_LTLIBRARIES): use .la
8290
8291         * src/Makefile.am (lyx_DEPENDENCIES): switch back to .la libs
8292
8293 2000-01-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8294
8295         * src/paragraph.C (BreakParagraph): do not reserve space on text
8296         if we don't need to (otherwise, if pos_end < pos, we end up
8297         reserving huge amounts of memory due to bad unsigned karma).
8298         (BreakParagraphConservative): ditto, although I have not seen
8299         evidence the bug can happen here.
8300
8301         * src/lyxparagraph.h: add a using std::list.
8302
8303 2000-01-11  Juergen Vigna  <jug@sad.it>
8304
8305         * src/menus.C (MenuDocu): output an Alert if the documentation-file
8306         could not be found.
8307
8308 2000-01-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
8309
8310         * src/vc-backend.C (doVCCommand): change to be static and take one
8311         more parameter: the path to chdir too be fore executing the command.
8312         (retrive): new function equiv to "co -r"
8313
8314         * src/bufferlist.C (loadLyXFile): implement the missing parts if
8315         file_not_found_hook is true.
8316
8317         * src/lyxvc.C (file_not_found_hook): implement file_not_found_hook.
8318
8319         * src/support/filetools.C (IsFileWriteable): use FileInfo to check
8320         if a file is readwrite,readonly...anything else.
8321
8322 2000-01-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
8323
8324         * src/lyx_cb.C (MakeLaTeXOutput): name change from MakeDVIOutput
8325         (CreatePostscript): name change from MenuRunDVIPS (or something)
8326         (PreviewPostscript): name change from MenuPreviewPS
8327         (PreviewDVI): name change from MenuPreviewDVI
8328
8329         * lib/lyxrc.example: added \pdflatex_command, \pdf_mode,
8330         \view_pdf_command., \pdf_to_ps_command
8331
8332         * lib/configure.m4: added search for PDF viewer, and search for
8333         PDF to PS converter. 
8334         (lyxrc.defaults output): add \pdflatex_command,
8335         \view_pdf_command and \pdf_to_ps_command.
8336
8337         * src/lyx_cb.C (MenuPreviewDVI): renamed from MenuPreview.
8338
8339         * src/bufferlist.C (write): we don't use blocksize for anything so
8340         I removed it.
8341
8342 2000-01-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8343
8344         * src/support/block.h: disable operator T* (), since it causes
8345         problems with both compilers I tried. See comments in the file.
8346
8347         * lib/reLyX/configure.in: do not define LYX_DIR. support flag
8348         --with-lyxname. 
8349
8350         * lib/reLyX/reLyX.in: change LYX_DIR to pkgdatadir; change env.
8351         variable LYX_DIR_10x to LYX_DIR_11x.
8352
8353         * src/Makefile.am: replace variable LYX_DIR with pkgdatadir.
8354
8355         * INSTALL: document --with-lyxname.
8356         * NEWS: ditto.
8357
8358         * configure.in: new configure flag --with-lyxname which allows to
8359         choose the name under which lyx is installed. Default is "lyx", of
8360         course. It used to be possible to do this with --program-suffix,
8361         but the later has in fact a different meaning for autoconf.
8362
8363         * src/support/lstrings.h (lstrchr): reformat a bit.
8364
8365         * src/lyxlex.h: include LIstream.h, for Sun CC this time.
8366         * src/mathed/math_defs.h: ditto.
8367
8368 2000-01-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
8369
8370         * src/lyxrc.[Ch]: New tag and variable "\make_backup". Defaults to
8371         true, decides if we create a backup file or not when saving. New
8372         tag and variable \pdf_mode, defaults to false. New tag and
8373         variable \pdflatex_command, defaults to pdflatex. New tag and
8374         variable \view_pdf_command, defaults to xpdf. New tag and variable
8375         \pdf_to_ps_command, defaults to pdf2ps.
8376
8377 2000-01-08  Lars Gullik Bjønnes  <larsbj@lyx.org>
8378
8379         * src/bufferlist.C (close): don't call insetUnlock if the buffer
8380         does not have a BufferView.
8381         (unlockInset): ditto + don't access the_locking_inset if the
8382         buffer does not have a BufferView.
8383
8384         * src/LyXView.C (KeyPressMask_raw_callback): add a XSync in
8385         certain circumstances so that we don't continue a keyboard
8386         operation long after the key was released. Try f.ex. to load a
8387         large document, press PageDown for some seconds and then release
8388         it. Before this change the document would contine to scroll for
8389         some time, with this change it stops imidiatly.
8390
8391         * src/support/block.h: don't allocate more space than needed. As
8392         long as we don't try to write to the arr[x] in a array_type arr[x]
8393         it is perfectly ok. (if you write to it you might segfault).
8394         added operator value_type*() so that is possible to pass the array
8395         to functions expecting a C-pointer.
8396
8397         * lib/Makefile.am (dist-hook): don't fail completely if unable to
8398         cvs.
8399
8400         * intl/*: updated to gettext 0.10.35, tried to add our own
8401         required modifications. Please verify.
8402
8403         * po/*: updated to gettext 0.10.35, tried to add our own required
8404         modifications. Please verify.
8405         
8406         * src/support/lstrings.C (tostr): go at fixing the problem with
8407         cxx and stringstream. When stringstream is used return
8408         oss.str().c_str() so that problems with lyxstring and basic_string
8409         are avoided. Note that the best solution would be for cxx to use
8410         basic_string all the way, but it is not conformant yet. (it seems)
8411
8412         * src/lyx_cb.C + other files: moved several global functions to
8413         class BufferView, some have been moved to BufferView.[Ch] others
8414         are still located in lyx_cb.C. Code changes because of this. (part
8415         of "get rid of current_view project".)
8416
8417         * src/buffer.C + other files: moved several Buffer functions to
8418         class BufferView, the functions are still present in buffer.C.
8419         Code changes because of this.
8420
8421         * config/lcmessage.m4: updated to most recent. used when creating
8422         acinclude.m4.
8423
8424         * config/progtest.m4: updated to most recent. used when creating
8425         acinclude.m4.
8426         
8427         * config/gettext.m4: updated to most recent. applied patch for
8428         tmplinguas.
8429
8430         * config/gettext.m4.patch: new file that shows what changes we
8431         have done to the local copy of gettext.m4.
8432
8433         * config/libtool.m4: new file, used in creation of acinclude.m4
8434
8435         * config/lyxinclude.m4: new file, this is the lyx created m4
8436         macros, used in making acinclude.m4.
8437         
8438         * autogen.sh: GNU m4 discovered as a separate task not as part of
8439         the lib/configure creation. 
8440         Generate acinlucde from files in config. Actually cat
8441         lyxinclude.m4, libtool.m4 and gettext.m4 together. This makes it
8442         easier to upgrade .m4 files that really are external.
8443
8444         * src/Spacing.h: moved using std::istringstream to right after
8445         <sstream>. This should fix the problem seen with some compilers.
8446
8447 2000-01-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
8448
8449         * src/lyx_cb.C: began some work to remove the dependency a lot of
8450         functions have on BufferView::text, even if not really needed.
8451         (GetCurrentTextClass): removed this func, it only hid the
8452         current_view. 
8453
8454         * src/Makefile.am (lyx_DEPENDENCIES): use support/libsupport.la I
8455         forgot this in last commit.
8456
8457         * src/Bullet.C (bulletEntry): use static char const *[] for the
8458         tables, becuase of this the return arg had to change to string.
8459         (bulletSize): ditto
8460         (~Bullet): removed unneeded destructor
8461
8462         * src/BufferView.C (beforeChange): moved from lyx_cb.C
8463         (insetSleep): moved from Buffer
8464         (insetWakeup): moved from Buffer
8465         (insetUnlock): moved from Buffer
8466
8467         * buffer.[Ch], BufferView.[Ch] + others: moved the_locking_inset
8468         from Buffer to BufferView.
8469         
8470         * acinclude.m4: include libtool.m4 from libtool 1.3.4.
8471
8472         * config/ltmain.sh: updated to version 1.3.4 of libtool
8473
8474         * config/ltconfig: updated to version 1.3.4 of libtool
8475
8476 2000-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8477
8478
8479         * src/buffer.C (pop_tag): fix a dubious for() loop initialization.
8480         Did I get that right?
8481
8482         * src/lyxlex.h: add a "using" directive or two.
8483         * src/Spacing.h: ditto.
8484         * src/insets/figinset.C: ditto.
8485         * src/support/filetools.C: ditto.
8486         * src/support/lstrings.C: ditto.
8487         * src/BufferView.C: ditto.
8488         * src/bufferlist.C: ditto.
8489         * src/lyx_cb.C: ditto.
8490         * src/lyxlex.C: ditto.
8491
8492         * NEWS: add some changes for 1.1.4.
8493         
8494 2000-01-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
8495
8496         * src/BufferView.C: first go at a TextCache to speed up switching
8497         between documents.
8498
8499 2000-01-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8500
8501         * lib/examples/ItemizeBullets.lyx: update from Tino Meinen. 
8502         * lib/examples/nl_voorbeeld_ruw.lyx: ditto.
8503         * lib/examples/nl_voorbeeld_verlyxt.lyx: ditto.
8504         * lib/examples/nl_opsommingstekens.lyx: new translation from Tino
8505         Meinen.
8506         
8507         * src/mathed/math_defs.h (MathedRowSt): make sure that all
8508         members of the struct are correctly initialized to 0 (detected by
8509         purify) 
8510         * src/lyxrc.C (LyXRC): ditto for print_adapt_output.
8511         * src/insets/figinset.C (InsetFig): ditto for pswid and pshgh.
8512
8513         * src/insets/figinset.C (sigchldchecker): use "delete" to free a
8514         pidwait, since it was allocated with "new". This was potentially
8515         very bad. Thanks to Michael Schmitt for running purify for us.
8516
8517
8518 2000-01-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8519
8520         * src/lyx_gui_misc.C: add a 'using std::make_pair;' statement.
8521
8522         * src/lyx_gui_misc.h: add a 'using std::pair;' statement.
8523
8524 1999-12-30  Allan Rae  <rae@lyx.org>
8525
8526         * lib/templates/IEEEtran.lyx: minor change
8527
8528         * src/lyxvc.C (registrer, checkIn), src/lyx_cb.C (MenuInsertLabel),
8529         src/mathed/formula.C (LocalDispatch): askForText changes
8530
8531         * src/lyx_gui_misc.[Ch] (askForText): now returns a bool also so we 
8532         know when a user has cancelled input. Fixes annoying problems with
8533         inserting labels and version control.
8534
8535 1999-12-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
8536
8537         * src/support/lstrings.C (tostr): rewritten to use strstream and
8538         stringstream
8539
8540 1999-12-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
8541
8542         * src/support/filetools.C (IsFileWriteable): use fstream to check
8543         (IsDirWriteable): use fileinfo to check
8544
8545         * src/support/filetools.h (FilePtr): whole class deleted
8546
8547         * src/insets/figinset.C (GetPSSizes): rewritten to use ifstream.
8548
8549         * src/lyxparagraph.h (readSimpleWholeFile): make arg istream
8550
8551         * src/lyx_cb.C (InsertAsciiFile): use ifstream instead of FilePtr
8552
8553         * src/bufferlist.C (write): use ifstream and ofstream instead of
8554         FILE*
8555
8556         * src/Spacing.h: use istrstream instead of sscanf
8557
8558         * src/mathed/math_defs.h: change first arg to istream from FILE*
8559
8560         * src/buffer.C (insertLyXFile): use ifstream instead of FilePtr
8561
8562         * src/mathed/math_parser.C: have yyis to be an istream 
8563         (LexGetArg): use istream (yyis)
8564         (yylex): ditto
8565         (mathed_parse): ditto
8566         (mathed_parser_file): first arg istream instead of FILE*, set yyis
8567
8568         * src/mathed/formula.C (Read): rewritten to use istream
8569
8570         * src/mathed/formulamacro.C (Read): rewritten to use istream
8571
8572         * src/lyxlex.h (~LyXLex): deleted desturctor 
8573         (getStream): new function, returns an istream
8574         (getFile): deleted funtion
8575         (IsOK): return is.good();
8576
8577         * src/lyxlex.C (LyXLex): delete file and owns_file
8578         (setFile): open an filebuf and assign that to a istream instead of
8579         using FILE*
8580         (setStream): new function, takes an istream as arg. 
8581         (setFile): deleted function
8582         (EatLine): rewritten us use istream instead of FILE*
8583         (next): ditto
8584         (nextToken): ditto
8585
8586         * src/table.C (LyXTable): use istream instead of FILE*
8587         (Read): rewritten to take an istream instead of FILE*
8588
8589 1999-12-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8590
8591         * src/buffer.C (Dispatch): remove an extraneous break statement.
8592
8593         * src/support/filetools.C (QuoteName): change to do simple
8594         'quoting'. More work is necessary. Also changed to do nothing
8595         under emx (needs fix too).
8596         (Putenv): Cast the argument of putenv() with PUTENV_TYPE_ARG.
8597
8598         * acinclude.m4 (STL_STRING_FWD_H_LOCATION): add the comment for
8599         config.h.in to the AC_DEFINE_UNQUOTED() call.
8600         (LYX_FUNC_PUTENV_ARGTYPE): new macro. Checks whether putenv()
8601         needs char * as argument (because Solaris 7 declares it like
8602         that). 
8603
8604         * acconfig.h: remove placeholder for STL_STRING_FWD_H_LOCATION;
8605         remove definition of BZERO.
8606
8607 1999-12-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
8608
8609         * src/support/LRegex.C: include <regex.h> if HAVE_REGEX_H is
8610         defined, "lyxregex.h" if not.
8611
8612         * src/support/Makefile.am (noinst_LTLIBRARIES): changed from
8613         pkglib_ to noinst_
8614         (REGEX): new variable that is set to regex.c lyxregex.h when
8615         AM_CONDITIONAL USE_REGEX is set.
8616         (libsupport_la_SOURCES): add $(REGEX)
8617
8618         * src/mathed/Makefile.am (noinst_LTLIBRARIES): changed from
8619         pkglib_ to noinst_
8620
8621         * src/insets/Makefile.am (noinst_LTLIBRARIES): changed from
8622         pkglib_ to noinst_
8623
8624         * configure.in: add call to LYX_REGEX 
8625
8626         * acinclude.m4 (LYX_REGEX): checks if we need to use the included
8627         regex or not. Uses a a AM_CONDITIONAL to decide what to compile. 
8628
8629 1999-12-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8630
8631         * lib/bind/fi_menus.bind: new file, from
8632         pauli.virtanen@saunalahti.fi. 
8633
8634         * src/buffer.C (getBibkeyList): pass the parameter delim to
8635         InsetInclude::getKeys and InsetBibtex::getKeys.
8636
8637         * src/insets/insetinclude.[Ch] (getKeys): add parameter delim, which
8638         is passed to Buffer::getBibkeyList
8639         
8640         * src/insets/insetbib.[Ch] (getKeys): add parameter delim, and use it
8641         instead of the hardcoded comma.
8642
8643         * src/insets/insetbib.C (getKeys): make sure that there are not
8644         leading blanks in bibtex keys. Normal latex does not care, but
8645         harvard.sty seems to dislike blanks at the beginning of citation
8646         keys. In particular, the retturn value of the function is
8647
8648         * INSTALL: make it clear that libstdc++ is needed and that gcc
8649         2.7.x probably does not work.
8650
8651         * src/support/filetools.C (findtexfile): make debug message go to
8652         the LATEX channel
8653         * src/insets/insetbib.C (getKeys): ditto
8654
8655         * src/debug.C (showTags): make sure that the output is correctly
8656         aligned. 
8657
8658         * configure.in: add a comment for TWO_COLOR_ICON define.
8659
8660         * acconfig.h: remove all the entries that already defined in
8661         configure.in or acinclude.m4.
8662
8663         * src/buffer.C (makeLaTeXFile): headers of latex file also changed
8664         to avoid user name, date and copyright.
8665
8666 1999-12-21  Juergen Vigna  <jug@sad.it>
8667
8668         * src/table.C (Read): Now read bogus row format informations
8669                 if the format is < 5 so that afterwards the table can
8670                 be read by lyx but without any format-info. Fixed the
8671                 crash we experienced when not doing this.
8672
8673 1999-12-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
8674
8675         * src/text2.C (RedoHeightOfParagraph): rename arg cursor -> cur
8676         (RedoDrawingOfParagraph): ditto
8677         (RedoParagraphs): ditto
8678         (RemoveTableRow): ditto
8679
8680         * src/text.C (Fill): rename arg paperwidth -> paper_width
8681
8682         * src/buffer.C (insertLyXFile): rename var filename -> fname
8683         (writeFile): rename arg filename -> fname
8684         (writeFileAscii): ditto
8685         (makeLaTeXFile): ditto
8686         (makeLinuxDocFile): ditto
8687         (makeDocBookFile): ditto
8688
8689         * src/LaTeX.C (runMakeIndex): change arg name from file -> f
8690         (runBibTeX): ditto
8691
8692         * src/Makefile.am (lyx_SOURCES): add bmtable.c and remove bmtable.C
8693
8694         * src/bmtable.h: add extern "C" on this file when __cplusplus is
8695         defined.
8696
8697         * src/bmtable.c: new file, a C'ified copy of bmtable.C, this is
8698         compiled by a C compiler not C++. 
8699
8700         * src/layout.h (LyXTextClass): added typedef for const_iterator
8701         (LyXTextClassList): added typedef for const_iterator + member
8702         functions begin and end.
8703
8704         * src/LyXView.C (UpdateDocumentClassChoice): rewritten to use
8705         iterators to fill the choice_class.
8706         (updateLayoutChoice): rewritten to use iterators to fill the
8707         layoutlist in the toolbar.
8708
8709         * src/BufferView.h (BufferView::work_area_width): removed unused
8710         variable. 
8711
8712         * src/lyx_gui_misc.C (WarnReadonly): added string parameter 'file'
8713
8714         * src/buffer.C (sgmlOpenTag): drop the use of the static space array
8715         (sgmlCloseTag): ditto
8716
8717         * src/support/lstrings.h: return type of countChar changed to
8718         unsigned char.
8719
8720         * src/support/lstrings.C (countChar): use HAVE_STD_COUNT to choose
8721         what version of this func to use. Also made to return unsigned int.
8722
8723         * configure.in: call LYX_STD_COUNT 
8724
8725         * acinclude.m4 (LYX_STD_COUNT): new function checks for a standard
8726         conforming std::count. 
8727
8728 1999-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8729
8730         * src/mathed/math_draw.C (Draw, Metrics): fix a bug where a prime
8731         and a subscript would give bad display (patch from Dekel Tsur
8732         <dekel@math.tau.ac.il>). 
8733
8734         * src/insets/insetlatexaccent.h: make sure ACCENT_TYPES is public. 
8735
8736         * src/spellchecker.C (create_ispell_pipe): use a const_cast to
8737         please sun CC.
8738
8739         * src/chset.h: add a few 'using' directives
8740
8741         * src/lyxfunc.C (Dispatch): check that LFUN_UNKNOWN_ACTION is not
8742         triggered when no buffer is active
8743
8744         * src/layout.C: removed `break' after `return' in switch(), since
8745         it is unreachable.
8746
8747         * src/lyx_main.C (init): make sure LyX can be ran in place even
8748         when libtool has done its magic with shared libraries. Fix the
8749         test for the case when the system directory has not been found.
8750
8751         * src/lyx_cb.C (MenuMakeLaTeX): make sure to keep the full path
8752         name for the latex file.
8753         (MenuMakeHTML): ditto
8754
8755         * src/buffer.h: add an optional boolean argument, which is passed
8756         to ChangeExtension.
8757
8758 1999-12-20  Allan Rae  <rae@lyx.org>
8759
8760         * lib/templates/IEEEtran.lyx: small correction and update.
8761
8762         * configure.in: Attempted to use LYX_PATH_HEADER
8763
8764         * src/stl_string_fwd.h: Don't need HAVE_STL_STRING_FWD_H anymore
8765
8766         * acconfig.h, acinclude.m4 (LYX_STL_STRING_FWD): totally revised after
8767         input from JMarc.  Now use preprocessor to find the header.
8768         Also stopped making HAVE_STL_STRING_FWD_H and extended the comments.
8769         (LYX_PATH_HEADER): My, so far, failed attempt to generalize
8770         LYX_STL_STRING_FWD.  See comments in file.      
8771
8772 1999-12-19  Asger Alstrup Nielsen  <alstrup@diku.dk>
8773
8774         * The global MiniBuffer * minibuffer variable is dead.
8775         
8776         * The global FD_form_main * fd_form_main variable is dead.
8777
8778 1999-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8779
8780         * src/toolbar.C (set): condition #warning on WITH_WARNINGS
8781
8782         * src/table.h: add the LOstream.h header
8783         * src/debug.h: ditto
8784         
8785         * src/LyXAction.h: change the explaination of the ReadOnly
8786         attribute: is indicates that the function _can_ be used.
8787
8788         * src/LyXAction.C (init): find-replace _can_ be used in read-only
8789         mode. 
8790
8791 1999-12-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8792
8793         * src/lyxfont.C (ascent): Make sure that char is _always_ used as
8794         unsigned. 
8795         (descent): ditto
8796         (lbearing): ditto
8797         (rbearing): ditto
8798
8799         * src/paragraph.C (GetWord): assert on pos>=0
8800         (GetChar): ditto
8801         
8802         * src/support/lyxstring.C: condition the use of an invariant on
8803         ENABLE_ASSERTIONS 
8804         * src/support/lyxstring.h: ditto
8805
8806         * src/Bullet.[Ch]: replace DEBUG_AS_DEFAULT by ENABLE_ASSERTIONS.
8807         Use LAssert.h instead of plain assert().
8808
8809         * src/support/lstrings.h: add LAssert.h, in case it is needed.
8810
8811         * src/lyxfunc.C: do not include LAssert.h, it is not used.
8812         * src/support/filetools.C: ditto
8813
8814         * src/support/LAssert.h: make Assert a no-op if ENABLE_ASSERTIONS
8815         is not defined. 
8816
8817         * INSTALL: document the new configure flags
8818         
8819         * configure.in: suppress --with-debug; add --enable-assertions
8820
8821         * acinclude.m4: various changes in alignment of help strings.
8822
8823 1999-12-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
8824
8825         * src/kbmap.C: commented out the use of the hash map in kb_map,
8826         beginning of movement to a stl::container. 
8827
8828         * several files: removed code that was not in effect when
8829         MOVE_TEXT was defined.
8830         
8831         * lib/kbd/iso8859-1.cdef: removed bogus backslashes. Backslashes
8832         for escaping should not be used. We can discuss if the string
8833         should be enclosed in f.ex. [] instead of "".
8834
8835         * src/trans_mgr.C (insert): use the new returned value from
8836         encodeString to get deadkeys and keymaps done correctly.
8837
8838         * src/chset.C (encodeString): changed to return a pair, to tell
8839         what to use if we know the string.
8840
8841         * src/lyxscreen.h (fillArc): new function.
8842
8843         * src/FontInfo.C (resize): rewritten to use more std::string like
8844         structore, especially string::replace.
8845
8846         * src/insets/insetlatexaccent.C (Draw): use fillArc for the
8847         approp. accents.
8848
8849         * configure.in (chmod +x some scripts): remove config/gcc-hack 
8850
8851 1999-12-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8852
8853         * src/buffer.C (writeFile): change once again the top comment in a
8854         .lyx file to point to www.lyx.org and to use LYX_DOCVERSION
8855         instead of an hardcoded version number.
8856         (makeDocBookFile): ditto
8857
8858         * src/version.h: add new define LYX_DOCVERSION
8859
8860         * po/de.po: update from Pit Sütterlin
8861         * lib/bind/de_menus.bind: ditto.
8862         
8863         * src/lyxfunc.C (Dispatch): call MenuExport()
8864         * src/buffer.C (Dispatch): ditto
8865
8866         * src/lyx_cb.C (MenuMakeHTML): new function, moved from
8867         LyXFunc::Dispatch().
8868         (MenuExport): new function, moved from
8869         LyXFunc::Dispatch().
8870
8871         * src/trans_mgr.C (insert): small cleanup
8872         * src/chset.C (loadFile): ditto
8873
8874         * lib/kbd/iso8859-1.cdef: add missing backslashes
8875
8876 1999-12-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
8877
8878         * src/insets/insetlatexaccent.C (Lbearing): new function, used to
8879         help with placing the manually drawn accents better.
8880         (Rbearing): ditto
8881         (Draw): x2 and hg changed to float to minimize rounding errors and
8882         help place the accents better.
8883
8884         * src/lyxfont.C (ascent): fixed faulty static_cast, casting from
8885         unsigned short to char is just wrong...cast the char to unsigned
8886         char instead so that the two values can compare sanely. This
8887         should also make the display of insetlatexaccents better and
8888         perhaps also some other insets.
8889         (descent): ditto
8890         (lbearing): new function
8891         (rbearing): ditto
8892
8893 1999-12-15  Allan Rae  <rae@lyx.org>
8894
8895         * src/stl_string_fwd.h, src/Makefile.am (lyx_SOURCES):  added new
8896         header that provides a wrapper around the very annoying SGI STL header
8897         of the same name.
8898
8899         * src/support/lyxstring.C, src/LString.h:
8900         removed old SGI-STL-compatability attempts.
8901
8902         * configure.in: Use LYX_STL_STRING_FWD.
8903
8904         * acinclude.m4 (LYX_STL_STRING_FWD), acconfig.h: Test if 
8905         stl_string_fwd.h is around and try to determine it's location.
8906         Major improvement over previous SGI STL 3.2 compatability.
8907         Three small problems remain with this function due to my zero
8908         knowledge of autoconf.  JMarc and lgb see the comments in the code.
8909
8910 1999-12-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8911
8912         * src/broken_const.h, config/hack-gcc, config/README: removed
8913         
8914         * configure.in: remove --with-gcc-hack option; do not call
8915         LYX_CXX_STL_STACK 
8916
8917         * INSTALL: remove documentation of --with-broken-const and
8918         --with-gcc-hack
8919         
8920         * acconfig.h: remove all trace of BROKEN_CONST define
8921
8922         * src/buffer.C (makeDocBookFile): update version number in output
8923         file. 
8924         (SimpleDocBookOnePar): fix an assert when trying to a character
8925         access beyond string length
8926         [Patch from Jose']
8927
8928 1999-12-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8929
8930         * po/de.po: fix the Export menu
8931
8932         * lyx.man: update the description of -dbg
8933
8934         * src/lyx_main.C (setDebuggingLevel): call Debug::showLevel()
8935         (commandLineHelp): updated
8936         (easyParse): show list of available debug levels if -dbg is passed
8937         without argument.
8938
8939         * src/Makefile.am: add debug.C
8940
8941         * src/debug.h: moved some code to debug.C
8942
8943         * src/debug.C: new file. Contains code to set and show debug
8944         level. 
8945
8946         * src/layout.C: remove 'break' after 'continue' in switch
8947         statements, since these cannot be reached.
8948
8949 1999-12-13  Allan Rae  <rae@lyx.org>
8950
8951         * src/mathed/math_hash.C (math_hash): renamed from hash(), name clash.
8952         (in_word_set): hash() -> math_hash()
8953
8954         * src/LString.h: Used USING_EXCEPTIONS in SGI STL-3.2 support 
8955
8956         * acconfig.h: Added a test for whether we are using exceptions in the
8957         current compilation run. If so USING_EXCEPTIONS is defined.
8958
8959         * config.in: Check for existance of stl_string_fwd.h
8960         * src/LString.h: If compiling --with-included-string and SGI's
8961         STL version 3.2 is present (see above test) we need to block their
8962         forward declaration of string and supply a __get_c_string().
8963         However, it turns out this is only necessary if compiling with
8964         exceptions enabled so I've a bit more to add yet.
8965
8966         * src/insets/figinset.[Ch], src/insets/insetinclude.C,
8967           src/insets/insetloa.C, src/layout.h, src/lyxparagraph.h,
8968           src/support/LRegex.h, src/undo.h:
8969         Shuffle the order of the included files a little to ensure that
8970         LString.h gets included before anything that includes stl_string_fwd.h
8971
8972         *  src/support/lyxstring.C: We need to #include LString.h instead of
8973         lyxstring.h to get the necessary definition of __get_c_string.
8974         (__get_c_string): New function.  This is defined static just like SGI's
8975         although why they need to do this I'm not sure.  Perhaps it should be
8976         in lstrings.C instead.
8977
8978         * lib/templates/IEEEtran.lyx:  New template file.
8979
8980 1999-12-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
8981         
8982         * Makefile.in.in (MKINSTALLDIRS): use $(srcdir)/@MKINSTALLDIRS@
8983         * intl/Makefile.in (MKINSTALLDIRS):  ditto
8984
8985         * src/LyXAction.C (init): changed to hold the LFUN data in a
8986         automatic array in stead of in callso to newFunc, this speeds up
8987         compilation a lot. Also all the memory used by the array is
8988         returned when the init is completed.
8989
8990         * a lot of files: compiled with -Wold-style-cast, changed most of
8991         the reported offenders to C++ style casts. Did not change the
8992         offenders in C files. 
8993
8994         * src/trans.h (Match): change argument type to unsigned int.
8995
8996         * src/support/DebugStream.C: fix some types on the streambufs so
8997         that it works on a conforming implementation.
8998
8999 1999-12-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9000
9001         * lib/examples/example_{raw,lyxified}.lyx: fix embarassing sentence.
9002
9003         * src/support/lyxstring.C: remove the inline added earlier since
9004         they cause a bunch of unsatisfied symbols when linking with dec
9005         cxx. Cxx likes to have the body of inlines at the place where they
9006         are declared.
9007
9008         * src/trans.C (AddDeadkey): add an 'unsigned char' cast to avoid
9009         accessing negative bounds in array. This fixes the crash when
9010         inserting accented characters.
9011         * src/trans.h (Match): ditto
9012
9013         * src/buffer.C (Dispatch): since this is a void, it should not try
9014         to return anything...
9015
9016 1999-12-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
9017
9018         * src/buffer.h: removed the two friends from Buffer. Some changes
9019         because of this. Buffer::getFileName and Buffer::setFileName
9020         renamed to Buffer::fileName() and Buffer::fileName(...).
9021
9022 1999-12-09  Lars Gullik Bjønnes <larsbj@lyx.org>
9023
9024         * buffer.[Ch], BufferView.[Ch] + other files: Moved Buffer::text
9025         and Buffer::update(short) to BufferView. This move is currently
9026         controlled by a define MOVE_TEXT, this will be removed when all
9027         shows to be ok. This move paves the way for better separation
9028         between buffer contents and buffer view. One side effect is that
9029         the BufferView needs a rebreak when swiching buffers, if we want
9030         to avoid this we can add a cache that holds pointers to LyXText's
9031         that is not currently in use. 
9032
9033         * buffer.[Ch], lyx_main.C: small changes to the "-export" patch by
9034         André Pönitz. 
9035
9036 1999-11-18  André Pönitz <poenitz@mathematik.tu-chemnitz.de>
9037
9038         * buffer.[Ch]: Dispatch() - new dispatcher on the buffer level
9039
9040         * lyx_main.C: new command line option -x (or --execute) and
9041           -e (or --export). Now direct conversion from .lyx to .tex
9042           (.dvi, .ps, ...) is possible  ('lyx file.lyx --export latex')
9043           Unfortunately, X is still needed and the GUI pops up during the
9044           process...
9045
9046 1999-12-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9047
9048         * src/Spacing.C: add a using directive to bring stream stuff into
9049         normal namespace.
9050         * src/paragraph.C: ditto
9051         * src/buffer.C: ditto
9052
9053         * NEWS: updated a bit the new features of 1.1.3 (took a few things
9054         from Lars' announcement).
9055
9056         * lib/examples/nl_voorbeeld_{ruw,verlyxt}.lyx: new tutorial
9057         example files from Tino Meinen.
9058         
9059 1999-12-06  Allan Rae  <rae@lyx.org>
9060
9061         * src/LaTeX.C (runBibTeX): fix typo in accessing submatch pair.
9062
9063 1999-12-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
9064
9065         * src/support/lyxstring.C: added a lot of inline for no good
9066         reason
9067         
9068         * src/lyxfont.[Ch]: removed latexWriteStartChanges, and
9069         latexWriteEndChanges, they were not used.
9070         
9071         * src/layout.h (operator<<): output operator for PageSides
9072
9073         * src/mathed/math_iter.C (my_memcpy): slightly changed.
9074
9075         * some example files: loaded in LyX 1.0.4 and saved again to update
9076         certain constructs (table format) 
9077
9078         * a lot of files: did the change to use fstream/iostream for all
9079         writing of files. Done with a close look at Andre Poenitz's patch.
9080
9081         * some files: whitespace changes.
9082         
9083 1999-12-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9084
9085         * src/mathed/math_iter.C (my_memcpy): new function. Since the
9086         built-in memcpy() is broken on egcs and gcc 2.95 for alpha
9087         architecture, we provide our own. It is used unconditionnally, but
9088         I do not think this is a performance problem. Thanks to Angus
9089         Leeming <a.leeming@ic.ac.uk> for the code (and again to Michal
9090         Jaegermann <michal@ellpspace.math.ualberta.ca> for finding it the
9091         first time).
9092         (GetInset): use my_memcpy.
9093         (Insert): ditto
9094         (Copy): ditto
9095
9096         * lib/chkconfig.ltx: some cleanup of the latex code. I am not sure
9097         it is easier to understand, but it uses less TeX-only constructs now.
9098
9099         * acinclude.m4 (LYX_SEARCH_PROG): make it work when the PATH
9100         elements contain spaces
9101
9102         * lib/configure: regenerated
9103         
9104         * lib/configure.m4 (SEARCH_PROG): make it work when the PATH
9105         elements contain spaces; display the list of programs that are
9106         tried.
9107
9108         * autogen.sh: make sure lib/configure is executable
9109
9110         * lib/examples/*: rename the tutorial examples to begin with the
9111         two-letters language code.
9112
9113         * src/lyxfunc.C (getStatus): do not query current font if no
9114         buffer exists.
9115
9116         * src/lyx_cb.C (RunScript): use QuoteName
9117         (MenuRunDvips): ditto
9118         (PrintApplyCB): ditto
9119
9120         * src/support/filetools.[Ch] (QuoteName): new function. Add quotes
9121         around argument, so that it works well with the current shell.
9122         Does not work properly with OS/2 shells currently.
9123
9124         * src/LaTeXLog.C (ShowLatexLog): use Buffer::getLatexName
9125         * src/LyXSendto.C (SendtoApplyCB): ditto
9126         * src/lyxfunc.C (Dispatch): ditto
9127         * src/buffer.C (runLaTeX): ditto
9128         (runLiterate): ditto
9129         (buildProgram): ditto
9130         (runChktex): ditto
9131         * src/lyx_cb.C (RunScript): ditto
9132         (MenuMakeLaTeX): ditto
9133         
9134         * src/buffer.h (getLatexName): new method 
9135
9136         * src/support/filetools.C (MakeLatexName): renamed from SpaceLess
9137
9138 1999-12-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9139
9140         * images/sqrt.xpm: change name of the sqrt icon to sqrt_xpm.
9141         * src/mathed/math_panel.C (mathed_get_pixmap_from_icon): ditto
9142         (create_math_panel): ditto
9143
9144         * src/lyxfunc.C (getStatus): re-activate the code which gets
9145         current font and cursor; add test for export to html.
9146
9147         * src/lyxrc.C (read): remove unreachable break statements; add a
9148         few "using".
9149
9150         * src/bmtable.C (fl_set_bmtable_data): add a const_cast.
9151         
9152 1999-12-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
9153
9154         * src/mathed/formula.C (LocalDispatch): fix small whitspace bug
9155         introduced by faulty regex.
9156         * src/buffer.C: ditto
9157         * src/lastfiles.C: ditto
9158         * src/paragraph.C: ditto
9159         * src/table.C: ditto
9160         * src/vspace.C: ditto
9161         * src/insets/figinset.C: ditto
9162         Note: most of these is absolutely harmless, except the one in
9163         src/mathed formula.C.
9164
9165 1999-11-30  Kayvan A. Sylvan  <kayvan@satyr.sylvan.com>
9166
9167         * src/ImportNoweb.C (documentclass): fixed bounds for substr
9168           operation, yielding correct results for the reLyX command.
9169
9170 1999-12-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
9171
9172         * src/support/filetools.C (ExpandPath): removed an over eager
9173         Assert.
9174         (ReplaceEnvironmentPath): ditto
9175
9176         * src/toolbar.C (BubbleTimerCB): use C++ style casts. This clearly
9177         shows that we are doing something fishy in our code...
9178         (BubblePost): ditto
9179         (ToolbarCB): ditto
9180
9181         * src/lyxrc.C (read): use a double switch trick to get more help
9182         from the compiler. (the same trick is used in layout.C)
9183         (write): new function. opens a ofstream and pass that to output
9184         (output): new function, takes a ostream and writes the lyxrc
9185         elemts to it. uses a dummy switch to make sure no elements are
9186         forgotten. 
9187
9188         * src/lyxlex.h: added a struct pushpophelper for use in functions
9189         with more than one exit point.
9190
9191         * src/lyxlex.[Ch] (GetInteger): made it const
9192         (GetFloat): ditto
9193         (GetBool): ditto
9194
9195         * src/lyxfunc.C (Dispatch): added case for LFUN_SAVEPREFERENCES
9196
9197         * src/layout.[hC] : LayoutTags splitted into several enums, new
9198         methods created, better error handling cleaner use of lyxlex. Read
9199         the diff.
9200
9201         * src/bmtable.[Ch]: change some member prototypes because of the
9202         image const changes. 
9203
9204         * commandtags.h, src/LyXAction.C (init): new function:
9205         "preferences-save", saves the lyxrc entries into .lyx/preferences.
9206         This file is not read automatically but you can add \input
9207         preferences to your lyxrc if you want to. We need to discuss how
9208         to handle this. 
9209
9210         * src/LaTeX.C (runBibTeX): use regex to match for the needed lines
9211         in .aux, also remove .bib and .bst files from dependencies when
9212         running bibtex.
9213
9214         * src/BufferView.C, src/LyXView.C: add const_cast several places
9215         because of changes to images.
9216
9217         * lib/images/*: same change as for images/*
9218         
9219         * lib/lyxrc.example: Default for accept_compound is false not no.
9220
9221         * images/*: changed to be const, however I have som misgivings
9222         about this change so it might be changed back.
9223
9224 1999-11-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9225
9226         * lib/configure, po/POTFILES.in: regenerated
9227
9228         * autogen.sh: autogenerate lib/configure from lib/configure.m4
9229
9230         * config/lib_configure.m4: removed
9231         
9232         * lib/configure.m4: new file (was config/lib_configure.m4)
9233
9234         * configure.in: do not test for rtti, since we do not use it.
9235         
9236 1999-11-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
9237
9238         * src/support/lyxstring.C (lyxstring::Srep): Changed to use a
9239         doubling of allocated space scheme. This makes it faster for large
9240         strings end to use less memory for small strings. xtra rememoved. 
9241
9242         * src/insets/figinset.C (waitalarm): commented out.
9243         (GhostscriptMsg): use static_cast
9244         (GhostscriptMsg): use new instead of malloc to allocate memory for
9245         cmap. also delete the memory after use.
9246
9247         * src/lyx_cb.C (SetXtermCursor): made cursor_undefined a bool
9248
9249         * src/LaTeX.C (scanAux): new method. Scans the .aux file and looks
9250         for changes in bibtex database or style.
9251         (runBibTeX): remove all .bib and .bst files from dep before we
9252         begin. 
9253         (run): use scanAuc in when dep file already exist.
9254
9255         * src/DepTable.C (remove_files_with_extension): new method
9256         (exist): new method
9257
9258         * src/DepTable.[Ch]: made many of the methods const. 
9259
9260 1999-11-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9261
9262         * src/bufferparams.C: make sure that the default textclass is
9263         "article". It used to be the first one by description order, but
9264         now the first one is "docbook".
9265
9266         * src/lyx_main.C (setDebuggingLevel): change type of argument to
9267         string; call Debug::value.
9268         (easyParse): pass complete argument to setDebuggingLevel().
9269
9270         * src/debug.h (value): fix the code that parses debug levels.
9271
9272         * src/debug.h: add new debug type ACTION, reserved for LyXAction
9273         class.  
9274
9275         * src/LyXAction.C: use Debug::ACTION as debug channel.
9276
9277         * src/lyxlookup.C: make the debug statements go to Debug::KEY.
9278
9279         * NEWS: updated for the future 1.1.3 release.
9280
9281         * src/mathed/symbol_def.h: swap the definitions of \varepsilon and
9282         \epsilon. Now \epsilon shows as red text, and \varepsilon shows as
9283         it should. This is of course a controversial change (since many
9284         people will find that their lyx workscreen is suddenly full of
9285         red), but done for the sake of correctness.
9286
9287         * src/mathed/formulamacro.h, src/mathed/math_macro.[Ch],
9288           src/mathed/math_root.[Ch] (Clone): return a MathedInset*  
9289
9290         * src/insets/inseterror.h, src/insets/inseturl.h,
9291           src/insets/insetinfo.h, src/insets/figinset.h,
9292           src/mathed/formulamacro.h, src/mathed/math_macro.h
9293           (EditMessage): add a missing const and add _() to make sure that
9294         translation happens
9295
9296         * src/ImportNoweb.C, src/LyXAction.h, src/insets/figinset.C,
9297           src/insets/insetbib.C, src/support/filetools.C: add `using'
9298         directives for cxx.  
9299
9300         * src/lyxfunc.C (Dispatch): make sure nothing bad happens when
9301         doing 'Insert index of last word' at the beginning of a paragraph.
9302
9303 1999-11-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
9304
9305         * several files: white-space changes.
9306
9307         * src/mathed/formula.C: removed IsAlpha and IsDigit
9308
9309         * src/insets/insetbib.C (getKeys): use findtexfile to look for the
9310         .bib file. use a ifstream instead of FilePtr when parsing the .bib
9311         file for keys.
9312
9313         * src/insets/figinset.C (GetPSSizes): don't break when
9314         "EndComments" is seen. But break when a boundingbox is read.
9315
9316         * all classes inherited from Inset: return value of Clone
9317         changed back to Inset *.
9318
9319         * all classes inherited form MathInset: return value of Clone
9320         changed back to MathedInset *.
9321         
9322         * src/insets/figinset.C (runqueue): use a ofstream to output the
9323         gs/ps file. Might need some setpresicion or setw. However I can
9324         see no problem with the current code.
9325         (runqueue): use sleep instead of the alarm/signal code. I just
9326         can't see the difference.
9327
9328         * src/paragraph.C (LyXParagraph): reserve space in the new
9329         paragraph and resize the inserted paragraph to just fit.
9330
9331         * src/lyxfunc.h (operator|=): added operator for func_status.
9332
9333         * src/lyxfunc.C (MenuNew): use FileInfo instead of FilePtr to
9334         check for readable file.
9335
9336         * src/lyx_cb.C (MenuMakeLaTeX): use FileInfo instead of FilePtr to
9337         check for readable file.
9338         (MenuMakeLinuxDoc): ditto
9339         (MenuMakeDocBook): ditto
9340         (MenuMakeAscii): ditto
9341         (InsertAsciiFile): split the test for openable and readable
9342
9343         * src/bmtable.C (draw_bitmaptable): use
9344         fl_state[fl_get_vclass()].depth instead of DefualtScreen.
9345
9346         * src/LaTeX.C, src/support/filetools.[Ch]: moved do_popen and
9347         findtexfile from LaTeX to filetools.
9348         
9349         * src/ImportNoweb.C (documentclass): rewrote to use ifstream
9350         instead of FilePtr. Needs to be verified by a literate user.
9351
9352 1999-11-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9353
9354         * src/mathed/formula.[Ch] (GetCursorPos): add a missing 'const'.
9355         (EditMessage): likewise.
9356
9357         * src/paragraph.C (SimpleTeXSpecialChars): output ~ and ^
9358         respectively as \textasciitilde and \textasciicircum.
9359
9360 1999-11-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
9361
9362         * src/support/lyxstring.h: made the methods that take iterators
9363         use const_iterator.
9364
9365         * src/support/lstrings.C (countChar): use std::cound(itr, itr, val)
9366         (regexMatch): made is use the real regex class.
9367
9368         * src/support/Makefile.am: changed to use libtool
9369
9370         * src/support/.cvsignore: added *.lo, .libs and libsupport.la
9371
9372         * src/mathed/math_defs.h: made the mathaligns be in a enum instead
9373         of defines.
9374         (MathIsInset ++): changed several macros to be inline functions
9375         instead. 
9376
9377         * src/mathed/Makefile.am: changed to use libtool
9378
9379         * src/mathed/.cvsignore: added *.lo, .libs and libmathed.la
9380
9381         * src/insets/inset* : Clone changed to const and return type is
9382         the true insettype not just Inset*.
9383         
9384         * src/insets/Makefile.am: changed to use libtool
9385
9386         * src/insets/.cvsignore: added *.lo, .libs and libinsets.la
9387
9388         * src/undo.[Ch] : added empty() and changed some of the method
9389         names.
9390         
9391         * src/texrow.[Ch]: rewrote to store texrow's in a std::list.
9392
9393         * src/lyxparagraph.h: use id() and id(...) instead of getID and
9394         setID use block<> for the bullets array, added const several places.
9395
9396         * src/lyxfunc.C (getStatus): new function
9397
9398         * src/lyxfunc.[Ch] : small changes to take advantage of the new
9399         LyXAction, added const to several funtions.
9400
9401         * src/filedlg.[Ch]: rewrote to store userchache and groupchache in
9402         a std::map, and to store the dir items in a vector.
9403
9404         * src/Makefile.am (lyx_DEPENDENCIES): changed to use libtool files
9405         as dependencies.
9406
9407         * src/LyXView.[Ch] + other files : changed currentView to view.
9408         
9409         * src/LyXAction.[Ch] : ported from the old devel branch.
9410         
9411         * src/.cvsignore: added .libs and a.out
9412
9413         * configure.in : changes to use libtool. 
9414
9415         * acinclude.m4 : inserted libtool.m4
9416
9417         * .cvsignore: added libtool
9418
9419 1999-11-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9420
9421         * src/Makefile.am (lyx_DEPENDENCIES): give the explicit object
9422         file name in insets and mathed directories (otherwise the
9423         dependency is not taken in account under cygwin).
9424
9425         * src/text2.C (InsertString[AB]): make sure that we do not try to
9426         read characters past the string length.
9427
9428 1999-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9429
9430         * lib/doc/LaTeXConfig.lyx.in, 
9431           lib/chkconfig.ltx: remove the test for linuxdoc-sgml.sty.
9432
9433         * src/buffer.C (writeFile): Do not add a comment on top of .lyx
9434         file saying who created them and when this heppened; this is
9435         useless and annoys tools like cvs.
9436
9437         * lib/layouts/g-brief-{en,de}.layout,
9438           lib/templates/g-brief-{en,de}.lyx: new versions of the textclass
9439         from Thomas Hartkens <thomas@hartkens.de>.
9440
9441         * src/{insets,mathed}/Makefile.am: do not declare an empty
9442         LDFLAGS, so that it can be set at configure time (useful on Irix
9443         for -n32 flag).
9444
9445         * lib/reLyX/configure.in: make sure that the prefix is set
9446         correctly in LYX_DIR.
9447
9448 1999-11-18  André Pönitz <poenitz@mathematik.tu-chemnitz.de>
9449
9450         * src/commandtags.h: introduction of a new tag 'LFUN_SEQUENCE' to
9451         be used by 'command-sequence' this allows to bind a key to a
9452         sequence of LyX-commands
9453         (Example: 'command-sequence math-insert alpha; math-insert beta;")
9454
9455         * src/LyXAction.C: add "command-sequence"
9456
9457         * src/LyXFunction.C: handling of "command-sequence"
9458
9459         * src/LyXFunction.[hC] changed LyXFunc::Dispatch(string const
9460          &cmd, string const &arg) to LyXFunc::Dispatch(string const& s)
9461
9462         * src/lyxserver.C, src/minibuffer.C: Use this new interface
9463
9464 1999-11-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9465
9466         * src/buffer.C (writeFile): Do not output a comment giving user
9467         and date at the beginning of a .lyx file. This is useless and
9468         annoys cvs anyway; update version number to 1.1.
9469
9470         * src/Makefile.am (LYX_DIR): add this definition, so that a
9471         default path is hardcoded in LyX.
9472
9473         * configure.in: Use LYX_GNU_GETTEXT.
9474
9475         * acinclude.m4 (LYX_GNU_GETTEXT): new macro, essentially a copy of
9476         AM_GNU_GETTEXT with a bug fixed. 
9477
9478         * src/lyx_cb.C (RunLinuxDoc): add a cast to please dec cxx.
9479
9480         * src/chset.C: add "using std::ifstream;" to please dec cxx.
9481
9482         * src/lyx_main.C (init), INSTALL.OS2: the environment variable
9483         which is used to point to LyX data is now LYX_DIR_11x.
9484
9485         * lyx.man: convert to a unix text file; small updates.
9486
9487 1999-11-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
9488
9489         * src/support/LSubstring.[Ch]: made the second arg of most of the
9490         constructors be a const reference. 
9491
9492         * src/mathed/math_parser.C (LexInitCodes): small bug introduced by
9493         me fixed.
9494
9495         * src/support/lyxstring.[Ch] (swap): added missing member function
9496         and specialization of swap(str, str); 
9497
9498         * src/menus.C (ShowBufferMenu): to use the new BufferStorage
9499
9500         * src/bufferlist.[Ch]: use the new BufferStorage class and remove all
9501         trace of the old one.
9502
9503         * src/undo.[Ch]: made the undostack use std::list to store undo's in
9504         put the member definitions in undo.C.
9505
9506         * src/lyxparagraph.h, src/paragraph.C + a lot of files: removed
9507         NEW_TEXT and have now only code that was included when this was
9508         defined. 
9509
9510         * src/intl.C (LCombo): use static_cast
9511         (LCombo2): ditto
9512         (DispatchCallback): ditto
9513
9514         * src/definitions.h: removed whole file
9515         
9516         * src/commandtags.h: comment out LFUN_INSERT_INSET_LATEX
9517
9518         * src/chset.[Ch]: a lot rewritten, does not use lyxlex for cdef
9519         parsing and stores in a std:map. a regex defines the file format.
9520         removed unneeded members.
9521
9522         * src/bufferparams.h: added several enums from definitions.h here.
9523         Removed unsused destructor. Changed some types to use proper enum
9524         types. use block to have the temp_bullets and user_defined_bullets
9525         and to make the whole class assignable.
9526
9527         * src/bufferparams.C (Copy): removed this functions, use a default
9528         assignment instead. 
9529
9530         * src/buffer.h: made isLatex, isLinuxDoc, isDocBook, isSGML and
9531         isLiterate const.
9532
9533         * src/buffer.C (readLyXformat2): commend out all that have with
9534         oldpapersize to do. also comment out all that hve to do with
9535         insetlatex and insetlatexdel. 
9536         (setOldPaperStuff): commented out
9537
9538         * src/Makefile.am (lyx_SOURCES): remove definitions.h, add undo.C
9539
9540         * src/LyXAction.C: remove use of inset-latex-insert
9541
9542         * src/mathed/math_panel.C (button_cb): use static_cast
9543
9544         * src/insets/Makefile.am (insets_o_SOURCES): removed
9545         insetlatex.[Ch] 
9546
9547         * src/support/lyxstring.C (helper): use the unsigned long
9548         specifier, UL, instead of a static_cast.
9549
9550         * src/support/Makefile.am (libsupport_a_SOURCES): added block.h
9551
9552         * src/support/block.h: new file. to be used as a c-style array in
9553         classes, so that the class can be assignable.
9554
9555 1999-11-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9556
9557         * src/lyx_gui_misc.C (askForText): when fl_show_input() returns
9558         NULL, make sure to return an empty string (it is not possible to
9559         set a string to NULL).
9560
9561 1999-11-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9562
9563         * src/support/LRegex.C: use regex_t instead of re_pattern_buffer.
9564
9565         * src/support/lyxstring.C (helper): fix bogus cast in assertion.
9566
9567         * src/{mathed,insets}/Makefile.am (CXXLINK): add $(LDFLAGS) to the
9568         link line, so that Irix users (for example) can set it explicitely to
9569         "-n32".
9570         
9571         * src/Makefile.am (lyx_LDADD): use LYX_LIB as a variable, so that
9572         it can be overidden at make time (static or dynamic link, for
9573         example).
9574         
9575         * src/vc-backend.C, src/LaTeXFeatures.h, 
9576           src/support/LRegex.C, src/support/LRegex.h: add a few "using" 
9577         statements to bring templates to global namespace.
9578
9579 1999-11-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
9580
9581         * src/support/lyxstring.C (operator[] const): make it standard
9582         conforming. 
9583
9584         * src/minibuffer.C (Init): changed to reflect that more
9585         information is given from the lyxvc and need not be provided here.
9586
9587         * src/lyxvc.[Ch]: rewrote to use the vc-backend.
9588         
9589         * src/Makefile.am (lyx_SOURCES): add vc-backend.[Ch]
9590
9591         * src/LyXView.C (UpdateTimerCB): use static_cast
9592         (KeyPressMask_raw_callback): ditto
9593
9594         * src/BufferView.[Ch]: name change _owner -> owner_ and _buffer ->
9595         buffer_, a lot of changes because of this. currentBuffer() ->
9596         buffer(), setBuffer(...) -> buffer(...), getOwner() -> owner(),
9597         also changes to other files because of this.
9598
9599 1999-11-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
9600
9601         * src/vc-backend.[Ch]: new files. The backends for vc handling,
9602         have no support for RCS and partial support for CVS, will be
9603         improved later.
9604         
9605         * src/insets/ several files: changes because of function name
9606         changes in Bufferview and LyXView.
9607         
9608         * src/mathed/math_symbols.C (math_insert_symbol): use static_cast
9609
9610         * src/support/LSubstring.[Ch]: new files. These implement a
9611         Substring that can be very convenient to use. i.e. is this
9612         possible:
9613         string a = "Mary had a little sheep";
9614         Substring(a, "sheep") = "lamb";
9615         a is now "Mary has a little lamb".
9616
9617         * src/support/LRegex.[Ch]: a regex class that can be used to pick
9618         out patterns and subpatterns of strings. It is used by LSubstring
9619         and also by vc-backend.C
9620         
9621         * src/support/lyxstring.C: went over all the assertions used and
9622         tried to correct the wrong ones and flag which of them is required
9623         by the standard. some bugs found because of this. Also removed a
9624         couple of assertions.
9625
9626         * src/support/Makefile.am (libsupport_a_SOURCES): added
9627         LSubstring.[Ch] and LRegex.[Ch]
9628
9629         * src/support/FileInfo.h: have struct stat buf as an object and
9630         not a pointer to one, some changes because of this.
9631
9632         * src/LaTeXFeatures.C (getTClassPreamble): also use the
9633         information in layout when adding the layouts preamble to the
9634         textclass preamble.
9635
9636         * src/LaTeXFeatures.h: use a vector<bool> to store the layout
9637         usage in.
9638
9639         * configure.in (CPPFLAGS): use AC_CHECK_FUNCS to check for XOpenIM
9640         because of bug in OS/2.
9641
9642 1999-11-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9643
9644         * lib/layouts/lyxmacros.inc (lyxcode): set the font with
9645         \verbatim@font instead of \ttfamily, so that it can be redefined.
9646
9647         * src/BackStack.h, src/DepTable.C, src/DepTable.h, src/LaTeX.C,
9648           src/LaTeX.h, src/lastfiles.C, src/lastfiles.h, src/layout.C,
9649           src/layout.h, src/text2.C: add 'using' directive to bring the
9650         STL templates we need from the std:: namespace to the global one.
9651         Needed by DEC cxx in strict ansi mode.
9652
9653         * src/support/LIstream.h,src/support/LOstream.h,
9654           src/support/lyxstring.h,src/table.h,
9655           src/lyxlookup.h: do not include <config.h> in header
9656         files. This should be done in the .C files only.
9657
9658         * development/lyx.spec.in: WHATSNEW has been renamed to NEWS
9659         (from Kayvan).
9660         
9661
9662 1999-11-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9663
9664         * config/lib_configure.m4,lib/configure,lib/lyxrc.example: update
9665         from Kayvan to fix the tth invokation.
9666
9667         * development/lyx.spec.in: updates from Kayvan to reflect the
9668         changes of file names.
9669
9670 1999-11-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
9671
9672         * src/text2.C (InsertStringB): use std::copy
9673         (InsertStringA): use std::copy
9674
9675         * src/bufferlist.C: use a vector to store the buffers in. This is
9676         an internal change and should not affect any other thing.
9677         
9678         * src/BufferView.C (waitForX): use XSync instead of the lengthy
9679         stuff in waitForX.
9680
9681         * src/text.C (Fill): fix potential bug, one off bug.
9682
9683 1999-11-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
9684
9685         * src/Makefile.am (lyx_main.o): add more files it depends on.
9686
9687         * src/lyx_cb.C (addNewlineAndDepth): parameters in wrong order.
9688
9689         * src/support/lyxstring.C: use size_t for the reference count,
9690         size, reserved memory and xtra.
9691         (internal_compare): new private member function. Now the compare
9692         functions should work for std::strings that have embedded '\0'
9693         characters.
9694         (compare): all compare functions rewritten to use
9695         internal_compare.
9696         
9697 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
9698
9699         * src/support/lyxstring.C (compare): pass c_str()
9700         (compare): pass c_str
9701         (compare): pass c_str
9702
9703 1999-11-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9704
9705         * src/support/DebugStream.C: <config.h> was not included correctly.
9706
9707         * lib/configure: forgot to re-generate it :( I'll make this file
9708         auto generated soon.
9709
9710 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
9711
9712         * acinclude.m4 (cross_compiling): add -fpermissive when gcc 2.95.x
9713         is used.
9714
9715         * src/support/lyxstring.C: some changes from length() to rep->sz.
9716         avoids a function call.
9717
9718         * src/support/filetools.C (SpaceLess): yet another version of the
9719         algorithm...now per Jean-Marc's suggestions.
9720
9721 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
9722
9723         * src/layout.C (less_textclass_desc): functor for use in sorting
9724         of textclasses. 
9725         (LyXTextClass::Read): sort the textclasses after reading.
9726         
9727         * src/support/filetools.C (SpaceLess): new version of the
9728         SpaceLess functions. What problems does this one give? Please
9729         report.
9730
9731         * images/banner_bw.xbm: made the arrays unsigned char *
9732
9733 1999-11-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9734
9735         * src/support/lyxstring.C (find): remove bogus assertion in the
9736         two versions of find where this has not been done yet.
9737
9738         * src/support/lyxlib.h: add missing int return type to
9739         lyx::chdir(). 
9740
9741         * src/menus.C (ShowFileMenu): disable exporting to html if no
9742         html export command is present.
9743
9744         * config/lib_configure.m4: add a test for an HTML converter. The
9745         programs checked for are, in this order: tth, latex2html and
9746         hevea. 
9747
9748         * lib/configure: generated from config/lib_configure.m4.
9749
9750         * src/lyxfunc.C (Dispatch): update and improve the execution of an
9751         html converter. The parameters are now passed through $$FName and
9752         $$OutName, instead of standard input/output.
9753
9754         * src/lyxrc.{C,h}: rename \tth_command to \html_command.
9755
9756         * lib/lyxrc.example: update description of \html_command. 
9757         add "quotes" around \screen_font_xxx font setting examples to help
9758         people who use fonts with spaces in their names.
9759
9760 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
9761
9762         * Distribution files: updates for v1.1.2
9763
9764         * src/support/lyxstring.C (find): remove bogus assert and return
9765         npos for the same condition.
9766
9767 1999-11-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
9768
9769         * added patch for OS/2 from SMiyata.
9770
9771 1999-10-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
9772
9773         * src/text2.C (CutSelection): make space_wrapped a bool
9774         (CutSelection): dont declare int i until we have to.
9775         (alphaCounter): return a char const *.
9776
9777 1999-10-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9778
9779         * src/support/syscall.C (Systemcalls::kill): 
9780           src/support/filetools.C (PutEnv, PutEnvPath): 
9781           src/lyx_cb.C (addNewlineAndDepth): 
9782           src/FontInfo.C (FontInfo::resize): condition some #warning
9783         directives with WITH_WARNINGS.
9784         
9785
9786 1999-10-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
9787
9788         * src/layout.[Ch] + several files: access to class variables
9789         limited and made accessor functions instead a lot of code changed
9790         becuase of this. Also instead of returning pointers often a const
9791         reference is returned instead.
9792         
9793         * src/form1.C (create_form_Figure): added a couple fo "no-c-format"
9794
9795         * src/Makefile.am (dist-hook): added used to remove the CVS from
9796         cheaders upon creating a dist
9797         (EXTRA_DIST): added cheaders
9798
9799         * src/support/lstrings.C (tostr(char)): fix it to handle param as
9800         a character not as a small integer. 
9801
9802         * src/support/lyxstring.C (find): removed Assert and added i >=
9803         rep->sz to the first if.
9804
9805 1999-10-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
9806
9807         * src/layout.[Ch] src/BufferView.C src/LaTeXFeatures.C
9808         src/LyXView.C src/buffer.C src/bufferparams.C
9809         src/lyx_cb.C src/lyxfunc.C src/paragraph.C src/text.C 
9810         src/text2.C src/insets/insetinclude.C:
9811         lyxlayout renamed to textclasslist.
9812
9813         * src/layout.C: some lyxerr changes.
9814
9815         * src/layout.[Ch] (LyXLayout::Read): changed second paramter to
9816         LyXTextClass. rewrote LT_COPYSTYLE, rewrote LT_OBSOLETEDBY
9817         (LyXLayoutList): removed all traces of this class.
9818         (LyXTextClass::Read): rewrote LT_STYLE
9819         (LyXTextClass::hasLayout): new function
9820         (LyXTextClass::GetLayout): rewritten to return an iterator + has
9821         both const and nonconst version.
9822         (LyXTextClass::delete_layout): new function.
9823         (LyXTextClassList::Style): bug fix. do the right thing if layout
9824         is to big.
9825         (LyXTextClassList::NumberOfLayout): new acces to layoutlist.
9826         (LyXTextClassList::NameOfLayout): ditto 
9827         (LyXTextClassList::Load): ditto
9828
9829         * src/buffer.C (makeLaTeXFile): new access to layoutlist
9830
9831         * src/LaTeXFeatures.C (getTClassPreamble): new access to layoutlist
9832
9833         * src/LyXAction.C (LookupFunc): added a workaround for sun
9834         compiler, on the other hand...we don't know if the current code
9835         compiles on sun at all...
9836
9837         * src/support/filetools.C (CleanupPath): subst fix
9838
9839         * src/insets/insetbib.C (delDatabase): subst fix, this looks
9840         _really_ weird.
9841
9842         * src/support/filetools.C (PutEnvPath): subst fix, how come nobody
9843         complained about this one?
9844
9845         * src/insets/insetinclude.C (Latex): subst fix
9846
9847         * src/insets/insetbib.C (getKeys): subst fix
9848
9849         * src/LyXSendto.C (SendtoApplyCB): subst fix
9850
9851         * src/lyx_main.C (init): subst fix
9852
9853         * src/layout.C (Read): subst fix
9854
9855         * src/lyx_sendfax_main.C (button_send): subst fix
9856
9857         * src/buffer.C (RoffAsciiTable): subst fix
9858
9859         * src/lyx_cb.C (MenuFax): subst fix
9860         (PrintApplyCB): subst fix
9861
9862 1999-10-26  Juergen Vigna  <jug@sad.it>
9863
9864         * src/table.C (TexEndOfCell) + (DocBookEndOfCell): removed some #if 0
9865
9866         (Read): Cleaned up this code so now we read only format vestion >= 5
9867
9868 1999-10-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
9869
9870         * src/support/filetools.C (PutEnvPath): subst fix for EMX, how
9871         come nobody has complained about this one?
9872
9873         * src/insets/insetinclude.C (Latex): subst fix
9874
9875         * src/insets/insetbib.C (getKeys): subst fix
9876
9877         * src/lyx_main.C (init): subst fix
9878
9879         * src/layout.C (Read): subst fix
9880
9881         * src/buffer.C (RoffAsciiTable): subst fix
9882
9883         * src/lyx_cb.C (MenuFax): subst fix.
9884
9885         * src/layout.[hC] + some other files: rewrote to use
9886         std::container to store textclasses and layouts in.
9887         Simplified, removed a lot of code. Make all classes
9888         assignable. Further simplifications and review of type
9889         use still to be one. 
9890
9891         * src/menus.C (ShowFileMenu/ShowFileMenu2): Use the iterators from
9892         lastfiles to create the lastfiles partr of the menu.
9893
9894         * src/lastfiles.[Ch]: rewritten to use deque to store the
9895         lastfiles in. Uses fstream for reading and writing. Simplifies
9896         code.
9897
9898         * src/support/syscall.C: remove explicit cast.
9899
9900         * src/BufferView.C (CursorToggleCB): removed code snippets that
9901         were commented out.
9902         use explicat C++ style casts instead of C style casts. also use
9903         u_vdata instea of passing pointers in longs.
9904
9905         * src/PaperLayout.C: removed code snippets that were commented out.
9906
9907         * src/lyx_gui_misc.C: removed code snippets that were commented out. 
9908
9909         * src/lyx_main.C: removed code snippets that wer commented out.
9910
9911         * src/paragraph.C: removed code snippets that were commented out.
9912
9913         * src/lyxvc.C (logClose): use static_cast
9914         (logUpdate): ditto
9915         (viewLog): remove explicit cast to void*
9916         (showLog): removed old commented code
9917
9918         * src/menus.C: use static_cast instead of C style casts. use
9919         u_vdata instead of u_ldata. remove explicit cast to (long) for
9920         pointers. Removed old code that was commented out.
9921
9922         * src/insets/inset.C: removed old commented func
9923
9924         * src/insets/insetref.C (InsetRef): removed old code that had been
9925         commented out for a long time.
9926         (Edit): ditto
9927         (escape): removed C style cast
9928
9929         * src/insets/insetlatexaccent.C (Draw): removed old commented code
9930
9931         * src/insets/insetlatex.C (Draw): removed old commented code
9932         (Read): rewritten to use string
9933
9934         * src/insets/insetlabel.C (escape): removed C style cast
9935
9936         * src/insets/insetindex.h: removed vdata and ldata from FD_index_form
9937
9938         * src/insets/insetindex.C: use static_cast and u_vdata, removed
9939         old commented code.
9940
9941         * src/insets/insetinclude.h: removed a couple of stupid bools
9942
9943         * src/insets/insetinclude.C (include_cb): use static_cast and u_data.
9944         (Clone): remove C style cast
9945         (getKeys): changed list to lst because of std::list
9946
9947         * src/insets/inseterror.C (Draw): removed som old commented code.
9948
9949         * src/insets/insetcommand.C (Draw): removed some old commented code.
9950
9951         * src/insets/insetbib.C (bibitem_cb): removed code that has been
9952         commented out forever.
9953         (bibitem_cb): use static_cast instead of C style cast
9954         use of vdata changed to u_vdata.
9955
9956         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forward the data
9957         parameter.
9958         (CloseUrlCB): use static_cast instead of C style cast.
9959         (CloseUrlCB): added a fl_free form...it seemed to be missing.
9960
9961         * src/insets/insetinfo.C (Edit): pass object in u_vdata instead
9962         (C_InsetInfo_CloseInfoCB): forward the ob parameter
9963         (CloseInfoCB): static_cast from ob->u_vdata instead.
9964         (Edit): removed bogus arg from fl_set_object_shortcut, set to 1
9965         instead. 
9966
9967         * src/insets/inseterror.C (Edit): pass object in u_vdata instead
9968         (C_InsetError_CloseErrorCB): forward the ob parameter
9969         (CloseErrorCB): static_cast from ob->u_vdata instead.
9970
9971         * src/vspace.h: include LString.h since we use string in this class.
9972
9973         * src/vspace.C (lyx_advance): changed name from advance because of
9974         nameclash with stl. And since we cannot use namespaces yet...I
9975         used a lyx_ prefix instead. Expect this to change when we begin
9976         using namespaces.
9977
9978         * src/BufferView.[Ch] (BufferView::~BufferView): removed 
9979
9980         * src/BackStack.h: rewrote to use std::stack. made BackStackItem
9981         and removed now defunct constructor and deconstructor.
9982
9983         * src/BufferView.h: have backstack as a object not as a pointer.
9984         removed initialization from constructor. added include for BackStack 
9985
9986         * development/lyx.spec.in (%build): add CFLAGS also.
9987
9988         * src/screen.C (drawFrame): removed another warning.
9989
9990 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9991
9992         * renamed WHATSNEW to NEWS (usual GNU style), CHANGES to
9993         OLD-CHANGES (not used anymore) and modified INSTALL, INSTALL.OS2,
9994         README and ANNOUNCE a bit for the next release. More work is
9995         needed, of course.
9996
9997         * src/paragraph.C (SimpleTeXBlanks): spaces are automatically made
9998         unbreakable if we are in freespacing mode (LyX-Code), but not in
9999         latex mode.
10000
10001 1999-10-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
10002
10003         * src/BackStack.h: fixed initialization order in constructor
10004
10005         * Makefile.am (MAINTAINERCLEANFILES): removed po/POTFILES.in
10006
10007         * acinclude.m4 (VERSION): new rules for when a version is
10008         development, added also a variable for prerelease.
10009         (warnings): we set with_warnings=yes for prereleases
10010         (lyx_opt): prereleases compile with same optimization as development 
10011         (CXXFLAGS): only use pedantic if we are a development version 
10012
10013         * src/BufferView.C (restorePosition): don't do anything if the
10014         backstack is empty.
10015
10016         * src/BackStack.h: added member empty, use this to test if there
10017         is anything to pop...
10018
10019 1999-10-25  Juergen Vigna  <jug@sad.it>
10020
10021         * forms/form1.fd +
10022         * forms/layout_forms.fd +
10023         * forms/latexoptions.fd +
10024         * lyx.fd: changed for various form resize issues
10025
10026         * src/mathed/math_panel.C +
10027         * src/insets/inseterror.C +
10028         * src/insets/insetinfo.C +
10029         * src/insets/inseturl.C +
10030         * src/insets/inseturl.h +
10031         * src/LaTeXLog.C +
10032         * src/LyXSendto.C +
10033         * src/PaperLayout.C +
10034         * src/ParagraphExtra.C +
10035         * src/TableLayout.C +
10036         * src/form1.C +
10037         * src/layout_forms.C +
10038         * src/lyx.C +
10039         * src/lyx_cb.C +
10040         * src/lyx_gui.C +
10041         * src/lyxfr0.C +
10042         * src/lyxfunc.C +
10043         * src/lyxvc.C +
10044         * src/menus.C: fixed various resize issues. So now forms can be
10045         resized savely or not be resized at all.
10046         
10047         * forms/form_url.fd +
10048         * src/insets/form_url.[Ch]: added because it's cleaner and easier
10049         to modify IMO.
10050
10051         * src/insets/Makefile.am: added files form_url.[Ch]
10052         
10053 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10054
10055         * INSTALL: it is now possible to compile LyX with digital C++ 6.1
10056         (and presumably 6.2).
10057
10058         * src/{BufferView,LyXView,combox,filedlg,intl,lyxserver,lyxvc,
10059         menus,minibuffer,toolbar}.{C,h}: added C_xxx wrappers around
10060         remaining static member callbacks. 
10061
10062         * src/lyxfunc.C (Dispatch): Use _() instead of N_() fot minibuffer
10063         messages. 
10064
10065         * src/support/lyxstring.h: declare struct Srep as friend of
10066         lyxstring, since DEC cxx complains otherwise.
10067
10068 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
10069
10070 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
10071
10072         * src/LaTeX.C (run): made run_bibtex also depend on files with
10073         extension ".bst"
10074         (runBibTeX): added scans for "\\bibstyle", now also ".bst" files
10075         are put into the dependency file.
10076
10077         * src/spellchecker.C (create_ispell_pipe): removed old #warning,
10078         the code has shown itself to work
10079         (create_ispell_pipe): removed another warning, added a comment
10080         instead. 
10081
10082         * src/minibuffer.C (ExecutingCB): removed code that has been
10083         commented out a long time
10084
10085         * src/lyxfunc.C (processKeyEvent): removed some very old commented
10086         out code + a warning.
10087
10088         * src/support/lyxstring.h: comment out the three private
10089         operators, when compiling with string ansi conforming compilers
10090         they make problems.
10091
10092         * src/mathed/math_symbols.C (AddBitmap): change 6th arg to be
10093         unsigned char *.
10094         (pixmapFromBitmapData): change type of bdata to be unsigned char *
10095         (pixmapFromBitmapData): add a reinterpret_cast in the call to
10096         XCreateImage
10097
10098         * src/mathed/math_panel.h: change 6th arg to AddBitmap to be
10099         unsigned char *
10100
10101         * src/mathed/math_panel.C (create_math_panel): remove explicit
10102         casts
10103
10104         * src/bmtable.h: change last paramter to fl_set_bmtable_data to be
10105         unsigned char *.
10106
10107         * src/bmtable.C (struct BMTABLE_SPEC): make bdata unsigned char *
10108         (draw_bitmaptable): add a reinterpret_cast to sp->bdata in the call
10109         to XCreatePixmapFromBitmapData
10110         (fl_set_bmtable_data): change the last argument to be unsigned
10111         char *
10112         (fl_set_bmtable_file): change bdata to unsinged char *, change bw
10113         and bh to be unsigned int, remove explicit casts in call to
10114         XReadBitmapFileData.
10115
10116         * images/arrows.xbm: made the arrays unsigned char *
10117         * images/varsz.xbm: ditto
10118         * images/misc.xbm: ditto
10119         * images/greek.xbm: ditto
10120         * images/dots.xbm: ditto
10121         * images/brel.xbm: ditto
10122         * images/bop.xbm: ditto
10123
10124         * Makefile.am (MAINTAINERCLEANFILES): added po/POTFILES.in
10125
10126         * acinclude.m4 (LYX_GXX_STRENGHT_REDUCE): removed. 
10127         (LYX_PROG_CXX): added -pedantic to g++ compile options when
10128         with-warnings, removed the __STRING_ANSI__ hack, seems to not be
10129         needed. 
10130         (LYX_CXX_CHEADERS): added <clocale> to the test. 
10131
10132 1999-10-23  Lars Gullik Bjønnes  <larsbj@lyx.org>
10133
10134         * src/lyx_cb.C (addNewlineAndDepth): changed to use string::append.
10135
10136         * src/support/lyxstring.C (append): fixed something that must be a
10137         bug, rep->assign was used instead of rep->append.
10138
10139         * src/support/Makefile.am (libsupport_a_SOURCES): added LIstream.h
10140         and LOstream.h
10141
10142         * src/lyxfunc.C (processKeyEvent): removed faulty line that made
10143         lyx insert double chars. Fix spotted by Kayvan.
10144
10145 1999-10-23  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
10146
10147         * Fixed the tth support. I messed up with the Emacs patch apply feature
10148         and omitted the changes in lyxrc.C.
10149
10150 1999-10-22  Juergen Vigna  <jug@sad.it>
10151
10152         * src/insets/figinset.C (CallbackFig): Just changed the defines a bit.
10153
10154         * src/lyx_cb.C (MenuInsertRef) + 
10155         * src/lyx_gui.C (create_forms): Inserted fl_set_form_minsize so that
10156         the form cannot be resized under it limits (fixes a segfault)
10157         
10158         * src/lyx.C (create_form_form_ref) +
10159         * forms/lyx.fd: Changed Gravity on name input field so that it is
10160         resized correctly.
10161
10162 1999-10-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10163
10164         * configure.in: use LYX_CXX_STL_MODERN_STREAMS; check for headers
10165         <ostream> and <istream>.
10166         
10167         * acinclude.m4 (LYX_CXX_STL_MODERN_STREAMS): new test. Checks
10168         whether <fstream> provides the latest standard features, or if we
10169         have an oldstyle library (like in egcs).
10170         (LYX_CXX_STL_STRING): fix the test.
10171
10172         * src/support/DebugStream.{C,h}: use L{I,O}stream.h and condition the
10173         code on MODERN_STL_STREAM.
10174
10175         * src/support/lyxstring.h: use L{I,O}stream.h.
10176
10177         * src/support/L{I,O}stream.h: new files, designed to setup
10178         correctly streams for our use
10179           - includes the right header depending on STL capabilities
10180           - puts std::ostream and std::endl (for LOStream.h) or
10181           std::istream (LIStream.h) in toplevel namespace.
10182
10183 1999-10-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
10184
10185         * src/LaTeX.C (run): added a check in 0 sumchange so that if it
10186         was a bib file that had been changed we ensure that bibtex is run.
10187         (runBibTeX): enhanced to extract the names of the bib files and
10188         getting their absolute path and enter them into the dep file.
10189         (findtexfile): static func that is used to look for tex-files,
10190         checks for absolute patchs and tries also with kpsewhich.
10191         Alternative ways of finding the correct files are wanted. Will
10192         probably be moved.
10193         (do_popen): function that runs a command using popen and returns
10194         the whole output of that command in a string. Should be moved to
10195         somewhere else.
10196
10197         * src/DepTable.[Ch] (extchanged): new function that returns true if a
10198         file with extension ext has changed.
10199
10200         * src/insets/figinset.C: added ifdef guards around the fl_free
10201         code that jug commented out. Now it is commented out when
10202         compiling with XForms == 0.89.
10203
10204         * src/support/lyxstring.C: moved the definition of lyxstring::Srep
10205         to lyxstring.C, and only keep a forward declaration in
10206         lyxstring.h. Simplifies the header file a bit and should help a
10207         bit on compile time too. Also changes to Srep will not mandate a
10208         recompile of code just using string.
10209         (~lyxstring): definition moved here since it uses srep.
10210         (size): definition moved here since it uses srep.
10211
10212         * src/support/lyxstring.h: removed a couple of "inline" that should
10213         not be there.
10214
10215 1999-10-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10216
10217         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forgot to pass
10218         the 'ob' argument.
10219
10220 1999-10-21  Juergen Vigna  <jug@sad.it>
10221
10222         * src/table.C (SetPWidth): Just a small fix so the alignment is not
10223         set to left if I just remove the width entry (or it is empty).
10224
10225         * src/text2.C (SetCursorIntern): Fixed a bug calculating to use wrong
10226         paragraph when having dummy paragraphs.
10227
10228 1999-10-20  Juergen Vigna  <jug@sad.it>
10229
10230         * src/insets/figinset.C: just commented some fl_free_form calls
10231         and added warnings so that this calls should be activated later
10232         again. This avoids for now a segfault, but we have a memory leak!
10233
10234         * src/lyxfunc.C (processKeyEvent) (Dispatch): changed
10235         'const char * argument' to 'string argument', this should
10236         fix some Asserts() in lyxstring.C.
10237
10238         * src/lyxfunc.h: Removed the function argAsString(const char *)
10239         as it is not used anymore.
10240
10241 1999-10-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
10242
10243         * src/support/lyxstring.C (getline): reads now _all_ chars. uses
10244         get instead of >>
10245
10246         * src/Literate.h: some funcs moved from public to private to make
10247         interface clearer. Unneeded args removed.
10248
10249         * src/Literate.C (scanLiterateLogFile): rewritten to use iostream
10250         instead of lyxlex.
10251         (scanBuildLogFile): ditto
10252
10253         * src/LaTeX.C (scanLogFile): merged LaTeX Error handling into
10254         normal TeX Error. Still room for improvement.
10255
10256         * src/LaTeX.[Ch]: removed scanError. Wrong place and not needed.
10257
10258         * src/buffer.C (insertErrors): changes to make the error
10259         desctription show properly.
10260
10261         * src/LaTeX.C (deplog): removed the test for file in lyx doc dir.
10262         could never happen
10263
10264         * src/support/lyxstring.C (helper): changed to use
10265         sizeof(object->rep->ref).
10266         (operator>>): changed to use a pointer instead.
10267
10268         * src/support/lyxstring.h: changed const reference & to value_type
10269         const & lets see if that helps.
10270
10271 1999-10-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
10272
10273         * Makefile.am (rpmdist): fixed to have non static package and
10274         verison.
10275
10276         * src/support/lyxstring.C: removed the compilation guards
10277
10278         * src/vspace.C (nextToken): use i + 1  instead of ++i. Maks things
10279         a bit clearer.
10280
10281         * src/support/Makefile.am (LYXSTRING): bruker USE_LYXSTRING for
10282         conditional compile of lyxstring.Ch
10283
10284         * acinclude.m4 (LYX_CXX_STL_STRING): new and improved, still a
10285         stupid check, but it is a lot better than the bastring hack. 
10286         (LYX_CXX_STL_STRING): bruker nå AM_CONDITIONAL(USE_LYXSTRING  
10287
10288         * several files: changed string::erase into string::clear. Not
10289         really needed.
10290         
10291         * src/chset.C (encodeString): use a char temporary instead
10292
10293         * src/table.C (TexEndOfCell): added tostr around
10294         column_of_cell(fcell+i)+1 and around right_column_of_cell(fcell+i)+1
10295         (TexEndOfCell): ditto
10296         (TexEndOfCell): ditto
10297         (TexEndOfCell): ditto
10298         (DocBookEndOfCell): ditto
10299         (DocBookEndOfCell): ditto
10300         (DocBookEndOfCell): ditto
10301         (DocBookEndOfCell): ditto
10302
10303         * src/paragraph.C (TeXEnvironment): added tostr around foot_count -1
10304
10305         * src/lyxfr1.C (SearchReplaceAllCB): added tostr around replace_count
10306
10307         * src/lyx_cb.C (MenuRunLaTeX): added tostr around ret
10308         (MenuBuildProg): added tostr around ret
10309         (MenuRunChktex): added tostr around ret
10310         (DocumentApplyCB): added tostr around ret
10311
10312         * src/chset.C (encodeString): added tostr around t->ic
10313
10314         * src/buffer.C (makeLaTeXFile): added tostr around secnumdepth
10315         (makeLaTeXFile): added tostr around tocdepth
10316         (makeLaTeXFile): added tostr around ftcound - 1
10317
10318         * src/insets/insetbib.C (setCounter): added tostr around counter.
10319
10320         * src/support/lyxstring.h: added an operator+=(int) to catch more
10321         mistakes. 
10322
10323         * src/support/lyxstring.C (lyxstring): We DON'T allow NULL pointers.
10324         (lyxstring): We DON'T allow NULL pointers.
10325
10326 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10327
10328         * src/mathed/math_macro.C (MathMacroArgument::Write,
10329         MathMacroTemplate::WriteDef): add tostr() around macro arg numbers
10330         when writing them out.
10331
10332         * src/LString.C: remove, since it is not used anymore.
10333         
10334         * src/support/lyxstring.C: condition the content to
10335         USE_INCLUDED_STRING macro.
10336
10337         * src/mathed/math_symbols.C, src/support/lstrings.C,
10338         src/support/lyxstring.C: add `using' directive to specify what
10339         we need in <algorithm>. I do not think that we need to
10340         conditionalize this, but any thought is appreciated.
10341
10342         * many files: change all callback functions to "C" linkage
10343         functions to please strict C++ compilers like DEC cxx 6.1 in mode
10344         strict_ansi. Those who were static are now global. 
10345             The case of callbacks which are static class members is
10346         trickier, since we have to make C wrappers around them (see
10347         InsetError, InsetInfo and InsetUrl). The same holds for friends. I
10348         did not finish this yet, since it defeats the purpose of
10349         encapsulation, and I am not sure what the best route is.
10350
10351 1999-10-19  Juergen Vigna  <jug@sad.it>
10352
10353         * src/support/lyxstring.C (lyxstring): we permit to have a null
10354         pointer as assignment value and just don't assign it.
10355
10356         * src/vspace.C (nextToken): corrected this function substituting
10357         find_first(_not)_of with find_last_of.
10358
10359         * src/TableLayout.C (UpdateLayoutTable) (TableOptionsCB)
10360                 (TableOptCloseCB) (TableSpeCloseCB):
10361         inserted fl_set_focus call for problem with fl_hide_form() in
10362         xforms-0.89.
10363
10364 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10365
10366         * src/lyx_cb.C (LayoutsCB): fix bug where int was added to a
10367         string. 
10368
10369 1999-10-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10370
10371         * src/lyxrc.C (Read): RC_PRINTEXSTRAOPTIONS now uses
10372         LyXLex::next() and not eatline() to get its argument.
10373
10374 1999-10-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
10375
10376         * src/DepTable.[Ch]: rewritten to store the dependencies in a map
10377         instead, use fstreams for io of the depfile, removed unneeded
10378         functions and variables. 
10379
10380         * src/LaTeX.[Ch] (class TeXErrors): rewrote to store the errors in a
10381         vector instead, removed all functions and variables that is not in
10382         use.
10383
10384 1999-10-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
10385
10386         * src/buffer.C (insertErrors): use new interface to TeXError
10387
10388         * Makefile.am (rpmdist): added a rpmdist target
10389
10390         * lib/reLyX/Makefile.am: added RelyxFigure.pm and Verbatim.pm as
10391         per Kayvan's instructions.
10392
10393 1999-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10394
10395         * src/Makefile.am: add a definition for localedir, so that locales
10396         are found after installation (Kayvan)
10397
10398 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
10399
10400         * development/.cvsignore: new file.
10401
10402 1999-10-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10403
10404         * acinclude.m4 (LYX_CXX_CHEADERS): New macro. Checks whether the
10405         C++ compiler provides wrappers for C headers and use our alternate
10406         version otherwise.
10407
10408         * configure.in: use LYX_CXX_CHEADERS.
10409
10410         * src/cheader/: new directory, populated with cname headers from
10411         libstdc++-2.8.1. They are a bit old, but probably good enough for
10412         what we want (support compilers who lack them).
10413         
10414         * src/insets/Makefile.am, src/mathed/Makefile.am: remove src/support
10415         from includes. It turns out is was stupid.
10416  
10417 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
10418
10419         * lib/Makefile.am (install-data-local): forgot a ';'
10420         (install-data-local): forgot a '\'
10421         (libinstalldirs): needed after all. reintroduced.
10422
10423 1999-10-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
10424
10425         * configure.in (AC_OUTPUT): added lyx.spec
10426
10427         * development/lyx.spec: removed file
10428
10429         * development/lyx.spec.in: new file
10430
10431         * po/*.po: merged with lyx.pot becuase of make distcheck
10432         
10433         * lib/Makefile.am (dist-hook): added dist-hook so that
10434         documentation files will be included when doing a make
10435         dist/distdir/distcheck. Requires cvs export -r HEAD lyxdoc to run.
10436         (pkgdata_SCRIPTS): added configure.cmd for now, we can use som
10437         conditional later.
10438         more: tried to make install do the right thing, exclude CVS dirs
10439         etc.
10440
10441         * src/LaTeXLog.C (ShowLatexLog): reordered som statements so that
10442         Path would fit in more nicely.
10443
10444         * all files that used to use pathstack: uses now Path instead.
10445         This change was a lot easier than expected.
10446         
10447         * src/support/path.h: new file
10448
10449         * src/support/Makefile.am (libsupport_a_SOURCES): added path.h
10450
10451         * src/Makefile.am (lyx_SOURCES): removed pathstack.[Ch]
10452
10453         * src/support/lyxstring.C (getline): Default arg was given for
10454         para 3. removed.
10455
10456         * Configure.cmd: removed file 
10457
10458 1999-10-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10459
10460         * src/support/DebugStream.[Ch]: remove the explicit std:: before
10461         streams classes and types, add the proper 'using' statements when
10462         MODERN_STL is defined.
10463         
10464         * src/debug.h: move the << operator definition after the inclusion
10465         of DebugStream.h
10466
10467         * src/support/filetools.C: include "LAssert.h", which is needed
10468         later. 
10469
10470         * src/insets/Makefile.am, src/mathed/Makefile.am: add src/support
10471         to includes. 
10472
10473         * src/lyxfont.h, src/commandtags.h, src/mathed/math_defs.h:
10474         include "debug.h" to define a proper ostream.
10475
10476 1999-10-12  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
10477
10478         * src/sys*: Cleaned up the Systemcall stuff a bit. Added "kill(int)"
10479           method to the SystemCall class which can kill a process, but it's
10480           not fully implemented yet.
10481
10482         * src/*.C: Changed Systemcalls::Startscript() to startscript()
10483
10484         * src/support/FileInfo.h: Better documentation  
10485
10486         * src/lyxfunc.C: Added support for buffer-export html
10487         
10488         * src/menus.C: Added Export->As HTML...
10489         
10490         * lib/bind/*.bind: Added short-cut for buffer-export html
10491
10492         * src/lyxrc.*: Added support for new \tth_command
10493         
10494         * lib/lyxrc.example: Added stuff for new \tth_command
10495
10496 1999-10-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
10497
10498         * lib/Makefile.am (IMAGES): removed images/README
10499         (pkgdata_SCRIPTS): use this instead of bin_SCRIPTS to that it
10500         installes in correct place. Check permisions is installed
10501         correctly.
10502
10503         * src/LaTeX.C: some no-op changes moved declaration of some
10504         variables around.
10505
10506         * src/LaTeX.h (LATEX_H): changed include guard name
10507
10508 1999-10-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10509
10510         * lib/reLyX/Makefile.am: install noweb2lyx.
10511
10512         * lib/Makefile.am: install configure. 
10513
10514         * lib/reLyX/configure.in: declare a config aux dir; set package
10515         name to lyx (not sure what the best solution is); generate noweb2lyx.
10516
10517         * lib/layouts/egs.layout: fix the bibliography layout.
10518
10519 1999-10-08  Jürgen Vigna <jug@sad.it>
10520
10521         * src/support/filetools.C (FileOpenSearch): Fixed a bug where
10522         when in the PATH was something like /usr/bin;;/bin (note: the ;;)
10523         it returned without continuing to search the path.
10524         
10525 1999-10-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
10526
10527         * src/insets/insetquotes.C (Draw): Simplified a gread deal. This
10528         also fixes a bug. It is not allowed to do tricks with std::strings
10529         like: string a("hei"); &a[e]; this will not give what you
10530         think... Any reason for the complexity in this func?
10531
10532 1999-10-06  Asger Alstrup Nielsen  <alstrup@diku.dk>
10533
10534         * Updated README and INSTALL a bit, mostly to check that my
10535         CVS rights are correctly set up.
10536
10537 1999-10-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
10538
10539         * src/support/lyxstring.C (helper): removed bogus Assert. strlen
10540         does not allow '\0' chars but lyxstring and std::string does.
10541
10542 1999-10-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
10543
10544         * autogen.sh (AUTOCONF): let the autogen script create the
10545         POTFILES.in file too. POTFILES.in should perhaps now not be
10546         included in the cvs module.
10547
10548         * some more files changed to use C++ includes instead of C ones.
10549
10550         * src/filedlg.C (Reread): fixed a bug wrt Time. It was appended
10551         not assigned.
10552         (Reread): added tostr to nlink. buggy output otherwise.
10553         (Reread): added a string() around szMode when assigning to Buffer,
10554         without this I got a log of garbled info strings.
10555
10556         * acconfig.h: commented out the PTR_AS_INT macros. They should not
10557         be needed.
10558
10559         * I have added several ostream & operator<<(ostream &, some_type)
10560         functions. This has been done to avoid casting and warnings when
10561         outputting enums to lyxerr. This as thus eliminated a lot of
10562         explicit casts and has made the code clearer. Among the enums
10563         affected: kb_action, InsetLatexAccent::ACCENT_TYPE, a couple of
10564         mathed enums, some font enum the Debug::type enum. 
10565
10566         * src/support/lyxstring.h (clear): missing method. equivalent of
10567         erase(0, npos).
10568
10569         * all files that contained "stderr": rewrote constructs that used
10570         stderr to use lyxerr instead. (except bmtable)
10571
10572         * src/support/DebugStream.h (level): and the passed t with
10573         Debug::ANY to avoid spurious bits set.
10574
10575         * src/debug.h (Debug::type value): made it accept strings of the
10576         type INFO,INIT,KEY.
10577
10578         * configure.in (Check for programs): Added a check for kpsewhich,
10579         the latex generation will use this later to better the dicovery of
10580         all used files. 
10581
10582         * src/BufferView.C (create_view): we don't need to cast this to
10583         (void*) that is done automatically.
10584         (WorkAreaButtonPress): removed some dead code.
10585
10586 1999-10-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10587
10588         * src/minibuffer.C (Init): make sure that the "Welcome to LyX!"
10589         is not overwritten when translated (David Sua'rez de Lis).
10590
10591         * lib/CREDITS: Added David Sua'rez de Lis
10592
10593         * lib/reLyX/configure.in: setup LYX_DIR correctly in reLyX.
10594
10595         * src/bufferparams.C (BufferParams): default input encoding is now
10596         "latin1" 
10597
10598         * acinclude.m4 (cross_compiling): comment out macro
10599         LYX_GXX_STRENGTH_REDUCE. 
10600
10601         * acconfig.h: make sure that const is not defined (to empty) when
10602         we are compiling C++. Remove commented out code using SIZEOF_xx
10603         macros.
10604         
10605         * configure.in : move the test for const and inline as late as
10606         possible so that these C tests do not interefere with C++ ones.
10607         Remove the call to LYX_GXX_STRENGTH_REDUCE, since its usefulness
10608         has not been proven. 
10609
10610 1999-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10611
10612         * src/table.C (getDocBookAlign): remove bad default value for
10613         isColumn parameter.
10614
10615         * src/menus.C (ShowFileMenu): add a missing tostr() for lastfiles
10616         shortcut. 
10617         (ShowFileMenu2): ditto.
10618
10619         * lib/reLyX/.cvsignore: add configure and aclocal.m4 to the list
10620         of files to ignore.
10621
10622 1999-10-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
10623
10624         * Most files: finished the change from the old error code to use
10625         DebugStream for all lyxerr debugging. Only minor changes remain
10626         (e.g. the setting of debug levels using strings instead of number) 
10627
10628 1999-10-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
10629
10630         * src/layout.C (Add): Changed to use compare_no_case instead of
10631         strcasecmp.
10632
10633         * src/FontInfo.C: changed loop variable type too string::size_type.
10634
10635 1999-10-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
10636
10637         * src/support/Makefile.am: added -I${srcdir}/../ to INCLUDES and
10638         set ETAGS_ARGS to --c++ 
10639
10640 1999-09-30  Lars Gullik Bjønnes  <larsbj@lyx.org>
10641
10642         * src/table.C (DocBookEndOfCell): commented out two unused variables
10643
10644         * src/paragraph.C: commented out four unused variables. 
10645
10646         * src/lyx_cb.C (TocUpdateCB): moved variable i and added a new i
10647         insed a if clause with type string::size_type.
10648
10649         * src/lyxfr1.C (IsSearchStringInText): changed iSrch from int to
10650         string::size_type.
10651
10652         * src/lyxfunc.C (Dispatch): use string::size_type as loop variable.
10653
10654         * src/lyx_cb.C (ReplaceWord): use string::size_type as loop
10655         variable, also changed loop to go from 0 to lenght + 1, instead of
10656         -1 to length. This should be correct.
10657
10658         * src/LaTeX.C (scanError): use string::size_type as loop variable
10659         type.
10660
10661         * src/BufferView.C (WorkAreaButtonPress): moved #if 0 up two lines
10662         (l.896) since y_tmp and row was not used anyway.
10663
10664         * src/insets/insetref.C (escape): use string::size_type as loop
10665         variable type.
10666
10667         * src/insets/insetquotes.C (Width): use string::size_type as loop
10668         variable type.
10669         (Draw): use string::size_type as loop variable type.
10670
10671         * src/insets/insetlatexaccent.C (checkContents): use
10672         string::size_type as loop variable type.
10673
10674         * src/insets/insetlabel.C (escape): use string::size_type as loop
10675         variable type.
10676
10677         * src/insets/insetinfo.C: added an extern for current_view.
10678
10679         * src/insets/insetcommand.C (scanCommand): use string::size_type
10680         as loop variable type.
10681
10682         * most files: removed the RCS tags. With them we had to recompile
10683         a lot of files after a simple cvs commit. Also we have never used
10684         them for anything meaningful. 
10685
10686         * most files: tags-query-replace NULL 0. As adviced several plases
10687         we now use "0" instead of "NULL" in our code. 
10688
10689         * src/support/filetools.C (SpaceLess): use string::size_type as
10690         loop variable type.
10691
10692 1999-09-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
10693
10694         * src/paragraph.C: fixed up some more string stuff.
10695
10696 1999-09-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
10697
10698         * src/support/filetools.h: make modestr a std::string.
10699
10700         * src/filetools.C (GetEnv): made ch really const.
10701
10702         * src/lyxlib.h: removed the Maximum and Minimum inline functions,
10703         made code that used these use max/min from <algorithm> instead.
10704
10705         * changed several c library include files to their equivalent c++
10706         library include files. All is not changed yet.
10707
10708         * created a support subdir in src, put lyxstring and lstrings
10709         there + the extra files atexit, fileblock, strerror. Created
10710         Makefile.am. edited configure.in and src/Makefile.am to use this
10711         new subdir. More files moved to support.
10712
10713         * imported som of the functions from repository lyx, filetools
10714         
10715         * ran tags-query-replace on LString -> string, corrected the bogus
10716         cases. Tried to make use of lstrings.[hC], debugged a lot. There
10717         is still some errors in there. This is errors where too much or
10718         too litle get deleted from strings (string::erase, string::substr,
10719         string::replace), there can also be some off by one errors, or
10720         just plain wrong use of functions from lstrings. Viewing of quotes
10721         is wrong. 
10722
10723         * LyX is now running fairly well with string, but there are
10724         certainly some bugs yet (see above) also string is quite different
10725         from LString among others in that it does not allow null pointers
10726         passed in and will abort if it gets any.
10727         
10728         * Added the revtex4 files I forgot when setting up the repository.
10729
10730 1999-09-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
10731
10732         * All over: Tried to clean everything up so that only the files
10733           that we really need are included in the cvs repository.
10734         * Switched to use automake.
10735         * Generaton of reLyX is not perfect, LYX_DIR does not get substituted.
10736         * Install has not been checked.
10737
10738 1999-09-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
10739
10740         * po/pt.po: Three errors:
10741                l.533 and l.538 format specification error
10742                l. 402 duplicate entry, I just deleted it.