]> git.lyx.org Git - lyx.git/blob - ChangeLog
b1d5143ef41cbd25df2da7afc4333e89a41ab38b
[lyx.git] / ChangeLog
1 2000-01-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
2
3         * src/insets/figinset.C: get rid of struct pidwaitpit, use a
4         std::list<int> instead.
5         (addpidwait): reflect move to std::list<int>
6         (sigchldchecker): ditto
7
8         * src/bmtable.c (fl_set_bmtable_file): have arguments in the X r5
9         version also. 
10
11         * src/paragraph.C (FirstPhysicalPar): remove assert and comment
12         that obviously was wrong...
13
14         * src/lyxfont.C (textWidth): have c as char c[2] instead of char
15         c, this avoids warnings with purify and islower.
16
17         * src/insets/figinset.C: rename struct queue to struct
18         queue_element and rewrite to use a std::queue. gsqueue is now a
19         std::queue<queue_element>
20         (runqueue): reflect move to std::queue
21         (addwait): ditto
22
23         * src/support/lstrings.h (tostr): specialize for bool, otherwise
24         we would get "1" "0" instead of "true" "false. Also make the tostr
25         functions inline.
26
27 2000-01-21  Juergen Vigna  <jug@sad.it>
28
29         * src/buffer.C (writeFileAscii): Disabled code for special groff
30         handling of tabulars till I fix this in table.C
31
32 2000-01-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
33
34         * src/support/mkdir.C (mkdir): change second argument of mkdir to
35         unsigned long int.
36         * src/support/lyxlib.h: ditto.
37
38 2000-01-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
39
40         * src/insets/insetlatexaccent.C (Draw): make accents on top of 'i'
41         and 'j' look better. This might fix the "macron" bug that has been
42         observed.
43
44         * src/support/lstrings.[Ch] (tostr): reimplement all the tostr
45         functions as one template function. Delete the old versions.
46
47         * src/support/lyxsum.C: move using std::ifstream inside
48         MODERN_STL_STREAMS
49
50         * src/support/Makefile.am (libsupport_la_SOURCES): added mkdir.C
51         and putenv.C
52
53         * src/mathed/formulamacro.C: delete #include "bufferlist.h" never used
54
55         * src/mathed/formula.C: delete #include "bufferlist.h" never used
56
57         * src/insets/figinset.C (InitFigures): use new instead of malloc
58         to allocate memory for figures and bitmaps.
59         (DoneFigures): use delete[] instead of free to deallocate memory
60         for figures and bitmaps.
61         (runqueue): use new to allocate 
62         (getfigdata): use new/delete[] instead of malloc/free
63         (RegisterFigure): ditto
64
65         * some files: moved some declarations closer to first use, small
66         whitespace changes use preincrement instead of postincrement where
67         it does not make a difference.
68         
69         * src/kbmap.[Ch]: delete code according to define NO_HASH, it is a
70         step on the way to use stl::containers for key maps. 
71
72         * src/bufferlist.h: add a typedef for const_iterator and const
73         versions of begin and end.
74
75         * src/bufferlist.[Ch]: change name of member variable _state to
76         state_. (avoid reserved names)
77         (makePup): removed
78         (getFileNames): returns the filenames of the buffers in a vector.
79
80         * configure.in (ALL_LINGUAS): added ro
81
82         * src/support/putenv.C: new file
83
84         * src/support/mkdir.C: new file
85
86 2000-01-20  Allan Rae <rae@lyx.org>
87
88         * lib/layouts/IEEEtran.layout: Added several theorem environments
89
90         * lib/templates/IEEEtran.lyx: Example theorem environments and a
91         couple of minor additions.
92
93         * lib/doc/LaTeXConfig.lyx.in:  Use URL insets for ftp sites 
94         (except for those in footnotes of course)
95
96 2000-01-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
97
98         * src/lyxlookup.C (CloseLyXLookup): set xic=0; after destruction. 
99
100         * src/mathed/math_utils.C (MathedLookupBOP): rewrite to use
101         std::sort and std::lower_bound instead of qsort and handwritten
102         binarysearch.
103         (struct compara): struct that holds the functors used by std::sort
104         and std::lower_bound in MathedLookupBOP.
105
106 2000-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
107
108         * src/support/LAssert.h: do not do partial specialization. We do
109         not really need it.
110
111         * src/support/lyxlib.h: note that lyx::getUserName() and
112         lyx::date() are not in use right now. Should these be suppressed?
113
114         * src/buffer.C (makeLaTeXFile): we do not need the user name here.
115         (makeLinuxDocFile): do not put date and user name in linuxdoc
116         headers. 
117
118         * src/support/lyxlib.h (kill): change first argument to long int,
119         since that's what solaris uses.
120
121         * src/support/kill.C (kill): fix declaration to match prototype.
122
123         * config/lyxinclude.m4 (LYX_CXX_NAMESPACES): fix the macro to
124         actually check whether namespaces are supported. This is not what
125         it used to do.
126
127         * src/support/lyxsum.C: add a using directive.
128
129 2000-01-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
130
131         * src/support/kill.C: if we have namespace support we don't have
132         to include lyxlib.h.
133
134         * src/support/lyxlib.h: use namespace lyx if supported.
135
136 2000-01-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
137
138         * src/support/date.C: new file
139
140         * src/support/chdir.C: new file
141
142         * src/support/getUserName.C: new file
143
144         * src/support/getcwd.C: new file
145
146         * src/support/abort.C: new file
147
148         * src/support/kill.C: new file
149
150         * src/support/lyxlib.h: moved all the functions in this file
151         insede struct lyx. Added also kill and abort to this struct. This
152         is a way to avoid the "kill is not defined in <csignal>", we make
153         C++ wrappers for functions that are not ANSI C or ANSI C++.
154
155         * src/support/lyxsum.C (sum): use #ifdef MODERN_STL_STREAMS
156         instead of #if __GLIBCPP__. Since lyxsum is now put inside struct
157         lyx it has been renamed to sum.
158
159 2000-01-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
160
161         * src/text.C: add using directives for std::min and std::max.
162
163 2000-01-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
164
165         * src/texrow.C (getIdFromRow): actually return something useful in
166         id and pos. Hopefully fixes the bug with positionning of errorbox
167         insets. 
168
169         * src/lyx_main.C (easyParse): output an error and exit if an
170         incorrect command line option has been given.
171
172         * src/spellchecker.C (ispell_check_word): document a memory leak.
173
174         * src/bufferlist.C (write): fix mismatched allocation/deletion,
175         where a "struct utimbuf" is allocated with "new" and deleted with
176         "delete[]". 
177
178 2000-01-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
179
180         * src/text2.C (CutSelection): don't delete double spaces.
181         (PasteSelection): ditto
182         (CopySelection): ditto
183         
184         * src/text.C (Backspace): don't delete double spaces.
185
186         * src/lyxlex.C (next): fix a bug that were only present with
187         conformant std::istream::get to read comment lines, use
188         std::istream::getline instead. This seems to fix the problem.
189
190 2000-01-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
191
192         * src/text2.C (DeleteEmptyParagraphMechanism): fix for the "not
193         allowed to insert space before space" editing problem. Please read
194         commends at the beginning of the function. Comments about usage
195         are very welcome.
196
197         * src/text.C (InsertChar): fix for the "not allowed to insert
198         space before space" editing problem.
199
200         * src/text2.C (DeleteEmptyParagraphMechanism): when
201         IsEmptyTableRow can only return false this last "else if" will
202         always be a no-op. Commented out.
203
204         * src/text.C (RedoParagraph): As far as I can understand tmp
205         cursor is not really needed.
206
207         * src/lyxtext.[Ch] (IsEmptyTableCell): commented out. As used at
208         present it could only return false anyway. 
209         (several functions): Did something not so smart...added a const
210         specifier on a lot of methods.
211         
212         * src/paragraph.C (BreakParagraph): removed the tmp->text.reserve
213         and add a tmp->text.resize. The LyXParagraph constructor does the
214         resize for us.
215         (BreakParagraphConservative): ditto
216
217         * src/support/path.h (Path): add a define so that the wrong usage
218         "Path("/tmp") will be flagged as a compilation error:
219         "`unnamed_Path' undeclared (first use this function)"
220
221 2000-01-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
222
223         * config/lyxinclude.m4 (LYX_FUNC_PUTENV_ARGTYPE): fix the macro,
224         which was bogus for several reasons.
225
226         * src/LaTeX.C (scanAux): fix the regular expression used to scan
227         .aux files. 
228         (runBibTeX): ditto.
229
230         * autogen.sh: do not use "type -path" (what's that anyway?).
231
232         * src/support/filetools.C (findtexfile): remove extraneous space
233         which caused a kpsewhich warning (at least with kpathsea version
234         3.0). 
235
236 2000-01-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
237
238         * src/mathed/Makefile.am (noinst_LTLIBRARIES): use .la
239
240         * src/insets/Makefile.am (noinst_LTLIBRARIES): use .la
241
242         * src/Makefile.am (lyx_DEPENDENCIES): switch back to .la libs
243
244 2000-01-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
245
246         * src/paragraph.C (BreakParagraph): do not reserve space on text
247         if we don't need to (otherwise, if pos_end < pos, we end up
248         reserving huge amounts of memory due to bad unsigned karma).
249         (BreakParagraphConservative): ditto, although I have not seen
250         evidence the bug can happen here.
251
252         * src/lyxparagraph.h: add a using std::list.
253
254 2000-01-11  Juergen Vigna  <jug@sad.it>
255
256         * src/menus.C (MenuDocu): output an Alert if the documentation-file
257         could not be found.
258
259 2000-01-11  Lars Gullik Bjønnes  <larsbj@lyx.org>
260
261         * src/vc-backend.C (doVCCommand): change to be static and take one
262         more parameter: the path to chdir too be fore executing the command.
263         (retrive): new function equiv to "co -r"
264
265         * src/bufferlist.C (loadLyXFile): implement the missing parts if
266         file_not_found_hook is true.
267
268         * src/lyxvc.C (file_not_found_hook): implement file_not_found_hook.
269
270         * src/support/filetools.C (IsFileWriteable): use FileInfo to check
271         if a file is readwrite,readonly...anything else.
272
273 2000-01-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
274
275         * src/lyx_cb.C (MakeLaTeXOutput): name change from MakeDVIOutput
276         (CreatePostscript): name change from MenuRunDVIPS (or something)
277         (PreviewPostscript): name change from MenuPreviewPS
278         (PreviewDVI): name change from MenuPreviewDVI
279
280         * lib/lyxrc.example: added \pdflatex_command, \pdf_mode,
281         \view_pdf_command., \pdf_to_ps_command
282
283         * lib/configure.m4: added search for PDF viewer, and search for
284         PDF to PS converter. 
285         (lyxrc.defaults output): add \pdflatex_command,
286         \view_pdf_command and \pdf_to_ps_command.
287
288         * src/lyx_cb.C (MenuPreviewDVI): renamed from MenuPreview.
289
290         * src/bufferlist.C (write): we don't use blocksize for anything so
291         I removed it.
292
293 2000-01-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
294
295         * src/support/block.h: disable operator T* (), since it causes
296         problems with both compilers I tried. See comments in the file.
297
298         * lib/reLyX/configure.in: do not define LYX_DIR. support flag
299         --with-lyxname. 
300
301         * lib/reLyX/reLyX.in: change LYX_DIR to pkgdatadir; change env.
302         variable LYX_DIR_10x to LYX_DIR_11x.
303
304         * src/Makefile.am: replace variable LYX_DIR with pkgdatadir.
305
306         * INSTALL: document --with-lyxname.
307         * NEWS: ditto.
308
309         * configure.in: new configure flag --with-lyxname which allows to
310         choose the name under which lyx is installed. Default is "lyx", of
311         course. It used to be possible to do this with --program-suffix,
312         but the later has in fact a different meaning for autoconf.
313
314         * src/support/lstrings.h (lstrchr): reformat a bit.
315
316         * src/lyxlex.h: include LIstream.h, for Sun CC this time.
317         * src/mathed/math_defs.h: ditto.
318
319 2000-01-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
320
321         * src/lyxrc.[Ch]: New tag and variable "\make_backup". Defaults to
322         true, decides if we create a backup file or not when saving. New
323         tag and variable \pdf_mode, defaults to false. New tag and
324         variable \pdflatex_command, defaults to pdflatex. New tag and
325         variable \view_pdf_command, defaults to xpdf. New tag and variable
326         \pdf_to_ps_command, defaults to pdf2ps.
327
328 2000-01-08  Lars Gullik Bjønnes  <larsbj@lyx.org>
329
330         * src/bufferlist.C (close): don't call insetUnlock if the buffer
331         does not have a BufferView.
332         (unlockInset): ditto + don't access the_locking_inset if the
333         buffer does not have a BufferView.
334
335         * src/LyXView.C (KeyPressMask_raw_callback): add a XSync in
336         certain circumstances so that we don't continue a keyboard
337         operation long after the key was released. Try f.ex. to load a
338         large document, press PageDown for some seconds and then release
339         it. Before this change the document would contine to scroll for
340         some time, with this change it stops imidiatly.
341
342         * src/support/block.h: don't allocate more space than needed. As
343         long as we don't try to write to the arr[x] in a array_type arr[x]
344         it is perfectly ok. (if you write to it you might segfault).
345         added operator value_type*() so that is possible to pass the array
346         to functions expecting a C-pointer.
347
348         * lib/Makefile.am (dist-hook): don't fail completely if unable to
349         cvs.
350
351         * intl/*: updated to gettext 0.10.35, tried to add our own
352         required modifications. Please verify.
353
354         * po/*: updated to gettext 0.10.35, tried to add our own required
355         modifications. Please verify.
356         
357         * src/support/lstrings.C (tostr): go at fixing the problem with
358         cxx and stringstream. When stringstream is used return
359         oss.str().c_str() so that problems with lyxstring and basic_string
360         are avoided. Note that the best solution would be for cxx to use
361         basic_string all the way, but it is not conformant yet. (it seems)
362
363         * src/lyx_cb.C + other files: moved several global functions to
364         class BufferView, some have been moved to BufferView.[Ch] others
365         are still located in lyx_cb.C. Code changes because of this. (part
366         of "get rid of current_view project".)
367
368         * src/buffer.C + other files: moved several Buffer functions to
369         class BufferView, the functions are still present in buffer.C.
370         Code changes because of this.
371
372         * config/lcmessage.m4: updated to most recent. used when creating
373         acinclude.m4.
374
375         * config/progtest.m4: updated to most recent. used when creating
376         acinclude.m4.
377         
378         * config/gettext.m4: updated to most recent. applied patch for
379         tmplinguas.
380
381         * config/gettext.m4.patch: new file that shows what changes we
382         have done to the local copy of gettext.m4.
383
384         * config/libtool.m4: new file, used in creation of acinclude.m4
385
386         * config/lyxinclude.m4: new file, this is the lyx created m4
387         macros, used in making acinclude.m4.
388         
389         * autogen.sh: GNU m4 discovered as a separate task not as part of
390         the lib/configure creation. 
391         Generate acinlucde from files in config. Actually cat
392         lyxinclude.m4, libtool.m4 and gettext.m4 together. This makes it
393         easier to upgrade .m4 files that really are external.
394
395         * src/Spacing.h: moved using std::istringstream to right after
396         <sstream>. This should fix the problem seen with some compilers.
397
398 2000-01-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
399
400         * src/lyx_cb.C: began some work to remove the dependency a lot of
401         functions have on BufferView::text, even if not really needed.
402         (GetCurrentTextClass): removed this func, it only hid the
403         current_view. 
404
405         * src/Makefile.am (lyx_DEPENDENCIES): use support/libsupport.la I
406         forgot this in last commit.
407
408         * src/Bullet.C (bulletEntry): use static char const *[] for the
409         tables, becuase of this the return arg had to change to string.
410         (bulletSize): ditto
411         (~Bullet): removed unneeded destructor
412
413         * src/BufferView.C (beforeChange): moved from lyx_cb.C
414         (insetSleep): moved from Buffer
415         (insetWakeup): moved from Buffer
416         (insetUnlock): moved from Buffer
417
418         * buffer.[Ch], BufferView.[Ch] + others: moved the_locking_inset
419         from Buffer to BufferView.
420         
421         * acinclude.m4: include libtool.m4 from libtool 1.3.4.
422
423         * config/ltmain.sh: updated to version 1.3.4 of libtool
424
425         * config/ltconfig: updated to version 1.3.4 of libtool
426
427 2000-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
428
429
430         * src/buffer.C (pop_tag): fix a dubious for() loop initialization.
431         Did I get that right?
432
433         * src/lyxlex.h: add a "using" directive or two.
434         * src/Spacing.h: ditto.
435         * src/insets/figinset.C: ditto.
436         * src/support/filetools.C: ditto.
437         * src/support/lstrings.C: ditto.
438         * src/BufferView.C: ditto.
439         * src/bufferlist.C: ditto.
440         * src/lyx_cb.C: ditto.
441         * src/lyxlex.C: ditto.
442
443         * NEWS: add some changes for 1.1.4.
444         
445 2000-01-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
446
447         * src/BufferView.C: first go at a TextCache to speed up switching
448         between documents.
449
450 2000-01-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
451
452         * lib/examples/ItemizeBullets.lyx: update from Tino Meinen. 
453         * lib/examples/nl_voorbeeld_ruw.lyx: ditto.
454         * lib/examples/nl_voorbeeld_verlyxt.lyx: ditto.
455         * lib/examples/nl_opsommingstekens.lyx: new translation from Tino
456         Meinen.
457         
458         * src/mathed/math_defs.h (MathedRowSt): make sure that all
459         members of the struct are correctly initialized to 0 (detected by
460         purify) 
461         * src/lyxrc.C (LyXRC): ditto for print_adapt_output.
462         * src/insets/figinset.C (InsetFig): ditto for pswid and pshgh.
463
464         * src/insets/figinset.C (sigchldchecker): use "delete" to free a
465         pidwait, since it was allocated with "new". This was potentially
466         very bad. Thanks to Michael Schmitt for running purify for us.
467
468
469 2000-01-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
470
471         * src/lyx_gui_misc.C: add a 'using std::make_pair;' statement.
472
473         * src/lyx_gui_misc.h: add a 'using std::pair;' statement.
474
475 1999-12-30  Allan Rae  <rae@lyx.org>
476
477         * lib/templates/IEEEtran.lyx: minor change
478
479         * src/lyxvc.C (registrer, checkIn), src/lyx_cb.C (MenuInsertLabel),
480         src/mathed/formula.C (LocalDispatch): askForText changes
481
482         * src/lyx_gui_misc.[Ch] (askForText): now returns a bool also so we 
483         know when a user has cancelled input. Fixes annoying problems with
484         inserting labels and version control.
485
486 1999-12-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
487
488         * src/support/lstrings.C (tostr): rewritten to use strstream and
489         stringstream
490
491 1999-12-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
492
493         * src/support/filetools.C (IsFileWriteable): use fstream to check
494         (IsDirWriteable): use fileinfo to check
495
496         * src/support/filetools.h (FilePtr): whole class deleted
497
498         * src/insets/figinset.C (GetPSSizes): rewritten to use ifstream.
499
500         * src/lyxparagraph.h (readSimpleWholeFile): make arg istream
501
502         * src/lyx_cb.C (InsertAsciiFile): use ifstream instead of FilePtr
503
504         * src/bufferlist.C (write): use ifstream and ofstream instead of
505         FILE*
506
507         * src/Spacing.h: use istrstream instead of sscanf
508
509         * src/mathed/math_defs.h: change first arg to istream from FILE*
510
511         * src/buffer.C (insertLyXFile): use ifstream instead of FilePtr
512
513         * src/mathed/math_parser.C: have yyis to be an istream 
514         (LexGetArg): use istream (yyis)
515         (yylex): ditto
516         (mathed_parse): ditto
517         (mathed_parser_file): first arg istream instead of FILE*, set yyis
518
519         * src/mathed/formula.C (Read): rewritten to use istream
520
521         * src/mathed/formulamacro.C (Read): rewritten to use istream
522
523         * src/lyxlex.h (~LyXLex): deleted desturctor 
524         (getStream): new function, returns an istream
525         (getFile): deleted funtion
526         (IsOK): return is.good();
527
528         * src/lyxlex.C (LyXLex): delete file and owns_file
529         (setFile): open an filebuf and assign that to a istream instead of
530         using FILE*
531         (setStream): new function, takes an istream as arg. 
532         (setFile): deleted function
533         (EatLine): rewritten us use istream instead of FILE*
534         (next): ditto
535         (nextToken): ditto
536
537         * src/table.C (LyXTable): use istream instead of FILE*
538         (Read): rewritten to take an istream instead of FILE*
539
540 1999-12-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
541
542         * src/buffer.C (Dispatch): remove an extraneous break statement.
543
544         * src/support/filetools.C (QuoteName): change to do simple
545         'quoting'. More work is necessary. Also changed to do nothing
546         under emx (needs fix too).
547         (Putenv): Cast the argument of putenv() with PUTENV_TYPE_ARG.
548
549         * acinclude.m4 (STL_STRING_FWD_H_LOCATION): add the comment for
550         config.h.in to the AC_DEFINE_UNQUOTED() call.
551         (LYX_FUNC_PUTENV_ARGTYPE): new macro. Checks whether putenv()
552         needs char * as argument (because Solaris 7 declares it like
553         that). 
554
555         * acconfig.h: remove placeholder for STL_STRING_FWD_H_LOCATION;
556         remove definition of BZERO.
557
558 1999-12-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
559
560         * src/support/LRegex.C: include <regex.h> if HAVE_REGEX_H is
561         defined, "lyxregex.h" if not.
562
563         * src/support/Makefile.am (noinst_LTLIBRARIES): changed from
564         pkglib_ to noinst_
565         (REGEX): new variable that is set to regex.c lyxregex.h when
566         AM_CONDITIONAL USE_REGEX is set.
567         (libsupport_la_SOURCES): add $(REGEX)
568
569         * src/mathed/Makefile.am (noinst_LTLIBRARIES): changed from
570         pkglib_ to noinst_
571
572         * src/insets/Makefile.am (noinst_LTLIBRARIES): changed from
573         pkglib_ to noinst_
574
575         * configure.in: add call to LYX_REGEX 
576
577         * acinclude.m4 (LYX_REGEX): checks if we need to use the included
578         regex or not. Uses a a AM_CONDITIONAL to decide what to compile. 
579
580 1999-12-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
581
582         * lib/bind/fi_menus.bind: new file, from
583         pauli.virtanen@saunalahti.fi. 
584
585         * src/buffer.C (getBibkeyList): pass the parameter delim to
586         InsetInclude::getKeys and InsetBibtex::getKeys.
587
588         * src/insets/insetinclude.[Ch] (getKeys): add parameter delim, which
589         is passed to Buffer::getBibkeyList
590         
591         * src/insets/insetbib.[Ch] (getKeys): add parameter delim, and use it
592         instead of the hardcoded comma.
593
594         * src/insets/insetbib.C (getKeys): make sure that there are not
595         leading blanks in bibtex keys. Normal latex does not care, but
596         harvard.sty seems to dislike blanks at the beginning of citation
597         keys. In particular, the retturn value of the function is
598
599         * INSTALL: make it clear that libstdc++ is needed and that gcc
600         2.7.x probably does not work.
601
602         * src/support/filetools.C (findtexfile): make debug message go to
603         the LATEX channel
604         * src/insets/insetbib.C (getKeys): ditto
605
606         * src/debug.C (showTags): make sure that the output is correctly
607         aligned. 
608
609         * configure.in: add a comment for TWO_COLOR_ICON define.
610
611         * acconfig.h: remove all the entries that already defined in
612         configure.in or acinclude.m4.
613
614         * src/buffer.C (makeLaTeXFile): headers of latex file also changed
615         to avoid user name, date and copyright.
616
617 1999-12-21  Juergen Vigna  <jug@sad.it>
618
619         * src/table.C (Read): Now read bogus row format informations
620                 if the format is < 5 so that afterwards the table can
621                 be read by lyx but without any format-info. Fixed the
622                 crash we experienced when not doing this.
623
624 1999-12-21  Lars Gullik Bjønnes  <larsbj@lyx.org>
625
626         * src/text2.C (RedoHeightOfParagraph): rename arg cursor -> cur
627         (RedoDrawingOfParagraph): ditto
628         (RedoParagraphs): ditto
629         (RemoveTableRow): ditto
630
631         * src/text.C (Fill): rename arg paperwidth -> paper_width
632
633         * src/buffer.C (insertLyXFile): rename var filename -> fname
634         (writeFile): rename arg filename -> fname
635         (writeFileAscii): ditto
636         (makeLaTeXFile): ditto
637         (makeLinuxDocFile): ditto
638         (makeDocBookFile): ditto
639
640         * src/LaTeX.C (runMakeIndex): change arg name from file -> f
641         (runBibTeX): ditto
642
643         * src/Makefile.am (lyx_SOURCES): add bmtable.c and remove bmtable.C
644
645         * src/bmtable.h: add extern "C" on this file when __cplusplus is
646         defined.
647
648         * src/bmtable.c: new file, a C'ified copy of bmtable.C, this is
649         compiled by a C compiler not C++. 
650
651         * src/layout.h (LyXTextClass): added typedef for const_iterator
652         (LyXTextClassList): added typedef for const_iterator + member
653         functions begin and end.
654
655         * src/LyXView.C (UpdateDocumentClassChoice): rewritten to use
656         iterators to fill the choice_class.
657         (updateLayoutChoice): rewritten to use iterators to fill the
658         layoutlist in the toolbar.
659
660         * src/BufferView.h (BufferView::work_area_width): removed unused
661         variable. 
662
663         * src/lyx_gui_misc.C (WarnReadonly): added string parameter 'file'
664
665         * src/buffer.C (sgmlOpenTag): drop the use of the static space array
666         (sgmlCloseTag): ditto
667
668         * src/support/lstrings.h: return type of countChar changed to
669         unsigned char.
670
671         * src/support/lstrings.C (countChar): use HAVE_STD_COUNT to choose
672         what version of this func to use. Also made to return unsigned int.
673
674         * configure.in: call LYX_STD_COUNT 
675
676         * acinclude.m4 (LYX_STD_COUNT): new function checks for a standard
677         conforming std::count. 
678
679 1999-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
680
681         * src/mathed/math_draw.C (Draw, Metrics): fix a bug where a prime
682         and a subscript would give bad display (patch from Dekel Tsur
683         <dekel@math.tau.ac.il>). 
684
685         * src/insets/insetlatexaccent.h: make sure ACCENT_TYPES is public. 
686
687         * src/spellchecker.C (create_ispell_pipe): use a const_cast to
688         please sun CC.
689
690         * src/chset.h: add a few 'using' directives
691
692         * src/lyxfunc.C (Dispatch): check that LFUN_UNKNOWN_ACTION is not
693         triggered when no buffer is active
694
695         * src/layout.C: removed `break' after `return' in switch(), since
696         it is unreachable.
697
698         * src/lyx_main.C (init): make sure LyX can be ran in place even
699         when libtool has done its magic with shared libraries. Fix the
700         test for the case when the system directory has not been found.
701
702         * src/lyx_cb.C (MenuMakeLaTeX): make sure to keep the full path
703         name for the latex file.
704         (MenuMakeHTML): ditto
705
706         * src/buffer.h: add an optional boolean argument, which is passed
707         to ChangeExtension.
708
709 1999-12-20  Allan Rae  <rae@lyx.org>
710
711         * lib/templates/IEEEtran.lyx: small correction and update.
712
713         * configure.in: Attempted to use LYX_PATH_HEADER
714
715         * src/stl_string_fwd.h: Don't need HAVE_STL_STRING_FWD_H anymore
716
717         * acconfig.h, acinclude.m4 (LYX_STL_STRING_FWD): totally revised after
718         input from JMarc.  Now use preprocessor to find the header.
719         Also stopped making HAVE_STL_STRING_FWD_H and extended the comments.
720         (LYX_PATH_HEADER): My, so far, failed attempt to generalize
721         LYX_STL_STRING_FWD.  See comments in file.      
722
723 1999-12-19  Asger Alstrup Nielsen  <alstrup@diku.dk>
724
725         * The global MiniBuffer * minibuffer variable is dead.
726         
727         * The global FD_form_main * fd_form_main variable is dead.
728
729 1999-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
730
731         * src/toolbar.C (set): condition #warning on WITH_WARNINGS
732
733         * src/table.h: add the LOstream.h header
734         * src/debug.h: ditto
735         
736         * src/LyXAction.h: change the explaination of the ReadOnly
737         attribute: is indicates that the function _can_ be used.
738
739         * src/LyXAction.C (init): find-replace _can_ be used in read-only
740         mode. 
741
742 1999-12-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
743
744         * src/lyxfont.C (ascent): Make sure that char is _always_ used as
745         unsigned. 
746         (descent): ditto
747         (lbearing): ditto
748         (rbearing): ditto
749
750         * src/paragraph.C (GetWord): assert on pos>=0
751         (GetChar): ditto
752         
753         * src/support/lyxstring.C: condition the use of an invariant on
754         ENABLE_ASSERTIONS 
755         * src/support/lyxstring.h: ditto
756
757         * src/Bullet.[Ch]: replace DEBUG_AS_DEFAULT by ENABLE_ASSERTIONS.
758         Use LAssert.h instead of plain assert().
759
760         * src/support/lstrings.h: add LAssert.h, in case it is needed.
761
762         * src/lyxfunc.C: do not include LAssert.h, it is not used.
763         * src/support/filetools.C: ditto
764
765         * src/support/LAssert.h: make Assert a no-op if ENABLE_ASSERTIONS
766         is not defined. 
767
768         * INSTALL: document the new configure flags
769         
770         * configure.in: suppress --with-debug; add --enable-assertions
771
772         * acinclude.m4: various changes in alignment of help strings.
773
774 1999-12-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
775
776         * src/kbmap.C: commented out the use of the hash map in kb_map,
777         beginning of movement to a stl::container. 
778
779         * several files: removed code that was not in effect when
780         MOVE_TEXT was defined.
781         
782         * lib/kbd/iso8859-1.cdef: removed bogus backslashes. Backslashes
783         for escaping should not be used. We can discuss if the string
784         should be enclosed in f.ex. [] instead of "".
785
786         * src/trans_mgr.C (insert): use the new returned value from
787         encodeString to get deadkeys and keymaps done correctly.
788
789         * src/chset.C (encodeString): changed to return a pair, to tell
790         what to use if we know the string.
791
792         * src/lyxscreen.h (fillArc): new function.
793
794         * src/FontInfo.C (resize): rewritten to use more std::string like
795         structore, especially string::replace.
796
797         * src/insets/insetlatexaccent.C (Draw): use fillArc for the
798         approp. accents.
799
800         * configure.in (chmod +x some scripts): remove config/gcc-hack 
801
802 1999-12-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
803
804         * src/buffer.C (writeFile): change once again the top comment in a
805         .lyx file to point to www.lyx.org and to use LYX_DOCVERSION
806         instead of an hardcoded version number.
807         (makeDocBookFile): ditto
808
809         * src/version.h: add new define LYX_DOCVERSION
810
811         * po/de.po: update from Pit Sütterlin
812         * lib/bind/de_menus.bind: ditto.
813         
814         * src/lyxfunc.C (Dispatch): call MenuExport()
815         * src/buffer.C (Dispatch): ditto
816
817         * src/lyx_cb.C (MenuMakeHTML): new function, moved from
818         LyXFunc::Dispatch().
819         (MenuExport): new function, moved from
820         LyXFunc::Dispatch().
821
822         * src/trans_mgr.C (insert): small cleanup
823         * src/chset.C (loadFile): ditto
824
825         * lib/kbd/iso8859-1.cdef: add missing backslashes
826
827 1999-12-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
828
829         * src/insets/insetlatexaccent.C (Lbearing): new function, used to
830         help with placing the manually drawn accents better.
831         (Rbearing): ditto
832         (Draw): x2 and hg changed to float to minimize rounding errors and
833         help place the accents better.
834
835         * src/lyxfont.C (ascent): fixed faulty static_cast, casting from
836         unsigned short to char is just wrong...cast the char to unsigned
837         char instead so that the two values can compare sanely. This
838         should also make the display of insetlatexaccents better and
839         perhaps also some other insets.
840         (descent): ditto
841         (lbearing): new function
842         (rbearing): ditto
843
844 1999-12-15  Allan Rae  <rae@lyx.org>
845
846         * src/stl_string_fwd.h, src/Makefile.am (lyx_SOURCES):  added new
847         header that provides a wrapper around the very annoying SGI STL header
848         of the same name.
849
850         * src/support/lyxstring.C, src/LString.h:
851         removed old SGI-STL-compatability attempts.
852
853         * configure.in: Use LYX_STL_STRING_FWD.
854
855         * acinclude.m4 (LYX_STL_STRING_FWD), acconfig.h: Test if 
856         stl_string_fwd.h is around and try to determine it's location.
857         Major improvement over previous SGI STL 3.2 compatability.
858         Three small problems remain with this function due to my zero
859         knowledge of autoconf.  JMarc and lgb see the comments in the code.
860
861 1999-12-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
862
863         * src/broken_const.h, config/hack-gcc, config/README: removed
864         
865         * configure.in: remove --with-gcc-hack option; do not call
866         LYX_CXX_STL_STACK 
867
868         * INSTALL: remove documentation of --with-broken-const and
869         --with-gcc-hack
870         
871         * acconfig.h: remove all trace of BROKEN_CONST define
872
873         * src/buffer.C (makeDocBookFile): update version number in output
874         file. 
875         (SimpleDocBookOnePar): fix an assert when trying to a character
876         access beyond string length
877         [Patch from Jose']
878
879 1999-12-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
880
881         * po/de.po: fix the Export menu
882
883         * lyx.man: update the description of -dbg
884
885         * src/lyx_main.C (setDebuggingLevel): call Debug::showLevel()
886         (commandLineHelp): updated
887         (easyParse): show list of available debug levels if -dbg is passed
888         without argument.
889
890         * src/Makefile.am: add debug.C
891
892         * src/debug.h: moved some code to debug.C
893
894         * src/debug.C: new file. Contains code to set and show debug
895         level. 
896
897         * src/layout.C: remove 'break' after 'continue' in switch
898         statements, since these cannot be reached.
899
900 1999-12-13  Allan Rae  <rae@lyx.org>
901
902         * src/mathed/math_hash.C (math_hash): renamed from hash(), name clash.
903         (in_word_set): hash() -> math_hash()
904
905         * src/LString.h: Used USING_EXCEPTIONS in SGI STL-3.2 support 
906
907         * acconfig.h: Added a test for whether we are using exceptions in the
908         current compilation run. If so USING_EXCEPTIONS is defined.
909
910         * config.in: Check for existance of stl_string_fwd.h
911         * src/LString.h: If compiling --with-included-string and SGI's
912         STL version 3.2 is present (see above test) we need to block their
913         forward declaration of string and supply a __get_c_string().
914         However, it turns out this is only necessary if compiling with
915         exceptions enabled so I've a bit more to add yet.
916
917         * src/insets/figinset.[Ch], src/insets/insetinclude.C,
918           src/insets/insetloa.C, src/layout.h, src/lyxparagraph.h,
919           src/support/LRegex.h, src/undo.h:
920         Shuffle the order of the included files a little to ensure that
921         LString.h gets included before anything that includes stl_string_fwd.h
922
923         *  src/support/lyxstring.C: We need to #include LString.h instead of
924         lyxstring.h to get the necessary definition of __get_c_string.
925         (__get_c_string): New function.  This is defined static just like SGI's
926         although why they need to do this I'm not sure.  Perhaps it should be
927         in lstrings.C instead.
928
929         * lib/templates/IEEEtran.lyx:  New template file.
930
931 1999-12-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
932         
933         * Makefile.in.in (MKINSTALLDIRS): use $(srcdir)/@MKINSTALLDIRS@
934         * intl/Makefile.in (MKINSTALLDIRS):  ditto
935
936         * src/LyXAction.C (init): changed to hold the LFUN data in a
937         automatic array in stead of in callso to newFunc, this speeds up
938         compilation a lot. Also all the memory used by the array is
939         returned when the init is completed.
940
941         * a lot of files: compiled with -Wold-style-cast, changed most of
942         the reported offenders to C++ style casts. Did not change the
943         offenders in C files. 
944
945         * src/trans.h (Match): change argument type to unsigned int.
946
947         * src/support/DebugStream.C: fix some types on the streambufs so
948         that it works on a conforming implementation.
949
950 1999-12-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
951
952         * lib/examples/example_{raw,lyxified}.lyx: fix embarassing sentence.
953
954         * src/support/lyxstring.C: remove the inline added earlier since
955         they cause a bunch of unsatisfied symbols when linking with dec
956         cxx. Cxx likes to have the body of inlines at the place where they
957         are declared.
958
959         * src/trans.C (AddDeadkey): add an 'unsigned char' cast to avoid
960         accessing negative bounds in array. This fixes the crash when
961         inserting accented characters.
962         * src/trans.h (Match): ditto
963
964         * src/buffer.C (Dispatch): since this is a void, it should not try
965         to return anything...
966
967 1999-12-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
968
969         * src/buffer.h: removed the two friends from Buffer. Some changes
970         because of this. Buffer::getFileName and Buffer::setFileName
971         renamed to Buffer::fileName() and Buffer::fileName(...).
972
973 1999-12-09  Lars Gullik Bjønnes <larsbj@lyx.org>
974
975         * buffer.[Ch], BufferView.[Ch] + other files: Moved Buffer::text
976         and Buffer::update(short) to BufferView. This move is currently
977         controlled by a define MOVE_TEXT, this will be removed when all
978         shows to be ok. This move paves the way for better separation
979         between buffer contents and buffer view. One side effect is that
980         the BufferView needs a rebreak when swiching buffers, if we want
981         to avoid this we can add a cache that holds pointers to LyXText's
982         that is not currently in use. 
983
984         * buffer.[Ch], lyx_main.C: small changes to the "-export" patch by
985         André Pönitz. 
986
987 1999-11-18  André Pönitz <poenitz@mathematik.tu-chemnitz.de>
988
989         * buffer.[Ch]: Dispatch() - new dispatcher on the buffer level
990
991         * lyx_main.C: new command line option -x (or --execute) and
992           -e (or --export). Now direct conversion from .lyx to .tex
993           (.dvi, .ps, ...) is possible  ('lyx file.lyx --export latex')
994           Unfortunately, X is still needed and the GUI pops up during the
995           process...
996
997 1999-12-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
998
999         * src/Spacing.C: add a using directive to bring stream stuff into
1000         normal namespace.
1001         * src/paragraph.C: ditto
1002         * src/buffer.C: ditto
1003
1004         * NEWS: updated a bit the new features of 1.1.3 (took a few things
1005         from Lars' announcement).
1006
1007         * lib/examples/nl_voorbeeld_{ruw,verlyxt}.lyx: new tutorial
1008         example files from Tino Meinen.
1009         
1010 1999-12-06  Allan Rae  <rae@lyx.org>
1011
1012         * src/LaTeX.C (runBibTeX): fix typo in accessing submatch pair.
1013
1014 1999-12-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
1015
1016         * src/support/lyxstring.C: added a lot of inline for no good
1017         reason
1018         
1019         * src/lyxfont.[Ch]: removed latexWriteStartChanges, and
1020         latexWriteEndChanges, they were not used.
1021         
1022         * src/layout.h (operator<<): output operator for PageSides
1023
1024         * src/mathed/math_iter.C (my_memcpy): slightly changed.
1025
1026         * some example files: loaded in LyX 1.0.4 and saved again to update
1027         certain constructs (table format) 
1028
1029         * a lot of files: did the change to use fstream/iostream for all
1030         writing of files. Done with a close look at Andre Poenitz's patch.
1031
1032         * some files: whitespace changes.
1033         
1034 1999-12-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1035
1036         * src/mathed/math_iter.C (my_memcpy): new function. Since the
1037         built-in memcpy() is broken on egcs and gcc 2.95 for alpha
1038         architecture, we provide our own. It is used unconditionnally, but
1039         I do not think this is a performance problem. Thanks to Angus
1040         Leeming <a.leeming@ic.ac.uk> for the code (and again to Michal
1041         Jaegermann <michal@ellpspace.math.ualberta.ca> for finding it the
1042         first time).
1043         (GetInset): use my_memcpy.
1044         (Insert): ditto
1045         (Copy): ditto
1046
1047         * lib/chkconfig.ltx: some cleanup of the latex code. I am not sure
1048         it is easier to understand, but it uses less TeX-only constructs now.
1049
1050         * acinclude.m4 (LYX_SEARCH_PROG): make it work when the PATH
1051         elements contain spaces
1052
1053         * lib/configure: regenerated
1054         
1055         * lib/configure.m4 (SEARCH_PROG): make it work when the PATH
1056         elements contain spaces; display the list of programs that are
1057         tried.
1058
1059         * autogen.sh: make sure lib/configure is executable
1060
1061         * lib/examples/*: rename the tutorial examples to begin with the
1062         two-letters language code.
1063
1064         * src/lyxfunc.C (getStatus): do not query current font if no
1065         buffer exists.
1066
1067         * src/lyx_cb.C (RunScript): use QuoteName
1068         (MenuRunDvips): ditto
1069         (PrintApplyCB): ditto
1070
1071         * src/support/filetools.[Ch] (QuoteName): new function. Add quotes
1072         around argument, so that it works well with the current shell.
1073         Does not work properly with OS/2 shells currently.
1074
1075         * src/LaTeXLog.C (ShowLatexLog): use Buffer::getLatexName
1076         * src/LyXSendto.C (SendtoApplyCB): ditto
1077         * src/lyxfunc.C (Dispatch): ditto
1078         * src/buffer.C (runLaTeX): ditto
1079         (runLiterate): ditto
1080         (buildProgram): ditto
1081         (runChktex): ditto
1082         * src/lyx_cb.C (RunScript): ditto
1083         (MenuMakeLaTeX): ditto
1084         
1085         * src/buffer.h (getLatexName): new method 
1086
1087         * src/support/filetools.C (MakeLatexName): renamed from SpaceLess
1088
1089 1999-12-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1090
1091         * images/sqrt.xpm: change name of the sqrt icon to sqrt_xpm.
1092         * src/mathed/math_panel.C (mathed_get_pixmap_from_icon): ditto
1093         (create_math_panel): ditto
1094
1095         * src/lyxfunc.C (getStatus): re-activate the code which gets
1096         current font and cursor; add test for export to html.
1097
1098         * src/lyxrc.C (read): remove unreachable break statements; add a
1099         few "using".
1100
1101         * src/bmtable.C (fl_set_bmtable_data): add a const_cast.
1102         
1103 1999-12-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
1104
1105         * src/mathed/formula.C (LocalDispatch): fix small whitspace bug
1106         introduced by faulty regex.
1107         * src/buffer.C: ditto
1108         * src/lastfiles.C: ditto
1109         * src/paragraph.C: ditto
1110         * src/table.C: ditto
1111         * src/vspace.C: ditto
1112         * src/insets/figinset.C: ditto
1113         Note: most of these is absolutely harmless, except the one in
1114         src/mathed formula.C.
1115
1116 1999-11-30  Kayvan A. Sylvan  <kayvan@satyr.sylvan.com>
1117
1118         * src/ImportNoweb.C (documentclass): fixed bounds for substr
1119           operation, yielding correct results for the reLyX command.
1120
1121 1999-12-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
1122
1123         * src/support/filetools.C (ExpandPath): removed an over eager
1124         Assert.
1125         (ReplaceEnvironmentPath): ditto
1126
1127         * src/toolbar.C (BubbleTimerCB): use C++ style casts. This clearly
1128         shows that we are doing something fishy in our code...
1129         (BubblePost): ditto
1130         (ToolbarCB): ditto
1131
1132         * src/lyxrc.C (read): use a double switch trick to get more help
1133         from the compiler. (the same trick is used in layout.C)
1134         (write): new function. opens a ofstream and pass that to output
1135         (output): new function, takes a ostream and writes the lyxrc
1136         elemts to it. uses a dummy switch to make sure no elements are
1137         forgotten. 
1138
1139         * src/lyxlex.h: added a struct pushpophelper for use in functions
1140         with more than one exit point.
1141
1142         * src/lyxlex.[Ch] (GetInteger): made it const
1143         (GetFloat): ditto
1144         (GetBool): ditto
1145
1146         * src/lyxfunc.C (Dispatch): added case for LFUN_SAVEPREFERENCES
1147
1148         * src/layout.[hC] : LayoutTags splitted into several enums, new
1149         methods created, better error handling cleaner use of lyxlex. Read
1150         the diff.
1151
1152         * src/bmtable.[Ch]: change some member prototypes because of the
1153         image const changes. 
1154
1155         * commandtags.h, src/LyXAction.C (init): new function:
1156         "preferences-save", saves the lyxrc entries into .lyx/preferences.
1157         This file is not read automatically but you can add \input
1158         preferences to your lyxrc if you want to. We need to discuss how
1159         to handle this. 
1160
1161         * src/LaTeX.C (runBibTeX): use regex to match for the needed lines
1162         in .aux, also remove .bib and .bst files from dependencies when
1163         running bibtex.
1164
1165         * src/BufferView.C, src/LyXView.C: add const_cast several places
1166         because of changes to images.
1167
1168         * lib/images/*: same change as for images/*
1169         
1170         * lib/lyxrc.example: Default for accept_compound is false not no.
1171
1172         * images/*: changed to be const, however I have som misgivings
1173         about this change so it might be changed back.
1174
1175 1999-11-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1176
1177         * lib/configure, po/POTFILES.in: regenerated
1178
1179         * autogen.sh: autogenerate lib/configure from lib/configure.m4
1180
1181         * config/lib_configure.m4: removed
1182         
1183         * lib/configure.m4: new file (was config/lib_configure.m4)
1184
1185         * configure.in: do not test for rtti, since we do not use it.
1186         
1187 1999-11-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
1188
1189         * src/support/lyxstring.C (lyxstring::Srep): Changed to use a
1190         doubling of allocated space scheme. This makes it faster for large
1191         strings end to use less memory for small strings. xtra rememoved. 
1192
1193         * src/insets/figinset.C (waitalarm): commented out.
1194         (GhostscriptMsg): use static_cast
1195         (GhostscriptMsg): use new instead of malloc to allocate memory for
1196         cmap. also delete the memory after use.
1197
1198         * src/lyx_cb.C (SetXtermCursor): made cursor_undefined a bool
1199
1200         * src/LaTeX.C (scanAux): new method. Scans the .aux file and looks
1201         for changes in bibtex database or style.
1202         (runBibTeX): remove all .bib and .bst files from dep before we
1203         begin. 
1204         (run): use scanAuc in when dep file already exist.
1205
1206         * src/DepTable.C (remove_files_with_extension): new method
1207         (exist): new method
1208
1209         * src/DepTable.[Ch]: made many of the methods const. 
1210
1211 1999-11-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1212
1213         * src/bufferparams.C: make sure that the default textclass is
1214         "article". It used to be the first one by description order, but
1215         now the first one is "docbook".
1216
1217         * src/lyx_main.C (setDebuggingLevel): change type of argument to
1218         string; call Debug::value.
1219         (easyParse): pass complete argument to setDebuggingLevel().
1220
1221         * src/debug.h (value): fix the code that parses debug levels.
1222
1223         * src/debug.h: add new debug type ACTION, reserved for LyXAction
1224         class.  
1225
1226         * src/LyXAction.C: use Debug::ACTION as debug channel.
1227
1228         * src/lyxlookup.C: make the debug statements go to Debug::KEY.
1229
1230         * NEWS: updated for the future 1.1.3 release.
1231
1232         * src/mathed/symbol_def.h: swap the definitions of \varepsilon and
1233         \epsilon. Now \epsilon shows as red text, and \varepsilon shows as
1234         it should. This is of course a controversial change (since many
1235         people will find that their lyx workscreen is suddenly full of
1236         red), but done for the sake of correctness.
1237
1238         * src/mathed/formulamacro.h, src/mathed/math_macro.[Ch],
1239           src/mathed/math_root.[Ch] (Clone): return a MathedInset*  
1240
1241         * src/insets/inseterror.h, src/insets/inseturl.h,
1242           src/insets/insetinfo.h, src/insets/figinset.h,
1243           src/mathed/formulamacro.h, src/mathed/math_macro.h
1244           (EditMessage): add a missing const and add _() to make sure that
1245         translation happens
1246
1247         * src/ImportNoweb.C, src/LyXAction.h, src/insets/figinset.C,
1248           src/insets/insetbib.C, src/support/filetools.C: add `using'
1249         directives for cxx.  
1250
1251         * src/lyxfunc.C (Dispatch): make sure nothing bad happens when
1252         doing 'Insert index of last word' at the beginning of a paragraph.
1253
1254 1999-11-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
1255
1256         * several files: white-space changes.
1257
1258         * src/mathed/formula.C: removed IsAlpha and IsDigit
1259
1260         * src/insets/insetbib.C (getKeys): use findtexfile to look for the
1261         .bib file. use a ifstream instead of FilePtr when parsing the .bib
1262         file for keys.
1263
1264         * src/insets/figinset.C (GetPSSizes): don't break when
1265         "EndComments" is seen. But break when a boundingbox is read.
1266
1267         * all classes inherited from Inset: return value of Clone
1268         changed back to Inset *.
1269
1270         * all classes inherited form MathInset: return value of Clone
1271         changed back to MathedInset *.
1272         
1273         * src/insets/figinset.C (runqueue): use a ofstream to output the
1274         gs/ps file. Might need some setpresicion or setw. However I can
1275         see no problem with the current code.
1276         (runqueue): use sleep instead of the alarm/signal code. I just
1277         can't see the difference.
1278
1279         * src/paragraph.C (LyXParagraph): reserve space in the new
1280         paragraph and resize the inserted paragraph to just fit.
1281
1282         * src/lyxfunc.h (operator|=): added operator for func_status.
1283
1284         * src/lyxfunc.C (MenuNew): use FileInfo instead of FilePtr to
1285         check for readable file.
1286
1287         * src/lyx_cb.C (MenuMakeLaTeX): use FileInfo instead of FilePtr to
1288         check for readable file.
1289         (MenuMakeLinuxDoc): ditto
1290         (MenuMakeDocBook): ditto
1291         (MenuMakeAscii): ditto
1292         (InsertAsciiFile): split the test for openable and readable
1293
1294         * src/bmtable.C (draw_bitmaptable): use
1295         fl_state[fl_get_vclass()].depth instead of DefualtScreen.
1296
1297         * src/LaTeX.C, src/support/filetools.[Ch]: moved do_popen and
1298         findtexfile from LaTeX to filetools.
1299         
1300         * src/ImportNoweb.C (documentclass): rewrote to use ifstream
1301         instead of FilePtr. Needs to be verified by a literate user.
1302
1303 1999-11-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1304
1305         * src/mathed/formula.[Ch] (GetCursorPos): add a missing 'const'.
1306         (EditMessage): likewise.
1307
1308         * src/paragraph.C (SimpleTeXSpecialChars): output ~ and ^
1309         respectively as \textasciitilde and \textasciicircum.
1310
1311 1999-11-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
1312
1313         * src/support/lyxstring.h: made the methods that take iterators
1314         use const_iterator.
1315
1316         * src/support/lstrings.C (countChar): use std::cound(itr, itr, val)
1317         (regexMatch): made is use the real regex class.
1318
1319         * src/support/Makefile.am: changed to use libtool
1320
1321         * src/support/.cvsignore: added *.lo, .libs and libsupport.la
1322
1323         * src/mathed/math_defs.h: made the mathaligns be in a enum instead
1324         of defines.
1325         (MathIsInset ++): changed several macros to be inline functions
1326         instead. 
1327
1328         * src/mathed/Makefile.am: changed to use libtool
1329
1330         * src/mathed/.cvsignore: added *.lo, .libs and libmathed.la
1331
1332         * src/insets/inset* : Clone changed to const and return type is
1333         the true insettype not just Inset*.
1334         
1335         * src/insets/Makefile.am: changed to use libtool
1336
1337         * src/insets/.cvsignore: added *.lo, .libs and libinsets.la
1338
1339         * src/undo.[Ch] : added empty() and changed some of the method
1340         names.
1341         
1342         * src/texrow.[Ch]: rewrote to store texrow's in a std::list.
1343
1344         * src/lyxparagraph.h: use id() and id(...) instead of getID and
1345         setID use block<> for the bullets array, added const several places.
1346
1347         * src/lyxfunc.C (getStatus): new function
1348
1349         * src/lyxfunc.[Ch] : small changes to take advantage of the new
1350         LyXAction, added const to several funtions.
1351
1352         * src/filedlg.[Ch]: rewrote to store userchache and groupchache in
1353         a std::map, and to store the dir items in a vector.
1354
1355         * src/Makefile.am (lyx_DEPENDENCIES): changed to use libtool files
1356         as dependencies.
1357
1358         * src/LyXView.[Ch] + other files : changed currentView to view.
1359         
1360         * src/LyXAction.[Ch] : ported from the old devel branch.
1361         
1362         * src/.cvsignore: added .libs and a.out
1363
1364         * configure.in : changes to use libtool. 
1365
1366         * acinclude.m4 : inserted libtool.m4
1367
1368         * .cvsignore: added libtool
1369
1370 1999-11-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1371
1372         * src/Makefile.am (lyx_DEPENDENCIES): give the explicit object
1373         file name in insets and mathed directories (otherwise the
1374         dependency is not taken in account under cygwin).
1375
1376         * src/text2.C (InsertString[AB]): make sure that we do not try to
1377         read characters past the string length.
1378
1379 1999-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1380
1381         * lib/doc/LaTeXConfig.lyx.in, 
1382           lib/chkconfig.ltx: remove the test for linuxdoc-sgml.sty.
1383
1384         * src/buffer.C (writeFile): Do not add a comment on top of .lyx
1385         file saying who created them and when this heppened; this is
1386         useless and annoys tools like cvs.
1387
1388         * lib/layouts/g-brief-{en,de}.layout,
1389           lib/templates/g-brief-{en,de}.lyx: new versions of the textclass
1390         from Thomas Hartkens <thomas@hartkens.de>.
1391
1392         * src/{insets,mathed}/Makefile.am: do not declare an empty
1393         LDFLAGS, so that it can be set at configure time (useful on Irix
1394         for -n32 flag).
1395
1396         * lib/reLyX/configure.in: make sure that the prefix is set
1397         correctly in LYX_DIR.
1398
1399 1999-11-18  André Pönitz <poenitz@mathematik.tu-chemnitz.de>
1400
1401         * src/commandtags.h: introduction of a new tag 'LFUN_SEQUENCE' to
1402         be used by 'command-sequence' this allows to bind a key to a
1403         sequence of LyX-commands
1404         (Example: 'command-sequence math-insert alpha; math-insert beta;")
1405
1406         * src/LyXAction.C: add "command-sequence"
1407
1408         * src/LyXFunction.C: handling of "command-sequence"
1409
1410         * src/LyXFunction.[hC] changed LyXFunc::Dispatch(string const
1411          &cmd, string const &arg) to LyXFunc::Dispatch(string const& s)
1412
1413         * src/lyxserver.C, src/minibuffer.C: Use this new interface
1414
1415 1999-11-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1416
1417         * src/buffer.C (writeFile): Do not output a comment giving user
1418         and date at the beginning of a .lyx file. This is useless and
1419         annoys cvs anyway; update version number to 1.1.
1420
1421         * src/Makefile.am (LYX_DIR): add this definition, so that a
1422         default path is hardcoded in LyX.
1423
1424         * configure.in: Use LYX_GNU_GETTEXT.
1425
1426         * acinclude.m4 (LYX_GNU_GETTEXT): new macro, essentially a copy of
1427         AM_GNU_GETTEXT with a bug fixed. 
1428
1429         * src/lyx_cb.C (RunLinuxDoc): add a cast to please dec cxx.
1430
1431         * src/chset.C: add "using std::ifstream;" to please dec cxx.
1432
1433         * src/lyx_main.C (init), INSTALL.OS2: the environment variable
1434         which is used to point to LyX data is now LYX_DIR_11x.
1435
1436         * lyx.man: convert to a unix text file; small updates.
1437
1438 1999-11-15  Lars Gullik Bjønnes  <larsbj@lyx.org>
1439
1440         * src/support/LSubstring.[Ch]: made the second arg of most of the
1441         constructors be a const reference. 
1442
1443         * src/mathed/math_parser.C (LexInitCodes): small bug introduced by
1444         me fixed.
1445
1446         * src/support/lyxstring.[Ch] (swap): added missing member function
1447         and specialization of swap(str, str); 
1448
1449         * src/menus.C (ShowBufferMenu): to use the new BufferStorage
1450
1451         * src/bufferlist.[Ch]: use the new BufferStorage class and remove all
1452         trace of the old one.
1453
1454         * src/undo.[Ch]: made the undostack use std::list to store undo's in
1455         put the member definitions in undo.C.
1456
1457         * src/lyxparagraph.h, src/paragraph.C + a lot of files: removed
1458         NEW_TEXT and have now only code that was included when this was
1459         defined. 
1460
1461         * src/intl.C (LCombo): use static_cast
1462         (LCombo2): ditto
1463         (DispatchCallback): ditto
1464
1465         * src/definitions.h: removed whole file
1466         
1467         * src/commandtags.h: comment out LFUN_INSERT_INSET_LATEX
1468
1469         * src/chset.[Ch]: a lot rewritten, does not use lyxlex for cdef
1470         parsing and stores in a std:map. a regex defines the file format.
1471         removed unneeded members.
1472
1473         * src/bufferparams.h: added several enums from definitions.h here.
1474         Removed unsused destructor. Changed some types to use proper enum
1475         types. use block to have the temp_bullets and user_defined_bullets
1476         and to make the whole class assignable.
1477
1478         * src/bufferparams.C (Copy): removed this functions, use a default
1479         assignment instead. 
1480
1481         * src/buffer.h: made isLatex, isLinuxDoc, isDocBook, isSGML and
1482         isLiterate const.
1483
1484         * src/buffer.C (readLyXformat2): commend out all that have with
1485         oldpapersize to do. also comment out all that hve to do with
1486         insetlatex and insetlatexdel. 
1487         (setOldPaperStuff): commented out
1488
1489         * src/Makefile.am (lyx_SOURCES): remove definitions.h, add undo.C
1490
1491         * src/LyXAction.C: remove use of inset-latex-insert
1492
1493         * src/mathed/math_panel.C (button_cb): use static_cast
1494
1495         * src/insets/Makefile.am (insets_o_SOURCES): removed
1496         insetlatex.[Ch] 
1497
1498         * src/support/lyxstring.C (helper): use the unsigned long
1499         specifier, UL, instead of a static_cast.
1500
1501         * src/support/Makefile.am (libsupport_a_SOURCES): added block.h
1502
1503         * src/support/block.h: new file. to be used as a c-style array in
1504         classes, so that the class can be assignable.
1505
1506 1999-11-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1507
1508         * src/lyx_gui_misc.C (askForText): when fl_show_input() returns
1509         NULL, make sure to return an empty string (it is not possible to
1510         set a string to NULL).
1511
1512 1999-11-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1513
1514         * src/support/LRegex.C: use regex_t instead of re_pattern_buffer.
1515
1516         * src/support/lyxstring.C (helper): fix bogus cast in assertion.
1517
1518         * src/{mathed,insets}/Makefile.am (CXXLINK): add $(LDFLAGS) to the
1519         link line, so that Irix users (for example) can set it explicitely to
1520         "-n32".
1521         
1522         * src/Makefile.am (lyx_LDADD): use LYX_LIB as a variable, so that
1523         it can be overidden at make time (static or dynamic link, for
1524         example).
1525         
1526         * src/vc-backend.C, src/LaTeXFeatures.h, 
1527           src/support/LRegex.C, src/support/LRegex.h: add a few "using" 
1528         statements to bring templates to global namespace.
1529
1530 1999-11-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
1531
1532         * src/support/lyxstring.C (operator[] const): make it standard
1533         conforming. 
1534
1535         * src/minibuffer.C (Init): changed to reflect that more
1536         information is given from the lyxvc and need not be provided here.
1537
1538         * src/lyxvc.[Ch]: rewrote to use the vc-backend.
1539         
1540         * src/Makefile.am (lyx_SOURCES): add vc-backend.[Ch]
1541
1542         * src/LyXView.C (UpdateTimerCB): use static_cast
1543         (KeyPressMask_raw_callback): ditto
1544
1545         * src/BufferView.[Ch]: name change _owner -> owner_ and _buffer ->
1546         buffer_, a lot of changes because of this. currentBuffer() ->
1547         buffer(), setBuffer(...) -> buffer(...), getOwner() -> owner(),
1548         also changes to other files because of this.
1549
1550 1999-11-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
1551
1552         * src/vc-backend.[Ch]: new files. The backends for vc handling,
1553         have no support for RCS and partial support for CVS, will be
1554         improved later.
1555         
1556         * src/insets/ several files: changes because of function name
1557         changes in Bufferview and LyXView.
1558         
1559         * src/mathed/math_symbols.C (math_insert_symbol): use static_cast
1560
1561         * src/support/LSubstring.[Ch]: new files. These implement a
1562         Substring that can be very convenient to use. i.e. is this
1563         possible:
1564         string a = "Mary had a little sheep";
1565         Substring(a, "sheep") = "lamb";
1566         a is now "Mary has a little lamb".
1567
1568         * src/support/LRegex.[Ch]: a regex class that can be used to pick
1569         out patterns and subpatterns of strings. It is used by LSubstring
1570         and also by vc-backend.C
1571         
1572         * src/support/lyxstring.C: went over all the assertions used and
1573         tried to correct the wrong ones and flag which of them is required
1574         by the standard. some bugs found because of this. Also removed a
1575         couple of assertions.
1576
1577         * src/support/Makefile.am (libsupport_a_SOURCES): added
1578         LSubstring.[Ch] and LRegex.[Ch]
1579
1580         * src/support/FileInfo.h: have struct stat buf as an object and
1581         not a pointer to one, some changes because of this.
1582
1583         * src/LaTeXFeatures.C (getTClassPreamble): also use the
1584         information in layout when adding the layouts preamble to the
1585         textclass preamble.
1586
1587         * src/LaTeXFeatures.h: use a vector<bool> to store the layout
1588         usage in.
1589
1590         * configure.in (CPPFLAGS): use AC_CHECK_FUNCS to check for XOpenIM
1591         because of bug in OS/2.
1592
1593 1999-11-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1594
1595         * lib/layouts/lyxmacros.inc (lyxcode): set the font with
1596         \verbatim@font instead of \ttfamily, so that it can be redefined.
1597
1598         * src/BackStack.h, src/DepTable.C, src/DepTable.h, src/LaTeX.C,
1599           src/LaTeX.h, src/lastfiles.C, src/lastfiles.h, src/layout.C,
1600           src/layout.h, src/text2.C: add 'using' directive to bring the
1601         STL templates we need from the std:: namespace to the global one.
1602         Needed by DEC cxx in strict ansi mode.
1603
1604         * src/support/LIstream.h,src/support/LOstream.h,
1605           src/support/lyxstring.h,src/table.h,
1606           src/lyxlookup.h: do not include <config.h> in header
1607         files. This should be done in the .C files only.
1608
1609         * development/lyx.spec.in: WHATSNEW has been renamed to NEWS
1610         (from Kayvan).
1611         
1612
1613 1999-11-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1614
1615         * config/lib_configure.m4,lib/configure,lib/lyxrc.example: update
1616         from Kayvan to fix the tth invokation.
1617
1618         * development/lyx.spec.in: updates from Kayvan to reflect the
1619         changes of file names.
1620
1621 1999-11-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
1622
1623         * src/text2.C (InsertStringB): use std::copy
1624         (InsertStringA): use std::copy
1625
1626         * src/bufferlist.C: use a vector to store the buffers in. This is
1627         an internal change and should not affect any other thing.
1628         
1629         * src/BufferView.C (waitForX): use XSync instead of the lengthy
1630         stuff in waitForX.
1631
1632         * src/text.C (Fill): fix potential bug, one off bug.
1633
1634 1999-11-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
1635
1636         * src/Makefile.am (lyx_main.o): add more files it depends on.
1637
1638         * src/lyx_cb.C (addNewlineAndDepth): parameters in wrong order.
1639
1640         * src/support/lyxstring.C: use size_t for the reference count,
1641         size, reserved memory and xtra.
1642         (internal_compare): new private member function. Now the compare
1643         functions should work for std::strings that have embedded '\0'
1644         characters.
1645         (compare): all compare functions rewritten to use
1646         internal_compare.
1647         
1648 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
1649
1650         * src/support/lyxstring.C (compare): pass c_str()
1651         (compare): pass c_str
1652         (compare): pass c_str
1653
1654 1999-11-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1655
1656         * src/support/DebugStream.C: <config.h> was not included correctly.
1657
1658         * lib/configure: forgot to re-generate it :( I'll make this file
1659         auto generated soon.
1660
1661 1999-11-03  Lars Gullik Bjønnes  <larsbj@lyx.org>
1662
1663         * acinclude.m4 (cross_compiling): add -fpermissive when gcc 2.95.x
1664         is used.
1665
1666         * src/support/lyxstring.C: some changes from length() to rep->sz.
1667         avoids a function call.
1668
1669         * src/support/filetools.C (SpaceLess): yet another version of the
1670         algorithm...now per Jean-Marc's suggestions.
1671
1672 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
1673
1674         * src/layout.C (less_textclass_desc): functor for use in sorting
1675         of textclasses. 
1676         (LyXTextClass::Read): sort the textclasses after reading.
1677         
1678         * src/support/filetools.C (SpaceLess): new version of the
1679         SpaceLess functions. What problems does this one give? Please
1680         report.
1681
1682         * images/banner_bw.xbm: made the arrays unsigned char *
1683
1684 1999-11-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1685
1686         * src/support/lyxstring.C (find): remove bogus assertion in the
1687         two versions of find where this has not been done yet.
1688
1689         * src/support/lyxlib.h: add missing int return type to
1690         lyx::chdir(). 
1691
1692         * src/menus.C (ShowFileMenu): disable exporting to html if no
1693         html export command is present.
1694
1695         * config/lib_configure.m4: add a test for an HTML converter. The
1696         programs checked for are, in this order: tth, latex2html and
1697         hevea. 
1698
1699         * lib/configure: generated from config/lib_configure.m4.
1700
1701         * src/lyxfunc.C (Dispatch): update and improve the execution of an
1702         html converter. The parameters are now passed through $$FName and
1703         $$OutName, instead of standard input/output.
1704
1705         * src/lyxrc.{C,h}: rename \tth_command to \html_command.
1706
1707         * lib/lyxrc.example: update description of \html_command. 
1708         add "quotes" around \screen_font_xxx font setting examples to help
1709         people who use fonts with spaces in their names.
1710
1711 1999-11-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
1712
1713         * Distribution files: updates for v1.1.2
1714
1715         * src/support/lyxstring.C (find): remove bogus assert and return
1716         npos for the same condition.
1717
1718 1999-11-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
1719
1720         * added patch for OS/2 from SMiyata.
1721
1722 1999-10-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
1723
1724         * src/text2.C (CutSelection): make space_wrapped a bool
1725         (CutSelection): dont declare int i until we have to.
1726         (alphaCounter): return a char const *.
1727
1728 1999-10-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1729
1730         * src/support/syscall.C (Systemcalls::kill): 
1731           src/support/filetools.C (PutEnv, PutEnvPath): 
1732           src/lyx_cb.C (addNewlineAndDepth): 
1733           src/FontInfo.C (FontInfo::resize): condition some #warning
1734         directives with WITH_WARNINGS.
1735         
1736
1737 1999-10-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
1738
1739         * src/layout.[Ch] + several files: access to class variables
1740         limited and made accessor functions instead a lot of code changed
1741         becuase of this. Also instead of returning pointers often a const
1742         reference is returned instead.
1743         
1744         * src/form1.C (create_form_Figure): added a couple fo "no-c-format"
1745
1746         * src/Makefile.am (dist-hook): added used to remove the CVS from
1747         cheaders upon creating a dist
1748         (EXTRA_DIST): added cheaders
1749
1750         * src/support/lstrings.C (tostr(char)): fix it to handle param as
1751         a character not as a small integer. 
1752
1753         * src/support/lyxstring.C (find): removed Assert and added i >=
1754         rep->sz to the first if.
1755
1756 1999-10-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
1757
1758         * src/layout.[Ch] src/BufferView.C src/LaTeXFeatures.C
1759         src/LyXView.C src/buffer.C src/bufferparams.C
1760         src/lyx_cb.C src/lyxfunc.C src/paragraph.C src/text.C 
1761         src/text2.C src/insets/insetinclude.C:
1762         lyxlayout renamed to textclasslist.
1763
1764         * src/layout.C: some lyxerr changes.
1765
1766         * src/layout.[Ch] (LyXLayout::Read): changed second paramter to
1767         LyXTextClass. rewrote LT_COPYSTYLE, rewrote LT_OBSOLETEDBY
1768         (LyXLayoutList): removed all traces of this class.
1769         (LyXTextClass::Read): rewrote LT_STYLE
1770         (LyXTextClass::hasLayout): new function
1771         (LyXTextClass::GetLayout): rewritten to return an iterator + has
1772         both const and nonconst version.
1773         (LyXTextClass::delete_layout): new function.
1774         (LyXTextClassList::Style): bug fix. do the right thing if layout
1775         is to big.
1776         (LyXTextClassList::NumberOfLayout): new acces to layoutlist.
1777         (LyXTextClassList::NameOfLayout): ditto 
1778         (LyXTextClassList::Load): ditto
1779
1780         * src/buffer.C (makeLaTeXFile): new access to layoutlist
1781
1782         * src/LaTeXFeatures.C (getTClassPreamble): new access to layoutlist
1783
1784         * src/LyXAction.C (LookupFunc): added a workaround for sun
1785         compiler, on the other hand...we don't know if the current code
1786         compiles on sun at all...
1787
1788         * src/support/filetools.C (CleanupPath): subst fix
1789
1790         * src/insets/insetbib.C (delDatabase): subst fix, this looks
1791         _really_ weird.
1792
1793         * src/support/filetools.C (PutEnvPath): subst fix, how come nobody
1794         complained about this one?
1795
1796         * src/insets/insetinclude.C (Latex): subst fix
1797
1798         * src/insets/insetbib.C (getKeys): subst fix
1799
1800         * src/LyXSendto.C (SendtoApplyCB): subst fix
1801
1802         * src/lyx_main.C (init): subst fix
1803
1804         * src/layout.C (Read): subst fix
1805
1806         * src/lyx_sendfax_main.C (button_send): subst fix
1807
1808         * src/buffer.C (RoffAsciiTable): subst fix
1809
1810         * src/lyx_cb.C (MenuFax): subst fix
1811         (PrintApplyCB): subst fix
1812
1813 1999-10-26  Juergen Vigna  <jug@sad.it>
1814
1815         * src/table.C (TexEndOfCell) + (DocBookEndOfCell): removed some #if 0
1816
1817         (Read): Cleaned up this code so now we read only format vestion >= 5
1818
1819 1999-10-26  Lars Gullik Bjønnes  <larsbj@lyx.org>
1820
1821         * src/support/filetools.C (PutEnvPath): subst fix for EMX, how
1822         come nobody has complained about this one?
1823
1824         * src/insets/insetinclude.C (Latex): subst fix
1825
1826         * src/insets/insetbib.C (getKeys): subst fix
1827
1828         * src/lyx_main.C (init): subst fix
1829
1830         * src/layout.C (Read): subst fix
1831
1832         * src/buffer.C (RoffAsciiTable): subst fix
1833
1834         * src/lyx_cb.C (MenuFax): subst fix.
1835
1836         * src/layout.[hC] + some other files: rewrote to use
1837         std::container to store textclasses and layouts in.
1838         Simplified, removed a lot of code. Make all classes
1839         assignable. Further simplifications and review of type
1840         use still to be one. 
1841
1842         * src/menus.C (ShowFileMenu/ShowFileMenu2): Use the iterators from
1843         lastfiles to create the lastfiles partr of the menu.
1844
1845         * src/lastfiles.[Ch]: rewritten to use deque to store the
1846         lastfiles in. Uses fstream for reading and writing. Simplifies
1847         code.
1848
1849         * src/support/syscall.C: remove explicit cast.
1850
1851         * src/BufferView.C (CursorToggleCB): removed code snippets that
1852         were commented out.
1853         use explicat C++ style casts instead of C style casts. also use
1854         u_vdata instea of passing pointers in longs.
1855
1856         * src/PaperLayout.C: removed code snippets that were commented out.
1857
1858         * src/lyx_gui_misc.C: removed code snippets that were commented out. 
1859
1860         * src/lyx_main.C: removed code snippets that wer commented out.
1861
1862         * src/paragraph.C: removed code snippets that were commented out.
1863
1864         * src/lyxvc.C (logClose): use static_cast
1865         (logUpdate): ditto
1866         (viewLog): remove explicit cast to void*
1867         (showLog): removed old commented code
1868
1869         * src/menus.C: use static_cast instead of C style casts. use
1870         u_vdata instead of u_ldata. remove explicit cast to (long) for
1871         pointers. Removed old code that was commented out.
1872
1873         * src/insets/inset.C: removed old commented func
1874
1875         * src/insets/insetref.C (InsetRef): removed old code that had been
1876         commented out for a long time.
1877         (Edit): ditto
1878         (escape): removed C style cast
1879
1880         * src/insets/insetlatexaccent.C (Draw): removed old commented code
1881
1882         * src/insets/insetlatex.C (Draw): removed old commented code
1883         (Read): rewritten to use string
1884
1885         * src/insets/insetlabel.C (escape): removed C style cast
1886
1887         * src/insets/insetindex.h: removed vdata and ldata from FD_index_form
1888
1889         * src/insets/insetindex.C: use static_cast and u_vdata, removed
1890         old commented code.
1891
1892         * src/insets/insetinclude.h: removed a couple of stupid bools
1893
1894         * src/insets/insetinclude.C (include_cb): use static_cast and u_data.
1895         (Clone): remove C style cast
1896         (getKeys): changed list to lst because of std::list
1897
1898         * src/insets/inseterror.C (Draw): removed som old commented code.
1899
1900         * src/insets/insetcommand.C (Draw): removed some old commented code.
1901
1902         * src/insets/insetbib.C (bibitem_cb): removed code that has been
1903         commented out forever.
1904         (bibitem_cb): use static_cast instead of C style cast
1905         use of vdata changed to u_vdata.
1906
1907         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forward the data
1908         parameter.
1909         (CloseUrlCB): use static_cast instead of C style cast.
1910         (CloseUrlCB): added a fl_free form...it seemed to be missing.
1911
1912         * src/insets/insetinfo.C (Edit): pass object in u_vdata instead
1913         (C_InsetInfo_CloseInfoCB): forward the ob parameter
1914         (CloseInfoCB): static_cast from ob->u_vdata instead.
1915         (Edit): removed bogus arg from fl_set_object_shortcut, set to 1
1916         instead. 
1917
1918         * src/insets/inseterror.C (Edit): pass object in u_vdata instead
1919         (C_InsetError_CloseErrorCB): forward the ob parameter
1920         (CloseErrorCB): static_cast from ob->u_vdata instead.
1921
1922         * src/vspace.h: include LString.h since we use string in this class.
1923
1924         * src/vspace.C (lyx_advance): changed name from advance because of
1925         nameclash with stl. And since we cannot use namespaces yet...I
1926         used a lyx_ prefix instead. Expect this to change when we begin
1927         using namespaces.
1928
1929         * src/BufferView.[Ch] (BufferView::~BufferView): removed 
1930
1931         * src/BackStack.h: rewrote to use std::stack. made BackStackItem
1932         and removed now defunct constructor and deconstructor.
1933
1934         * src/BufferView.h: have backstack as a object not as a pointer.
1935         removed initialization from constructor. added include for BackStack 
1936
1937         * development/lyx.spec.in (%build): add CFLAGS also.
1938
1939         * src/screen.C (drawFrame): removed another warning.
1940
1941 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1942
1943         * renamed WHATSNEW to NEWS (usual GNU style), CHANGES to
1944         OLD-CHANGES (not used anymore) and modified INSTALL, INSTALL.OS2,
1945         README and ANNOUNCE a bit for the next release. More work is
1946         needed, of course.
1947
1948         * src/paragraph.C (SimpleTeXBlanks): spaces are automatically made
1949         unbreakable if we are in freespacing mode (LyX-Code), but not in
1950         latex mode.
1951
1952 1999-10-25  Lars Gullik Bjønnes  <larsbj@lyx.org>
1953
1954         * src/BackStack.h: fixed initialization order in constructor
1955
1956         * Makefile.am (MAINTAINERCLEANFILES): removed po/POTFILES.in
1957
1958         * acinclude.m4 (VERSION): new rules for when a version is
1959         development, added also a variable for prerelease.
1960         (warnings): we set with_warnings=yes for prereleases
1961         (lyx_opt): prereleases compile with same optimization as development 
1962         (CXXFLAGS): only use pedantic if we are a development version 
1963
1964         * src/BufferView.C (restorePosition): don't do anything if the
1965         backstack is empty.
1966
1967         * src/BackStack.h: added member empty, use this to test if there
1968         is anything to pop...
1969
1970 1999-10-25  Juergen Vigna  <jug@sad.it>
1971
1972         * forms/form1.fd +
1973         * forms/layout_forms.fd +
1974         * forms/latexoptions.fd +
1975         * lyx.fd: changed for various form resize issues
1976
1977         * src/mathed/math_panel.C +
1978         * src/insets/inseterror.C +
1979         * src/insets/insetinfo.C +
1980         * src/insets/inseturl.C +
1981         * src/insets/inseturl.h +
1982         * src/LaTeXLog.C +
1983         * src/LyXSendto.C +
1984         * src/PaperLayout.C +
1985         * src/ParagraphExtra.C +
1986         * src/TableLayout.C +
1987         * src/form1.C +
1988         * src/layout_forms.C +
1989         * src/lyx.C +
1990         * src/lyx_cb.C +
1991         * src/lyx_gui.C +
1992         * src/lyxfr0.C +
1993         * src/lyxfunc.C +
1994         * src/lyxvc.C +
1995         * src/menus.C: fixed various resize issues. So now forms can be
1996         resized savely or not be resized at all.
1997         
1998         * forms/form_url.fd +
1999         * src/insets/form_url.[Ch]: added because it's cleaner and easier
2000         to modify IMO.
2001
2002         * src/insets/Makefile.am: added files form_url.[Ch]
2003         
2004 1999-10-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2005
2006         * INSTALL: it is now possible to compile LyX with digital C++ 6.1
2007         (and presumably 6.2).
2008
2009         * src/{BufferView,LyXView,combox,filedlg,intl,lyxserver,lyxvc,
2010         menus,minibuffer,toolbar}.{C,h}: added C_xxx wrappers around
2011         remaining static member callbacks. 
2012
2013         * src/lyxfunc.C (Dispatch): Use _() instead of N_() fot minibuffer
2014         messages. 
2015
2016         * src/support/lyxstring.h: declare struct Srep as friend of
2017         lyxstring, since DEC cxx complains otherwise.
2018
2019 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
2020
2021 1999-10-24  Lars Gullik Bjønnes  <larsbj@lyx.org>
2022
2023         * src/LaTeX.C (run): made run_bibtex also depend on files with
2024         extension ".bst"
2025         (runBibTeX): added scans for "\\bibstyle", now also ".bst" files
2026         are put into the dependency file.
2027
2028         * src/spellchecker.C (create_ispell_pipe): removed old #warning,
2029         the code has shown itself to work
2030         (create_ispell_pipe): removed another warning, added a comment
2031         instead. 
2032
2033         * src/minibuffer.C (ExecutingCB): removed code that has been
2034         commented out a long time
2035
2036         * src/lyxfunc.C (processKeyEvent): removed some very old commented
2037         out code + a warning.
2038
2039         * src/support/lyxstring.h: comment out the three private
2040         operators, when compiling with string ansi conforming compilers
2041         they make problems.
2042
2043         * src/mathed/math_symbols.C (AddBitmap): change 6th arg to be
2044         unsigned char *.
2045         (pixmapFromBitmapData): change type of bdata to be unsigned char *
2046         (pixmapFromBitmapData): add a reinterpret_cast in the call to
2047         XCreateImage
2048
2049         * src/mathed/math_panel.h: change 6th arg to AddBitmap to be
2050         unsigned char *
2051
2052         * src/mathed/math_panel.C (create_math_panel): remove explicit
2053         casts
2054
2055         * src/bmtable.h: change last paramter to fl_set_bmtable_data to be
2056         unsigned char *.
2057
2058         * src/bmtable.C (struct BMTABLE_SPEC): make bdata unsigned char *
2059         (draw_bitmaptable): add a reinterpret_cast to sp->bdata in the call
2060         to XCreatePixmapFromBitmapData
2061         (fl_set_bmtable_data): change the last argument to be unsigned
2062         char *
2063         (fl_set_bmtable_file): change bdata to unsinged char *, change bw
2064         and bh to be unsigned int, remove explicit casts in call to
2065         XReadBitmapFileData.
2066
2067         * images/arrows.xbm: made the arrays unsigned char *
2068         * images/varsz.xbm: ditto
2069         * images/misc.xbm: ditto
2070         * images/greek.xbm: ditto
2071         * images/dots.xbm: ditto
2072         * images/brel.xbm: ditto
2073         * images/bop.xbm: ditto
2074
2075         * Makefile.am (MAINTAINERCLEANFILES): added po/POTFILES.in
2076
2077         * acinclude.m4 (LYX_GXX_STRENGHT_REDUCE): removed. 
2078         (LYX_PROG_CXX): added -pedantic to g++ compile options when
2079         with-warnings, removed the __STRING_ANSI__ hack, seems to not be
2080         needed. 
2081         (LYX_CXX_CHEADERS): added <clocale> to the test. 
2082
2083 1999-10-23  Lars Gullik Bjønnes  <larsbj@lyx.org>
2084
2085         * src/lyx_cb.C (addNewlineAndDepth): changed to use string::append.
2086
2087         * src/support/lyxstring.C (append): fixed something that must be a
2088         bug, rep->assign was used instead of rep->append.
2089
2090         * src/support/Makefile.am (libsupport_a_SOURCES): added LIstream.h
2091         and LOstream.h
2092
2093         * src/lyxfunc.C (processKeyEvent): removed faulty line that made
2094         lyx insert double chars. Fix spotted by Kayvan.
2095
2096 1999-10-23  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
2097
2098         * Fixed the tth support. I messed up with the Emacs patch apply feature
2099         and omitted the changes in lyxrc.C.
2100
2101 1999-10-22  Juergen Vigna  <jug@sad.it>
2102
2103         * src/insets/figinset.C (CallbackFig): Just changed the defines a bit.
2104
2105         * src/lyx_cb.C (MenuInsertRef) + 
2106         * src/lyx_gui.C (create_forms): Inserted fl_set_form_minsize so that
2107         the form cannot be resized under it limits (fixes a segfault)
2108         
2109         * src/lyx.C (create_form_form_ref) +
2110         * forms/lyx.fd: Changed Gravity on name input field so that it is
2111         resized correctly.
2112
2113 1999-10-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2114
2115         * configure.in: use LYX_CXX_STL_MODERN_STREAMS; check for headers
2116         <ostream> and <istream>.
2117         
2118         * acinclude.m4 (LYX_CXX_STL_MODERN_STREAMS): new test. Checks
2119         whether <fstream> provides the latest standard features, or if we
2120         have an oldstyle library (like in egcs).
2121         (LYX_CXX_STL_STRING): fix the test.
2122
2123         * src/support/DebugStream.{C,h}: use L{I,O}stream.h and condition the
2124         code on MODERN_STL_STREAM.
2125
2126         * src/support/lyxstring.h: use L{I,O}stream.h.
2127
2128         * src/support/L{I,O}stream.h: new files, designed to setup
2129         correctly streams for our use
2130           - includes the right header depending on STL capabilities
2131           - puts std::ostream and std::endl (for LOStream.h) or
2132           std::istream (LIStream.h) in toplevel namespace.
2133
2134 1999-10-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
2135
2136         * src/LaTeX.C (run): added a check in 0 sumchange so that if it
2137         was a bib file that had been changed we ensure that bibtex is run.
2138         (runBibTeX): enhanced to extract the names of the bib files and
2139         getting their absolute path and enter them into the dep file.
2140         (findtexfile): static func that is used to look for tex-files,
2141         checks for absolute patchs and tries also with kpsewhich.
2142         Alternative ways of finding the correct files are wanted. Will
2143         probably be moved.
2144         (do_popen): function that runs a command using popen and returns
2145         the whole output of that command in a string. Should be moved to
2146         somewhere else.
2147
2148         * src/DepTable.[Ch] (extchanged): new function that returns true if a
2149         file with extension ext has changed.
2150
2151         * src/insets/figinset.C: added ifdef guards around the fl_free
2152         code that jug commented out. Now it is commented out when
2153         compiling with XForms == 0.89.
2154
2155         * src/support/lyxstring.C: moved the definition of lyxstring::Srep
2156         to lyxstring.C, and only keep a forward declaration in
2157         lyxstring.h. Simplifies the header file a bit and should help a
2158         bit on compile time too. Also changes to Srep will not mandate a
2159         recompile of code just using string.
2160         (~lyxstring): definition moved here since it uses srep.
2161         (size): definition moved here since it uses srep.
2162
2163         * src/support/lyxstring.h: removed a couple of "inline" that should
2164         not be there.
2165
2166 1999-10-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2167
2168         * src/insets/inseturl.C (C_InsetUrl_CloseUrlCB): forgot to pass
2169         the 'ob' argument.
2170
2171 1999-10-21  Juergen Vigna  <jug@sad.it>
2172
2173         * src/table.C (SetPWidth): Just a small fix so the alignment is not
2174         set to left if I just remove the width entry (or it is empty).
2175
2176         * src/text2.C (SetCursorIntern): Fixed a bug calculating to use wrong
2177         paragraph when having dummy paragraphs.
2178
2179 1999-10-20  Juergen Vigna  <jug@sad.it>
2180
2181         * src/insets/figinset.C: just commented some fl_free_form calls
2182         and added warnings so that this calls should be activated later
2183         again. This avoids for now a segfault, but we have a memory leak!
2184
2185         * src/lyxfunc.C (processKeyEvent) (Dispatch): changed
2186         'const char * argument' to 'string argument', this should
2187         fix some Asserts() in lyxstring.C.
2188
2189         * src/lyxfunc.h: Removed the function argAsString(const char *)
2190         as it is not used anymore.
2191
2192 1999-10-20  Lars Gullik Bjønnes  <larsbj@lyx.org>
2193
2194         * src/support/lyxstring.C (getline): reads now _all_ chars. uses
2195         get instead of >>
2196
2197         * src/Literate.h: some funcs moved from public to private to make
2198         interface clearer. Unneeded args removed.
2199
2200         * src/Literate.C (scanLiterateLogFile): rewritten to use iostream
2201         instead of lyxlex.
2202         (scanBuildLogFile): ditto
2203
2204         * src/LaTeX.C (scanLogFile): merged LaTeX Error handling into
2205         normal TeX Error. Still room for improvement.
2206
2207         * src/LaTeX.[Ch]: removed scanError. Wrong place and not needed.
2208
2209         * src/buffer.C (insertErrors): changes to make the error
2210         desctription show properly.
2211
2212         * src/LaTeX.C (deplog): removed the test for file in lyx doc dir.
2213         could never happen
2214
2215         * src/support/lyxstring.C (helper): changed to use
2216         sizeof(object->rep->ref).
2217         (operator>>): changed to use a pointer instead.
2218
2219         * src/support/lyxstring.h: changed const reference & to value_type
2220         const & lets see if that helps.
2221
2222 1999-10-19  Lars Gullik Bjønnes  <larsbj@lyx.org>
2223
2224         * Makefile.am (rpmdist): fixed to have non static package and
2225         verison.
2226
2227         * src/support/lyxstring.C: removed the compilation guards
2228
2229         * src/vspace.C (nextToken): use i + 1  instead of ++i. Maks things
2230         a bit clearer.
2231
2232         * src/support/Makefile.am (LYXSTRING): bruker USE_LYXSTRING for
2233         conditional compile of lyxstring.Ch
2234
2235         * acinclude.m4 (LYX_CXX_STL_STRING): new and improved, still a
2236         stupid check, but it is a lot better than the bastring hack. 
2237         (LYX_CXX_STL_STRING): bruker nå AM_CONDITIONAL(USE_LYXSTRING  
2238
2239         * several files: changed string::erase into string::clear. Not
2240         really needed.
2241         
2242         * src/chset.C (encodeString): use a char temporary instead
2243
2244         * src/table.C (TexEndOfCell): added tostr around
2245         column_of_cell(fcell+i)+1 and around right_column_of_cell(fcell+i)+1
2246         (TexEndOfCell): ditto
2247         (TexEndOfCell): ditto
2248         (TexEndOfCell): ditto
2249         (DocBookEndOfCell): ditto
2250         (DocBookEndOfCell): ditto
2251         (DocBookEndOfCell): ditto
2252         (DocBookEndOfCell): ditto
2253
2254         * src/paragraph.C (TeXEnvironment): added tostr around foot_count -1
2255
2256         * src/lyxfr1.C (SearchReplaceAllCB): added tostr around replace_count
2257
2258         * src/lyx_cb.C (MenuRunLaTeX): added tostr around ret
2259         (MenuBuildProg): added tostr around ret
2260         (MenuRunChktex): added tostr around ret
2261         (DocumentApplyCB): added tostr around ret
2262
2263         * src/chset.C (encodeString): added tostr around t->ic
2264
2265         * src/buffer.C (makeLaTeXFile): added tostr around secnumdepth
2266         (makeLaTeXFile): added tostr around tocdepth
2267         (makeLaTeXFile): added tostr around ftcound - 1
2268
2269         * src/insets/insetbib.C (setCounter): added tostr around counter.
2270
2271         * src/support/lyxstring.h: added an operator+=(int) to catch more
2272         mistakes. 
2273
2274         * src/support/lyxstring.C (lyxstring): We DON'T allow NULL pointers.
2275         (lyxstring): We DON'T allow NULL pointers.
2276
2277 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2278
2279         * src/mathed/math_macro.C (MathMacroArgument::Write,
2280         MathMacroTemplate::WriteDef): add tostr() around macro arg numbers
2281         when writing them out.
2282
2283         * src/LString.C: remove, since it is not used anymore.
2284         
2285         * src/support/lyxstring.C: condition the content to
2286         USE_INCLUDED_STRING macro.
2287
2288         * src/mathed/math_symbols.C, src/support/lstrings.C,
2289         src/support/lyxstring.C: add `using' directive to specify what
2290         we need in <algorithm>. I do not think that we need to
2291         conditionalize this, but any thought is appreciated.
2292
2293         * many files: change all callback functions to "C" linkage
2294         functions to please strict C++ compilers like DEC cxx 6.1 in mode
2295         strict_ansi. Those who were static are now global. 
2296             The case of callbacks which are static class members is
2297         trickier, since we have to make C wrappers around them (see
2298         InsetError, InsetInfo and InsetUrl). The same holds for friends. I
2299         did not finish this yet, since it defeats the purpose of
2300         encapsulation, and I am not sure what the best route is.
2301
2302 1999-10-19  Juergen Vigna  <jug@sad.it>
2303
2304         * src/support/lyxstring.C (lyxstring): we permit to have a null
2305         pointer as assignment value and just don't assign it.
2306
2307         * src/vspace.C (nextToken): corrected this function substituting
2308         find_first(_not)_of with find_last_of.
2309
2310         * src/TableLayout.C (UpdateLayoutTable) (TableOptionsCB)
2311                 (TableOptCloseCB) (TableSpeCloseCB):
2312         inserted fl_set_focus call for problem with fl_hide_form() in
2313         xforms-0.89.
2314
2315 1999-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2316
2317         * src/lyx_cb.C (LayoutsCB): fix bug where int was added to a
2318         string. 
2319
2320 1999-10-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2321
2322         * src/lyxrc.C (Read): RC_PRINTEXSTRAOPTIONS now uses
2323         LyXLex::next() and not eatline() to get its argument.
2324
2325 1999-10-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
2326
2327         * src/DepTable.[Ch]: rewritten to store the dependencies in a map
2328         instead, use fstreams for io of the depfile, removed unneeded
2329         functions and variables. 
2330
2331         * src/LaTeX.[Ch] (class TeXErrors): rewrote to store the errors in a
2332         vector instead, removed all functions and variables that is not in
2333         use.
2334
2335 1999-10-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
2336
2337         * src/buffer.C (insertErrors): use new interface to TeXError
2338
2339         * Makefile.am (rpmdist): added a rpmdist target
2340
2341         * lib/reLyX/Makefile.am: added RelyxFigure.pm and Verbatim.pm as
2342         per Kayvan's instructions.
2343
2344 1999-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2345
2346         * src/Makefile.am: add a definition for localedir, so that locales
2347         are found after installation (Kayvan)
2348
2349 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
2350
2351         * development/.cvsignore: new file.
2352
2353 1999-10-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2354
2355         * acinclude.m4 (LYX_CXX_CHEADERS): New macro. Checks whether the
2356         C++ compiler provides wrappers for C headers and use our alternate
2357         version otherwise.
2358
2359         * configure.in: use LYX_CXX_CHEADERS.
2360
2361         * src/cheader/: new directory, populated with cname headers from
2362         libstdc++-2.8.1. They are a bit old, but probably good enough for
2363         what we want (support compilers who lack them).
2364         
2365         * src/insets/Makefile.am, src/mathed/Makefile.am: remove src/support
2366         from includes. It turns out is was stupid.
2367  
2368 1999-10-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
2369
2370         * lib/Makefile.am (install-data-local): forgot a ';'
2371         (install-data-local): forgot a '\'
2372         (libinstalldirs): needed after all. reintroduced.
2373
2374 1999-10-13  Lars Gullik Bjønnes  <larsbj@lyx.org>
2375
2376         * configure.in (AC_OUTPUT): added lyx.spec
2377
2378         * development/lyx.spec: removed file
2379
2380         * development/lyx.spec.in: new file
2381
2382         * po/*.po: merged with lyx.pot becuase of make distcheck
2383         
2384         * lib/Makefile.am (dist-hook): added dist-hook so that
2385         documentation files will be included when doing a make
2386         dist/distdir/distcheck. Requires cvs export -r HEAD lyxdoc to run.
2387         (pkgdata_SCRIPTS): added configure.cmd for now, we can use som
2388         conditional later.
2389         more: tried to make install do the right thing, exclude CVS dirs
2390         etc.
2391
2392         * src/LaTeXLog.C (ShowLatexLog): reordered som statements so that
2393         Path would fit in more nicely.
2394
2395         * all files that used to use pathstack: uses now Path instead.
2396         This change was a lot easier than expected.
2397         
2398         * src/support/path.h: new file
2399
2400         * src/support/Makefile.am (libsupport_a_SOURCES): added path.h
2401
2402         * src/Makefile.am (lyx_SOURCES): removed pathstack.[Ch]
2403
2404         * src/support/lyxstring.C (getline): Default arg was given for
2405         para 3. removed.
2406
2407         * Configure.cmd: removed file 
2408
2409 1999-10-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2410
2411         * src/support/DebugStream.[Ch]: remove the explicit std:: before
2412         streams classes and types, add the proper 'using' statements when
2413         MODERN_STL is defined.
2414         
2415         * src/debug.h: move the << operator definition after the inclusion
2416         of DebugStream.h
2417
2418         * src/support/filetools.C: include "LAssert.h", which is needed
2419         later. 
2420
2421         * src/insets/Makefile.am, src/mathed/Makefile.am: add src/support
2422         to includes. 
2423
2424         * src/lyxfont.h, src/commandtags.h, src/mathed/math_defs.h:
2425         include "debug.h" to define a proper ostream.
2426
2427 1999-10-12  Asger Alstrup Nielsen  <alstrup@alstrup.galaxy.dk>
2428
2429         * src/sys*: Cleaned up the Systemcall stuff a bit. Added "kill(int)"
2430           method to the SystemCall class which can kill a process, but it's
2431           not fully implemented yet.
2432
2433         * src/*.C: Changed Systemcalls::Startscript() to startscript()
2434
2435         * src/support/FileInfo.h: Better documentation  
2436
2437         * src/lyxfunc.C: Added support for buffer-export html
2438         
2439         * src/menus.C: Added Export->As HTML...
2440         
2441         * lib/bind/*.bind: Added short-cut for buffer-export html
2442
2443         * src/lyxrc.*: Added support for new \tth_command
2444         
2445         * lib/lyxrc.example: Added stuff for new \tth_command
2446
2447 1999-10-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
2448
2449         * lib/Makefile.am (IMAGES): removed images/README
2450         (pkgdata_SCRIPTS): use this instead of bin_SCRIPTS to that it
2451         installes in correct place. Check permisions is installed
2452         correctly.
2453
2454         * src/LaTeX.C: some no-op changes moved declaration of some
2455         variables around.
2456
2457         * src/LaTeX.h (LATEX_H): changed include guard name
2458
2459 1999-10-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2460
2461         * lib/reLyX/Makefile.am: install noweb2lyx.
2462
2463         * lib/Makefile.am: install configure. 
2464
2465         * lib/reLyX/configure.in: declare a config aux dir; set package
2466         name to lyx (not sure what the best solution is); generate noweb2lyx.
2467
2468         * lib/layouts/egs.layout: fix the bibliography layout.
2469
2470 1999-10-08  Jürgen Vigna <jug@sad.it>
2471
2472         * src/support/filetools.C (FileOpenSearch): Fixed a bug where
2473         when in the PATH was something like /usr/bin;;/bin (note: the ;;)
2474         it returned without continuing to search the path.
2475         
2476 1999-10-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
2477
2478         * src/insets/insetquotes.C (Draw): Simplified a gread deal. This
2479         also fixes a bug. It is not allowed to do tricks with std::strings
2480         like: string a("hei"); &a[e]; this will not give what you
2481         think... Any reason for the complexity in this func?
2482
2483 1999-10-06  Asger Alstrup Nielsen  <alstrup@diku.dk>
2484
2485         * Updated README and INSTALL a bit, mostly to check that my
2486         CVS rights are correctly set up.
2487
2488 1999-10-06  Lars Gullik Bjønnes  <larsbj@lyx.org>
2489
2490         * src/support/lyxstring.C (helper): removed bogus Assert. strlen
2491         does not allow '\0' chars but lyxstring and std::string does.
2492
2493 1999-10-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
2494
2495         * autogen.sh (AUTOCONF): let the autogen script create the
2496         POTFILES.in file too. POTFILES.in should perhaps now not be
2497         included in the cvs module.
2498
2499         * some more files changed to use C++ includes instead of C ones.
2500
2501         * src/filedlg.C (Reread): fixed a bug wrt Time. It was appended
2502         not assigned.
2503         (Reread): added tostr to nlink. buggy output otherwise.
2504         (Reread): added a string() around szMode when assigning to Buffer,
2505         without this I got a log of garbled info strings.
2506
2507         * acconfig.h: commented out the PTR_AS_INT macros. They should not
2508         be needed.
2509
2510         * I have added several ostream & operator<<(ostream &, some_type)
2511         functions. This has been done to avoid casting and warnings when
2512         outputting enums to lyxerr. This as thus eliminated a lot of
2513         explicit casts and has made the code clearer. Among the enums
2514         affected: kb_action, InsetLatexAccent::ACCENT_TYPE, a couple of
2515         mathed enums, some font enum the Debug::type enum. 
2516
2517         * src/support/lyxstring.h (clear): missing method. equivalent of
2518         erase(0, npos).
2519
2520         * all files that contained "stderr": rewrote constructs that used
2521         stderr to use lyxerr instead. (except bmtable)
2522
2523         * src/support/DebugStream.h (level): and the passed t with
2524         Debug::ANY to avoid spurious bits set.
2525
2526         * src/debug.h (Debug::type value): made it accept strings of the
2527         type INFO,INIT,KEY.
2528
2529         * configure.in (Check for programs): Added a check for kpsewhich,
2530         the latex generation will use this later to better the dicovery of
2531         all used files. 
2532
2533         * src/BufferView.C (create_view): we don't need to cast this to
2534         (void*) that is done automatically.
2535         (WorkAreaButtonPress): removed some dead code.
2536
2537 1999-10-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2538
2539         * src/minibuffer.C (Init): make sure that the "Welcome to LyX!"
2540         is not overwritten when translated (David Sua'rez de Lis).
2541
2542         * lib/CREDITS: Added David Sua'rez de Lis
2543
2544         * lib/reLyX/configure.in: setup LYX_DIR correctly in reLyX.
2545
2546         * src/bufferparams.C (BufferParams): default input encoding is now
2547         "latin1" 
2548
2549         * acinclude.m4 (cross_compiling): comment out macro
2550         LYX_GXX_STRENGTH_REDUCE. 
2551
2552         * acconfig.h: make sure that const is not defined (to empty) when
2553         we are compiling C++. Remove commented out code using SIZEOF_xx
2554         macros.
2555         
2556         * configure.in : move the test for const and inline as late as
2557         possible so that these C tests do not interefere with C++ ones.
2558         Remove the call to LYX_GXX_STRENGTH_REDUCE, since its usefulness
2559         has not been proven. 
2560
2561 1999-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2562
2563         * src/table.C (getDocBookAlign): remove bad default value for
2564         isColumn parameter.
2565
2566         * src/menus.C (ShowFileMenu): add a missing tostr() for lastfiles
2567         shortcut. 
2568         (ShowFileMenu2): ditto.
2569
2570         * lib/reLyX/.cvsignore: add configure and aclocal.m4 to the list
2571         of files to ignore.
2572
2573 1999-10-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
2574
2575         * Most files: finished the change from the old error code to use
2576         DebugStream for all lyxerr debugging. Only minor changes remain
2577         (e.g. the setting of debug levels using strings instead of number) 
2578
2579 1999-10-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
2580
2581         * src/layout.C (Add): Changed to use compare_no_case instead of
2582         strcasecmp.
2583
2584         * src/FontInfo.C: changed loop variable type too string::size_type.
2585
2586 1999-10-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
2587
2588         * src/support/Makefile.am: added -I${srcdir}/../ to INCLUDES and
2589         set ETAGS_ARGS to --c++ 
2590
2591 1999-09-30  Lars Gullik Bjønnes  <larsbj@lyx.org>
2592
2593         * src/table.C (DocBookEndOfCell): commented out two unused variables
2594
2595         * src/paragraph.C: commented out four unused variables. 
2596
2597         * src/lyx_cb.C (TocUpdateCB): moved variable i and added a new i
2598         insed a if clause with type string::size_type.
2599
2600         * src/lyxfr1.C (IsSearchStringInText): changed iSrch from int to
2601         string::size_type.
2602
2603         * src/lyxfunc.C (Dispatch): use string::size_type as loop variable.
2604
2605         * src/lyx_cb.C (ReplaceWord): use string::size_type as loop
2606         variable, also changed loop to go from 0 to lenght + 1, instead of
2607         -1 to length. This should be correct.
2608
2609         * src/LaTeX.C (scanError): use string::size_type as loop variable
2610         type.
2611
2612         * src/BufferView.C (WorkAreaButtonPress): moved #if 0 up two lines
2613         (l.896) since y_tmp and row was not used anyway.
2614
2615         * src/insets/insetref.C (escape): use string::size_type as loop
2616         variable type.
2617
2618         * src/insets/insetquotes.C (Width): use string::size_type as loop
2619         variable type.
2620         (Draw): use string::size_type as loop variable type.
2621
2622         * src/insets/insetlatexaccent.C (checkContents): use
2623         string::size_type as loop variable type.
2624
2625         * src/insets/insetlabel.C (escape): use string::size_type as loop
2626         variable type.
2627
2628         * src/insets/insetinfo.C: added an extern for current_view.
2629
2630         * src/insets/insetcommand.C (scanCommand): use string::size_type
2631         as loop variable type.
2632
2633         * most files: removed the RCS tags. With them we had to recompile
2634         a lot of files after a simple cvs commit. Also we have never used
2635         them for anything meaningful. 
2636
2637         * most files: tags-query-replace NULL 0. As adviced several plases
2638         we now use "0" instead of "NULL" in our code. 
2639
2640         * src/support/filetools.C (SpaceLess): use string::size_type as
2641         loop variable type.
2642
2643 1999-09-29  Lars Gullik Bjønnes  <larsbj@lyx.org>
2644
2645         * src/paragraph.C: fixed up some more string stuff.
2646
2647 1999-09-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
2648
2649         * src/support/filetools.h: make modestr a std::string.
2650
2651         * src/filetools.C (GetEnv): made ch really const.
2652
2653         * src/lyxlib.h: removed the Maximum and Minimum inline functions,
2654         made code that used these use max/min from <algorithm> instead.
2655
2656         * changed several c library include files to their equivalent c++
2657         library include files. All is not changed yet.
2658
2659         * created a support subdir in src, put lyxstring and lstrings
2660         there + the extra files atexit, fileblock, strerror. Created
2661         Makefile.am. edited configure.in and src/Makefile.am to use this
2662         new subdir. More files moved to support.
2663
2664         * imported som of the functions from repository lyx, filetools
2665         
2666         * ran tags-query-replace on LString -> string, corrected the bogus
2667         cases. Tried to make use of lstrings.[hC], debugged a lot. There
2668         is still some errors in there. This is errors where too much or
2669         too litle get deleted from strings (string::erase, string::substr,
2670         string::replace), there can also be some off by one errors, or
2671         just plain wrong use of functions from lstrings. Viewing of quotes
2672         is wrong. 
2673
2674         * LyX is now running fairly well with string, but there are
2675         certainly some bugs yet (see above) also string is quite different
2676         from LString among others in that it does not allow null pointers
2677         passed in and will abort if it gets any.
2678         
2679         * Added the revtex4 files I forgot when setting up the repository.
2680
2681 1999-09-27  Lars Gullik Bjønnes  <larsbj@lyx.org>
2682
2683         * All over: Tried to clean everything up so that only the files
2684           that we really need are included in the cvs repository.
2685         * Switched to use automake.
2686         * Generaton of reLyX is not perfect, LYX_DIR does not get substituted.
2687         * Install has not been checked.
2688
2689 1999-09-22  Lars Gullik Bjønnes  <larsbj@lyx.org>
2690
2691         * po/pt.po: Three errors:
2692                l.533 and l.538 format specification error
2693                l. 402 duplicate entry, I just deleted it.
2694