]> git.lyx.org Git - lyx.git/blob - src/ChangeLog
Juergen's compile fix
[lyx.git] / src / ChangeLog
1 2003-07-01  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
2
3         * aspell.C: add missing namespace lyx::support
4
5 2003-07-07  Alfredo Brauntein  <abraunst@libero.it>
6
7         * BufferView.[Ch] (newFile): Add
8         * BufferView_pimpl.[Ch] (newFile, connectBuffer, disconnectBuffer): Add
9         * LaTeX.[Ch] (message): added this signal and use it
10         * buffer.[Ch] (busy, message): added these signals and use them
11         * buffer_funcs.[Ch]: rename parseErrors to bufferErrors
12         * converter.C:
13         * exporter.C:
14         * format.C:
15         * importer.C: use buffer signals instead of direct bv calling
16         * lyx_cb.[Ch] (ShowMessage): removed
17         * lyx_main.C:
18         * lyxfunc.C:
19         * paragraph_funcs.C:
20         * text2.C: use buffer signals
21
22 2003-07-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
23
24         * introduce namespace lyx::graphics
25
26 2003-07-02  André Pönitz  <poenitz@gmx.net>
27
28         * BufferView_pimpl.C (workAreaDispatch): tell the FuncRequest who we are
29
30 2003-07-01  André Pönitz  <poenitz@gmx.net>
31
32         * text.C:
33         * text2.C:
34         * text3.C:
35         * text_funcs.[Ch]:
36         * textcursor.h:
37         * lyxtext.h: shuffle pure paragraph/cursor related cursor movement from
38           text*.C to text_func.C
39
40 2003-07-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
41
42         * introduce namespace lyx::support
43
44 2003-06-30  André Pönitz  <poenitz@gmx.net>
45
46         * Chktex.C:
47         * funcrequest.C:
48         * lyxtext.h:
49         * text.C: re-enable --with-included-string
50
51 2003-06-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
52
53         * textcursor.C: add <config.h>
54
55         * text.C (getWord): remove const from word_location arg
56
57         * lyxvc.C (getLogFile): fix const type order
58
59         * lyxtext.h: remove const from word_location arg, add arg name
60
61         * lyxlayout.h: currect type on labeltype.
62
63         * importer.C: correct \file
64
65         * converter.C (intToFormat): use std:: on ret val, ws changes
66
67         * bufferlist.h: correct \file
68
69         * buffer.C (makeLinuxDocFile): fix const type order
70         (makeDocBookFile): ditto
71         (fillWithBibKeys): use std:: on stdlib args.
72
73         * CutAndPaste.C: fix authors.
74         (availableSelections): use std:: on return vector
75
76 2003-06-27  André Pönitz  <poenitz@gmx.net>
77
78         * BufferView_pimpl.C:
79         * bufferview_funcs.C:
80         * lyxcursor.C:
81         * lyxcursor.h:
82         * lyxfunc.C:
83         * lyxtext.h:
84         * rowpainter.C:
85         * text.C:
86         * text2.C:
87         * text3.C: remove LyXCursor::row_ member
88
89         * lyxtext.h:
90         * text.C: rename fullRebreak() to partialRebreak() and implement
91           a fullRebreak() that really bereks fully
92
93         * textcursor.h: new struct for cursor-related data
94
95 2003-06-26  Alfredo Brauntein  <abraunst@lyx.org>
96
97         * lyx_main.C (LyX): get full path of document loaded on the
98         command line
99
100 2003-06-26  André Pönitz  <poenitz@gmx.net>
101
102         * lyxcursor.[Ch]: move rarely used operator==,!= out of line
103           remove unused/broken operator>,<,>=.
104
105         *       text.C: remove only use of broken operator<= in an Assert().
106
107 2003-06-24  Alfredo Brauntein  <abraunst@lyx.org>
108
109         * BufferView.[Ch] (getErrorList): removed unneeded forward declare,
110         moved errorlist_.clear to showErrorList
111
112 2003-06-24  Alfredo Brauntein  <abraunst@lyx.org>
113
114         * converter.C (scanLog, runLaTeX):
115         * buffer.C (makeLinuxDocFile, makeDocBookFile, runChkTeX):
116         move the bv->showErrorList call to the callers
117         * lyxfunc.C: i.e. here...
118         * text2.C: and here
119         * BufferView.[Ch] (setErrorList, resetErrorList): both removed
120         * exporter.[Ch] (Backends, BufferFormat): the first was moved to anon
121         namespace, the second to...
122         * buffer_funcs (BufferFormat, parseErrors): added
123         * errorlist.C (ErrorList(TeXErrors const &)): removed
124
125 2003-06-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
126
127         * ToolbarBackend.C (getIcon): complain when icon cannot be found
128
129 2003-06-24  "Garst R. Reese" <reese@isn.net>
130
131         * debug.C: fix typo
132
133 2003-06-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
134
135         * lyx_main.C (init): honor LYX_DIR_14x and LYX_USERDIR_14x
136
137         * version.C.in: change docversion to 1.4
138
139 2003-06-22  Alfredo Braunstein  <abraunst@libero.it>
140
141         * buffer.C: fix a bug just introduced
142
143 2003-06-21  Alfredo Braunstein  <abraunst@libero.it>
144
145         * buffer.[Ch]: added the parseError signal and use it, removed
146         sgmlError
147         * BufferView.[Ch] (addError): moved to ...
148         * BufferView_pimpl.[Ch] (addError, loadLyXFile): ... here. Attach
149         to the Buffer::parseError signal to catch (guess what) parse errors
150         * lyx_main.[Ch] (printError,LyX): added gui-less parsing error feedback
151
152 2003-06-19  Alfredo Braunstein  <abraunst@libero.it>
153
154         * bufferlist.[Ch] (loadLyXFile, readFile, newFile): removed the
155         ability to create a buffer and to return an existing one from
156         the list. Moved these functions to...
157         * buffer_funcs.[Ch]: added
158         * BufferView.[Ch] (loadLyXFile): added
159         * BufferView_pimpl.[Ch] (loadLyXFile): Added. Does the guessing
160         job removed from bufferlist::loadLyXFile.
161         * buffer.C (setReadOnly): make it work without view
162         (i.e added an if (users))
163
164 2003-06-19  Angus Leeming  <leeming@lyx.org>
165
166         * lfuns.h:
167         * LyXAction.C (init):
168         * lyxfunc.C (getStatus, dispatch): remove 14 LFUNs, replacing them
169         with LFUN_DIALOG_SHOW <name> <data>.
170
171 2003-06-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
172
173         * CutAndPaste.C (availableSelections): small compilation fix for
174         ancient (gcc 2.9x) compilers
175
176 2003-06-18  Lars Gullik Bjønnes  <larsbj@gullik.net>
177
178         * text3.C (cursorNext): add tmp var
179
180         * text2.C (updateCounters): for function calling out of for clause
181         (replaceSelectionWithString): ditto
182         (insertStringAsParagraphs): ditto
183         (getColumnNearX): add tmp var
184         (setCursorFromCoordinates): add tmp var
185         (cursorDownParagraph): add tmp var
186         (deleteEmptyParagraphMechanism): add tmp var
187
188         * text.C (insertChar): add tmp var
189
190         * rowpainter.C (paintDepthBar): add tmp var
191
192         * CutAndPaste.C (availableSelections): potentially check all
193         paragraphs in a cut to fill the shown strings.
194
195 2003-06-18  André Pönitz  <poenitz@gmx.net>
196
197         * kbmap.[Ch]: use vector<> instead of list<>
198
199 2003-06-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
200
201         * text3.C (dispatch): handle arg to LFUN_PASTE, call
202         pasteSelection with index
203
204         * text2.C (pasteSelection): modify, call pasteSelection with index
205
206         * paragraph.C (asString): reimplement version with no interval to
207         call the one with interval.
208
209         * lyxtext.h: add index arg to pasteSelection
210
211         * MenuBackend.C (MenuItem): handle PasteRecent
212         (Menu::read::Menutags): add md_pasterecent
213         (read): handle it
214         (expandPasteRecent): new function
215         (expand): use it
216
217         * MenuBackend.h: add PasteRecent to MenuItem::Kind
218
219         * CutAndPaste.C: get rid of some stale comments. Add typdefe for
220         the limited stack
221         (availableSelections): new function
222
223 2003-06-17  Angus Leeming  <leeming@lyx.org>
224
225         * lyxfunc.C (dispatch): s/showMathPanel/show("mathpanel")/
226
227 2003-06-17  Angus Leeming  <leeming@lyx.org>
228
229         * lfuns.h:
230         * LyXAction.C (init): new LFUN_DIALOG_SHOW.
231
232         * lyxfunc.C (dispatch): invoke it.
233
234 2003-06-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
235
236         * iterators.C (operator++, ParPosition): reintroduce some
237         const_cast for the benefit of older compilers.
238
239 2003-06-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
240
241         * text3.C (dispatch): do not modify clipboard when doing
242         LFUN_BACKSPACE, LFUN_BACKSPACE_SKIP, LFUN_DELETE or
243         LFUN_DELETE_SKIP on a selection selection
244
245 2003-06-16  André Pönitz  <poenitz@gmx.net>
246
247         * BufferView.C:
248         * buffer.C:
249         * buffer.h:
250         * paragraph.C:
251         * tabular.[Ch]: IU of clone() and getLabelList();
252
253 2003-06-13  André Pönitz  <poenitz@gmx.net>
254
255         * tabular.h: compactification
256
257 2003-06-12  André Pönitz  <poenitz@gmx.net>
258
259         * tabular.C:
260         * tabular.h:
261         * tabular_funcs.h: some renaming plus whitespace
262
263 2003-06-12  André Pönitz  <poenitz@gmx.net>
264
265         * BufferView.C:
266         * BufferView_pimpl.C:
267         * CutAndPaste.C:
268         * buffer.C:
269         * iterators.[Ch]:
270         * lyxfunc.C:
271         * text.C:
272         * toc.C: Return a Paragraph & for ParIterator::operator*()
273
274 2003-06-11  John Levon  <levon@movementarian.org>
275
276         * lyx_main.C:
277         * ToolbarBackend.h:
278         * ToolbarBackend.C: add "Toolbars" section and
279         put the flags there
280
281 2003-06-10  Angus Leeming  <leeming@lyx.org>
282
283         * lfuns.h:
284         * LyXAction.C (init): new LFUN_EXTERNAL_EDIT.
285
286         * lyxfunc.C (dispatch): invoke it.
287
288 2003-06-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
289
290         * main.C: protect <ios> with HAVE_IOS
291         (main): protect sync_with_stdio with HAVE_IOS
292
293 2003-06-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
294
295         * text2.C (cutSelection): adjust
296         (pasteSelection): adjust
297
298         * messages.C: handle get of empty string
299
300         * main.C (main): use sync_with_stdio(false)
301
302         * lyxfunc.C (dispatch): adjust
303
304         * lyx_cb.[Ch] (MenuWrite): remove unneeded BufferView arg
305         (WriteAs): remove unneeded BufferView arg.
306
307         * bufferparams.h: use correct types on papersize, papersize2 and
308         paperpackage.
309
310         * bufferparams.C (readToken): adjust for type
311         (writeLaTeX): add missing cases to switch.
312
313         * bufferlist.C (quitWriteBuffer): adjust
314         (close): adjust
315
316         * buffer.C (asciiParagraph): remove some commented code.
317
318         * CutAndPaste.C: remove current_view extern variable.
319         (cutSelection): add BufferParams arg.
320         (eraseSelection): add BufferParams arg.
321         (pasteSelection): add Buffer const & arg
322
323 2003-06-07  John Levon  <levon@movementarian.org>
324
325         * buffer.C:
326         * paragraph_funcs.C:
327         * paragraph_pimpl.C:
328         * text.C:
329         * text2.C:
330         * paragraph.h:
331         * paragraph.C: allow InsetERT to freely space lines,
332         and some consolidation of code
333
334 2003-06-06  José Matos  <jamatos@fep.up.pt>
335
336         * buffer.C (makeDocBookFile): fix bug #821
337
338 2003-06-06  Alfredo Braunstein  <abraunst@libero.it>
339
340         * BufferView_pimpl.C (dispatch): use Dialogs::visible
341
342 2003-06-04  Angus Leeming  <leeming@lyx.org>
343
344         * buffer.C: bump format to 224.
345
346 2003-06-05  André Pönitz  <poenitz@gmx.net>
347
348         * text2.C (redoParagraphs): remove two const_cast<>
349
350 2003-06-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
351
352         * ParagraphList.h: remove last remnants of NO_STD_LIST
353
354 2003-06-03  Angus Leeming  <leeming@lyx.org>
355
356         * factory.C (createInset): small change to the way InsetExternal's params
357         are set.
358
359 2003-06-04  André Pönitz  <poenitz@gmx.net>
360
361         * buffer.h: use Undo directly instead of shared_ptr<Undo>
362
363         * paragraph_pimpl.h:
364         * paragraph.[Ch]: some Inset -> UpdatableInset changes
365
366         * undo.[Ch]: use ParagraphList instead of vector<Paragraph>
367
368         * undo_funcs.C: make some simple cases of undo work again
369
370 2003-06-03  John Levon  <levon@movementarian.org>
371
372         * ispell.C: HPUX doesn't have sys/select.h
373         (from Albert Chin)
374
375 2003-06-03  John Levon  <levon@movementarian.org>
376
377         * CutAndPaste.C: update tabular and include inset
378         buffer references
379
380         * buffer.h:
381         * paragraph.h:
382         * paragraph.C: remove owningBuffer(), don't pass Buffer
383         to clone()
384
385         * factory.C: insetGraphicsParams changed
386
387 2003-06-02  John Levon  <levon@movementarian.org>
388
389         * LyXAction.C:
390         * factory.C:
391         * lfuns.h:
392         * lyxfunc.C:
393         * text3.C: remove insetparent
394
395 2003-06-02  John Levon  <levon@movementarian.org>
396
397         * buffer.h:
398         * buffer.C: fix inset_iterator.end(), move out of line
399         (bug 1149)
400
401 2003-06-01  John Levon  <levon@movementarian.org>
402
403         * text3.C: use a proper cut/paste when doing inset
404         insert (from Jürgen Spitzmüller)
405
406 2003-06-01  John Levon  <levon@movementarian.org>
407
408         * factory.C: accept "\bibtex" not "\BibTeX" (bug 1018)
409
410 2003-05-30  André Pönitz  <poenitz@gmx.net>
411
412         * rowpainter.C: unify second drawing phase
413
414 2003-05-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
415
416         * trans_mgr.C: remove one case of current_view
417
418         * text2.C (cursorBottom): delete NO_STD_LIST stuff
419
420         * paragraph_funcs.h: remove paragraph.h include
421
422         * paragraph.h: delete NO_STD_LIST stuff
423
424         * paragraph.C (Paragraph): delete NO_STD_LIST stuff
425
426         * buffer.h: remove paragraph.h include
427
428         * ParagraphList.C: delete file
429
430         * Makefile.am (lyx_SOURCES): remove ParagraphList.C
431
432         * toc.C (getTocList): adjust
433
434         * paragraph_pimpl.C (validate): adjust
435
436         * paragraph_funcs.C (optArgInset): use const_iterator, adjust
437
438         * paragraph.C (Paragraph): adjust
439         (getPositionOfInset): use const_iterator, adjust
440         (bibitem): use const_iterator, adjust
441         (setInsetOwner): adjust
442
443         * iterators.C (operator++): adjust
444
445         * InsetList.[Ch]: Replace selfmade iterator with standard
446         vector::iterator also introduce const_iterator. Remove getPos,
447         getInset and setInset from InsetTable. Adjust accordingly.
448
449         * BufferView.C (lockInset): adjust
450         (ChangeInsets): adjust
451
452         * tabular.[Ch]: delete commented same_id functions
453
454 2003-05-28  John Levon  <levon@movementarian.org>
455
456         * lyxfunc.C: fix LFUN_ESCAPE (bug 1055)
457
458 2003-05-28  André Pönitz  <poenitz@gmx.net>
459
460         * metricsinfo.[Ch]: remove 'fullredraw' member
461
462 2003-05-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
463
464         * lyxtextclass.C (operator): remove caching.
465
466 2003-05-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
467
468         * text3.C: adjust
469
470         * text2.C (cursorBottom): adjust
471         (setCounter): use ParagraphList::find, adjust
472
473         * text.C (workWidth): use ParagraphList::find, adjust
474
475         * lyxcursor.C (LyXCursor): adjust
476
477         * buffer.C (inset_iterator): adjust
478
479         * ParagraphList.h: make iterator(value_type) private, make
480         ParagraphList a friend of iterator.
481
482         * ParagraphList.C (find): new function
483
484         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
485
486 2003-05-27  André Pönitz  <poenitz@gmx.net>
487
488         * dimension.[Ch]: a -> asc, d -> des, w -> wid
489
490 2003-05-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
491
492         * lyxfont.C (latexWriteStartChanges): fix character count for \noun
493
494 2003-05-26  John Levon  <levon@movementarian.org>
495
496         * LyXAction.C: LFUN_ESCAPE should be ReadOnly
497
498 2003-05-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
499
500         * remove same_id from function signatures, adjust.
501
502 2003-05-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
503
504         * undo_funcs.C (createUndo): use the id functions directly, adjust.
505
506         * paragraph_pimpl.C (Pimpl): get rid of same_ids parameter
507
508         * paragraph.C (Paragraph): get rid of same_ids parameter
509
510         * ParagraphList.C (insert): adjust
511         (push_back): adjust
512
513 2003-05-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
514
515         * paragraph_funcs.C (breakParagraph): adjust
516         (breakParagraphConservative): adjust
517
518         * buffer.C (readParagraph): adjust
519
520         * ParagraphList.C (insert): take a reference instead of a pointer
521         (insert): adjust
522
523         * paragraph.[Ch] (id): new function
524
525         * bufferlist.C (newFile): adjust
526
527         * ParagraphList.C (ParagraphList): adjust
528         (assign): adjust
529         (push_back): take a reference instead of a pointer.
530
531         * paragraph.h: add NO_STD_LIST define, remove NO_NEXT define.
532
533         * paragraph.C: remove all NO_NEXT node add some NO_STD_LIST parts
534         instead.
535
536         * ParagraphList.h: degenerate to std::list if NO_STD_LIST is not
537         set else use old code.
538
539         * ParagraphList.C: remove all NO_NEXT code and only compile this
540         code of NO_STD_LIST is set.
541
542 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
543
544         * BufferView_pimpl.C:
545         * TextCache.C:
546         * TextCache.h:
547         * bufferlist.C:
548         * errorlist.h:
549         * format.C:
550         * format.h:
551         * graph.C:
552         * lyxfunc.C:
553         * lyxrc.C:
554         * graphics/GraphicsConverter.C:
555         * graphics/PreviewLoader.C: header adjustment
556
557 2003-05-23  Angus Leeming  <leeming@lyx.org>
558
559         * LaTeXFeatures.[Ch] (useBabel): new method.
560         * bufferparams.C (writeLaTeX): use it.
561
562 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
563
564         * ParagraphList.h (set): remove unused function.
565
566 2003-05-23  André Pönitz  <poenitz@gmx.net>
567
568         * BufferView.C:
569         * BufferView_pimpl.C:
570         * buffer.C:
571         * buffer.h:
572         * lyxfunc.C:
573         * undo_funcs.C: setUndo reworked
574
575         * iterators.[Ch]: add access to topmost ParagraphList
576
577         * lyxtext.[Ch] (workWidth): add a const
578
579 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
580
581         * texrow.[Ch] (increasePos): remove function
582         * exporter.C (export): removed unused var and outdated comment
583
584 2003-05-23  Angus Leeming  <leeming@lyx.org>
585
586         * latexrunparams.h: rename fragile as moving_arg.
587         * paragraph.C (simpleTeXOnePar): ditto.
588         * paragraph_pimpl.C (simpleTeXSpecialChars): ditto.
589
590 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
591
592         * undo_funcs.C (textHandleUndo): comment out next/previous stuff
593         (createUndo): ditto
594         (textUndoOrRedo): comment out a currently unused var.
595
596         * paragraph.h (NO_NEXT): enable NO_NEXT
597
598         * lyxfunc.C (dispatch): remove LFUN_REMOVEERRORS
599
600         * lfuns.h: remove LFUN_REMOVEERRORS and adjust lfun numbers.
601
602         * exporter.C (Export): adjust for removeAutoInsets removal.
603
604         * buffer.C (runChktex): adjust for removeAutoInsets removal.
605
606         * LyXAction.C (init): remove LFUN_REMOVEERRORS
607
608         * BufferView.[Ch] (removeAutoInsets): delete function
609
610 2003-05-22  Angus Leeming  <leeming@lyx.org>
611
612         * latexrunparams.h: add a free_spacing variable.
613
614         * paragraph.[Ch] (simpleTeXOnePar): further fragile clean-up; no need
615         to pass moving_arg, as the data is stored in runparams.fragile.
616
617         * paragraph_funcs.C (TeXOnePar): no longer pass free_spacing arg
618         to Inset::latexOptional or to simpleTeXOnePar.
619
620         * paragraph_pimpl.C (simpleTeXSpecialChars): no longer pass
621         free_spacing arg to Inset::latexOptional.
622
623         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
624         free_spacing arg.
625
626 2003-05-22  Angus Leeming  <leeming@lyx.org>
627
628         * latexrunparams.h: add fragile and use_babel variables.
629
630         * bufferparams.[Ch] (writeLaTeX): return use_babel.
631         * buffer.C (makeLaTeXFile): store this returned value in
632         runparams.use_babel, thus passing it to the inset::latex methods.
633
634         * paragraph.C (simpleTeXOnePar): no need to pass 'moving_arg' to
635         simpleTeXSpecialChars as it is now stored in runparams.fragile.
636
637         * paragraph_funcs.[Ch] (TeXOnePar, latexParagraphs): TeXOnePar no
638         longer has a fragile arg, as it is stored in runparams.fragile.
639
640         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars): no longer has a
641         moving_arg parameter as the data is stored in runparams.fragile.
642
643         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
644         a fragile parameter as the data is stored in runparams.fragile.
645
646 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
647
648         * paragraph.C (Paragraph): initialize next_par_ and prev_par_
649
650 2003-05-22  Angus Leeming  <leeming@lyx.org>
651
652         * latexrunparams.h: add a 'bool nice' which defaults to false.
653
654         * buffer.[Ch] (makeLaTeXFile): remove the nice parameter as it is
655         now encapsulated within runparams.
656
657         * bufferlist.C (updateIncludedTeXfiles):
658         * exporter.C (Export): ensuing change to the calls to makeLaTeXFile.
659
660 2003-05-22  Angus Leeming  <leeming@lyx.org>
661
662         * latexrunparams.h: new file containing struct LatexRunParams.
663         * Makefile.am: add new file.
664
665         * LaTeX.[Ch] (c-tor, run):
666         * buffer.[Ch] (makeLaTeXFile):
667         * bufferlist.[Ch] (updateIncludedTeXfiles):
668         * converter.C (convert, scanLog):
669         * converter.[Ch] (runLaTeX):
670         * exporter.C (Export):
671         * paragraph.[Ch] (simpleTeXOnePar):
672         * paragraph_funcs.C (TeXEnvironment, TeXOnePar, TeXDeeper):
673         * paragraph_funcs.[Ch] (latexParagraphs):
674         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars):
675         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow, latex):
676         pass around a LatexRunParams parameter.
677
678 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
679
680         * paragraph.[Ch]: remove unused constructor
681
682         * ParagraphList.C (erase): new function, taking two iterators
683
684 2003-05-22  André Pönitz  <poenitz@gmx.net>
685
686         * undo_funcs.C: remove duplicated code
687
688         * iterator.[Ch]: operator=
689
690 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
691
692         * tabular.C (SetMultiColumn): ws changes
693
694         * rowpainter.C (paintFirst): get rid of a ->previous
695
696         * lyx_cb.C (getPossibleLabel): parlist simplification
697
698         * BufferView.C (ChangeInsets): simplify slightly.
699
700 2003-05-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
701
702         * LyXAction.C: new lfun space-insert, kill protected-space-insert
703         * lfuns.h: new LFUN_SPACE
704         * lyxfunc.C: protected space has a new lfun
705         * paragraph_funcs.C: read new space insets
706         * text3.C:
707         * factory.C: handle new space insets
708
709 2003-05-22  André Pönitz  <poenitz@gmx.net>
710
711         * BufferView.C:
712         * BufferView_pimpl.C:
713         * buffer.[Ch]:
714         * lyxfunc.C:
715         * undo_funcs.C: return a ParIterator from getParFromID.
716
717         * iterators.[Ch]: add two const's
718
719 2003-05-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
720
721         * toc.C (getTocList): adjust
722
723         * iterators.[Ch]: rework for parlist
724
725         * buffer.C (par_iterator_begin): adjust
726         (par_iterator_end): adjust
727
728         * CutAndPaste.C (SwitchLayoutsBetweenClasses): adjust
729
730         * BufferView.C (removeAutoInsets): adjust
731         (ChangeInsets): adjust
732
733 2003-05-21  Alfredo Braunstein  <abraunst@libero.it>
734
735         * text.C (top_y): fix bug 1110
736
737 2003-05-08  Alfredo Braunstein  <abraunst@libero.it>
738
739         * errorlist.[Ch]: added
740         * buffer.C:
741         * BufferView.[Ch]:
742         * BufferView_pimpl.C:
743         * CutAndPaste.[Ch]: get rid of InsetError users, use ErrorList
744         instead
745
746 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
747
748         * Makefile.am: ensure that lyx is relinked upon changes to the
749         various "convenience" libs.
750
751 2003-05-20  Angus Leeming  <leeming@lyx.org>
752
753         * Makefile.am (lyx_SOURCES): move format.[Ch] and graph.[Ch] so that
754         files are compiled in alphabetical order again.
755
756         * gettext.h: #ifndef _GETTEXT_H_ -> #ifndef GETTEXT_H.
757
758 2003-05-19  Angus Leeming  <leeming@lyx.org>
759
760         * gettext.[Ch]: remove "char const * _(char const *)".
761
762 2003-05-19  André Pönitz  <poenitz@gmx.net>
763
764         * dimension.[Ch]: promote from mathed/dimension.[Ch]
765
766         * Makefile.am:
767         * BufferView.C:
768         * DepTable.h:
769         * LaTeXFeatures.C:
770         * buffer.C:
771         * lyxfont.C:
772         * lyxlex.h:
773         * paragraph_funcs.C: dimensions() instead of ascend/descend/width
774
775 2003-05-19  André Pönitz  <poenitz@gmx.net>
776
777         * buffer.C:
778         * lyxlayout.[Ch]:
779         * lyxtextclass.[Ch]:
780         * paragraph.C:
781         * paragraph_funcs.[Ch]:
782         * text2.C:
783         * text3.C: more insetenv work
784
785 2003-05-16  Alfredo Braunstein  <abraunst@libero.it>
786
787         * ParagraphParameters.C (params2string): small bug fixed
788
789 2003-05-16  André Pönitz  <poenitz@gmx.net>
790
791         * debug.C:
792         * bufferview_funcs.C: patch from Kornel Benko to prevent
793           crash when _(...) is called twice in a statement
794
795 2003-05-16  André Pönitz  <poenitz@gmx.net>
796
797         * BufferView.C:
798         * lyxfunc.C:
799         * text.C:
800         * text2.C:
801         * text3.C:
802         * undo_funcs.C: edit() -> LFUN_INSET_EDIT
803
804 2003-05-14  Alfredo Braunstein  <abraunst@libero.it>
805
806         * lyx_main.C (init): remove spurious static_cast
807
808 2003-05-14  André Pönitz  <poenitz@gmx.net>
809
810         * BufferView.C: fix format string
811
812 2003-05-12  Alfredo Braunstein  <abraunst@libero.it>
813
814         * BufferView.[Ch] (insertErrors): removed
815         * BufferView.[Ch] (showErrorList): added
816         * buffer.C (runChkTeX):
817         * converter.C (scanLog): call showErrorList instead of inserterrors
818
819 2003-05-13  André Pönitz  <poenitz@gmx.net>
820
821         * BufferView_pimpl.C:
822         * buffer.C:
823         * bufferview_func.C:
824         * MenuBackend.C:
825         * lyxfunc.C:
826         * lyxrc.C:
827         * tex-accent.C:
828         * text3.C:
829         * toc.C:
830         * tabular_funcs.h: tostr() from its own header
831
832         * ParagraphParameters.C:
833         * ToolbarBackend.C:
834         * bufferparams.C:
835         * format.C:
836         * lyxlex_pimpl.C:
837         * text3.C: STRCONV()
838
839 2003-05-12  André Pönitz  <poenitz@gmx.net>
840
841         * BufferView.C:
842         * BufferView_pimpl.C:
843         * CutAndPaste.C:
844         * LaTeX.C:
845         * LaTeXFeatures.C:
846         * ParagraphParameters.C:
847         * buffer.C:
848         * bufferlist.C:
849         * bufferparams.C:
850         * bufferview_funcs.C:
851         * converter.C:
852         * counters.C:
853         * debug.C:
854         * exporter.C:
855         * format.C:
856         * importer.C:
857         * lyx_cb.C:
858         * lyx_main.C:
859         * lyxfont.C:
860         * lyxfunc.C:
861         * lyxvc.C:
862         * paragraph.C:
863         * paragraph_funcs.C:
864         * tabular.C:
865         * tabular_funcs.C:
866         * text2.C:
867         * text3.C:  boost::format -> bformat  all over the place
868
869
870 2003-05-09  André Pönitz  <poenitz@gmx.net>
871
872         * LColor.[Ch]: Pimpl the #include <map> away
873
874 2003-05-09  John Levon  <levon@movementarian.org>
875
876         * bufferlist.C: never remove emergency saves
877
878 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
879
880         * Makefile.am: better lib building
881
882 2003-05-07  Lars Gullik Bjønnes  <larsbj@gullik.net>
883
884         * texrow.[Ch]: remove dependency on Paragraph and just store a id
885         instead.
886         * paragraph_pimpl.C (simpleTeXBlanks): adjust
887         (simpleTeXSpecialChars): adjust
888         (simpleTeXSpecialChars): adjust
889         * paragraph.C (simpleTeXOnePar): adjust
890         * buffer.C (makeLaTeXFile): adjust
891
892         * Makefile.am (BOOST_LIBS): allow boost as system lib.
893
894         * text2.C (changeDepth): parlist cleanup
895         (getColumnNearX): ditto
896
897         * rowpainter.C (getLabelFont): parlist cleanup
898
899         * bufferlist.C (newFile): parlist cleanup
900
901         * CutAndPaste.C (eraseSelection): parlist cleanup
902
903         * BufferView_pimpl.C (trackChanges): parlist cleanup
904         (dispatch): ditto
905
906         * BufferView.C (lockInset): parlist cleanup.
907         (ChangeInsets): ditto
908
909 2003-05-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
910
911         * CutAndPaste.h: Update file header.
912
913         * CutAndPaste.C: Update file header.
914         Store the parts cut out of the Document in a limited_stack.
915         (copySelection): adjust
916         (pasteSelection): new function, takes the index in the limited stack.
917         (nrOfParagraphs): adjust
918         (SwitchLayoutsBetweenClasses): Change to take a ParagraphList&,
919         simplify error inset insertion.
920         (checkPastePossible): adjust
921
922 2003-05-06  John Levon  <levon@movementarian.org>
923
924         * text2.C: don't cast wrap inset to float
925
926 2003-05-05  André Pönitz  <poenitz@gmx.net>
927
928         * iterator.C:
929         * undo_funcs.C: use getParagraphs() instead of getFirstParagraph()
930
931         * buffer.[Ch]: new function hasParWithId() to help to get rid of a
932           few naked Paragraph *.
933
934 2003-05-02  Michael Schmitt  <michael.schmitt@teststep.org>
935
936         * bufferparams.C: Output warning if a document with missing
937         TeX document class is loaded
938         * exporter.C: Disable TeX exports if the document class is missing
939         * lyxtextclass.C:
940         * lyxtextclass.h:
941         * lyxtextclasslist.C: Handle new textclass.lst format; new method
942         isTeXClassAvailable()
943
944 2003-05-03  John Levon  <levon@movementarian.org>
945
946         * BufferView.h:
947         * BufferView.C: remove showLockedInsetCursor(), showCursor(),
948         explicit cursor show/hide
949
950         * BufferView_pimpl.h:
951         * BufferView_pimpl.C: hide cursor before dispatching. Show cursor
952         after a cursor move lfun. Simplify cursorToggle(). Remove show/hideCursor().
953
954         * lyxfunc.C: hide cursor before dispatching.
955
956         * lyx_cb.C:
957         * lyxfind.C:
958         * text.C:
959         * text3.C: remove explicit cursor hides
960
961 2003-05-02  André Pönitz  <poenitz@gmx.net>
962
963         * buffer.[Ch]: two instances of Paragraph * -> ParagraphList::iterator
964
965         * undo_funcs.C:
966         * undo.[Ch]: rely on std::vector<Paragraph *> instead of manually
967           linked lists
968
969         * text2.C: tiny whitespace
970
971 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
972
973         * undo_funcs.C: almost only ws changes.
974
975         * ParagraphList.C (splice): just return if pl is empty.
976
977 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
978
979         * ParagraphList.C (splice): new function.
980
981         * CutAndPaste.C (pasteSelection): use it
982
983 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
984
985         * CutAndPaste.C (pasteSelection): remove the last next and
986         previous from this file.
987
988 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
989
990         * CutAndPaste.C (pasteSelection): more clean up, user proper
991         ParagraphList functions for pasteing.
992
993         * ParagraphList.C (insert): new function, three arg insert
994
995 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
996
997         * ParagraphList.C (insert): new function, three arg insert
998
999         * CutAndPaste.C (pasteSelection): work on the simple_cut_clone,
1000         not on paragraphs.
1001
1002 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
1003
1004         * CutAndPaste.C (pasteSelection): copy paragraphlist the nice way.
1005
1006 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
1007
1008         * CutAndPaste.C (pasteSelection): remove some unneeded code.
1009
1010 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
1011
1012         * CutAndPaste.C (resetOwnerAndChanges): new helper functor
1013         (copySelection): clean up a bit.
1014         (pasteSelection): use make_pair
1015
1016         * ParagraphList.C (ParagraphList): implement copy constructor
1017         (operator=): implement, base on copy constructor.
1018         (assign): new func
1019
1020         * paragraph.C (erase): return a bool
1021
1022         * paragraph_pimpl.C (erasePos): remove function, move contents...
1023         (erase): ... here. Return a bool.
1024         (erase): call erase instead of erasePos.
1025
1026 2003-04-30  Alfredo Braunstein  <abraunst@libero.it>
1027
1028         * ParagraphList.h: define PitPosPair
1029         * CutAndPaste.C (copySelection, pasteSelection): big rework, use
1030         ParagraphList, fix a bug on pasting multiple pars
1031         * text2.C: change interface to C&P
1032
1033 2003-04-30  André Pönitz  <poenitz@gmx.net>
1034
1035         * undo_func.C: revert part of yesterday's patch 2
1036
1037 2003-04-30  John Levon  <levon@movementarian.org>
1038
1039         * LColor.C: s/tabular/table/
1040
1041 2003-04-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
1042
1043         * text3.C (dispatch): do not convert iterator -> pointer
1044         * undo_funcs.C (setCursorParUndo): ditto
1045         * text_funcs.C (transposeChars): ditto
1046
1047         * text2.C (setLayout): ws changes only
1048
1049         * text.C (breakParagraph): do not convert iterator -> pointer
1050         (insertChar): ditto
1051         (acceptChange): ditto
1052         (rejectChange): ditto
1053         (changeCase): ditto
1054         (Delete): ditto
1055         (backspace): ditto
1056
1057         * BufferView.C (lockedInsetStoreUndo): do not convert iterator ->
1058         pointer
1059
1060 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
1061
1062         * text3.C (gotoInset): YABG (yet another bad getChar)
1063
1064 2003-04-29  André Pönitz  <poenitz@gmx.net>
1065
1066         * paragraph.h: make operator= private unimplemented as long as
1067           it is unusable
1068
1069         * ParagraphList.C: whitespace
1070
1071         * paragraph.[Ch]:
1072         * paragraph_pimpl.[Ch]:
1073         * paragraph_funcs.C:
1074         * CutAndPaste.C:
1075         * undo_funcs.C: whitespace + Paragraph *  -> Paragraph (const) &
1076
1077         * text2.C:
1078           undo_funcs.[Ch]: Paragraph * -> ParagraphList::iterator
1079
1080 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
1081
1082         * CutAndPaste.[Ch] (cutSelection): big rework, some bugs fixed
1083         * paragraph.[Ch] (erase):
1084         * paragraph_pimpl.[Ch] (erase): change return type and value
1085         * text2.C (cutSelection): some rework
1086
1087 2003-04-28  John Levon  <levon@movementarian.org>
1088
1089         * bufferlist.C: changes for unsaved changes dialog
1090
1091 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
1092
1093         * bufferlist.C (newFile): set language (messages_) for new
1094         documents also.
1095
1096         * buffer.C (readFile): ws changes only.
1097
1098 2003-04-28  André Pönitz  <poenitz@gmx.net>
1099
1100         * undo_funcs.C:
1101         * lyxfunc.C:
1102         * buffer.[Ch]:
1103         * BufferView_pimpl.C:
1104         * BufferView.C: getParFromID related ParagraphList::iterator changes
1105
1106 2003-04-28  André Pönitz  <poenitz@gmx.net>
1107
1108         * tabular.[Ch]: part of Lars' Paragraph * -> ParagraphList::iterator
1109           Changes
1110
1111 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
1112
1113         * messages.C: remove one more localedir class variable.
1114
1115 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
1116
1117         * messages.C (getLocaleDir): singleton generation function
1118         (Pimpl): use it.
1119         (Messages): add a default constructor.
1120
1121         * main.C (main): do not setup localedir here, do not call
1122         gettext_init.
1123
1124         * gettext.C (_): use it.
1125         (gettext_init): delete funciton
1126
1127 2003-04-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
1128
1129         * gettext.C (getLyXMessages): new singleton generating function.
1130
1131         * buffer.C (updateDocLang): adjust
1132
1133         * Makefile.am (messages.o): add target
1134         (main.o): remove target
1135
1136 2003-04-27  John Levon  <levon@movementarian.org>
1137
1138         * bufferlist.C:
1139         * lyx_cb.C:
1140         * lyxfunc.C:
1141         * lyxvc.C: specify cancel button in Alert::prompt
1142
1143 2003-04-26  John Levon  <levon@movementarian.org>
1144
1145         * text3.C:
1146         * lyxfunc.C:
1147         * lfuns.h:
1148         * LyXAction.C: add LFUN_INSET_SETTINGS
1149
1150         * lyxfunc.C: don't enable tabular-feature when there's
1151         just any locking inset
1152
1153 2003-04-26  John Levon  <levon@movementarian.org>
1154
1155         * bufferlist.C: re-add Cancel to buffer close question
1156
1157         * lyxfunc.C: fix import UI a bit
1158
1159 2003-04-25  John Levon  <levon@movementarian.org>
1160
1161         * gettext.C: remove the broken asserts for now
1162
1163 2003-04-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
1164
1165         * messages.C: make case where setlocale cannot comply work better.
1166
1167         * buffer.C (updateDocLang): new function
1168         (changeLanguage): use it
1169         (readFile): use it
1170
1171         * text2.C (setCounter): use B_ a bit.
1172
1173         * lyxlayout.C (Read): be sure to trim the label strings.
1174
1175         * messages.C (Messages): fix typo in comment
1176
1177         * buffer.C (readFile): set message_ after file is loaded.
1178         (makeDocBookFile): remove double return
1179         (changeLanguage): reset message_ upon language change.
1180         (B_): new func, use this to get translated buffer strings.
1181
1182         * main.C: add myself and Jean Marc as authors.
1183
1184 2003-04-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
1185
1186         * messages.[hC]: pimplify Messages, and three different pimpls to be
1187         used in different circumstances.
1188
1189         * gettext.[Ch]: change for use with new message code.
1190
1191 2003-04-24 André Pönitz <poenitz@gmx.net>
1192
1193         * factory.C: support for eqref
1194
1195 2003-04-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
1196
1197         * messages.[Ch]: add missing char
1198
1199         * Makefile.am (lyx_SOURCES): add messages.[Ch]
1200
1201         * messages.[Ch]: New files
1202
1203 2003-04-18  John Levon  <levon@movementarian.org>
1204
1205         * BufferView.h:
1206         * BufferView.C:
1207         * BufferView_pimpl.C:
1208         * lfuns.h:
1209         * LyXAction.C:
1210         * lyxtext.h:
1211         * text2.C: remove layout-copy/paste (bug 778)
1212
1213 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
1214
1215         * text2.C (redoParagraphs): eliminate good_prevrit, rewrite a loop
1216
1217 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
1218
1219         * bufferlist.C (quitWriteBuffer): WriteAs and MenuWrite return true
1220         if they succeed. Act accordingly.
1221
1222 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
1223
1224         * text2.C (setCharFont): adjust
1225         (setCounter): adjust
1226         (insertStringAsLines): adjust
1227
1228         * text.C (leftMargin): adjust
1229         (setHeightOfRow): adjust
1230
1231         * rowpainter.C (paintFirst): adjust
1232         (paintLast): adjust
1233
1234         * paragraph_funcs.C (depthHook): ParagraphList::iterators
1235         (outerHook): ditto
1236         (isFirstInSequence): ditto
1237         (getEndLabel): ditto
1238         (outerFont): adjust
1239
1240         * paragraph.C (getParLanguage): comment out some hard stuff.
1241
1242         * buffer.C (insertStringAsLines): take a ParagraphList as arg
1243         (sgmlError): ditto
1244         (simpleDocBookOnePar): ditto
1245         (makeDocBookFile): use ParagraphList::iterator
1246
1247         * CutAndPaste.C (pasteSelection): adjust
1248
1249 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
1250
1251         * text2.C (getFont): adjust
1252         (getLayoutFont): adjust
1253         (getLabelFont): adjust
1254
1255         * paragraph_funcs.C (TeXOnePar): adjust
1256
1257         * buffer.C (simpleLinuxDocOnePar): adjust
1258         (simpleDocBookOnePar): adjust
1259
1260         * CutAndPaste.C (pasteSelection): adjust
1261
1262         * BufferView.C (getEncoding): adjust
1263
1264         * paragraph_funcs.C (outerFont): prepare for a ParagraphList arg.
1265
1266 2003-04-16  John Levon  <levon@movementarian.org>
1267
1268         * lyxfind.C: use parlist stuff for search/changes
1269
1270 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
1271
1272         * undo_funcs.C (textHandleUndo): ajust (rather big adsjust this one)
1273
1274         * text2.C (deleteEmptyParagraphMechanism): adjust
1275
1276         * text2.[Ch] (ownerParagraph): delete func (both of them
1277
1278 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
1279
1280         * text_funcs.C (transposeChars): use ParagraphList::iterator here.
1281
1282 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
1283
1284         * ParagraphList.C: prepare for NO_NEXT
1285
1286 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
1287
1288         * text2.C (getFont): adjust
1289         (getLayoutFont): adjust
1290         (getLabelFont): adjust
1291
1292         * paragraph.C (getFont): adjust
1293         (getLabelFont): adjust
1294         (getLayoutFont): adjust
1295
1296         * paragraph_funcs.[Ch] (realizeFont): remove unneeded arguments.
1297
1298 2003-04-15  John Levon  <levon@movementarian.org>
1299
1300         From Angus Leeming
1301
1302         * lyx_main.C: handle Include in .ui files
1303
1304 2003-04-15  John Levon  <levon@movementarian.org>
1305
1306         * MenuBackend.C: make the doc files length shorter
1307
1308         * ToolbarBackend.h:
1309         * ToolbarBackend.C: handle toolbar placement flags,
1310         Minibuffer
1311
1312 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
1313
1314         * paragraph_pimpl.C (simpleTeXSpecialChars): take a outerfont arg,
1315         adjust
1316
1317         * paragraph_funcs.C (TeXOnePar): adjust
1318
1319         * paragraph.C (getLabelFont): add outerfont arg, adjust
1320         (getLayoutFont): ditto
1321         (simpleTeXOnePar): adjust
1322
1323         * paragraph_pimpl.C (realizeFont): delete func
1324
1325 2003-04-14  Alfredo Braunstein  <abraunst@libero.it>
1326
1327         * text2.C (beforeFullRowInset): added a bad getchar check, removed
1328         row argument, constify cur argument.
1329
1330 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
1331
1332         * text2.C (getFont): adjust
1333         (getLayoutFont): adjust
1334         (getLabelFont): adjust
1335
1336         * paragraph_funcs.C (TeXOnePar): adjust
1337         (outerFont): new func...
1338         (realizeFont): ...moved out from here, changed this to facilitate
1339         transition
1340
1341         * paragraph.C (getFont): take outerfont as arg, adjust
1342         (simpleTeXOnePar): add outerfont arg, adjust
1343
1344         * buffer.C (simpleLinuxDocOnePar): adjust
1345         (simpleDocBookOnePar): adjust
1346
1347         * CutAndPaste.C (pasteSelection): adjust
1348
1349         * BufferView.C (getEncoding): adjust
1350
1351 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
1352
1353         * text2.C (setCharFont): adjust
1354         (setCounter): adjust
1355
1356         * text.C (leftMargin): adjust
1357         (setHeightOfRow): adjust
1358
1359         * rowpainter.C (paintFirst): adjust
1360         (paintLast): adjust
1361
1362         * paragraph_pimpl.C (realizeFont): adjust
1363
1364         * paragraph.C (isFirstInSequence): move from here...
1365         * paragraph_funcs.C (isFirstInSequence): ...to here
1366
1367         * paragraph.C (outerHook): move from here...
1368         * paragraph_funcs.C (outerHook): ...to here
1369
1370         * paragraph.C (depthHook): move from here...
1371         * paragraph_funcs.C (depthHook): ...to here
1372
1373         * paragraph.C (getEndLabel): move from here...
1374         * paragraph_funcs.C (getEndLabel): ...to here
1375
1376         * text2.C (realizeFont): move from here...
1377         * paragraph_funcs.C (realizeFont): ...to here
1378
1379 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
1380
1381         * text3.C (gotoNextInset): use separate tmp vars for par and pos.
1382
1383 2003-04-14  Angus Leeming  <leeming@lyx.org>
1384
1385         * LColor.[Ch]: scrap LColor mathcursor.
1386
1387 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
1388
1389         * lyxlex.[Ch] (text): delete function
1390         * trans.C (Load): adjust
1391         * paragraph_funcs.C (readParToken): adjust
1392
1393 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
1394
1395         * lyxlex_pimpl.h: get rid of LEX_MAX_BUFF, change buff to be a
1396         vector<char> instead of a char[].
1397
1398         * lyxlex_pimpl.C (getString): adjust
1399         (next): adjust
1400         (lex): use getString
1401         (eatLine): adjust
1402         (nextToken): adjust
1403
1404         * lyxlex.C (text): use pimpl_->getString()
1405         (getBool): ditto
1406         (findToken): ditto
1407
1408 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
1409
1410         * text2.C (getInset): temp vars for cursor.par() and cursor.pos()
1411         (makeFontEntriesLayoutSpecific): temp var for par.size()
1412         (setLayout): temp var for ownerParagraphs().end()
1413         (fullRebreak): temp var for rows().end()
1414         (selectionAsString): temp var for boost::next(startpit), realize
1415         that the while really is a regular for loop.
1416         (cursorEnd): temp vars for cursor.row(), lastPos ++, only call
1417         setCursor in one place.
1418         (setParagraph): temp vr for ownerParagraphs().end()
1419         (updateCounters): make the while loop a for loop
1420         (cutSelection): temp var for ownerParagraphs().end()
1421         (updateInset): make the do {} while() a regular for loop
1422         (getCursorX): use temp vars
1423         (setCurrentFont): use temp vars
1424         (getColumnNearX): use temp vars
1425
1426 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
1427
1428         * text.C (transformChar): use temp var for getChar
1429         (computeBidiTables): use temp var for row->par()
1430         (fill): move temp vars for row->par() and pit->layout() earlier in
1431         the function.
1432         (labelFill): use temp var for row->par()
1433         (setHeightOfRow): do not allow rit to be RowList::end, get rid of
1434         asc and desc, realize that pit never changes and that firstpit is
1435         just a duplicate and not needed. Exchange rit->par() with pit in a
1436         lot of places.
1437         (breakAgain): use a temp var for boost::next(rit)
1438         (breakAgainOneRow): ditto
1439         (breakParagraph): use a temp var for rows().begin()
1440         (prepareToPrint): move nlh into minimal scope, use temp var for rit->par()
1441         (cursorRightOneWord): use temp var for cursor.par() and
1442         cursor.pos(), remove usage of tmpcursor.
1443         (cursorLeftOneWord): use temp var for cursor.par() and
1444         cursor.pos() only set cur at end of function.
1445
1446 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
1447
1448         * text.C, text2.C: exchange all usage of Paragraph::next with
1449         boost::next(ParagraphList::iterator)
1450
1451         * CutAndPaste.C (cutSelection): change 2. arg to a Paragraph*
1452
1453         * text2.C (cursorTop): simplify implementation
1454         (cursorBottom): ditto
1455         (setParagraph): use ParagraphList::iterator
1456         (setCurrentFont): adjust
1457         (getColumnNearX): adjust
1458         (cursorRight): adjust
1459         (cursorLeft): remove usage of Paragraph::previous
1460         (cursorUpParagraph): ditto
1461         (deleteEmptyParagraphMechanism): slight cleanup
1462
1463         * text.C (isBoundary): take a Paragraph const & instead of a
1464         pointer as arg.
1465         (addressBreakPoint): ditto
1466         (leftMargin): remove usage of Paragraph::previous.
1467         (setHeightOfRow): ditto
1468         (cursorLeftOneWord): ditto
1469         (selectNextWordToSpellcheck): ditto
1470         (Delete): ditto
1471         (backspace): ditto
1472         (breakParagraph): remove one usage of Paragraph::next
1473         (redoParagraph): ditto
1474         (acceptChange): ditto
1475         (insertChar): adjust
1476         (rowBreakPoint): adjust
1477
1478         * bufferview_funcs.C (toggleAndShow): adjust
1479
1480 2003-04-11  Alfredo Braunstein  <abraunst@libero.it>
1481
1482         * lyxrow.[Ch]: add a cached y position to a Row and Row::y()
1483         methods to access it.
1484         * lyxtext.h:
1485         * text.C: Added updateRowPositions to compute all row positions.
1486         Make top_y and getRowNearY() to use the cached y position
1487
1488 2003-04-11  John Levon  <levon@movementarian.org>
1489
1490         * text.C (rowBreakPoint): reintroduce the labelEnd
1491         checks, code copied from the row fill stuff. Deep voodoo.
1492
1493         * text.C (fill): add a comment and debugging for the
1494         next poor soul.
1495
1496 2003-04-11  John Levon  <levon@movementarian.org>
1497
1498         * text.C: make sure fullrow insets get wrapped to the next line,
1499         even when they're in a manual label
1500
1501 2003-04-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
1502
1503         * text2.C (insertParagraph): make it take ParagraphList::iterator
1504         as arg.
1505         (setLayout): make it return ParagraphList::iterator
1506         (redoParagraphs): ditto
1507         (setCounter): ditto
1508         (checkParagraph): ditto
1509
1510         * text.C (getRow): make getrow take ParagraphList::iterator as arg
1511
1512         * text2.C: adjust several funcs.
1513         (realizeFont): take a ParagraphList::iterator as arg.
1514         (getLayoutFont): ditto
1515         (getLabelFont): ditto
1516         (setCharFont): ditto
1517
1518         * text.C: adjust several funcs.
1519
1520 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
1521
1522         * text.C (selectNextWordToSpellcheck): don't accidentally
1523         skip insets
1524
1525 2003-04-10  John Levon  <levon@movementarian.org>
1526
1527         * ToolbarBackend.C (getIcon): special handling for
1528         LFUN_MATH_DELIM
1529
1530 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
1531
1532         * text2.C (cursorRight): a getChar assert fixed
1533
1534 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
1535
1536         * text2.C (getFont): change to take a ParagraphList::iterator
1537         instead of Paragraph*
1538         Adjust several functions.
1539
1540         * text.C (transformChar): change to take a ParagraphList::iterator
1541         instead of Paragraph*
1542         (singleWidth): ditto
1543         Adjust several functions.
1544
1545         * rowpainter.C: adjust several functions
1546         * rowpainter.h:store a ParagraphList::iterator and not a
1547         Paragraph&.
1548
1549
1550 2003-04-09  John Levon  <levon@movementarian.org>
1551
1552         * lyxfunc.C:
1553         * lfuns.h:
1554         * LyXAction.h:
1555         * LyXAction.C: remove LFUN_APROPOS, LFUN_GETTIP,
1556         and the "help" bits as well
1557
1558 2003-04-09  John Levon  <levon@movementarian.org>
1559
1560         * ToolbarBackend.h:
1561         * ToolbarBackend.C: allow multiple toolbars
1562
1563 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
1564
1565         * undo_funcs.C (setCursorParUndo): adjust
1566
1567         * text_funcs.C (transposeChars): adjust
1568
1569         * text3.C (gotoNextInset): adjust
1570         (dispatch): adjust
1571
1572         * text2.C (setLayout): adjust
1573         (changeDepth): adjust
1574         (setFont): adjust
1575         (redoParagraphs): adjust
1576         (selectionAsString): adjust
1577         (setParagraph): adjust
1578         (insertInset): adjust
1579         (cutSelection): adjust
1580         (copySelection): adjust
1581         (pasteSelection): adjust
1582         (insertStringAsLines): adjust
1583         (updateInset): adjust
1584         (setCursor): change to take a ParagraphList::iterator parameter
1585         (setCursorIntern): change to take a ParagraphList::iterator parameter
1586         (setCurrentFont): adjust
1587         (cursorLeft): adjust
1588         (cursorRight): adjust
1589         (deleteEmptyParagraphMechanism): adjust
1590
1591         * text.C (breakParagraph): adjust
1592         (insertChar): adjust
1593         (acceptChange): adjust
1594         (rejectChange): adjust
1595         (selectNextWordToSpellcheck): adjust
1596         (changeCase): adjust
1597         (Delete): adjust
1598         (backspace): adjust
1599
1600         * lyxfind.C (SearchForward): adjust
1601         (SearchBackward): adjust
1602         (nextChange): adjust
1603
1604         * lyxcursor.C (par): adjust
1605
1606         * lyxcursor.h: store a ParagraphList::iterator instead of a
1607         Paragraph*
1608
1609         * lyx_cb.C (getPossibleLabel): adjust
1610
1611         * bufferview_funcs.C (toggleAndShow): adjust
1612
1613         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
1614         (dispatch): adjust
1615
1616         * BufferView.C (removeAutoInsets): adjust
1617         (lockedInsetStoreUndo): adjust
1618
1619 2003-04-09  John Levon  <levon@movementarian.org>
1620
1621         * ToolbarBackend.C: try icon without argument
1622         if with argument fails
1623
1624 2003-04-08  John Levon  <levon@movementarian.org>
1625
1626         * ToolbarBackend.h:
1627         * ToolbarBackend.C: add getIcon(), handle tooltip,
1628         and change from "Icon" to "Item".
1629
1630 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
1631
1632         * BufferView.C (lockInset): another bad getchar crunched
1633
1634 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
1635
1636         * text2.C (changeDepth): do not setUndo on test_only (make undo work
1637         again)
1638
1639 2003-04-05  Alfredo Braunstein  <abraunst@libero.it>
1640
1641         * lyxfind.C (searchForward, searchBackwards): bug 782
1642
1643 2003-04-07  John Levon  <levon@movementarian.org>
1644
1645         * paragraph.C: remove dead comment
1646
1647         * text.C: remove troublesome depth-fiddling code
1648         in leftMargin() and rightMargin() (bug 1017)
1649
1650         * text.C: fix breaking of rows in nested lists
1651         (bug 1004)
1652
1653         * text2.C (updateCounters): fix up depth values
1654         (bug 1013)
1655
1656 2003-04-07  John Levon  <levon@movementarian.org>
1657
1658         * BufferView_pimpl.C: clear message when doc finishes resizing,
1659         and after a mouse event
1660
1661         * lyxfunc.C: clear message after exiting inset
1662
1663 2003-04-07  John Levon  <levon@movementarian.org>
1664
1665         * bufferview_funcs.C: show math status not outside
1666         status in the statusbar
1667
1668 2003-04-07  John Levon  <levon@movementarian.org>
1669
1670         * lyxfunc.C: note status changed after a depth change
1671
1672 2003-04-04  Angus Leeming  <angus@localhost.localdomain>
1673
1674         * LaTeX.h: move AuxInfo operator==, != out of line.
1675         Remove LaTeX virtual destructor; nothing derives from it.
1676         Move operator()() out of public area and rename it startscript().
1677         Change protected for private.
1678
1679 2003-04-04  Angus Leeming  <leeming@lyx.org>
1680
1681         * lyxfunc.C:
1682         * text2.C: remove unneeded #includes.
1683
1684 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
1685
1686         * text2.C (dEPM): fix the heigth of the next row
1687
1688 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
1689
1690         * text.C: squashed an invalid getChar requester + some ws changes
1691
1692 2003-04-03  John Levon  <levon@movementarian.org>
1693
1694         * bufferview_funcs.h:
1695         * bufferview_funcs.C:
1696         * lyxfunc.C:
1697         * lyxtext.h:
1698         * text2.C: make getStatus work for the env depth lfuns
1699
1700 2003-04-03  John Levon  <levon@movementarian.org>
1701
1702         * bufferview_funcs.h:
1703         * bufferview_funcs.C:
1704         * lyxfunc.C:
1705         * lyxtext.h:
1706         * text2.C: parlistize decDepth(), by merging it with incDepth()
1707
1708 2003-04-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
1709
1710         * lyxrow.h: store a ParagraphList::iterator instead of a
1711         Paragraph* and adjust other class functions to suit.
1712
1713         * lyxrow_funcs.C, text.C, text2.C, text3.C: adjust because of the
1714         above.
1715
1716 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
1717
1718         * text2.C (setCursor): do not anchor to cursor row for the time being
1719
1720 2003-04-02  John Levon  <levon@movementarian.org>
1721
1722         * LyXAction.C:
1723         * lfuns.h:
1724         * lyx_main.C:
1725         * lyxtext.h:
1726         * text.C:
1727         * text3.C: rename the "tab" lfuns. Remove tab support from normal text
1728
1729 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
1730
1731         * paragraph.h: make ParagraphList and ParagraphList::iterator
1732         friends of Paragraph.
1733
1734         * buffer.C (makeLinuxDocFile): move towards ParagraphList
1735
1736         * ParagraphList.C: Use the private next_ and previous_ from
1737         Paragraph.
1738
1739 2003-04-01  John Levon  <levon@movementarian.org>
1740
1741         * ToolbarBackend.h:
1742         * ToolbarBackend.C:
1743         * Makefile.am: rename, remove defaults gunk
1744
1745         * MenuBackend.h:
1746         * MenuBackend.C: remove defaults gunk
1747
1748         * Languages.h:
1749         * Languages.C: remove defaults gunk
1750
1751         * lyx_main.h:
1752         * lyx_main.C: error out if files couldn't be found.
1753
1754 2003-04-02  John Levon  <levon@movementarian.org>
1755
1756         * text2.C: make incDepth() use parlist
1757
1758 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
1759
1760         * undo_funcs.C (firstUndoParagraph): adjust
1761
1762         * text3.C (gotoInset): adjust
1763         (dispatch): adjust, and rewrite loop.
1764
1765         * text2.C (init): adjust, and rewrite loop.
1766         (redoParagraphs): adjust
1767         (updateInset): adjust, and rewrite loop.
1768         (deleteEmptyParagraphMechanism): adjust
1769
1770         * tabular.C (LyXTabular): adjust
1771         (SetMultiColumn): adjust
1772         (TeXRow): adjust
1773
1774         * lyxtext.[Ch] (ownerParagraph): delete function
1775         (ownerParagraphs): new function returns a ParagraphList.
1776
1777         * BufferView.C (removeAutoInsets): adjust
1778         (insertErrors): adjust
1779         (setCursorFromRow): adjust
1780
1781 2003-04-01  Angus Leeming  <leeming@lyx.org>
1782
1783         * BufferView_pimpl.C (buffer): ensure that the Layout is correct
1784         in the frontends.
1785
1786 2003-04-02  John Levon  <levon@movementarian.org>
1787
1788         * lyxtext.h:
1789         * text.C:
1790         * Makefile.am:
1791         * text_funcs.h:
1792         * text_funcs.C: make transposeChars a free function
1793
1794         * lyxrow_funcs.C: remove wrong comment
1795
1796 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
1797
1798         * lyxtext.h: adjust
1799         * rowpainter.C: adjust
1800         * text.C: adjust
1801         * text2.C: adjust
1802         * text3.C: adjust
1803
1804         * lyxrow_funcs. [Ch]: new files
1805
1806         * lyxrow.[Ch]: remove next and previous pointers
1807         (next,previous): remove accessor functions
1808         (isParEnd): move to lyxrow_funcs
1809         (lastPos): move to lyxrow_funcs
1810         (nextRowIsAllInset): move to lyxrow_funcs
1811         (lastPrintablePos): move to lyxrow_funcs
1812         (numberOfSeparators): move to lyxrow_funcs
1813         (numberOfHfills): move to lyxrow_funcs
1814         (numberOfLabelHfills): move to lyxrow_funcs
1815         (hfillExpansion): move to lyxrow_funcs
1816
1817         * lyxfunc.C: adjust
1818
1819         * bufferview_funcs.C (toggleAndShow): adjust
1820
1821         * RowList.h: Remove class RowList from file leave just a
1822         std::list<Row>.
1823
1824         * RowList.C: delete file
1825
1826         * Makefile.am (lyx_SOURCES): remove RowList.C, add lyxrow_funcs.C
1827         and lyxrow_funcs.h
1828
1829 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
1830
1831         * text3.C (cursorPrevious): adjust
1832         (cursorNext): adjust
1833         (dispatch): adjust
1834
1835         * text2.C (redoHeightOfParagraph): adjust
1836         (redoDrawingOfParagraph): adjust
1837         (setCursor): adjust
1838
1839         * text.C (breakParagraph): adjust
1840         (insertChar): adjust
1841         (backspace): adjust
1842
1843         * rowpainter.C (RowPainter): adjust
1844         (leftMargin): simplify and adjust
1845         (most rowpainter functions): adjust.
1846
1847         * rowpainter.h: store the row as RowList::iterator not as Row*
1848
1849         * lyxcursor.C (row): taka RowList::iterator as arg
1850         (irow): ditto
1851
1852         * lyxcursor.h: make the LyXCursor store RowList::iterators instead
1853         of Row*.
1854
1855 2003-04-01  Angus Leeming  <leeming@lyx.org>
1856
1857         * bufferview_funcs.C (string2font): rewrite so that it no longer uses
1858         stuff like bool Bool.
1859
1860 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
1861
1862         * text2.C (redoParagraphs): fix a bug (introduced by myself) and
1863         rewrite a loop
1864
1865 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
1866
1867         * text2.C (redoParagraphs): rewrite (with help from Alfredo) for
1868         RowList::iterator.
1869
1870         * lyxtext.h (rows): drop one version and leve a const variant that
1871         returns a RowList::iterator.
1872
1873 2003-03-31  Angus Leeming  <leeming@lyx.org>
1874
1875         * text.C (fill): ensure that the signature is the same as that in the
1876         header file.
1877
1878 2003-03-31  Lars Gullik Bjønnes  <larsbj@gullik.net>
1879
1880         * text2.C (redoParagraphs): adjust
1881         (updateCounters): adjust
1882         (checkParagraph): adjust
1883         (getColumnNearX): adjust and reformat a bit.
1884
1885         * text.C (top_y): adjust
1886         (workWidth): adjust
1887         (leftMargin): adjust
1888         (prepareToPrint): adjust
1889         (getRow): adjust
1890         (getRowNearY): adjust
1891
1892         * lyxtext.h: make rowlist_ mutable.
1893
1894         * RowList.h: add const_iterator
1895         * RowList.C: adjust for RowList::const_iterator.
1896
1897         * text2.C (getCursorX): make it take a RowList::iterator as arg,
1898         adjust.
1899
1900 2003-03-31  John Levon  <levon@movementarian.org>
1901
1902         * lyxrc.h:
1903         * lyxrc.C: moved pdf_mode and use_gui to elsewhere
1904
1905         * lyx_main.C: set default fonts from using lyx_gui funcs
1906
1907         * exporter.C: pdf_mode moved from lyxrc
1908
1909         * lyx_cb.C:
1910         * lyxfunc.C: changes from above
1911
1912 2003-03-31  John Levon  <levon@movementarian.org>
1913
1914         * lyx_main.C: fix to the last fix
1915
1916 2003-03-31  John Levon  <levon@movementarian.org>
1917
1918         * bufferlist.C: "Load original" -> "Load Original"
1919
1920         * converter.C:
1921         * exporter.C:
1922         * importer.C:
1923         * lyx_main.C:
1924         * format.C: more Alert cleanups
1925
1926 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
1927
1928         * text2.C (removeParagraph): make it take a RowList::iterator as
1929         arg, adjust.
1930         (getColumnNearX): make it take a RowList::iterator as arg, adjust.
1931         (postRowPaint): make it take a RowList::iterator as arg, adjust.
1932
1933         * text.C (anchor_row): make it take a RowList::iterator as arg,
1934         adjust.
1935         (computeBidiTables): make it take a const reference to Row instead
1936         of Row pointer, adjust.
1937         (leftMargin): make it take a RowList::iterator as arg, adjust.
1938         (rowBreakPoint): adjust
1939         (breakAgainOneRow): make it take a RowList::iterator as arg,
1940         adjust.
1941         (prepareToPrint): make it take a RowList::iterator as arg, adjust.
1942
1943         * bufferview_funcs.C (toggleAndShow): adjust
1944
1945 2003-03-30  John Levon  <levon@movementarian.org>
1946
1947         * Makefile.am:
1948         * BoostFormat.h:
1949         * boost-inst.C: moved to support
1950
1951         * several files: changes as a result
1952
1953 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
1954
1955         * text2.C (LyXText): adjust.
1956         (init): adjust
1957         (removeRow): make it take a RowList::iterator as arg, adjust.
1958         (fullRebreak): adjust
1959         (deleteEmptyParagraphMechanism): adjust
1960         (clearPaint): adjust
1961         (postPaint): adjust
1962
1963         * text.C (top_y): adjust
1964         (setHeightOfRow): make it take a RowList::iterator as arg, adjust.
1965         (breakAgain): make it take a RowList::iterator as arg, adjust.
1966         (breakParagraph): adjust
1967         (insertChar): adjust
1968         (backspace): adjust
1969
1970         * lyxtext.h: make anchor_row_ be a RowList::iterator, ditto
1971         need_break_row, and refresh_row.
1972
1973         * text3.C (dispatch): adjust
1974
1975         * text2.C (checkParagraph): adjust
1976         (setCursor): adjust
1977         (setCursorFromCoordinates): adjust
1978
1979         * text.C (top_y): adjust
1980         (workWidth): adjust
1981         (getRow): make it return a RowList::iterator, adjust
1982         (getRowNearY): make it return a RowList::iterator, adjust
1983
1984         * text2.C (init): adjust
1985         (insertRow): remove function
1986         (insertParagraph): adjust
1987         (redoParagraphs): adjust
1988         (fullRebreak): adjust
1989         (updateCounters): adjust
1990
1991         * text.C (top_y): rewrite to use RowList iterators.
1992         (top_y): adjust
1993         (setHeightOfRow): rewrite to sue RowList iterators.
1994         (appendParagraph): adjust
1995         (breakAgain): adjust
1996         (breakAgainOneRow): adjust
1997         (breakParagraph): adjust
1998         (getRow): adjust
1999         (getRowNearY): adjust, and remove commented code.
2000
2001         * lyxtext.h (firstRow): delete function
2002         (lastRow): delete function
2003         (rows): new function (const and non-const versions.)
2004         (insertRow): delete function
2005
2006         * lyxrow.[Ch] (Row): new constructor taking a par and a pos
2007
2008 2003-03-29  John Levon  <levon@movementarian.org>
2009
2010         * BufferView_pimpl.C: always update scrollbar top
2011         because pasting text when we're anchored could mean we
2012         miss an update altogether
2013
2014 2003-03-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
2015
2016         * text2.C (init): use rowlist_.end() and not 0.
2017         (insertRow): change to take a RowList::iterator as arg, adjust
2018         for this.
2019         (insertParagraph): change to take a RowList::iterator as arg,
2020         adjust for this.
2021         (redoParagraphs): remove some debug msgs.
2022
2023         * text.C (appendParagraph): change to take a RowList::iterator
2024         arg, adjust for this.
2025         (breakAgain): add an assert
2026         (breakAgainOneRow): ditto
2027
2028 2003-03-29  John Levon  <levon@movementarian.org>
2029
2030         * text2.C: do not clear selection after inc/decDepth
2031         (bug 550)
2032
2033 2003-03-29  John Levon  <levon@movementarian.org>
2034
2035         * BufferView.C:
2036         * buffer.C: fix broken strerrors according to Lars
2037
2038 2003-03-29  John Levon  <levon@movementarian.org>
2039
2040         * converters.C: more Alert cleanups
2041
2042 2003-03-29  John Levon  <levon@movementarian.org>
2043
2044         * bufferview_funcs.C: remove pointless Alert
2045
2046         * buffer.C: fix confusing error message when
2047         a template is chmoded 000
2048
2049 2003-03-29  John Levon  <levon@movementarian.org>
2050
2051         * BufferView.C:
2052         * BufferView.h:
2053         * BufferView_pimpl.C: Alert fixes
2054
2055         * Makefile.am:
2056         * tabular.C:
2057         * tabular-old.C: remove unused table compat reading
2058
2059 2003-03-29  John Levon  <levon@movementarian.org>
2060
2061         * BufferView.C:
2062         * buffer.C:
2063         * lyx_cb.h:
2064         * lyx_cb.C: more Alert cleanups
2065
2066         * lyxfunc.C: don't allow chktex if not latex document
2067
2068 2003-03-29  John Levon  <levon@movementarian.org>
2069
2070         * lyx_cb.C:
2071         * BufferView.C:
2072         * buffer.C: warnings pushed down from support/,
2073         kill err_alert
2074
2075 2003-03-29  John Levon  <levon@movementarian.org>
2076
2077         * lyxfunc.C: safety check for C-r (revert)
2078
2079 2003-03-29  John Levon  <levon@movementarian.org>
2080
2081         * bufferlist.h:
2082         * bufferlist.C: several UI fixes using Alert::prompt.
2083         Fix the pointless looping quit code. Fix stupid revert
2084         behaviour (bug 938)
2085
2086         * lyxvc.h:
2087         * lyxvc.C:
2088         * lyx_cb.C: use Alert::prompt
2089
2090         * lyx_main.C: remove a silly question
2091
2092         * lyxfunc.C: remove a couple of silly questions,
2093         use Alert::prompt
2094
2095 2003-03-28  John Levon  <levon@movementarian.org>
2096
2097         * text2.C: fix bug 974 (End on empty par)
2098
2099 2003-03-28  John Levon  <levon@movementarian.org>
2100
2101         * BufferView_pimpl.C:
2102         * LyXAction.C:
2103         * lfuns.h: remove do-nothing math greek lfuns
2104
2105 2003-03-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
2106
2107         * lyxgluelength.h (isValidGlueLength): add default arg on
2108         parameter 2. Remove default arg from friend in class.
2109
2110         * lyxlength.h (isValidLength): add default arg on parameter 2.
2111         Remove default arg from friend in class.
2112
2113         * text2.C (LyXText): adjust, initialize refresh_row.
2114         (init): adjust
2115         (removeRow): adjust
2116         (insertRow): adjust
2117         (insertParagraph): adjst
2118         (redoParagraphs): adjust
2119         (fullRebreak): adjust
2120         (updateCounters): adjust
2121         (deleteEmptyParagraphMechanism): first attempt at fixing a
2122         crashing bug.
2123
2124         * text.C (top_y): adjust
2125         (setHeightOfRow): adjust
2126         (getRow): adjust
2127         (getRowNearY): adjust
2128
2129         * lyxtext.h: include RowList.h
2130         (~LyXText): not needed anymore, deleted.
2131         (firstRow): modify for RowList
2132         (lastRow): new function
2133         Delete firstrow and lastrow class variables, add a Rowlist
2134         rowlist_ class variable.
2135
2136         * lyxrow.C (lastPos): use empty() and not !size() to check if a
2137         paragraph is empty.
2138
2139         * RowList.C (insert): fix case where it == begin().
2140
2141 2003-03-26  Angus Leeming  <leeming@lyx.org>
2142
2143         * BufferView_pimpl.C (dispatch): changes to the Dialogs interface for
2144         the thesaurus dialog.
2145
2146 2003-03-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
2147
2148         * Makefile.am (lyx_SOURCES): add RowList.[Ch]
2149
2150         * RowList.[Ch]: new files
2151
2152         * ParagraphList.C (erase): handle the case where it == begin
2153         correctly.
2154
2155 2003-03-25  John Levon  <levon@movementarian.org>
2156
2157         * Makefile.am:
2158         * aspell_local.h:
2159         * aspell.C: add new aspell support
2160
2161         * lyxrc.h:
2162         * lyxrc.C: Make use_pspell be use_spell_lib. Always
2163         have it accessible.
2164
2165 2003-03-25  Angus Leeming  <leeming@lyx.org>
2166
2167         * lfuns.h:
2168         * LyXAction.C (init): new LFUN_INSET_INSERT.
2169
2170         * BufferView_pimpl.C (dispatch): split out part of the
2171         LFUN_INSET_APPLY block LFUN_INSET_INSERT.
2172
2173         * factory.C (createInset): act on LFUN_INSET_INSERT rather than
2174         LFUN_INSET_APPLY.
2175
2176 2003-03-25  Angus Leeming  <leeming@lyx.org>
2177
2178         * lyxfunc.C (dispatch): changes to the Dialogs interface.
2179
2180 2003-03-25  Alfredo Braunstein  <abraunst@libero.it>
2181
2182         * text2.C:
2183         * text3.C: remove useless row->height(0)
2184
2185 2003-03-25  John Levon  <levon@movementarian.org>
2186
2187         * lyxtext.h:
2188         * text2.C:
2189         * text3.C: rename the refreshing stuff to better names
2190
2191 2003-03-24  John Levon  <levon@movementarian.org>
2192
2193         * BufferView_pimpl.h:
2194         * BufferView_pimpl.C: update layout choice on a mouse
2195         press/release
2196
2197 2003-03-23  John Levon  <levon@movementarian.org>
2198
2199         * Makefile.am: fix commandtags.h reference
2200
2201 2003-03-22  John Levon  <levon@movementarian.org>
2202
2203         * BufferView_pimpl.C:
2204         * lyxtext.h:
2205         * rowpainter.C:
2206         * rowpainter.h:
2207         * text.C:
2208         * text2.C: remove CHANGED_IN_DRAW, it cannot happen now
2209
2210 2003-03-21  Alfredo Braunstein  <abraunst@libero.it>
2211
2212         * lyxtext.h:
2213         * text.C: take the rtl methods out of line
2214
2215 2003-03-21 André Pönitz <poenitz@gmx.net>
2216
2217         * metricsinfo.[Ch]: new files containing structures to be passed around
2218         during the two-phase-drawing...
2219
2220 2003-03-21 André Pönitz <poenitz@gmx.net>
2221
2222         * lyxtextclass.C: read 'environment' tag.
2223
2224 2003-03-20  Alfredo Braunstein  <abraunst@libero.it>
2225
2226         * text2.C (removeRow): fix bug 964
2227
2228 2003-03-20  John Levon  <levon@movementarian.org>
2229
2230         * rowpainter.C:
2231         * text.C:
2232         * text2.C: paint cleanups. Inset::update() dropped font
2233         parameter
2234
2235 2003-03-19  John Levon  <levon@movementarian.org>
2236
2237         * lyxfunc.C: only fitcursor/markDirty if available()
2238
2239 2003-03-19  John Levon  <levon@movementarian.org>
2240
2241         * commandtags.h: rename to ...
2242
2243         * lfuns.h: ... this, and renumber / cleanup
2244
2245 2003-03-19  John Levon  <levon@movementarian.org>
2246
2247         * lyxfunc.C: mark buffer dirty if we executed a "dirtying" lfun.
2248         fit the cursor after an lfun
2249
2250         * BufferView.h:
2251         * BufferView.C:
2252         * BufferView_pimpl.h:
2253         * BufferView_pimpl.C: remove BufferView::FITCUR/CHANGE
2254
2255         * LyXAction.C: layout-character should have ReadOnly
2256
2257         * ParagraphParameters.C:
2258         * buffer.C:
2259         * bufferview_funcs.C:
2260         * lyx_cb.C:
2261         * lyxfind.C:
2262         * lyxtext.h:
2263         * text.C:
2264         * text2.C:
2265         * text3.C:
2266         * undo_funcs.C: changes from above
2267
2268 2003-03-18  John Levon  <levon@movementarian.org>
2269
2270         * BufferView_pimpl.C (scrollDocView): add updateLayoutChoice(),
2271         remove it from update()
2272
2273         * lyxfunc.C: update layout choice after an lfun
2274
2275         * text3.C: remove extra updateLayoutChoice()s
2276
2277 2003-03-18  John Levon  <levon@movementarian.org>
2278
2279         * text.C: top_y change means full repaint, fix
2280         a drawing bug with cursor movement
2281
2282 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
2283
2284         * lyxtext.h:
2285         * text.C:
2286         * text2.C: anchor row on setCursor
2287
2288 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
2289
2290         * lyxtext.h: remove almost all mutable keywords
2291         * text.C:
2292         * text2.C:
2293         * text3.C: remove const keywords accordingly
2294
2295 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
2296
2297         * paragraph_funcs.C (TeXDeeper): reduce number of args, move into
2298         anon namespace
2299         (TeXEnvironment): ditto
2300         (TeXOnePar): ditto
2301
2302 2003-03-17  John Levon  <levon@movementarian.org>
2303
2304         * text.C (rowBreakPoint): remove attempt to fix displayed
2305         math insets inside a manual label
2306
2307 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
2308
2309         * lyxtext.h: remove BufferView* as first arg from almost all class
2310         functions.
2311         * other files: adjust.
2312
2313 2003-03-17  John Levon  <levon@movementarian.org>
2314
2315         * lyxtext.h:
2316         * undo_funcs.C:
2317         * text2.C: more paint cleanups
2318
2319         * BufferView_pimpl.C: screen prototype changed, use postPaint etc.
2320
2321         * rowpainter.h:
2322         * rowpainter.C: remove "smart" background painting code
2323
2324 2003-03-16  John Levon  <levon@movementarian.org>
2325
2326         * lyxtext.h:
2327         * text.C:
2328         * text2.C:
2329         * text3.C: add helper functions for setting refresh_row/y
2330
2331 2003-03-14  Kayvan Sylvan  <kayvan@sylvan.com>
2332
2333         * paragraph_pimpl.C (simpleTeXSpecialChars): Added fix for the
2334         newline inset which *can* get inserted in the pass_thru layouts.
2335         This is primarily for literate documents.
2336
2337 2003-03-14  Dekel Tsur  <dekelts@tau.ac.il>
2338
2339         * buffer.C: increment LYX_FORMAT to 223
2340
2341 2003-03-14 André Pönitz <poenitz@gmx.net>
2342
2343         * textclass.h: prepare for environment handling, ws changes
2344         * lyxlayout.C: read latexheader and latexfooter tags
2345
2346 2003-03-14  John Levon  <levon@movementarian.org>
2347
2348         * text2.C: rewrite ::status() a bit
2349
2350 2003-03-13  John Levon  <levon@movementarian.org>
2351
2352         * lyxtext.h: add some docs
2353
2354 2003-03-13  John Levon  <levon@movementarian.org>
2355
2356         * lyxtext.h:
2357         * text.C:
2358         * text2.C:
2359         * text3.C: remove pointless 2nd arg to setHeightOfParagraph()
2360
2361 2003-03-13  John Levon  <levon@movementarian.org>
2362
2363         * text3.C: fix appendix redrawing
2364
2365 2003-03-13  John Levon  <levon@movementarian.org>
2366
2367         * text.C (setHeightOfRow):
2368         * rowpainter.h:
2369         * rowpainter.C: make appendix mark have the text
2370           "Appendix" so the user knows what it is
2371
2372         * LColor.h:
2373         * LColor.C: s/appendixline/appendix/ from above
2374
2375 2003-03-13  John Levon  <levon@movementarian.org>
2376
2377         * paragraph_pimpl.C: fix Andre's backing out of the strong assertion
2378
2379         * text.C: fix a getChar(pos) bug properly
2380
2381 2003-03-13  Angus Leeming  <leeming@lyx.org>
2382
2383         * commandtags.h:
2384         * LyXAction.C (init): new LFUNs PARAGRAPH_APPLY and PARAGRAPH_UPDATE.
2385         Probably only temporary. Let's see how things pan out.
2386
2387         * BufferView.C (unlockInset):
2388         * BufferView_pimpl.C (fitCursor):
2389         replace Dialogs::updateParagraph with dispatch(LFUN_PARAGRAPH_UPDATE).
2390
2391         * BufferView_pimpl.C (dispatch): code for LFUNs LAYOUT_PARAGRAPH,
2392         PARAGRAPH_UPDATE, PARAGRAPH_APPLY.
2393
2394         * ParagraphParameters.[Ch] (setParagraphParams, params2string):
2395         new functions that convert ParagraphParameters to and from a string.
2396
2397         * lyxfunc.C (dispatch): move LFUN_LAYOUT_PARAGRAPH to
2398         BufferView::Pimpl's dispatch.
2399         In LFUN_ESCAPE, dispatch LFUN_PARAGRAPH_UPDATE.
2400
2401 2003-03-13 André Pönitz <poenitz@gmx.net>
2402
2403         * lyxfunc.C:
2404         * text3.C:
2405         * factory.C: make it aware of InsetEnv
2406
2407 2003-03-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
2408
2409         * text2.C (setCursor): never ask for one past last
2410         (setCursor): add some debugging messages.
2411
2412         * text.C (singleWidth): never ask for one past last
2413         (singleWidth): ditto
2414         (leftMargin): ditto
2415         (rightMargin): ditto
2416         (rowBreakPoint): ditto
2417         (setHeightOfRow): ditto
2418         (prepareToPrint): ditto
2419
2420         * rowpainter.C (paintBackground): never ask for one past last
2421         (paintText): never ask for one past last
2422
2423         * paragraph_pimpl.C (getChar): make the assert stricter, never
2424         allow the one past last pos to be taken
2425
2426         * paragraph.C (getChar): ws changes only
2427
2428         * lyxrow.C (nextRowIsAllInset): never ask for one past last
2429         (numberOfSeparators): ditto
2430         (numberOfHfills): ditto
2431
2432 2003-03-12  John Levon  <levon@movementarian.org>
2433
2434         * author.h:
2435         * author.C:
2436         * bufferparams.h:
2437         * bufferparams.C:
2438         * paragraph_funcs.C: fix per-buffer authorlists
2439
2440 2003-03-12  John Levon  <levon@movementarian.org>
2441
2442         * text.C: fix newline in right address
2443
2444 2003-03-12  Angus Leeming  <leeming@lyx.org>
2445
2446         * BufferView_pimpl.C (dispatch): remove LFUNs from switch as they
2447         duplicate those in LyXFunc::dispatch.
2448
2449         * commandtags.h:
2450         * LyXAction.C:
2451         * ToolbarDefaults.C:
2452         rename LFUN_FREE as LFUN_FONTFREE_APPLY.
2453         Add LFUN_FONTFREE_UPDATE.
2454
2455         * lyxfunc.C (dispatch): code for LFUN_FREEFONT_APPLY,
2456         LFUN_FREEFONT_UPDATE, LFUN_LAYOUT_CHARACTER.
2457
2458         * bufferview_func.[Ch]: several new functions to facilliate
2459         transfer of data to and from the character dialog.
2460
2461 2003-03-12  John Levon  <levon@movementarian.org>
2462
2463         * buffer.C:
2464         * paragraph.h:
2465         * paragraph.C:
2466         * paragraph_funcs.C:
2467         * paragraph_pimpl.C:
2468         * sgml.C:
2469         * tabular.C:
2470         * text.C:
2471         * text3.C: remove META_NEWLINE in favour of an inset
2472
2473         * rowpainter.h:
2474         * rowpainter.C: remove paintNewline (done by inset)
2475
2476 2003-03-12  John Levon  <levon@movementarian.org>
2477
2478         * paragraph_pimpl.C: complain about bad getChar()s
2479         for a while at least
2480
2481 2003-03-12  John Levon  <levon@movementarian.org>
2482
2483         * buffer.h:
2484         * buffer.C: move paragraph read into a separate function,
2485         a little renaming to reflect that.
2486
2487         * bufferparams.h:
2488         * bufferparams.C: remove the author_ids map, not necessary now
2489
2490         * factory.h:
2491         * factory.C: moved Buffer::readInset to here
2492
2493         * paragraph_funcs.h:
2494         * paragraph_funcs.C: readParagraph free function moved from
2495         buffer.C
2496
2497         * tabular.C: name change
2498
2499 2003-03-12  John Levon  <levon@movementarian.org>
2500
2501         * buffer.C:
2502         * ParagraphParameters.C: move par params input to
2503         a read() method
2504
2505         * lyxlex_pimpl.C: make nextToken()/next() after a pushToken()
2506         behave like a normal read from the stream wrt reading
2507         a line vs. a \\token
2508
2509 2003-03-12  John Levon  <levon@movementarian.org>
2510
2511         * paragraph.C:
2512         * ParagraphParameters.h:
2513         * ParagraphParameters.C: move output code to a
2514         ::write() method
2515
2516 2003-03-12  John Levon  <levon@movementarian.org>
2517
2518         * BufferView.C (insertLyXFile):
2519         * buffer.h:
2520         * buffer.C:
2521         * tabular.C: use a parlist iterator for creating the
2522           document.
2523
2524 2003-03-12  John Levon  <levon@movementarian.org>
2525
2526         * buffer.C: make current_change static local not
2527           static file-scope
2528
2529 2003-03-12  John Levon  <levon@movementarian.org>
2530
2531         * buffer.C: fix insertStringAsLines for change tracking
2532
2533 2003-03-12  John Levon  <levon@movementarian.org>
2534
2535         * BufferView.C:
2536         * tabular.C:
2537         * buffer.h:
2538         * buffer.C:
2539         * bufferparams.h:
2540         * bufferparams.C: move author list into params. Rename some
2541           functions. Move the header reading into a separate token
2542           loop. Move the header token reading into BufferParams.
2543
2544 2003-03-12  John Levon  <levon@movementarian.org>
2545
2546         * changes.C: put debug inside lyxerr.debugging() checks
2547
2548 2003-03-11 André Pönitz <poenitz@gmx.net>
2549
2550         * factory.C: make it aware of InsetHFill
2551
2552 2003-03-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2553
2554         * buffer.C (latexParagraphs): move function from here...
2555         * paragraph_funcs.C (latexParagraphs): ...to here, and adjust
2556         args.
2557
2558 2003-03-10  Angus Leeming  <leeming@lyx.org>
2559
2560         * LyXAction.C (init): fix bug in poplating array with multiple entries
2561         with the same LFUN (spotted by JMarc).
2562
2563 2003-03-10  John Levon  <levon@movementarian.org>
2564
2565         * text.C:
2566         * text2.C: move getColumnNearX() near its
2567         only call site
2568
2569 2003-03-10  John Levon  <levon@movementarian.org>
2570
2571         * text.C: fix break before a minipage
2572
2573 2003-03-10  John Levon  <levon@movementarian.org>
2574
2575         * text.C: fix the last commit
2576
2577 2003-03-09  John Levon  <levon@movementarian.org>
2578
2579         * lyxtext.h:
2580         * text.C:
2581         * text2.C: clean up nextBreakPoint (now rowBreakPoint). Fix
2582         bug 365 (don't break before insets unless needed). Don't
2583         return a value > last under any circumstances.
2584
2585 2003-03-09  Angus Leeming  <leeming@lyx.org>
2586
2587         * BufferView_pimpl.C (trackChanges, dispatch): call
2588         Dialogs::show("changes") rather than Dialogs::showMergeChanges().
2589
2590 2003-03-09  Angus Leeming  <leeming@lyx.org>
2591
2592         * lyxfunc.C (dispatch): call Dialogs::show("about") rather
2593         than Dialogs::showAboutlyx().
2594
2595 2003-03-09  Angus Leeming  <leeming@lyx.org>
2596
2597         * factory.C (createInset): call Dialogs::show("tabularcreate") rather
2598         than Dialogs::showTabularCreate().
2599
2600 2003-03-09  John Levon  <levon@movementarian.org>
2601
2602         * lyxtext.h:
2603         * text.C:
2604         * text2.C: 3rd arg to nextBreakPoint was always the same.
2605           Use references.
2606
2607 2003-03-08  John Levon  <levon@movementarian.org>
2608
2609         * lyxrow.C:
2610         * paragraph.C:
2611         * paragraph.h:
2612         * rowpainter.C:
2613         * text.C:
2614         * text2.C: Remove the "main" bit from the "main body"
2615           notion.
2616
2617 2003-03-08  John Levon  <levon@movementarian.org>
2618
2619         * text.C (leftMargin): The left margin of an empty
2620         manual label paragraph should not include the label width
2621         string length.
2622
2623         * text.C (prepareToPrint): don't attempt to measure hfills
2624         for empty manual label paragraphs - the answer should be 0
2625
2626 2003-03-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
2627
2628         * CutAndPaste.C: remove commented code and reindent.
2629
2630 2003-03-08  John Levon  <levon@movementarian.org>
2631
2632         * lyxfunc.h:
2633         * lyxfunc.C: move reloadBuffer()
2634
2635         * BufferView.h:
2636         * BufferView.C: to here
2637
2638         * lyxvc.C: add comment
2639
2640         * vc-backend.h:
2641         * vc-backend.C: call bv->reload() to avoid
2642           getStatus() check on MENURELOAD
2643
2644 2003-03-07  Dekel Tsur  <dekelts@tau.ac.il>
2645
2646         * LaTeX.C (run): Fix a bug where the DVI file was not updated due
2647         to an old format .dep file.
2648
2649 2003-03-07  Angus Leeming  <leeming@lyx.org>
2650
2651         * text3.C (dispatch): remove the 'gross hack' of calling inset->edit
2652         when the LFUN_MOUSE_RELEASE should have been handled by
2653         inset->localDispatch.
2654
2655 2003-03-07  Angus Leeming  <leeming@lyx.org>
2656
2657         * BufferView_pimpl.C (dispatch):
2658         * LyXAction.C (init):
2659         * ToolbarDefaults.C (init):
2660         * commandtags.h:
2661         * lyxfunc.C (getStatus):
2662         remove LFUN_INSET_GRAPHICS.
2663
2664         * factory.C (createInset): add "graphics" to LFUN_INSET_APPLY.
2665
2666 2003-03-07  Angus Leeming  <leeming@lyx.org>
2667
2668         * commandtags.h:
2669         * LyXAction.C (init):
2670         * lyxfunc.C (getStatus): remove LFUN_REF_INSERT.
2671
2672         * lyxfunc.C (getStatus): add LFUN_DIALOG_SHOW_NEW_INSET to switch.
2673
2674         * commandtags.h:
2675         * LyXAction.C: add LFUN_INSET_DIALOG_UPDATE.
2676
2677         * lyxfunc (dispatch): on LFUN_DIALOG_UPDATE, pass the 'open' inset's
2678         localDispatch method LFUN_INSET_DIALOG_UPDATE.
2679
2680 2003-03-07  Angus Leeming  <leeming@lyx.org>
2681
2682         * lyxfunc.C (dispatch): add "include" to LFUN_SHOW_NEW_INSET and
2683         remove "ert".
2684
2685 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
2686
2687         * ParagraphList.C (front): new function
2688         (back): implement
2689
2690 2003-03-06  Alfredo Braunstein  <abraunst@libero.it>
2691
2692         * lyxtext.h (top_y): added these 2 methods, and private vars top_row_
2693         and top_row_offset_. removed var first_y.
2694         * text.C (top_y):
2695         * text2.C (LyXText, removeRow):
2696         * text3.C:
2697         * BufferView_pimpl.C:
2698         use these methods instead of using first_y
2699
2700 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
2701
2702         * text2.C (pasteSelection): adjust for checkPastePossible
2703
2704         * CutAndPaste.C: remove Paragraph * buf and replace with
2705         ParagraphList paragraphs.
2706         (DeleteBuffer): delete
2707         (cutSelection): change the tc type to textclass_type
2708         (copySelection): change the tc type to textclass_type
2709         (copySelection): adjust for ParagraphList
2710         (pasteSelection): change the tc type to textclass_type
2711         (pasteSelection): adjust for Paragraphlist
2712         (nrOfParagraphs): simplify for ParagraphList
2713         (checkPastePossible): simplify for ParagraphList
2714         (checkPastePossible): remove unused arg
2715
2716         * ParagraphList.C (insert): handle the case where there are no
2717         paragraphs yet.
2718
2719         * CutAndPaste.h: make CutAndPaste a namespace.
2720
2721         * text3.C (dispatch): adjust
2722
2723         * text.C (breakParagraph): add a ParagraphList as arg
2724
2725         * paragraph_funcs.C (breakParagraph): change to take a
2726         BufferParams and a ParagraphList as args.
2727         (breakParagraphConservative): ditto
2728         (mergeParagraph): ditto
2729         (TeXDeeper): add a ParagraphList arg
2730         (TeXEnvironment): ditto
2731         (TeXOnePar): ditto
2732
2733         * buffer.C (readLyXformat2): adjust
2734         (insertStringAsLines): adjust
2735         (latexParagraphs): adjust
2736
2737         * CutAndPaste.C (cutSelection): use 'true' not '1' as truth value.
2738         (cutSelection): adjust
2739         (pasteSelection): adjust
2740
2741         * BufferView_pimpl.C (insertInset): adjust
2742
2743 2003-03-05  Angus Leeming  <leeming@lyx.org>
2744
2745         * commandtags.h:
2746         * LyXAction.C (init):
2747         * BufferView_pimpl.C (dispatch):
2748         * lyxfunc.C (getStatus):
2749         remove LFUN_CHILD_INSERT.
2750
2751         * factory.C (createInset): add "include" to LFUN_INSET_APPLY.
2752
2753 2003-03-05  Angus Leeming  <leeming@lyx.org>
2754
2755         * commandtags.h:
2756         * LyXAction.C (init):
2757         * src/factory.C (createInset):
2758         * lyxfunc.C (getStatus):
2759         * text3.C (dispatch):
2760         remove LFUN_INSET_EXTERNAL and LFUN_INSERT_URL
2761
2762         * factory.C (createInset): add "external" to LFUN_INSET_APPLY.
2763
2764 2003-03-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
2765
2766         * ParagraphList.C (insert): handle insert right before end()
2767         (erase): fix cases where it can be first or last paragraph.
2768
2769 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
2770
2771         * paragraph_funcs.C (TeXEnvironment): remove all usage of
2772         Paragraph::next and Paragraph::previous
2773         (TeXOnePar): ditto
2774
2775         * text.C (breakParagraph): adjust
2776
2777         * paragraph_funcs.C (breakParagraph): take a Buffer* instead of a
2778         BufferParams& as arg.
2779         (breakParagraph): use ParagraphList::insert
2780         (breakParagraphConservative): take a Buffer* instead of a
2781         BufferParams& as arg.
2782         (breakParagraphConservative): use ParagraphList::insert.
2783
2784         * buffer.C (insertStringAsLines): un-const it
2785         (insertStringAsLines): adjust
2786
2787         * ParagraphList.C (insert): new function
2788
2789         * CutAndPaste.C (pasteSelection): adjust
2790
2791         * text.C (backspace): adjust
2792
2793         * tabular.C (SetMultiColumn): adjust
2794
2795         * CutAndPaste.C (cutSelection): adjust
2796         (pasteSelection): adjust
2797
2798         * tabular.C (SetMultiColumn): make it take a Buffer* instead of a
2799         Buffer const * as arg
2800
2801         * ParagraphList.C (erase): new function
2802         * paragraph_funcs.C (mergeParagraph): use it
2803         (mergeParagraph): make it take a Buffer* instead of a
2804         BufferParams* as arg
2805
2806         * paragraph_funcs.C (breakParagraph): take ParagraphList::iterator
2807         as arg
2808         (breakParagraphConservative): ditto
2809
2810         * paragraph.h: remove the breakParagraph friend
2811
2812         * paragraph.C (eraseIntern): new function
2813         (setChange): new function
2814
2815         * paragraph_funcs.C (mergeParagraph): make it take a
2816         ParagraphList::iterator instead of a Paragraph *, adjust
2817         accordingly.
2818
2819         * paragraph.h: move an #endif so that the change tracking stuff
2820         also works in the NO_NEXT case.
2821
2822 2003-03-04  Angus Leeming  <leeming@lyx.org>
2823
2824         * commandtags.h:
2825         * LyXAction.C: new LFUN_INSET_MODIFY.
2826
2827         * BufferView_pimpl.C (dispatch): if an inset is found to be open
2828         on LFUN_INSET_APPLY, pass LFUN_INSET_MODIFY to its localDispatch.
2829
2830 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
2831
2832         * several files: ws changes only
2833
2834         * paragraph_funcs.C (TeXOnePar): take ParagraphList::iterator as args
2835         (TeXEnvironment): ditto
2836         (TeXDeeper): ditto
2837
2838         * buffer.C (makeLaTeXFile): adjust
2839         (latexParagraphs): make it take ParagraphList::iterator as args
2840
2841 2003-03-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
2842
2843         * buffer.C (latexParagraphs): adjust
2844
2845         * paragraph.C (TeXOnePar): move function...
2846         (optArgInset): move function...
2847         (TeXEnvironment): move function...
2848         * paragraph_pimpl.C (TeXDeeper): move function...
2849         * paragraph_funcs.C: ...here
2850
2851         * tabular.C (UseParbox): rewrite to use ParagraphList iterators.
2852
2853 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
2854
2855         * buffer.C (readInset): remove compability code for old Figure and
2856         InsetInfo insets
2857
2858 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
2859
2860         * buffer.C: ws changes
2861         (readInset):
2862
2863         * BufferView_pimpl.C: ditto
2864         * author.C: ditto
2865         * buffer.h: ditto
2866         * bufferlist.h: ditto
2867         * changes.h: ditto
2868         * lyxfunc.C: ditto
2869
2870 2003-02-28  Alfredo Braunstein <abraunst@libero.it>
2871
2872         * converter.[Ch]: split into itself +
2873         * graph.[Ch]
2874         * format.[Ch]
2875         * Makefile.am: += graph.[Ch] + format.[Ch]
2876         * MenuBackend.C
2877         * buffer.C
2878         * exporter.C
2879         * importer.C
2880         * lyx_main.C
2881         * lyxfunc.C
2882         * lyxrc.C: added #include "format.h"
2883
2884 2003-02-27  Angus Leeming  <leeming@lyx.org>
2885
2886         * BufferView_pimpl.C (dispatch): call a real, LyX dialog to insert
2887           a label.
2888
2889         * factory.C (createInset): add "label" to the factory.
2890
2891         * lyx_cb.[Ch] (getPossibleLabel): rewrite MenuInsertLabel to return the
2892           string and do no more.
2893
2894 2003-02-27  Angus Leeming  <leeming@lyx.org>
2895
2896         * commandtags.h:
2897         * LyXAction.C (init):
2898         * factory.C (createInset):
2899         * BufferView_pimpl.C (dispatch):
2900           collapse LFUN_XYZ_APPLY to LFUN_INSET_APPLY.
2901
2902         * lyxfunc.C (getStatus): remove LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY.
2903
2904         * lyxfunc.C (dispatch):
2905         * text3.C (dispatch): pass name to params2string.
2906
2907 2003-02-26  Angus Leeming  <leeming@lyx.org>
2908
2909         * BufferView_pimpl.C (dispatch): collapse the various LFUN_XYZ_APPLY
2910           blocks together.
2911           Rearrange the ~includes. Strip out the unnecessary ones.
2912
2913         * factory.C (createInset): reformat.
2914           create new insets for the various LFUN_XYZ_APPLY lfuns.
2915
2916 2003-02-26  John Levon  <levon@movementarian.org>
2917
2918         * lyxrow.h:
2919         * lyxrow.C: add isParStart,isParEnd helpers
2920
2921         * paragraph.h: make isInserted/DeletedText take refs
2922
2923         * paragraph_funcs.h:
2924         * paragraph_funcs.C: remove #if 0'd code
2925
2926         * lyxtext.h:
2927         * text3.C:
2928         * text2.C:
2929         * text.C: use lyxrow helpers above.
2930           Move draw and paint routines to RowPainter.
2931           Make several methods use refs not pointers.
2932           Make backgroundColor() const.
2933           Add markChangeInDraw(), isInInset().
2934           Merge changeRegionCase into changeCase.
2935           Make workWidth() shouldn't-happen code into an Assert.
2936
2937         * rowpainter.h:
2938         * rowpainter.C: new class for painting a row.
2939
2940         * vspace.h:
2941         * vspace.C: make inPixels take a ref
2942
2943 2003-02-26  Angus Leeming  <leeming@lyx.org>
2944
2945         * BufferView_pimpl.C (dispatch): use InsetCommand::localDispatch for
2946         LFUN_REF_APPLY.
2947
2948 2003-02-25  John Levon  <levon@movementarian.org>
2949
2950         * ispell.C: give the forked command a more accurate name
2951
2952 2003-02-22  John Levon  <levon@movementarian.org>
2953
2954         * toc.h:
2955         * toc.C: make TocItem store an id not a Paragraph *
2956           (bug #913)
2957
2958 2003-02-21  Angus Leeming  <leeming@lyx.org>
2959
2960         * commandtags.h: Retire LFUN_CITATION_INSERT, LFUN_CITATION_CREATE,
2961           LFUN_INSERT_BIBTEX, LFUN_BIBTEX_STYLE, LFUN_BIBDB_ADD, LFUN_BIBDB_DEL.
2962           Bring to life LFUN_DIALOG_SHOW_NEW_INSET, LFUN_DIALOG_SHOW_NEXT_INSET,
2963           LFUN_DIALOG_UPDATE, LFUN_DIALOG_HIDE, LFUN_DIALOG_DISCONNECT_INSET,
2964           LFUN_BIBITEM_APPLY, LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY,
2965           LFUN_INDEX_APPLY, LFUN_REF_APPLY, LFUN_TOC_APPLY, LFUN_URL_APPLY,
2966
2967         * BufferView_pimpl.C (dispatch):
2968         * LyXAction.C (init):
2969         * factory.C (createInset):
2970         * lyxfunc.C (getStatus, dispatch):
2971         * text3.C (dispatch): retire old LFUNs and bring new ones to life.
2972
2973 2003-02-21  Angus Leeming  <leeming@lyx.org>
2974
2975         * BufferView_pimpl.C (MenuInsertLyXFile):
2976         * lyx_cb.C (WriteAs, getContentsOfAsciiFile):
2977         * lyxfunc.C (menuNew, open, doImport):
2978           no longer pass a LyXView & to fileDlg.
2979
2980 2003-02-21  Angus Leeming  <leeming@lyx.org>
2981
2982         * BufferView_pimpl.C: replace insetbib.h with insetbibtex.h.
2983         * LyXAction.C: change, BIBKEY to BIBITEM.
2984         * buffer.C: replace insetbib.h with insetbibitem.h and insetbibtex.h.
2985         Change InsetBibKey to InsetBibitem.
2986         Change BIBKEY_CODE to BIBITEM_CODE.
2987         * commandtags.h: change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
2988         * factory.C: replace insetbib.h with insetbibitem.h.
2989         Change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
2990         * paragraph.C: replace insetbib.h with insetbibitem.h.
2991         * paragraph.[Ch]: change InsetBibKey to InsetBibitem.
2992         Change bibkey() to bibitem().
2993         * text.C: remove insetbib.h.
2994         * text2.C: replace insetbib.h with insetbibitem.h.
2995         change bibkey() to bibitem().
2996         * text3.C: remove insetbib.h.
2997         change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
2998
2999 2003-02-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3000
3001         * lyxrc.C (output): enclose user email in quotes (in case there are
3002         several words)
3003
3004 2003-02-18  John Levon  <levon@movementarian.org>
3005
3006         * buffer.h: add std::
3007
3008 2003-02-17  John Levon  <levon@movementarian.org>
3009
3010         * SpellBase.h:
3011         * ispell.h:
3012         * ispell.C:
3013         * pspell.h:
3014         * pspell.C: reworking. Especially in ispell, a large
3015           number of clean ups and bug fixes.
3016
3017         * lyxfunc.C: fix revert to behave sensibly
3018
3019 2003-02-17 André Pönitz <poenitz@gmx.net>
3020
3021         * LyXAction.C:
3022         * commandtags.h: new LFUN_INSERT_BIBKEY
3023
3024         * layout.h:
3025         * lyxlayout.C:
3026         * buffer.C:
3027         * factory.C:
3028         * text.C:
3029         * text2.C:
3030         * text3.C:
3031         * paragraph.[Ch]:
3032         * paragraph_func.C: remove special bibkey handling
3033
3034 2003-02-17  John Levon  <levon@movementarian.org>
3035
3036         * text.C (Delete): fix case where delete at the end of
3037           the very first paragraph would not merge the pars
3038
3039 2003-02-17  John Levon  <levon@movementarian.org>
3040
3041         * lyxrow.C: fix lastPrintablePos()
3042
3043 2003-02-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3044
3045         * bufferparams.C (writeLaTeX): add a std:here
3046
3047         * buffer.C: and remove a using directive there
3048
3049 2003-02-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3050
3051         * buffer.C (makeLaTeXFile): move the code that generates the
3052           preamble...
3053
3054         * bufferparams.C (writeLaTeX): ... in this new method
3055
3056         * LaTeXFeatures.C (getEncodingSet): make const
3057           (getLanguages): make const
3058
3059         * MenuBackend.C (binding): returns the binding associated to this
3060           action
3061           (add): sets the status of each item by calling getStatus. Adds
3062           some intelligence.
3063           (read): add support for OptSubMenu
3064           (expand): remove extra separator at the end of expanded menu
3065
3066 2003-02-15  John Levon  <levon@movementarian.org>
3067
3068         * BufferView.C:
3069         * BufferView_pimpl.C:
3070         * bufferlist.h:
3071         * bufferlist.C: remove pointless BufferStorage bloat. Remove
3072           inset code that had no actual effect. Remove unneeded status
3073           code.
3074
3075 2003-02-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3076
3077         * buffer.C (makeLaTeXFile): fix counting of number of line feeds
3078           in preamble
3079
3080 2003-02-14  Michael Schmitt <michael.schmitt@teststep.org>
3081
3082         * text.C (drawLengthMarker): also draw an arrow marker for
3083           symbolic lengths (medskip...)
3084
3085 2003-02-14  John Levon  <levon@movementarian.org>
3086
3087         * tabular.h:
3088         * tabular.C: better method names
3089
3090 2003-02-14  John Levon  <levon@movementarian.org>
3091
3092         * BufferView_pimpl.C:
3093         * bufferlist.C:
3094         * buffer.C:
3095         * converter.C:
3096         * lyx_cb.C:
3097         * lyxfunc.C: change prohibit/allowInput to busy(bool), as
3098           it's a more accurate name. Remove some pointless uses.
3099
3100 2003-02-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3101
3102         * text2.C (LyXText): change order of initilizers to shut off
3103           warnings
3104
3105 2003-02-14  John Levon  <levon@movementarian.org>
3106
3107         * buffer.C: use ParIterator for getParFromID()
3108
3109         * paragraph.h:
3110         * paragraph.C:
3111         * paragraph_pimpl.h:
3112         * paragraph_pimpl.C: remove unused getParFromID()
3113
3114 2003-02-14  John Levon  <levon@movementarian.org>
3115
3116         * buffer.C: remove some very old #if 0'd parse code
3117
3118 2003-02-13  John Levon  <levon@movementarian.org>
3119
3120         * text.h:
3121         * text.C:
3122         * text2.C: move hfillExpansion(), numberOfSeparators(),
3123           rowLast(), rowLastPrintable(), numberofHfills(),
3124           numberOfLabelHfills() ...
3125
3126         * lyxrow.h:
3127         * lyxrow.C: ... to member functions here.
3128
3129         * paragraph.h:
3130         * paragraph.C:
3131         * lyxtext.h:
3132         * text.C: remove LyXText::beginningOfMainBody(), and call
3133           p->beginningOfMainBody() directly. Move the check for
3134           LABEL_MANUAL into the latter.
3135
3136         * text.h:
3137         * text.C:
3138         * text2.C:
3139         * vspace.C:
3140         * BufferView.h:
3141         * BufferView.C: make defaultHeight() be a free defaultRowHeight()
3142
3143         * text.h:
3144         * text.C:
3145         * text2.C:
3146         * text3.C:
3147         * frontends/screen.C: move bv_owner private, introduce isTopLevel()
3148           to make it clear we're testing for outmost-lyxtext vs. inset's lyxtext
3149
3150 2003-02-13  John Levon  <levon@movementarian.org>
3151
3152         * CutAndPaste.C: remove debug
3153
3154 2003-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3155
3156         * paragraph.C (asString): remove two unused variables
3157
3158         * lyxtextclass.C (readTitleType):
3159           (Read):
3160           (LyXTextClass): handle new members titletype_ and titlename_
3161
3162         * buffer.C (latexParagraphs): honor LyXTextClass::titletype
3163
3164 2003-02-09  John Levon  <levon@movementarian.org>
3165
3166         * buffer.h:
3167         * buffer.C: replace hand-coded list with a map for the dep clean
3168
3169 2003-02-08  John Levon  <levon@movementarian.org>
3170
3171         * LaTeX.C: consolidate code into showRunMessage() helper
3172
3173 2003-02-08  John Levon  <levon@movementarian.org>
3174
3175         * lyxfind.C:
3176         * lyxtext.h:
3177         * text2.C:
3178         * BufferView.C: change setSelectionOverString() to setSelectionRange()
3179           and pass the size in explicitly
3180
3181         * BufferView_pimpl.h:
3182         * BufferView_pimpl.C:
3183         * BufferView.h:
3184         * BufferView.C: add getCurrentChange()
3185
3186         * BufferView_pimpl.h:
3187         * BufferView_pimpl.C: handle change lfuns
3188
3189         * CutAndPaste.C: merge the cut and copy code. Rework the cut code
3190           for changes. Mark pasted paragraphs as new.
3191
3192         * support/lyxtime.h:
3193         * support/lyxtime.C:
3194         * DepTable.C: abstract time_t as lyx::time_type
3195
3196         * LColor.h:
3197         * LColor.C: add colours for new text, deleted text, changebars
3198
3199         * LaTeXFeatures.C: add dvipost as a simple feature. Make the color
3200           package use "usenames" option.
3201
3202         * commandtags.h:
3203         * lyxfunc.C:
3204         * LyXAction.C: add change lfuns
3205
3206         * Makefile.am:
3207         * author.h:
3208         * author.C: author handling
3209
3210         * buffer.h:
3211         * buffer.C: add a per-buffer author list, with first entry as
3212           current author. Handle new .lyx tokens for change tracking. Output
3213           author list to .lyx file. Output dvipost stuff to .tex preamble.
3214           Bump lyx format to 222.
3215
3216         * bufferlist.h:
3217         * bufferlist.C: add setCurrentAuthor() to reset current author details
3218           in all buffers.
3219
3220         * bufferparams.h:
3221         * bufferparams.C: add param for tracking
3222
3223         * bufferview_funcs.C: output change info in minibuffer
3224
3225         * Makefile.am:
3226         * changes.h:
3227         * changes.C: add change-tracking structure
3228
3229         * debug.h:
3230         * debug.C: add CHANGES debug flag
3231
3232         * lyxfind.h:
3233         * lyxfind.C: add code for finding the next change piece
3234
3235         * lyxrc.h:
3236         * lyxrc.C: add user_name and user_email
3237
3238         * lyxrow.h:
3239         * lyxrow.C: add a metric for the top of the text line
3240
3241         * lyxtext.h:
3242         * text.C: implement accept/rejectChange()
3243
3244         * lyxtext.h:
3245         * text.C: paint changebars. Paint new/deleted text in the chosen
3246         colours. Strike through deleted text.
3247
3248         * paragraph.h:
3249         * paragraph.C:
3250         * paragraph_pimpl.h:
3251         * paragraph_pimpl.C: output change markers in .lyx and .tex. Pass
3252           in the current change to the insert functions. Rework erase to
3253           mark text as deleted, adding an eraseIntern() and a range-based
3254           erase(). Implement per-paragraph change lookup and
3255           accept/reject.
3256
3257         * paragraph_funcs.C: Fixup paste for change tracking.
3258
3259         * tabular.C: mark added row/columns as new.
3260
3261         * text.C: fix rowLast() to never return -1. Don't allow
3262           spellchecking of deleted text. Track transpose changes. Don't
3263           allow paragraph break or merge where appropriate.
3264
3265         * text2.C: leave cursor at end of selection after a cut.
3266
3267 2003-02-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3268
3269         * text.C (getLengthMarkerHeight):
3270         (drawLengthMarker): make the `symbolic' lengths (small/med/big)
3271         visible on screen too.
3272
3273 2003-02-07  John Levon  <levon@movementarian.org>
3274
3275         * text.C: s/LYX_PAPER_MARGIN/PAPER_MARGIN/g
3276
3277 2003-02-05  Angus Leeming  <leeming@lyx.org>
3278
3279         * lyxserver.C (read_ready): revert my patch of 11 September last year
3280         as it sends PC cpu through the roof. Presumably this means that
3281         the lyxserver will no longer run on an Alpha...
3282
3283 2003-01-30  Angus Leeming  <leeming@lyx.org>
3284
3285         * factory.C (createInset): create an InsetCommandParam of type "index"
3286         and use it to 'do the right thing'.
3287
3288         * text2.C (getStringToIndex): ensure that cursor position is always
3289         reset to the reset_cursor position.
3290
3291 2003-01-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3292
3293         * lyxfunc.C (getStatus): "buffer-export custom" should never be
3294         disabled.
3295
3296 2003-01-20  Michael Schmitt <michael.schmitt@teststep.org>
3297
3298         * bufferview.C:
3299         * lyxcb.C:
3300         * lyxfunc.C: Output messages with identical spelling, punctuation,
3301         and spaces
3302
3303 2003-01-22  Michael Schmitt  <Michael.Schmitt@teststep.org>
3304
3305         * MenuBackend.C (expandFormats): List only viewable export formats
3306         in "View" menu
3307
3308         * buffer.C (parseSingleLyXformat2Token): Fix misleading error
3309         message
3310
3311         * lyxfunc.C (getStatus): Make sure that formats other than
3312         "fax" can also be disabled
3313
3314 2003-01-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3315
3316         * text3.C (dispatch): put the lfuns that insert insets in 3
3317         groups, and call doInsertInset with appropriate arguments.
3318         (doInsertInset): new function, that creates an inset and inserts
3319         it according to some boolean parameters.
3320
3321 2003-01-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
3322
3323         * buffer.C (readFile): remember to pass on 'par' when calling
3324         readFile recursively.
3325
3326 2003-01-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3327
3328         * MenuBackend.C (expandFormats): add "..." to import formats.
3329
3330 2003-01-15  Dekel Tsur  <dekelts@tau.ac.il>
3331
3332         * paragraph.C (asString): Remove XForms RTL hacks.
3333
3334 2003-01-13  Alfredo Braunstein <abraunst@libero.it>
3335         * buffer.C: fix typo
3336
3337 2003-01-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
3338
3339         * Makefile.am (LIBS): delete var
3340         (lyx_LDADD): add @LIBS@ here instead.
3341
3342 2003-01-08  Michael Schmitt <Michael.Schmitt@teststep.org>
3343
3344         * Clarify the meaning of "wheel mouse jump"
3345
3346 2003-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3347
3348         * lyxfunc.C (getStatus): fix disabling of cut/paste of cells in a
3349         tabular in a float
3350
3351 2003-01-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3352
3353         * importer.C (Loaders): do not preallocate 3 elements in the
3354         vector, since one ends up with 6 elements otherwise
3355
3356 2002-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3357
3358         * DepTable.C (write): write the file name as last element of the
3359         .dep file (because it may contain spaces)
3360         (read): read info in the right order
3361
3362 2003-01-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3363
3364         * paragraph_pimpl.C (simpleTeXBlanks):
3365         (simpleTeXSpecialChars):
3366         * paragraph.C (simpleTeXOnePar): make `column' unsigned.
3367
3368         * tabular.C (latex): add some missing case statements. Reindent.
3369
3370         * MenuBackend.C (expandToc): remove unused variable.
3371
3372 2003-01-06  Michael Schmitt <Michael.Schmitt@teststep.org>
3373
3374         * LColor.C:
3375         * LaTeX.C:
3376         * LyXAction.C:
3377         * MenuBackend.C:
3378         * buffer.C:
3379         * exporter.C:
3380         * lyxfunc.C:
3381         * lyxrc.C: fix inconsistent usage of spaces, colons, capitalization,
3382         and the like.
3383
3384 2003-01-05  John Levon  <levon@movementarian.org>
3385
3386         * BufferView.h:
3387         * BufferView.C: add getEncoding()
3388
3389         * kbsequence.h:
3390         * kbsequence.C: do not store last keypress
3391
3392         * lyxfunc.h:
3393         * lyxfunc.C: store last keypress here instead. Pass encoding
3394           to getISOEncoded()
3395
3396 2002-12-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3397
3398         * lyx_main.C (init): remove annoying error message when following
3399         symbolic links (bug #780)
3400
3401 2002-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3402
3403         * text.C (insertChar):
3404         * lyxrc.C (getDescription): remove extra spaces
3405
3406 2002-12-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3407
3408         * lyxrc.C (getDescription): remove extra spaces
3409
3410 2002-12-20  John Levon  <levon@movementarian.org>
3411
3412         * text3.C: hack fix for page up/down across tall rows
3413
3414 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3415
3416         * text2.C (pasteEnvironmentType): avoid crash if layout-copy has
3417         not been invoked
3418
3419 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3420
3421         * lyxfunc.C (getStatus): query lyx_gui::getStatus() to catter for
3422         unimplemented lfuns. Make LFUN_THESAURUS_ENTRY status unknown if
3423         thesaurus is not compiled in
3424
3425 2002-12-17  Alfredo Braunstein <abraunst@libero.it>
3426
3427         * lyxfunc.C: correct  inversion of WORDFINDBACK/FORWARD
3428
3429 2002-12-16  Angus Leeming  <leeming@lyx.org>
3430
3431         * lyxrc.[Ch]:
3432         * lyx_main.C (init): remove override_x_deadkeys stuff.
3433
3434 2002-12-12  John Levon  <levon@movementarian.org>
3435
3436         * lyxfunc.C: use LyXKeySym->isText() as last-ditch
3437           insert. Only remove shift modifier under strict
3438           circumstances.
3439
3440 2002-12-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
3441
3442         * MenuBackend.C (expandToc): fix crash.
3443
3444 2002-12-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
3445
3446         * MenuBackend.C (expandToc): gettext on float names.
3447
3448 2002-12-03  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
3449
3450         * lyxlength.[Ch]: set default unit to UNIT_NONE,
3451         implement bool empty() [bug 490]
3452
3453 2002-12-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
3454
3455         * text2.C, CutAndPaste.C: use BoostFormat.h not boost/format.hpp
3456
3457 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3458
3459         * several files: ws changes
3460
3461 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3462
3463         * text2.C (setCounter): clean up a bit, use boost.format.
3464         (updateCounters): initialize par upon declaration.
3465
3466         * CutAndPaste.C (SwitchLayoutsBetweenClasses): set the layout also
3467         if the layout exists. We do not just store the layout any more.
3468         (SwitchLayoutsBetweenClasses): use boost.format
3469
3470 2002-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3471
3472         * converter.C (convert): if from and to files are the same, use a
3473         temporary files as intermediary
3474
3475 2002-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3476
3477         * commandtags.h:
3478         * LyXAction.C (init): remove LFUN_VECTOR (bug 662)
3479
3480 2002-11-27  Dekel Tsur  <dekelts@tau.ac.il>
3481
3482         * lyxrc.[Ch]: Add {roman,sans,typewriter}_font_foundry variables.
3483
3484 2002-11-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
3485
3486         * tabular.C (asciiPrintCell): use string(size, char) instead of
3487         explicit loop.
3488
3489         * sgml.C (openTag): fix order of arguments to string constructor
3490         (closeTag): ditto
3491
3492         * lyxfunc.C (dispatch): use boost.format
3493
3494         * lots of files: change "c" -> 'c'
3495
3496 2002-11-25  Dekel Tsur  <dekelts@tau.ac.il>
3497
3498         * encoding.C: Patch from Isam Bayazidi: Fix Arabic shaping.
3499
3500 2002-11-25  Angus Leeming  <leeming@lyx.org>
3501
3502         * BoostFormat.h: wrap code inside #ifdef __GNUG__ block.
3503
3504         * lyx_main.C (init): compile fix.
3505
3506 2002-11-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
3507
3508         * lyx_cb.C (start): boost.formatify
3509         do not include <iostream>
3510
3511         * lengthcommon.C: ws only
3512
3513         * boost-inst.C,BoostFormat.h: add more explict instantations
3514
3515 2002-11-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
3516
3517         * lots of files: handle USE_BOOST_FORMAT
3518
3519 2002-11-21  John Levon  <levon@movementarian.org>
3520
3521         * pspell.C: fix compile
3522
3523 2002-11-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3524
3525         * lyxfunc.C (dispatch): use boost::format
3526         (open): ditto
3527         (doImport): ditto
3528
3529         * lyxfont.C (stateText): use boost::format
3530
3531         * lyx_main.C (LyX): use boost::format
3532         (init): ditto
3533         (queryUserLyXDir): ditto
3534         (readRcFile): ditto
3535         (parse_dbg): ditto
3536         (typedef boost::function): use the recommened syntax.
3537
3538         * importer.C (Import): use boost::format
3539
3540         * debug.C (showLevel): use boost::format
3541
3542         * converter.C (view): use boost::format
3543         (convert): ditto
3544         (move): ditto
3545         (scanLog): ditto
3546
3547         * bufferview_funcs.C (currentState): use boost::format
3548
3549         * bufferlist.C (emergencyWrite): use boost::format
3550
3551         * buffer.C (readLyXformat2): use boost::format
3552         (parseSingleLyXformat2Token): ditto
3553
3554         * Makefile.am (lyx_SOURCES): add BoostFormat.h and boost-inst.C
3555
3556         * LaTeX.C (run): use boost::format
3557
3558         * Chktex.C (scanLogFile): use boost::format
3559
3560         * BufferView_pimpl.C (savePosition): use boost::format
3561         (restorePosition): ditto
3562         (MenuInsertLyXFile): ditto
3563
3564         * BoostFormat.h: help file for explicit instation.
3565
3566 2002-11-21  Dekel Tsur  <dekelts@tau.ac.il>
3567
3568         * tabular.C (latex): Support for block alignment in fixed width
3569         columns.
3570
3571 2002-11-17  John Levon  <levon@movementarian.org>
3572
3573         * BufferView_pimpl.C:
3574         * lyx_cb.C:
3575         * lyxfunc.C: split filedialog into open/save
3576
3577 2002-11-08  Juergen Vigna  <jug@sad.it>
3578
3579         * undo_funcs.C (textHandleUndo): fixed problems with undo introduced
3580         by my last patch (hopefully).
3581
3582 2002-11-08  John Levon  <levon@movementarian.org>
3583
3584         * iterators.h:
3585         * iterators.C:
3586         * buffer.h:
3587         * buffer.C:
3588         * paragraph.h:
3589         * paragraph.C:
3590         * toc.h:
3591         * toc.C: ParConstIterator, and use it (from Lars)
3592
3593 2002-11-07  Ben Stanley  <bds02@uow.edu.au>
3594
3595         * lyxtextclass.[Ch]: revise and add doxygen comments
3596
3597 2002-11-07  John Levon  <levon@movementarian.org>
3598
3599         * text.C: fix progress value for spellchecker
3600
3601         * toc.C: fix navigate menu for insetwrap inside minipage
3602
3603         * paragraph_funcs.C: added FIXME for suspect code
3604
3605 2002-11-07  John Levon  <levon@movementarian.org>
3606
3607         * BufferView_pimpl.C: fix redrawing of insets
3608           on buffer switch
3609
3610 2002-11-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3611
3612         * text2.C (updateCounters): fix bug 668
3613
3614 2002-11-04  Dekel Tsur  <dekelts@tau.ac.il>
3615
3616         * text3.C (dispatch): Do not make the buffer dirty when moving the
3617         cursor.
3618
3619 2002-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
3620
3621         * vc-backend.C: STRCONV
3622         (scanMaster): ditto
3623
3624         * text2.C (setCounter): STRCONV
3625
3626         * paragraph.C (asString): STRCONV
3627
3628         * lyxlength.C (asString): STRCONV
3629         (asLatexString): ditto
3630
3631         * lyxgluelength.C (asString): STRCONV
3632         (asLatexString): ditto
3633
3634         * lyxfunc.C (dispatch): STRCONV
3635         (open): ditto
3636
3637         * lyxfont.C (stateText): STRCONV
3638
3639         * importer.C (Import): STRCONV
3640
3641         * counters.C (labelItem): STRCONV
3642         (numberLabel): ditto
3643         (numberLabel): remove unused ostringstream o
3644
3645         * chset.C: STRCONV
3646         (loadFile): ditto
3647
3648         * bufferview_funcs.C (currentState): STRCONV
3649
3650         * buffer.C (readFile): STRCONV
3651         (asciiParagraph): ditto
3652         (makeLaTeXFile): ditto
3653
3654         * Spacing.C (writeEnvirBegin): STRCONV
3655
3656         * LaTeXFeatures.C (getLanguages): STRCONV
3657         (getPackages): ditto
3658         (getMacros): ditto
3659         (getBabelOptions): ditto
3660         (getTClassPreamble): ditto
3661         (getLyXSGMLEntities): ditto
3662         (getIncludedFiles): ditto
3663
3664         * LaTeX.C: STRCONV
3665         (run): ditto
3666         (scanAuxFile): ditto
3667         (deplog): ditto
3668
3669         * LString.h: add the STRCONV macros
3670
3671         * BufferView_pimpl.C (savePosition): STRCONV
3672         (restorePosition): ditto
3673         (MenuInsertLyXFile): ditto
3674
3675         * vc-backend.C (scanMaster): change from submatch[...] to
3676         submatch.str(...)
3677
3678         * funcrequest.C: include config.h
3679
3680         * factory.C: include config.h
3681
3682         * chset.C (loadFile): change from submatch[...] to submatch.str(...)
3683
3684         * box.C: include config.h
3685
3686         * LaTeX.C (scanAuxFile): change from submatch[...] to
3687         submatch.str(...)
3688         (deplog): ditto
3689
3690 2002-10-25  Angus Leeming  <leeming@lyx.org>
3691
3692         * BufferView_pimpl.C (cursorToggle): remove reapSpellchecker hack.
3693
3694         * ispell.[Ch] (setError): new method.
3695         * ispell.C (c-tor): move out child process into new class LaunchIspell.
3696         Use setError() insetead of goto END.
3697
3698         * lyx_cb.C (AutoSave): move out child process into new class
3699         AutoSaveBuffer.
3700
3701 2002-10-30  John Levon  <levon@movementarian.org>
3702
3703         * text3.C: make start appendix undoable
3704
3705 2002-10-24  Dekel Tsur  <dekelts@tau.ac.il>
3706
3707         * lyxlength.C (inPixels): Fix returned value.
3708
3709         * paragraph.C (TeXOnePar): Fix bug with language changes in nested
3710         environment.
3711
3712 2002-10-24  Angus Leeming  <leeming@lyx.org>
3713
3714         * lyxgluelength.h: no need to forward declare BufferParams
3715         or BufferView, so don't.
3716
3717 2002-10-21  John Levon  <levon@movementarian.org>
3718
3719         * BufferView.C: menuUndo ->undo, redo
3720
3721         * BufferView.h: document, remove dead, make some methods private
3722
3723         * paragraph_funcs.h:
3724         * paragraph_funcs.C:
3725         * CutAndPaste.C: s/pasteParagraph/mergeParagraph
3726
3727         * buffer.h:
3728         * buffer.C:
3729         * sgml.h:
3730         * sgml.C: move sgml open/close tag into sgml.C
3731
3732         * bufferview_funcs.h: unused prototype
3733
3734         * lyxfunc.h:
3735         * lyxfunc.C: remove unused
3736
3737         * lyxtext.h:
3738         * text.C: remove unused
3739
3740 2002-10-21  John Levon  <levon@movementarian.org>
3741
3742         * BufferView.h:
3743         * BufferView.C:
3744         * BufferView_pimpl.h:
3745         * BufferView_pimpl.C: fix mouse wheel handling based on
3746           patch from Darren Freeman
3747
3748 2002-10-09  Dekel Tsur  <dekelts@tau.ac.il>
3749
3750         * lyx_main.C (queryUserLyXDir): Fix automatic reconfiguration.
3751
3752 2002-10-17  Dekel Tsur  <dekelts@tau.ac.il>
3753
3754         * lyxlength.C (inPixels): Fix hanfling of negative length.
3755         Fix LyXLength::MU case.
3756
3757 2002-10-16  John Levon  <levon@movementarian.org>
3758
3759         * buffer.C: remove \\protected_separator parsing done by lyx2lyx now
3760
3761 2002-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3762
3763         * converter.C (view): add support for $$i (file name) and $$p
3764         (file path) for the viewer command. If $$i is not specified, then
3765         it is appended to the command (for compatibility with old syntax)
3766
3767 2002-10-14  Juergen Vigna  <jug@sad.it>
3768
3769         * undo_funcs.C (textHandleUndo): alter the order in which the
3770         new undopar is added to the LyXText, as we have to set first
3771         the right prev/next and then add it as otherwise the rebuild of
3772         LyXText is not correct. Also reset the cursor to the right paragraph,
3773         with this IMO we could remove the hack in "redoParagraphs()".
3774
3775 2002-10-09  Angus Leeming  <leeming@lyx.org>
3776
3777         * Bufferview_pimpl.C (dispatch): call InsetCitation::setLoadingBuffer
3778         to turn off an optimisation if a new inset is to be inserted.
3779
3780 2002-10-11 André Pönitz <poenitz@gmx.net>
3781
3782         * lyxtext.h: make some functions public to allow access
3783         from inset/lyxtext for handling LFUN_PRIOR/NEXT
3784
3785 2002-10-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3786
3787         * text3.C (dispatch): when changing layout, avoid an infinite loop
3788         [bug #652]
3789
3790 2002-10-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3791
3792         * lyxrc.C (read): treat a viewer or converter command of "none" as
3793         if it were empty.
3794
3795         * MenuBackend.C (expandFormats): for an update, also allow the
3796         formats that are not viewable
3797
3798         * lyx_main.C (queryUserLyXDir): re-run automatically the configure
3799         script if it is newer than the lyxrc.defaults in user directory
3800
3801 2002-10-07 André Pönitz <poenitz@gmx.net>
3802
3803         * text.C: Vitaly Lipatov's small i18n fix
3804
3805 2002-09-25  Angus Leeming  <leeming@lyx.org>
3806
3807         * ispell.h: doxygen fix.
3808
3809 2002-09-25  Dekel Tsur  <dekelts@tau.ac.il>
3810
3811         * buffer.h (readFile): Add a new argument to the method, to allow
3812         reading of old-format templates.
3813
3814 2002-09-24  Dekel Tsur  <dekelts@tau.ac.il>
3815
3816         * toc.C (getTocList): Get TOC from InsetWrap.
3817
3818 2002-09-16  John Levon  <levon@movementarian.org>
3819
3820         * lyxfunc.C: check tabular for cut/copy too
3821
3822 2002-09-12  John Levon  <levon@movementarian.org>
3823
3824         * LyXAction.C: tidy
3825
3826         * factory.h:
3827         * factory.C: add header
3828
3829         * paragraph_funcs.h:
3830         * paragraph_funcs.C: cleanup
3831
3832 2002-09-11  John Levon  <levon@movementarian.org>
3833
3834         * PrinterParams.h: odd/even default to true
3835
3836 2002-09-12  Rob Lahaye  <lahaye@snu.ac.kr>
3837
3838         * PrinterParams.h: update printer parameters for new xforms dialog
3839
3840 2002-09-11  Angus Leeming  <leeming@lyx.org>
3841
3842         * lyxserver.C (read_ready): re-write to make it more transparent
3843         and to make it work in coherent fashion under Tru64 Unix.
3844
3845 2002-09-11  André Pönitz <poenitz@gmx.net>
3846
3847         * commandtags.h:
3848         * LyXAction.C:
3849         * text3.C: implement LFUN_WORDSEL
3850
3851 2002-09-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
3852
3853         * lyxtextclass.h: don't include FloatList.h, forward declare instead.
3854         make floatlist_ a boost::shared_ptr<FloatList>
3855
3856         * lyxtextclass.C: include FloatList.h
3857         (LyXTextClass): initialize floatlist_
3858         (TextClassTags): add TC_NOFLOAT
3859         (Read): match "nofloat" to TC_NOFLOAT and use it.
3860         (readFloat): modify call to floatlist_
3861         (floats): ditto
3862         (floats): ditto
3863
3864         * FloatList.[Ch] (FloatList): remove commented out float
3865         initialization.
3866         (erase): new function
3867
3868 2002-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3869
3870         * MenuBackend.C (expandToc): fix crash when there is no document
3871         open
3872
3873 2002-09-10  Dekel Tsur  <dekelts@tau.ac.il>
3874
3875         * many files: Add insetwrap.
3876
3877 2002-09-09  John Levon  <levon@movementarian.org>
3878
3879         * text2.C: remove confusing and awkward depth wraparound
3880
3881 2002-09-09  John Levon  <levon@movementarian.org>
3882
3883         * BufferView_pimpl.C: Don't use empty arg for LFUN_CHILD_INSERT
3884
3885         * buffer.h:
3886         * buffer.C: remove getIncludeonlyList()
3887
3888         * paragraph.C:
3889         * lyxfunc.C: remove headers
3890
3891 2002-09-09  Juergen Vigna  <jug@sad.it>
3892
3893         * text.C (getColumnNearX): fix form Michael this is most
3894         probably a cut&paste bug.
3895
3896 2002-09-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
3897
3898         * remove all INHERIT_LANG and INHERIT_LANGUAGE commented code
3899
3900         * LaTeXFeatures.C (useLayout): let tclass and lyt be a const
3901         references, ws changes.
3902
3903         * text2.C (init): update counters after init
3904         (insertParagraph): no need to set counter on idividual paragraphs.
3905         (setCounter): access the counters object in the textclass object
3906         on in the buffer object.
3907         (updateCounters): ditto
3908
3909         * lyxtextclass.C: include counters.h, add variable ctrs_ as
3910         shared_ptr<Counters> to avoid loading counters.h in all
3911         compilation units.
3912         (LyXTextClass): initialize ctrs_
3913         (TextClassTags): add TC_COUNTER, and ...
3914         (Read): use it here.
3915         (CounterTags): new tags
3916         (readCounter): new function
3917         (counters): new funtion
3918         (defaultLayoutName): return a const reference
3919
3920         * counters.C (Counters): remove contructor
3921         (newCounter): remove a couple of unneeded statements.
3922         (newCounter): simplify a bit.
3923         (numberLabel): some small formatting changes.
3924
3925         * buffer.[Ch]: remove all traces of counters, move the Counters
3926         object to the LyXTextClass.
3927
3928 2002-09-06  Alain Castera  <castera@in2p3.fr>
3929
3930         * tabular.C: uses \tabularnewline; uses >{...} construct from array
3931         package to set the horizontal alignment on fixed width columns.
3932
3933         * lyx_sty.C:
3934         * lyx_sty.h: added tabularnewline macro def.
3935
3936         * LaTeXFeatures.C: added NeedTabularnewline macro feature
3937
3938 2002-09-06  John Levon  <levon@movementarian.org>
3939
3940         * LyXAction.C: tooltips for sub/superscript
3941
3942         * MenuBackend.C: a bit more verbose
3943
3944         * lyxfunc.C: tiny clean
3945
3946         * undo_funcs.C: document undo_frozen
3947
3948 2002-09-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
3949
3950         * counters.C (Counters): add missing algorithm counter.
3951
3952         * text2.C (setCounter): lookup the counter with layouts latexname
3953         instead of by section number.
3954         (setCounter): use a hackish way to lookup the correct enum
3955         counter.
3956         a float name->type change
3957         reset enum couners with counter name directly instead of depth value.
3958
3959         * counters.C (Counters): remove the push_backs, change to use the
3960         float type not the float name.
3961         (labelItem): remove unused string, float name->type change
3962
3963         * counters.h: don't include vector, loose the enums and sects vectors
3964
3965 2002-09-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
3966
3967         * lyxtextclass.C (TextClassTags): add TC_FLOAT
3968         (Read): add float->TC_FLOAT to textclassTags
3969         (Read): and handle it in the switch
3970         (readFloat): new function
3971
3972         * FloatList.C (FloatList): comment out the hardcoded float
3973         definitions.
3974
3975         * lyxlayout.h: ws change.
3976
3977 2002-08-29  Dekel Tsur  <dekelts@tau.ac.il>
3978
3979         * buffer.C (readFile): Look for lyx2lyx in LYXDIR/lyx2lyx/
3980
3981 2002-09-03  Angus Leeming  <leeming@lyx.org>
3982
3983         * BufferView_pimpl.h: qualified name is not allowed in member
3984         declaration: WorkArea & Pimpl::workarea() const;
3985
3986         * factory.C: added using std::endl directive.
3987
3988         * text3.C: added using std::find and std::vector directives.
3989
3990 2002-08-29  André Pönitz <poenitz@gmx.net>
3991
3992         * lyxtext.h:
3993         * text2.C: remove unused member number_of_rows
3994
3995         * Makefile.am:
3996         * BufferView2.C: remove file, move contents to...
3997         * BufferView.C: ... here
3998
3999         * BufferView_pimpl.C:
4000         * factory.C: move more inset creation to factory
4001
4002         * vspace.C: avoid direct usage of LyXText, ws changes
4003
4004         * BufferView.[Ch]:
4005                 don't provide direct access to WorkArea, use two simple
4006                 acessors haveSelction() and workHeight() instead
4007
4008
4009 2002-08-29  John Levon  <levon@movementarian.org>
4010
4011         * BufferView_pimpl.C (dispatch): do not continue when
4012           no buffer
4013
4014 2002-08-28  André Pönitz <poenitz@gmx.net>
4015
4016         * commandtags.h: new LFUN_MOUSE_DOUBLE, LFUN_MOUSE_TRIPLE
4017
4018         * BufferView.h:
4019         * BufferView_pimpl.[Ch] move work area mouse event to LFUNs
4020
4021 2002-08-28  Rob Lahaye  <lahaye@snu.ac.kr>
4022
4023         * buffer.C: increment LYX_FORMAT to 221
4024
4025         * lyxrc.[Ch]: declare display_graphics as grfx::DisplayType and use
4026         grfx::displayTranslator.find(foo); include graphics/GraphicsTypes.h.
4027
4028         * lyxrc.C: use more "if (...) { } else { }" style (John's advice).
4029
4030         * lyx_main.C: call once the setDisplayTranslator(); is that okay here?
4031
4032 2002-08-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4033
4034         * factory.C (createInset): use LyXTextClass::floats
4035
4036         * MenuBackend.C (expandFloatListInsert):
4037         (expandFloatInsert):
4038         (expandToc):
4039
4040         * text2.C (setCounter):
4041
4042         * LaTeXFeatures.C (useFloat):
4043         (getFloatDefinitions):
4044
4045         * BufferView_pimpl.C (dispatch): use LyXTextClass::floats()
4046
4047         * lyxtextclass.[Ch]: rename layoutlist to layoutlist_; add
4048         floatlist_, with accessor floats().
4049
4050         * FloatList.h: remove global FloatList
4051
4052 2002-08-26  André Pönitz <poenitz@gmx.net>
4053
4054         * paragraph.[Ch]: Martin's patch for the \end_deeper bug
4055
4056         * BufferView.h:
4057         * BufferView2.C:
4058         * BufferView_pimpl.C:
4059         * text3.C: mun hanfling of LFUN_CUT/COPY/PASTE to LyXText
4060
4061 2002-08-25  John Levon  <levon@movementarian.org>
4062
4063         * LyXAction.C: fix margin note description
4064
4065 2002-08-24  John Levon  <levon@movementarian.org>
4066
4067         * buffer.C:
4068         * bufferlist.C:
4069         * bufferview_funcs.C:
4070         * lyxfont.C:
4071         * undo_funcs.C: cleanups
4072
4073         * lyxfunc.C: disable CUT/COPY when no selection
4074
4075 2002-08-23  Rob Lahaye  <lahaye@snu.ac.kr>
4076
4077         * lyxlength.[Ch]: use better (three letters) mnemonics for percentage units
4078         in "enum UNIT"; e.g. PTW for Percent of TextWidth
4079
4080         * lyxrc.C: graphics display is now monochrome|grayscale|color|none.
4081         Add backward compatibility to "mono", "gray" and "no".
4082
4083 2002-08-24  Dekel Tsur  <dekelts@tau.ac.il>
4084
4085         * buffer.C (readFile): Always run lyx2lyx if file_format < LYX_FORMAT
4086         (and file_format >= 200).
4087
4088 2002-08-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4089
4090         * lyxlayout.C (Read): treat LT_OPTARGS as an integer, not a bool
4091
4092 2002-08-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4093
4094         * lyxfunc.C (getStatus): handle LFUN_INSET_OPTARG
4095
4096 2002-08-20  Martin Vermeer  <martin.vermeer@hut.fi>
4097
4098         * BufferView_pimpl.C:
4099         * LyXAction.C:
4100         * buffer.C:
4101         * commandtags.h:
4102         * lyxfunc.C:
4103         * paragraph.[Ch]:
4104         * text2.C:
4105         * insets/insetoptarg.[Ch]: Added "optional argument" collapsible
4106         inset and code to make it  work with the paragraph code. The inset
4107         can be anywhere in the paragraph, but will only do the expected
4108         thing in LaTeX if the layout file contains the parameter line
4109                         OptionalArgs    1
4110         (or more generally, a nonzero value) for that layout.
4111
4112 2002-08-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
4113
4114         * paragraph.h: remove the declaration of undefined counters class
4115         function.
4116
4117 2002-08-22  Martin Vermeer <martin.vermeer@hut.fi>
4118
4119         * text2.C (setCounter):  fixed enumeration mis-count as reported by
4120         Dr. Richard Hawkins.
4121
4122 2002-08-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4123
4124         * paragraph_funcs.h: remove some unneeded includes
4125
4126         * text.C (backspace): pasteParagraph now in global scipe
4127
4128         * CutAndPaste.C (cutSelection): pasteParagraph now in global scope
4129         (pasteSelection): ditto
4130
4131         * paragraph.[Ch] (pasteParagraph): move function to global scope ...
4132         * paragraph_funcs.C (pasteParagraph): ... here
4133
4134 2002-08-20  André Pönitz <poenitz@gmx.net>
4135
4136         * commandtags.h: new LFUNs for swapping/copying table row/colums
4137
4138         * LyXAction.C:
4139         * lyxfunc.C: support for new lfuns
4140
4141 2002-08-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
4142
4143         * tabular.C:
4144         * buffer.[Ch]: remove NO_COMPABILITY stuff
4145
4146 2002-08-20  Lars Gullik Bjønnes  <larsbj@gullik.net>
4147
4148         * boost.C (throw_exception): new file, with helper function for
4149         boost compiled without exceptions.
4150
4151         * paragraph.h:
4152         * lyxlength.C:
4153         * buffer.C:
4154         * ParameterStruct.h:
4155         * ParagraphParameters.[Ch]: remove NO_PEXTRA_REALLY stuff
4156
4157         * bufferlist.C (emergencyWriteAll): use boost bind
4158
4159         * BufferView_pimpl.C (moveCursorUpdate): remove inline
4160
4161         * text.C: include paragraph_funcs.h
4162         (breakParagraph): breakParagraph is now in global scope
4163
4164         * paragraph_funcs.[Ch]: new files
4165
4166         * paragraph.C (breakParagraph,breakParagraphConservative): move to
4167         global scope
4168
4169         * buffer.C: include paragraph_funcs.h
4170         (insertStringAsLines): breakParagraph is now in global scope
4171
4172         * Makefile.am (lyx_SOURCES): add paragraph_funcs.h and
4173         paragraph_funcs.C
4174
4175         * CutAndPaste.C: include paragraph_funcs.h
4176         (cutSelection): breakParagraphConservative is now in global scope
4177         (pasteSelection): ditto
4178
4179         * buffer.h: declare oprator== and operator!= for
4180         Buffer::inset_iterator
4181
4182         * bufferlist.C (emergencyWrite): don't use fmt(...)
4183
4184         * text3.C: add using std::endl
4185
4186         * BufferView.C (moveCursorUpdate): remove default arg
4187
4188 2002-08-20  André Pönitz <poenitz@gmx.net>
4189
4190         * buffer.[Ch]: move inline functions to .C
4191
4192         * BufferView2.C:
4193         * BufferView_pimpl.C:
4194         * text.C:
4195         * buffer.[Ch]: use improved inset_iterator
4196
4197         * buffer.C:
4198         * paragraph.[Ch]: write one paragraph at a time
4199
4200 2002-08-20  Dekel Tsur  <dekelts@tau.ac.il>
4201
4202         * BufferView_pimpl.C (dispatch): Insert insetbibtex with "plain"
4203         style if style is not specified.
4204
4205 2002-08-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4206
4207         * text2.C (setCounter): when searching for right label for a
4208         caption, make sure to recurse to parent insets (so that a caption
4209         in a minipage in a figure float works) (bug #568)
4210
4211 2002-08-20  André Pönitz <poenitz@gmx.net>
4212
4213         * text3.C: new file for LyXText::dispatch() and helpers
4214
4215         * BufferView.[Ch]: move text related stuff to LyXText::dispatch()
4216
4217         * funcrequest.[Ch]: add message() do avoid direct access to LyXFunc
4218
4219 2002-08-19  André Pönitz <poenitz@gmx.net>
4220
4221         * lyxtext.h:
4222         * text.C: new LyXText::dispatch()
4223
4224         * BufferView_pimpl.C: move handling of LFUN_APPENDIX to LyXText
4225
4226 2002-08-18  Dekel Tsur  <dekelts@tau.ac.il>
4227
4228         * text.C (paintRowSelection): Fix code for rows with both RTL & LTR text.
4229
4230         * BufferView_pimpl.C (smartQuote): Insert typewriter quotes in
4231         Hebrew text.
4232
4233 2002-08-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4234
4235         * Makefile.am: use $(variables) instead of @substitutions@
4236
4237 2002-08-15  André Pönitz <poenitz@gmx.net>
4238
4239         * lyxfunc.C:
4240         * BufferView_pimpl.C: streamlining mathed <-> outer world
4241         interaction
4242
4243         * commandtags.h:
4244         * LyXAction.C: remove unused LFUN_MATH
4245
4246 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
4247
4248         * paragraph.[Ch]: add some NO_NEXT ifdefs.
4249
4250 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
4251
4252         * paragraph.C (Paragraph): reformat a bit
4253         (cutIntoMinibuffer): use builtin InsetList function instad of
4254         doing it manually.
4255         (getInset): ditto
4256
4257         * buffer.C: include boost/bind.hpp, add using std::for_each
4258         (writeFileAscii): use ParagraphList iterators
4259         (validate): use for_each for validate traversal of paragraphs
4260         (getBibkeyList): use ParagraphList iterators
4261         (resizeInsets): use for_each to resizeInsetsLyXText for all
4262         paragraphs.
4263         (getParFromID): use ParagraphList iterators
4264
4265         * BufferView2.C (lockInset): use paragraph list and iterators
4266
4267 2002-08-14  John Levon  <levon@movementarian.org>
4268
4269         * lyxserver.C: remove spurious xforms include
4270
4271 2002-08-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4272
4273         * lyxfunc.C (getStatus): disable math-extern outside of math mode
4274
4275 2002-08-13  André Pönitz <poenitz@gmx.net>
4276
4277         * LyXAction.[Ch]:
4278         * lyxfunc.C: further cleaning
4279
4280 2002-08-13  André Pönitz <poenitz@gmx.net>
4281
4282         * funcrequest.h: new constructor
4283
4284         * funcrequest.C: move stuff here from .h
4285
4286         * Makefile.am:
4287         * BufferView_pimpl.C:
4288         * LyXAction.C:
4289         * toc.C:
4290         * lyxfunc.C: subsequent changes
4291
4292         * lyxfunc.h: new view() member function
4293
4294         * lyxfunc.C: subsequent changes
4295
4296 2002-08-13  Angus Leeming  <leeming@lyx.org>
4297
4298         * BufferView2.C:
4299         * BufferView_pimpl.C:
4300         * buffer.C:
4301         * converter.C:
4302         * importer.C:
4303         * lyxfunc.C:
4304         * lyxvc.C:
4305         * toc.C:
4306         * vc-backend.C:
4307         changes due to the changed LyXView interface that now returns references
4308         to member variables not pointers.
4309
4310 2002-08-13  Angus Leeming  <leeming@lyx.org>
4311
4312         * WordLangTuple (word, lang_code): return references to strings,
4313         not strings.
4314
4315         * BufferView.h:
4316         * SpellBase.h:
4317         * lyxtext.h: forward-declare WordLangTuple.
4318
4319         * BufferView2.C:
4320         * ispell.C:
4321         * pspell.C:
4322         * text.C: #include "WordLangTuple.h".
4323
4324         * lyxtext.h:
4325         * text.C: (selectNextWordToSpellcheck): constify return type.
4326
4327 2002-08-12  Martin Vermeer <martin.vermeer@hut.fi>
4328
4329         * buffer.C:
4330         * buffer.h:
4331         * lyxtext.h:
4332         * paragraph.C:
4333         * paragraph_pimpl.h:
4334         * text.C:
4335         * text2.C:
4336         * undo_funcs.C: replaced per-paragraph counter logic by per-buffer, as
4337         suggested by Angus.
4338         Made updateCounter always count from start of buffer, and removed
4339         second argument (par).
4340         Reverted floats number display to '#'. Perhaps I'll try again when the
4341         code base is sanitized a bit.
4342
4343 2002-08-12  Angus Leeming  <leeming@lyx.org>
4344
4345         * buffer.[Ch] (getLabelList): constify.
4346
4347 2002-08-07  André Pönitz <poenitz@gmx.net>
4348
4349         * commandtags.h: new LFUN_MOUSE_(PRESS|MOTION|RELEASE)
4350
4351         * funcrequest.h: extension to keep mouse (x,y) position
4352
4353 2002-08-12  Juergen Vigna  <jug@sad.it>
4354
4355         * BufferView2.C (insertErrors): forbid undo when inserting error
4356         insets.
4357
4358         * CutAndPaste.C (SwitchLayoutsBetweenClasses): ditto
4359
4360 2002-08-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
4361
4362         * ParagraphList.[Ch]: new files
4363
4364         * Makefile.am (lyx_SOURCES): add ParagraphList.[Ch]
4365
4366         * BufferView2.C (lockInset): ParagraphList changes
4367         * toc.C: ditto
4368         * text2.C: ditto
4369         * bufferlist.C: ditto
4370         * buffer.h: ditto
4371         * buffer.C: ditto
4372
4373 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
4374
4375         * paragraph_pimpl.h: remove inclusion of boost/array.hpp, remove
4376         unused class variable counter_,
4377
4378         * paragraph.[Ch] (getFirstCounter): delete unused function
4379
4380         * counters.C: include LAssert.h
4381         (reset): add a new function with no arg, change other version to
4382         not have def. arg and to not allow empty arg.
4383
4384         * text2.C (setCounter): remove empty arg from call to Counters::reset
4385
4386 2002-08-11  John Levon  <levon@movementarian.org>
4387
4388         * Makefile.am: add WordLangTuple.h
4389
4390 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
4391
4392         * paragraph.C, ToolbarDefaults.h, kbsequence.h, lyx_main.C,
4393         lyxfunc.C lyxlex_pimpl.C: ws changes only.
4394
4395         * insets/insettext.C: InsetList changes
4396
4397         * graphics/GraphicsSupport.C (operator()): InsetList changes
4398
4399         * toc.C (getTocList): InsetList changes
4400
4401         * paragraph_pimpl.[Ch]: InsetList changes
4402
4403         * paragraph.[Ch]: InsetList changes
4404
4405         * buffer.C (inset_iterator): InsetList changes
4406         (setParagraph): ditto
4407         * buffer.h (inset_iterator): ditto
4408         * iterators.C (operator++): ditto
4409         * iterators.h: ditto
4410
4411         * Makefile.am (lyx_SOURCES): add InsetList.C and InsetList.h
4412
4413         * InsetList.[Ch]: new files, most InsetList handling moved out of
4414         paragraph.C.
4415
4416         * BufferView2.C (removeAutoInsets): InsetList changes
4417         (lockInset): ditto
4418         (ChangeInsets): ditto
4419
4420 2002-08-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
4421
4422         * paragraph_pimpl.h (empty): new function
4423
4424         * paragraph.[Ch] (empty): new function
4425
4426         * other files: use the new Paragraph::empty function
4427
4428 2002-08-09  John Levon  <levon@movementarian.org>
4429
4430         * lyxtext.h: remove unused refresh_height
4431
4432 2002-08-09  John Levon  <levon@movementarian.org>
4433
4434         * Makefile.am:
4435         * sgml.h:
4436         * sgml.C:
4437         * buffer.C:
4438         * paragraph.h:
4439         * paragraph.C: move sgml char escaping out of paragraph
4440
4441         * paragraph.h:
4442         * paragraph.C: remove id setter
4443
4444         * buffer.C:
4445         * paragraph.C:
4446         * paragraph_pimpl.C: remove dead tex_code_break_column
4447
4448         * bufferview_funcs.C: small cleanup
4449
4450         * lyxfunc.C: remove dead proto
4451
4452         * lyxtext.h: make some stuff private. Remove some dead stuff.
4453
4454         * lyxgluelength.C: make as[LyX]String() readable
4455
4456 2002-08-08  John Levon  <levon@movementarian.org>
4457
4458         * LyXAction.h:
4459         * LyXAction.C:
4460         * MenuBackend.C:
4461         * ToolbarDefaults.C:
4462         * lyxfunc.C:
4463         * lyxrc.C:
4464         * toc.C: lyxaction cleanup
4465
4466 2002-08-08  John Levon  <levon@movementarian.org>
4467
4468         * BufferView2.C: small cleanup
4469
4470         * lyxfind.h:
4471         * lyxfind.C: move unnecessary header into the .C
4472
4473 2002-08-08  John Levon  <levon@movementarian.org>
4474
4475         * funcrequest.h: just tedious nonsense
4476
4477         * lyx_main.h:
4478         * lyx_main.C: cleanups
4479
4480         * buffer.C:
4481         * vspace.C: remove dead header lyx_main.h
4482
4483 2002-08-07  Angus Leeming  <leeming@lyx.org>
4484
4485         * Paragraph.[Ch]:
4486         * paragraph_pimpl.h:
4487         Forward declare class Counters in paragraph.h by moving the ctrs member
4488         variable into Paragraph::Pimpl.
4489         (counters): new method, returning a reference to pimpl_->ctrs.
4490
4491         * text2.C: ensuing changes.
4492
4493 2002-08-07  John Levon  <levon@movementarian.org>
4494
4495         * BufferView_pimpl.C (resizeCurrentBuffer): update scrollbar
4496
4497         * BufferView_pimpl.C: announce X selection on double/triple
4498           click
4499
4500         * lyx_main.C: use correct bool in batch dispatch
4501
4502         * counters.h: srcdocs (from Martin Vermeer and Angus Leeming)
4503
4504 2002-08-07  André Pönitz <poenitz@gmx.net>
4505
4506         * funcrequest.h: new class to wrap a kb_action and its argument
4507
4508         * BufferView.[Ch]:
4509         * BufferView_pimpl[Ch]:
4510         * LaTeX.C:
4511         * LyXAction.[Ch]:
4512         * lyxfunc.[Ch]:
4513         * lyxrc.C: subsequent changes
4514
4515
4516 2002-08-07  John Levon  <levon@movementarian.org>
4517
4518         * BufferView_pimpl.C (redoCurrentBuffer): fix screen update when
4519           document options change.
4520
4521 2002-08-06  Martin Vermeer  <martin.vermeer@hut.fi>
4522
4523         * counters.[Ch]
4524         * text2.C
4525         * paragraph.[Ch]
4526         * makefile.am: move counters functionality over from
4527         text2.C/paragraph.[Ch] to counters.[Ch], and make proper C++.
4528
4529 2002-08-06  John Levon  <levon@movementarian.org>
4530
4531         * WordLangTuple.h: new file for word + language code tuple
4532
4533         * SpellBase.h:
4534         * pspell.h:
4535         * pspell.C:
4536         * ispell.h:
4537         * ispell.C:
4538         * lyxtext.h:
4539         * text.C:
4540         * text2.C:
4541         * BufferView.h:
4542         * BufferView2.C: use WordLangTuple
4543
4544         * layout.h:
4545         * buffer.C: remove very dead LYX_LAYOUT_DEFAULT
4546
4547 2002-08-06  John Levon  <levon@movementarian.org>
4548
4549         * lyx_main.C: fix cmdline batch handling
4550
4551 2002-08-06  André Pönitz <poenitz@gmx.net>
4552
4553         * lyxrc.C: set default for show_banner to true
4554
4555 2002-08-06  John Levon  <levon@movementarian.org>
4556
4557         * pspell.C: fix a crash, and allow new aspell to work
4558
4559 2002-08-06  John Levon  <levon@movementarian.org>
4560
4561         * lyxfunc.C:
4562         * kbmap.C: small cleanup
4563
4564         * vspace.h:
4565         * vspace.C: add const
4566
4567 2002-08-05  John Levon  <levon@movementarian.org>
4568
4569         * LyXAction.C: back to tabular-insert
4570
4571 2002-08-04  John Levon  <levon@movementarian.org>
4572
4573         * BufferView.h:
4574         * BufferView.C: cosmetic change
4575
4576         * BufferView_pimpl.C: s/IGNORE_CODE/NOTE_CODE/
4577
4578         * bufferlist.C:
4579         * buffer.h:
4580         * buffer.C:
4581         * lyxcb.h:
4582         * lyxcb.C:
4583         * lyxserver.C:
4584         * lyxvc.C:
4585         * vc-backend.C:
4586         * BufferView2.C: purge all "Lyx" not "LyX" strings
4587
4588         * lyxcursor.h:
4589         * lyxcursor.C: attempt to add some documentation
4590
4591         * lyxfunc.C:
4592         * commandtags.h:
4593         * LyXAction.C:
4594         * ToolbarDefaults.C:
4595         * BufferView_pimpl.C: remove LFUN_DIALOG_TABULAR_INSERT and
4596           merge with LFUN_TABULAR_INSERT
4597
4598         * Makefile.am:
4599         * SpellBase.h:
4600         * ispell.h:
4601         * ispell.C:
4602         * pspell.h:
4603         * pspell.C: split up i/pspell implementations into separate
4604           files, many cleanups
4605
4606         * lyxlex.C: unrevert, with a proper fix for prefix.length() == 0
4607
4608         * text2.C: some cleanup
4609
4610         * lyxfunc.C: don't check for isp_command == "none" any more, it
4611           didn't make any sense
4612
4613 2002-08-06      Martin Vermeer <martin.vermeer@hut.fi>
4614
4615         * counters.[Ch]
4616         * text2.C
4617         * paragraph.[Ch]
4618         * makefile.am: move counters functionality over
4619         from text2.C/paragraph.[Ch] to counters.[Ch], and
4620         make proper C++.
4621 2002-08-02  John Levon  <levon@movementarian.org>
4622
4623         * buffer.C: s/lyxconvert/lyx2lyx/
4624
4625 2002-08-02  Angus Leeming  <leeming@lyx.org>
4626
4627         * lyxlex.C: revert John's change as it breaks reading of the user
4628         preamble.
4629
4630 2002-08-02  Angus Leeming  <leeming@lyx.org>
4631
4632         * importer.C (Import):
4633         * lyxfunc.C (moveCursorUpdate, dispatch, view_status_message):
4634         changes due to LyXView::view() now returning a boost::shared_ptr.
4635
4636 2002-08-02  John Levon  <levon@movementarian.org>
4637
4638         * lyxlex.C: small cleanup
4639
4640 2002-08-02  John Levon  <levon@movementarian.org>
4641
4642         * text2.C (status): small cleanup, no logic change
4643
4644 2002-08-01  John Levon  <levon@movementarian.org>
4645
4646         * buffer.h:
4647         * buffer.C (writeFile): don't output alerts, caller
4648           handles this
4649
4650         * bufferlist.C:
4651         * lyx_cb.C: from above
4652
4653         * lyxfunc.C: allow to open non-existent files
4654
4655 2002-07-31  John Levon  <levon@movementarian.org>
4656
4657         * lyxserver.C: don't let incidental errors get
4658           in the way (errno)
4659
4660 2002-07-30  John Levon  <levon@movementarian.org>
4661
4662         * lyxfunc.C: disable character dialog in ERT inset (partial fix)
4663
4664 2002-07-30  John Levon  <levon@movementarian.org>
4665
4666         * lyxserver.h:
4667         * lyxserver.C: remove I/O callback too
4668
4669 2002-07-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4670
4671         * lyxfunc.C (getStatus): disable LFUN_LATEX_LOG when there is no
4672         log.
4673
4674 2002-07-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
4675
4676         * many files: strip,frontStrip -> trim,ltrim,rtrim
4677
4678 2002-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
4679
4680         * PrinterParams.h: remove extern containsOnly, and include
4681         support/lstrings.h instead.
4682
4683         * LaTeX.C (scanAuxFile): modify because of strip changes
4684         (deplog): ditto
4685         * buffer.C (makeLaTeXFile): ditto
4686         * bufferparams.C (writeFile): ditt
4687         * lyxfont.C (stateText): ditto
4688         * lyxserver.C (read_ready): ditto
4689         * vc-backend.C (scanMaster): ditto
4690
4691         * BufferView_pimpl.h: ws changes
4692
4693         * BufferView_pimpl.C: inlude boost/signals/connection.hpp
4694
4695 2002-07-26  André Pönitz <poenitz@gmx.net>
4696
4697         * kb_sequence.C: remove unnedred usings
4698
4699 2002-07-26  Juergen Vigna  <jug@sad.it>
4700
4701         * lyxfind.C (LyXReplace): we have to check better if the returned
4702         text is not of theLockingInset()->getLockingInset().
4703
4704 2002-07-25  Juergen Vigna  <jug@sad.it>
4705
4706         * lyxfind.C (LyXReplace): don't replace if we don't get the
4707         right LyXText.
4708
4709         * undo_funcs.C (createUndo): remove debugging code.
4710
4711 2002-07-25  Dekel Tsur  <dekelts@tau.ac.il>
4712
4713         * buffer.C (parseSingleLyXformat2Token): Use default placement
4714         when reading old floats.
4715
4716         * FloatList.C (FloatList): Change the default placement of figure
4717         and tables to "tbp".
4718
4719 2002-07-25  John Levon  <moz@compsoc.man.ac.uk>
4720
4721         * MenuBackend.C: using std::max
4722
4723 2002-07-25  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4724
4725         * MenuBackend.C (expandToc):
4726         (expandToc2): code moved from xforms menu frontend. It is now
4727         generic and TOCs are transparent to menu frontends.
4728
4729 2002-07-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4730
4731         * toc.C (getTocList): protect against buf=0
4732
4733         * MenuBackend.C (expand): move from Menu to MenuBackend; pass a
4734         Menu as first parameter. Now, this calls itself recursively to
4735         expand a whole tree (this will be useful for TOC handling)
4736         (expandFloatInsert): remove 'wide' version of floats
4737
4738         * MenuBackend.h (submenuname): returns the name of the submenu.
4739         (submenu): returns the submenu itself, provided it has been
4740         created by MenuBackend::expand
4741
4742 2002-07-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4743
4744         * paragraph_pimpl.C (simpleTeXSpecialChars): close fonts before
4745         insets which have noFontChange == true. (bug #172)
4746
4747 2002-07-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4748
4749         * BufferView_pimpl.C: add connection objects and use them...
4750         (Pimpl): here.
4751
4752 2002-07-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4753
4754         * MenuBackend.C (expandLastfiles):
4755         (expandDocuments):
4756         (expandFormats):
4757         (expandFloatListInsert):
4758         (expandFloatInsert):
4759         (expand): split expand in parts
4760
4761 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
4762
4763         * lyx_gui.C: use lyx_gui::exit()
4764
4765 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
4766
4767         * LyXAction.C: show the failing pseudo action
4768
4769 2002-07-22  Dekel Tsur  <dekelts@tau.ac.il>
4770
4771         * buffer.C (readFile): Run the lyxconvert script in order to read
4772         old files.
4773
4774 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
4775
4776         * LyXAction.C:
4777         * commandtags.h:
4778         * lyxfunc.C: remove LFUN_ADD_TO_TOOLBAR
4779
4780 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
4781
4782         * LyXAction.C:
4783         * commandtags.h:
4784         * lyxfunc.C: remove LFUN_TOOLBAR_PUSH
4785
4786 2002-07-22  Herbert Voss  <voss@lyx.org>
4787
4788         * lengthcommon.C:
4789         * lyxlength.[Ch]: add support for the vertical lengths
4790
4791 2002-07-21  John Levon  <moz@compsoc.man.ac.uk>
4792
4793         * toc.[Ch]: std:: fixes
4794
4795 2002-07-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4796
4797         * lyxrc.C: do not include lyx_main.h
4798
4799         * LaTeXFeatures.h: use a list<string> instead of a vector<string>
4800         for layouts
4801
4802         * lyxrc.C:
4803         * encoding.C:
4804         * bufferlist.C:
4805         * BufferView2.C: include "lyxlex.h"
4806
4807         * tabular.h:
4808         * bufferparams.h: do not #include "lyxlex.h"
4809
4810         * lyxtextclasslist.C (Add): remove method
4811         (classlist): renamed to classlist_
4812
4813         * paragraph_pimpl.C:
4814         * paragraph.C:
4815         * text2.C:
4816         * CutAndPaste.C:
4817         * bufferview_funcs.C:
4818         * bufferlist.C:
4819         * text.C:
4820         * LaTeXFeatures.C:
4821         * buffer.C:
4822         * toc.C (getTocList): use BufferParams::getLyXTextClass
4823
4824         * toc.C (getTocList): use InsetFloat::addToToc
4825
4826         * toc.[Ch]: new files, containing helper functions to handle table
4827         of contents
4828
4829         * lyxfunc.C (dispatch): no need to remove spaces around command
4830         given as a string
4831         (getStatus): handle LFUN_SEQUENCE by returning the status of the
4832         first command of the sequence; it is not very clever, but I do not
4833         have a better idea, actually
4834
4835         * LyXAction.C (LookupFunc): make sure to remove space at the
4836         beginning and end of the command
4837
4838 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4839
4840         * MenuBackend.C (getMenubar): new method: return the menubar of
4841         this menu set
4842         (read): treat differently reading of menu and menubar (in
4843         particular, the menubar has no name now)
4844         (Menu::menubar): remove
4845
4846         * lyxfunc.C (dispatch): add 'done' message to minibuffer when
4847         saving is finished
4848
4849 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
4850
4851         * BufferView_pimpl.C (workAreaButtonRelease): Fix opening of
4852         a bibitem inset in a RTL paragraph.
4853
4854 2002-07-20  John Levon  <moz@compsoc.man.ac.uk>
4855
4856         * paragraph_pimpl.C: constify
4857
4858         * BufferView_pimpl.C:
4859         * LaTeX.C:
4860         * lyxfunc.C: fix dispatch in a nicer way
4861
4862 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4863
4864         * lyxfunc.C (dispatch):
4865         * BufferView_pimpl.C:
4866         * BufferView_pimpl.h:
4867         * BufferView.C:
4868         * BufferView.h: rename Dispatch() to dispatch()
4869
4870         * LaTeXFeatures.C (useLayout): honor LyXLayout::depends_on()
4871
4872         * lyxlayout.C (Read): honor DependsOn tag
4873
4874         * lyxlayout.[Ch] (depends_on): new method
4875
4876         * version.C.in: update lyx_docversion
4877
4878         * LaTeXFeatures.C (getMacros): only define \LyX when needed
4879
4880         * paragraph.C (validate): remove from here...
4881         * paragraph_pimpl.C (validate): ... and move here
4882         (isTextAt): make it const
4883
4884         * buffer.C (getLists): ws cleanup
4885
4886 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
4887
4888         * language.C (read): Use iso8859-1 encoding in latex_lang
4889         (this prevents LyX from crashing when using iso10646-1 encoding).
4890
4891 2002-07-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4892
4893         * text2.C (toggleInset): if cursor is inside an inset, close the
4894         inset and leave cursor _after_ it
4895
4896 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
4897
4898         * lyxfunc.C: move minibuffer completion handling out of here
4899
4900 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
4901
4902         * BufferView_pimpl.C:
4903         * LaTeX.C: fix dispatch calls
4904
4905 2002-07-19  Dekel Tsur  <dekelts@tau.ac.il>
4906
4907         * text.C (drawChars): Fix Arabic text rendering.
4908
4909 2002-07-18  John Levon  <moz@compsoc.man.ac.uk>
4910
4911         * LyXAction.C:
4912         * commandtags.h:
4913         * lyxfunc.C: remove message-push/pop
4914
4915         * lyxserver.C:
4916         * lyxfunc.h:
4917         * lyxfunc.C: rationalise some code by removing verboseDispatch
4918           in favour of a bool argument to dispatch()
4919
4920 2002-07-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4921
4922         * lyx_main.C (init): make sure to read symlinks as absolute paths
4923
4924 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
4925
4926         * lyxfunc.h:
4927         * lyxfunc.C: no need for commandshortcut to be a member
4928
4929 2002-07-15  André Pönitz <poenitz@gmx.net>
4930
4931         * converter.C: add support for $$s (scripts from lib/scripts dir)
4932         * lyx_main.C: white space
4933
4934 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
4935
4936         * bufferlist.C:
4937         * lyxrc.h:
4938         * lyxrc.C: remove second exit confirmation
4939
4940 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
4941
4942         * BufferView.h:
4943         * BufferView.C:
4944         * BufferView2.C:
4945         * BufferView_pimpl.h:
4946         * BufferView_pimpl.C:
4947         * lyxfunc.C: s/setState/switchKeyMap/, s/showState/view_state_changed/
4948
4949 2002-07-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4950
4951         * MenuBackend.C (expand): add numeric shortcuts to document menu
4952
4953         * lyxrc.C (getDescription): remove RC_NEW_ASK_FILENAME
4954
4955 2002-07-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4956
4957         * lyxfont.C (setLyXFamily):
4958         (setLyXSeries):
4959         (setLyXShape):
4960         (setLyXSize):
4961         (setLyXMisc):
4962         (lyxRead):
4963         * debug.C (value):
4964         * buffer.C (asciiParagraph): use ascii_lowercase
4965
4966 2002-07-15  Mike Fabian  <mfabian@suse.de>
4967
4968         * lyxlex_pimpl.C (search_kw):
4969         * lyxlex.C (getLongString):
4970         * converter.h (operator<):
4971         * converter.C (operator<):
4972         * buffer.C (parseSingleLyXformat2Token):
4973         (asciiParagraph):
4974         * ToolbarDefaults.C (read):
4975         * MenuBackend.C (checkShortcuts):
4976         (read):
4977         * LColor.C (getFromGUIName):
4978         (getFromLyXName): use the compare_ascii_no_case instead of
4979         compare_no_case, because in turkish, 'i' is not the lowercase
4980         version of 'I', and thus turkish locale breaks parsing of tags.
4981
4982 2002-07-16  Angus Leeming  <leeming@lyx.org>
4983
4984         * BufferView_pimpl.C (buffer): Previews::generateBufferPreviews
4985         now takes a Buffer const & argument.
4986
4987 2002-07-15  John Levon  <moz@compsoc.man.ac.uk>
4988
4989         * BufferView.C (resize): check there's a buffer to resize
4990
4991 2002-07-14  John Levon  <moz@compsoc.man.ac.uk>
4992
4993         * lyxfunc.C: remove dead code
4994
4995         * lyxserver.h:
4996         * lyxserver.C: use lyx_guii::set_read_callback
4997
4998 2002-07-13  Dekel Tsur  <dekelts@tau.ac.il>
4999
5000         * lyxfunc.C (dispatch): Correct cursor behaviour when exiting
5001         an inset in a RTL paragraph.
5002
5003 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
5004
5005         * lyxfunc.C: repaint after a font size update
5006
5007 2002-07-15  André Pönitz <poenitz@gmx.net>
5008
5009         * lyxlength.C: inBP should be able to return negative values
5010
5011 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
5012
5013         * lyxfunc.C: use lyx_gui::update_fonts()
5014
5015 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
5016
5017         * lyxfunc.C: use lyx_gui::update_color()
5018
5019 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
5020
5021         * bufferlist.C:
5022         * lyxfunc.h:
5023         * lyxfunc.C:
5024         * lyxrc.h:
5025         * lyxrc.C: remove file->new asks for name option, and let
5026           buffer-new take an argument
5027
5028 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
5029
5030         * BufferView_pimpl.C: remove unneeded extra repaint()
5031
5032 2002-07-10  John Levon  <moz@compsoc.man.ac.uk>
5033
5034         * LyXAction.C: allow command-sequence with NoBuffer
5035
5036         * lyxfunc.C: don't insist on trailing ';' for command-sequence
5037
5038 2002-07-10  Angus Leeming  <leeming@lyx.org>
5039
5040         * lyxrc.[Ch]: preview_scale_factor should be a float not an int.
5041
5042 2002-07-09  Angus Leeming  <leeming@lyx.org>
5043
5044         * lyxrc.[Ch]: added preview_hashed_labels and preview_scale_factor.
5045
5046 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
5047
5048         * lengthcommon.h: whitespace
5049
5050         * lyxfunc.C: update scrollbar after goto paragraph
5051
5052         * lyxtext.h: factor out page break drawing, and fix it so
5053           page break/added space paints as selected nicely
5054
5055 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
5056
5057         * BufferView_pimpl.C: add FIXMEs, clean up a little
5058
5059 2002-07-09  André Pönitz <poenitz@gmx.net>
5060
5061         * lyxfont.[Ch]: support for wasy symbols
5062
5063 2002-07-08  André Pönitz <poenitz@gmx.net>
5064
5065         * BufferView_pimpl.C: apply John's patch for #93.
5066
5067 2002-07-05  Angus Leeming  <leeming@lyx.org>
5068
5069         * BufferView_pimpl.C (buffer): generate previews if desired.
5070
5071         * LColor.h: add "preview" to the color enum.
5072
5073         * LColor.C (LColor): add a corresponding entry to the items array.
5074
5075         * buffer.C (~Buffer): remove any previewed LaTeX snippets associated
5076         with this buffer.
5077
5078 2002-07-05  Angus Leeming  <leeming@lyx.org>
5079
5080         * buffer.[Ch] (makeLaTeXFile): create two methods where there was one.
5081         The body of the code is now in the method that is passed an ostream &
5082         rather than a file name.
5083         Pass an additional only_preamble parameter, useful for the forthcoming
5084         preview stuff.
5085
5086 2002-07-03  André Pönitz <poenitz@gmx.net>
5087
5088         * lyxfunc.C: simplify getStatus() a bit for math stuff
5089
5090 2002-07-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5091
5092         * BufferView_pimpl.C (workAreaResize): add an unconditional repaint.
5093
5094 2002-06-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5095
5096         * text.C (changeRegionCase): do not change case of all the
5097         document when region ends at paragraph end (bug #461)
5098
5099 2002-07-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5100
5101         * paragraph.C (startTeXParParams):
5102         (endTeXParParams): add \protect when necessary
5103
5104 2002-06-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5105
5106         * BufferView_pimpl.C (workAreaExpose): remove warning
5107
5108 2002-06-27  Angus Leeming  <leeming@lyx.org>
5109
5110         * Makefile.am: add lyxlayout_ptr_fwd.h.
5111
5112 2002-06-26  André Pönitz <poenitz@gmx.net>
5113
5114         * lyxrc.[Ch]: introduce \preview, revive half-dead \show_banner
5115
5116 2002-06-25  Angus Leeming  <leeming@lyx.org>
5117
5118         * lyxfunc.C (dispatch): Comment out the call to
5119         grfx::GCache::changeDisplay. The method no longer exists now that the
5120         pixmap generation part of the graphics loader has been moved into
5121         InsetGraphics.
5122
5123 2002-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5124
5125         * text2.C: layout as layout
5126
5127         * text.C: layout as layout
5128
5129         * tabular.C (OldFormatRead): layout as layout
5130
5131         * paragraph_pimpl.C (TeXDeeper): layout as layout
5132         (realizeFont): layout as layout
5133
5134         * paragraph.C (writeFile): layout as layout
5135         (validate): layout as layout
5136         (getFont): layout as layout
5137         (getLabelFont): layout as layout
5138         (getLayoutFont): layout as layout
5139         (breakParagraph): layout as layout
5140         (stripLeadingSpaces): layout as layout
5141         (getEndLabel): layout as layout
5142         (getMaxDepthAfter): layout as layout
5143         (applyLayout): layout as layout
5144         (TeXOnePar): layout as layout
5145         (simpleTeXOnePar): layout as layout
5146         (TeXEnvironment): layout as layout
5147         (layout): layout as layout
5148         (layout): layout as layout
5149
5150         * lyxtextclass.C (compare_name): new functor to work with
5151         shared_ptr, layout as layout
5152         (Read): layout as layout
5153         (hasLayout): layout as layout
5154         (operator): layout as layout
5155         (delete_layout): layout as layout
5156         (defaultLayout): layout as layout
5157
5158         * lyxlayout_ptr_fwd.h: new file
5159
5160         * lyxlayout.C (Read): layout as layout
5161
5162         * lyx_cb.C (MenuInsertLabel): layout as layout
5163
5164         * bufferlist.C (newFile): layout as layout
5165
5166         * buffer.C (readLyXformat2): layout as layout
5167         (parseSingleLyXformat2Token): layout as layout
5168         (insertStringAsLines): layout as layout
5169         (asciiParagraph): layout as layout
5170         (latexParagraphs): layout as layout
5171         (makeLinuxDocFile): layout as layout
5172         (simpleLinuxDocOnePar): layout as layout
5173         (makeDocBookFile): layout as layout
5174         (simpleDocBookOnePar): layout as layout
5175         (getLists): layout as layout
5176
5177         * LaTeXFeatures.C (getTClassPreamble): layout as layout
5178
5179         * CutAndPaste.C (cutSelection): layout as layout
5180         (pasteSelection): layout as layout
5181         (SwitchLayoutsBetweenClasses): layout as layout
5182
5183         * BufferView_pimpl.C (Dispatch): layout as layout
5184         (smartQuote): layout as layout
5185
5186         * BufferView2.C (unlockInset): layout as layout
5187
5188 2002-06-24  André Pönitz <poenitz@gmx.net>
5189
5190         * lyxfunc.C: fix #487
5191
5192 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
5193
5194         * lyxrc.h:
5195         * lyxrc.C:
5196         * lyxfunc.C: remove display_shortcuts, show_banner
5197
5198 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
5199
5200         * Buffer_pimpl.C: oops, update on resize
5201
5202 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
5203
5204         * buffer.C:
5205         * converter.C:
5206         * exporter.C:
5207         * lyxfunc.C:
5208         * BufferView.h:
5209         * BufferView.C: use repaint()
5210
5211         * BufferView_pimpl.h:
5212         * BufferView_pimpl.C: s/updateScreen()/repaint()/
5213           as it's a clearer description. Remove superfluous
5214           redraws.
5215
5216 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
5217
5218         * text.C: fix bug 488. Not ideal, but getting
5219           getWord() to work properly for the insets that
5220           matter is more difficult ...
5221
5222 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
5223
5224         * BufferView_pimpl.C:
5225         * LyXAction.C:
5226         * commandtags.h:
5227         * lyxfunc.C: remove the six million index lyxfuncs to just
5228           one, and DTRT (bug 458)
5229
5230 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
5231
5232         * BufferView.h:
5233         * BufferView.C:
5234         * BufferView_pimpl.h:
5235         * BufferView_pimpl.C: clean up resize() stuff,
5236           and unnecessary updateScreen()s
5237
5238 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
5239
5240         * BufferView.h:
5241         * BufferView.C:
5242         * BufferView_pimpl.h:
5243         * BufferView_pimpl.C:
5244         * lyxfind.h:
5245         * lyxfind.C:
5246         * minibuffer.C: remove focus management of workarea,
5247           not needed. Use screen's greyOut()
5248
5249 2002-06-17  Herbert Voss  <voss@lyx.org>
5250
5251         * converter.C: (convert) do not post a message, when converting
5252         fails, let the calling function decide what to do in this case
5253
5254 2002-06-18  John Levon  <moz@compsoc.man.ac.uk>
5255
5256         * lyxfunc.C: tidy up a little
5257
5258 2002-06-16    <alstrup@diku.dk>
5259
5260         * BufferView_pimpl.C (Pimpl): Use WorkAreaFactory.
5261         Got rid of FORMS_H_LOCATION include. Now we are
5262         GUII.
5263
5264 2002-06-15  LyX Development team  <lyx@rilke>
5265
5266         * buffer.[Ch] (sgmlOpenTag):
5267         (sgmlCloseTag): Added support for avoiding pernicious mixed
5268         content. Return number of lines written.
5269
5270         (makeLinuxDocFile):
5271         (makeDocBookFile): Fixed calls to sgml*Tag.
5272         Simple white space clean.
5273
5274         (simpleDocBookOnePar): Simple white space clean.
5275
5276         * tabular.[Ch] (docBook): Renamed to docbook and got another
5277         argument to related with the pernicious mixed content.
5278
5279         (docbookRow): Fixed calls for docbook inset method.
5280
5281 2002-06-15  Lyx Development team  <larsbj@birdstep.com>
5282
5283         * lyxfunc.[Ch]: Use LyXKeySym instead of KeySym,
5284         so it's X11 independent.
5285
5286         * kb*.[Ch]: ditto.
5287
5288         * BufferView_pimpl.[Ch] (workAreaKeyPress): ditto.
5289
5290 2002-06-15  Lyx Development team  <lyx@electronia>
5291
5292         * intl.h: Renamed getTrans to getTransManager.
5293
5294 2002-06-14  Angus Leeming  <leeming@lyx.org>
5295
5296         * Makefile.am: nuke forgotten stl_string_fwd.h.
5297
5298 2002-06-12  Angus Leeming  <leeming@lyx.org>
5299
5300         * stl_string_fwd.h: unused and non-compliant anyway. Nuked.
5301
5302 2002-06-13  Angus Leeming  <leeming@lyx.org>
5303
5304         * LaTeX.C:
5305         * vspace.C: wrap using std::sscanf inside a CXX_GLOBAL_CSTD block.
5306
5307 2002-06-12  Andrew Zabolotny  <zap@cobra.ru>
5308
5309         * kbmap.C (getiso): add support for cyrillic and greek
5310
5311 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
5312
5313         * BufferView.h:
5314         * BufferView.C:
5315         * BufferView_pimpl.h:
5316         * BufferView_pimpl.C: move bogus scrolling logic
5317           to xforms
5318
5319 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
5320
5321         * lyxfunc.C:
5322         * BufferView_pimpl.C: view->resize() change
5323
5324 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
5325
5326         * BufferView_pimpl.C: topCursorVisible
5327           prototype change
5328
5329 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
5330
5331         * Makefile.am:
5332         * lyx_gui.h:
5333         * lyx_gui.C: move to frontends/
5334
5335         * main.C:
5336         * lyx_main.h:
5337         * lyx_main.C: changes from above
5338
5339 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
5340
5341         * intl.C:
5342         * intl.h:
5343         * kbmap.C:
5344         * kbsequence.C:
5345         * lyx_cb.C:
5346         * lyx_main.C: minor tidy
5347
5348 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
5349
5350         * BufferView_pimpl.h:
5351         * BufferView_pimpl.C:
5352         * BufferView.h:
5353         * BufferView.C: make painter() const,
5354           remove dead code
5355
5356         * BufferView2.C: use screen() accessor
5357
5358         * lyx_main.h:
5359         * lyx_main.C: some minor cleanup
5360
5361 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
5362
5363         * BufferView_pimpl.h:
5364         * BufferView_pimpl.C: remove enter/leaveView,
5365           use workHeight()
5366
5367 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
5368
5369         * BufferView.h:
5370         * BufferView.C:
5371         * BufferView2.C:
5372         * BufferView_pimpl.h:
5373         * BufferView_pimpl.C: only construct screen once,
5374           rename
5375
5376         * lyxrc.C: remove pointless comment
5377
5378 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
5379
5380         * BufferView.h:
5381         * BufferView.C: remove active() and belowMouse()
5382
5383         * BufferView_pimpl.h:
5384         * BufferView_pimpl.C: use workarea() not workarea_,
5385           and make it use a scoped_ptr instead
5386
5387 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
5388
5389         * lyx_gui.C: add debug message on BadWindow
5390
5391 2002-06-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5392
5393         * sp_spell.C: fdopen is not part of the C++ standard.
5394
5395         * paragraph.C (InsetIterator): use >= instead of ==
5396
5397 2002-06-07  Angus Leeming  <leeming@lyx.org>
5398
5399         Fixes needed to compile with Compaq cxx 6.5.
5400         * BufferView_pimpl.C:
5401         * DepTable.C:
5402         * buffer.C:
5403         * converter.C:
5404         * encoding.C:
5405         * lyx_gui.C:
5406         * lyx_main.C:
5407         * lyxtextclasslist.C:
5408         * minibuffer.C:
5409         * sp_spell.C:
5410         * tabular_funcs.C:
5411         * vc-backend.C:
5412         all c-library variables have been moved into namespace std. Wrap
5413         using std::xyz declarations inside a #ifndef CXX_GLOBAL_CSTD block.
5414
5415         * lyxlength.C:
5416         * tabular-old.C:
5417         * tabular.C:
5418         Add a using std::abs declaration.
5419
5420         * kbmap.h (modifier_pair):
5421         * paragraph.h (InsetTable, InsetList):
5422         * lyxfont.h (FontBits):
5423         type definition made public.
5424
5425         * bufferlist.C (emergencyWriteAll): the compiler complains that
5426         there is more than one possible lyx::class_fun template to choose from.
5427         I re-named the void specialisation as lyx::void_class_fun.
5428
5429         * lyxfont.C (FontBits' operator==, operator!=): taken out of class.
5430
5431         * tabular_funcs.C: lstrings.h must come before tabular_funcs.h or
5432         the compiler is is unable to find tostr in write_attribute.
5433
5434 2002-06-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5435
5436         * buffer.C (sgmlError): hide #warning
5437
5438 2002-06-05  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5439
5440         * xtl/*: get rid of xtl, which is not in use anyway
5441
5442         * LyXAction.C (init):
5443         * commandtags.h: remove BUFFER_PRINT and BUFFER_PARAMS_GET, which
5444         were unimplemented xtl experimentation
5445
5446 2002-06-04  André Pönitz <poenitz@gmx.net>
5447
5448         * lyxfunc.C: disable array operation on simple formulae
5449
5450 2002-06-03  John Levon  <moz@compsoc.man.ac.uk>
5451
5452         * converter.C: constify a bit
5453
5454 2002-06-02  John Levon  <moz@compsoc.man.ac.uk>
5455
5456         * lyx_gui.C: check xforms version correctly
5457
5458 2002-04-30  Herbert Voss  <voss@lyx.org>
5459
5460         * buffer.C (parseSingleLyXformat2Token): fix bug with ignored
5461         "keep" option
5462
5463 2002-05-31  John Levon  <moz@compsoc.man.ac.uk>
5464
5465         * lyxvc.C: fix bug 416 (make sure buffer is saved before
5466           attempt to register it with a VCS)
5467
5468 2002-05-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5469
5470         * lyx_main.C (init): honor variables LYX_DIR_13x and
5471         LYX_USERDIR_13x
5472
5473 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
5474
5475         * buffer.h:
5476         * buffer.C:
5477         * lyx_main.C: fix a crash on bad command line,
5478           and give a useful exit status on error
5479
5480         * lyxfunc.C (doImport): allow -i lyx to work
5481
5482 2002-03-30  André Pönitz <poenitz@gmx.net>
5483
5484         * lyxfunc.C: mathed font changes
5485
5486 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
5487
5488         * LaTeX.C:
5489         * importer.h:
5490         * importer.C:
5491         * lyx_sty.h:
5492         * lyx_sty.C:
5493         * lyxlex.C:
5494         * lyxrow.h:
5495         * lyxtext.h:
5496         * paragraph.h:
5497         * paragraph.C:
5498         * texrow.h:
5499         * texrow.C:
5500         * text.C:
5501         * trans_mgr.h: srcdocs, and some minor cleanups
5502
5503 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5504
5505         * paragraph_pimpl.C (isTextAt): rewrite to be much faster (do not
5506         call getFont all the time)
5507
5508 2002-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5509
5510         * switch from SigC signals to boost::signals
5511
5512 2002-05-29  André Pönitz <poenitz@gmx.net>
5513
5514         * paragraph_pimpl.C (getChar): don't call size() too often...
5515
5516 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5517
5518         * paragraph_pimpl.C (insertChar): do not try to update tables when
5519         appending (pos == size())
5520
5521         * buffer.C (parseSingleLyXformat2Token): reorder a bit the tests
5522         in order to reduce drastically the number of comparisons needed to
5523         parse a large document
5524
5525 2002-05-29  André Pönitz <poenitz@gmx.net>
5526
5527         * text.C:
5528         * text2.C:
5529         * lyxtextclass.C:
5530         * sp_pspell.h:
5531         * textclasslist.[Ch]:
5532         * sp_ispell.h: whitespace change
5533
5534 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5535
5536         * lyxserver.C (callback): tentative fix of lyxserver. Does not use
5537         lyxaction directly now.
5538
5539 2002-05-27  John Levon  <moz@compsoc.man.ac.uk>
5540
5541         * trans.C:
5542         * lyxfont.C:
5543         * lyxvc.C: remove unused headers
5544
5545 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
5546
5547         * Makefile.am:
5548         * buffer.h:
5549         * undostack.h:
5550         * undostack.C:
5551         * undo_funcs.h:
5552         * undo_funcs.C: some cleanups. Use shared_ptr
5553           and a template for the undo stacks.
5554
5555 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
5556
5557         * BufferView_pimpl.h:
5558         * BufferView_pimpl.C:
5559         * kbmap.h:
5560         * kbmap.C:
5561         * kbsequence.h:
5562         * kbsequence.C:
5563         * lyxfunc.h:
5564         * lyxfunc.C:
5565         * text2.C: use key_state/mouse_state
5566
5567 2002-05-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5568
5569         * vc-backend.C (scanMaster): use boost regex and get rid of LRegex
5570         and LSubstring
5571
5572         * chset.C: change include order
5573         (loadFile): use boost regex and get rid of LRegex and LSubstring
5574
5575         * Makefile.am (BOOST_LIBS): new variable
5576         (lyx_LDADD): use it
5577
5578         * LaTeX.C: change include order.
5579         (scanAuxFile): use boost regex and get rid of LRegex and
5580         LSubstring
5581         (deplog): ditto
5582
5583 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
5584
5585         * ColorHandler.h:
5586         * ColorHandler.C:
5587         * FontInfo.h:
5588         * FontInfo.C: moved to frontends/xforms/
5589
5590         * FontLoader.h:
5591         * FontLoader.C: moved into frontends for GUIIzation
5592
5593         * Makefile.am:
5594         * lyx_gui.C:
5595         * lyxfont.C:
5596         * lyxfunc.C: changes from above
5597
5598 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
5599
5600         * LColor.C: remove spurious X include
5601
5602         * BufferView_pimpl.C:
5603         * Makefile.am:
5604         * font.h:
5605         * font.C:
5606         * text.C:
5607         * text2.C: move font metrics to frontends/
5608
5609 2002-05-24  Juergen Vigna  <jug@sad.it>
5610
5611         * undo_funcs.C (textHandleUndo): fix the cursor selection after
5612         setting the undo_cursor.
5613
5614         * ParagraphParameters.h: include local includes first.
5615
5616 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
5617
5618         * BufferView_pimpl.C:
5619         * BufferView_pimpl.h:
5620         * Makefile.am:
5621         * WorkArea.h:
5622         * WorkArea.C:
5623         * screen.C: move WorkArea into frontends/
5624
5625         * lyxscreen.h:
5626         * screen.C:
5627         * text.C:
5628         * BufferView.C:
5629         * BufferView2.C: move LyXScreen into frontends/
5630
5631         * lyxlookup.h:
5632         * lyxlookup.C:
5633         * lyx_gui.C: move lyxlookup into frontends/xforms/
5634
5635 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
5636
5637         * BufferView2.C:
5638         * BufferView_pimpl.C:
5639         * FontLoader.C:
5640         * LyXView.h:
5641         * LyXView.C:
5642         * Makefile.am:
5643         * WorkArea.C:
5644         * XFormsView.h:
5645         * XFormsView.C:
5646         * buffer.C:
5647         * bufferlist.C:
5648         * bufferview_funcs.C:
5649         * converter.C:
5650         * importer.C:
5651         * lyx_cb.C:
5652         * lyx_gui.C:
5653         * lyx_main.C:
5654         * lyx_find.C:
5655         * lyxfunc.C:
5656         * lyxvc.C:
5657         * minibuffer.C:
5658         * text.C:
5659         * text2.C:
5660         * trans.C:
5661         * vc-backend.C: move LyX/XFormsView into frontends/
5662
5663 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
5664
5665         * Makefile.am:
5666         * PainterBase.C:
5667         * PainterBase.h:
5668         * Painter.C:
5669         * Painter.h:
5670         * WorkArea.C:
5671         * WorkArea.h:
5672         * screen.C:
5673         * tabular.C:
5674         * text.C:
5675         * text2.C: move Painter to frontends/
5676
5677 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5678
5679         * buffer.C: comment out some some code that depend upon lyx_format
5680         < 220
5681
5682         * paragraph.h (NO_PEXTRA_REALLY): turn off all pextra
5683         * ParagraphParameters.h (NO_PEXTRA_REALLY): ditto
5684
5685         * buffer.h (NO_COMPABILITY): turn off compability
5686
5687         * ColorHandler.C: include scoped_array.hpp
5688
5689         * font.C: Use more specific smart_ptr header.
5690         * Painter.C: ditto
5691         * gettext.C: ditto
5692         * ShareContainer.h: ditto
5693         * lyx_main.h: ditto
5694         * kbmap.h: ditto
5695         * FontInfo.h: ditto
5696         * BufferView_pimpl.h: ditto
5697         * ColorHandler.h: ditto
5698
5699         * kbmap.C (defkey): change call to shared_ptr::reset
5700
5701 2002-05-21  Juergen Vigna  <jug@sad.it>
5702
5703         * buffer.C (insertErtContents): fix to insert ert asis if it is
5704         non empty. Skip it completely if it contains only whitespaces.
5705
5706 2002-05-15  John Levon  <moz@compsoc.man.ac.uk>
5707
5708         * BufferView_pimpl.C:
5709         * BufferView2.C: clear selection on paste (bug 393)
5710
5711 2002-05-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5712
5713         * DepTable.C: include ctime
5714
5715 2002-05-11  Dekel Tsur  <dekelts@tau.ac.il>
5716
5717         * buffer.C (latexParagraphs): Add new argument (moving_arg).
5718
5719 2002-05-14  Juergen Vigna  <jug@sad.it>
5720
5721         * text.C (breakParagraph): fixed function to honor the keepempty
5722         layout in the right maner and also to permit the right breaking
5723         algorithm on empty or non empyt keepempty paragraphs.
5724
5725         * paragraph.C (breakParagraph): we have to check also if the par
5726         is really empty (!size()) for isempty otherwise we do the wrong
5727         paragraph break.
5728
5729 2002-05-10  Juergen Vigna  <jug@sad.it>
5730
5731         * buffer.[Ch] : The following are only changes to the ert
5732         compatibility read reading old LaTeX layout and font stuff and
5733         convert it to ERTInsets.
5734
5735         * buffer.h: added isErtInset().
5736
5737         * buffer.C (struct ErtComp): add a fromlayout bool to check
5738         if we're inside a LaTeX layout.
5739         (isErtInset): new helper function.
5740         (insertErtContents): look for other ert insets before this one
5741         and insert the contents there, so that we don't have subsequent
5742         ERT insets with nothing between them. This way we create only one
5743         inset with multiple paragraphs. Also check if we don't insert only
5744         spaces ' ' as they are ignored anyway afterwards in the .tex file
5745         so if we have only spaces we will ignore this latex part in the
5746         new file.
5747         (parseSingleLyXformat2Token \\layout): better compatibility when
5748         reading layout-latex stuff.
5749         (parseSingleLyXformat2Token \\lang): put the insetERT in the right
5750         language tag.
5751         (parseSingleLyXformat2Token \\begin_inset): don't reset ert_comp
5752         stuff after reading the inset only get the information back from
5753         the stack.
5754
5755 2002-05-10  Dekel Tsur  <dekelts@tau.ac.il>
5756
5757         * buffer.C (makeLaTeXFile): Put language options after loading babel.
5758
5759         * LaTeXFeatures.C (getBabelOptions): New method.
5760
5761 2002-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5762
5763         * BufferView_pimpl.C (Dispatch): work around missing argument for
5764         'layout'
5765
5766 2002-05-08  Juergen Vigna  <jug@sad.it>
5767
5768         * text.C (leftMargin): handle paragraph leftindent.
5769
5770         * paragraph.C (writeFile): write the new \\leftindent tag.
5771         (validate): handle leftindent code.
5772         (TeXEnvironment): handle paragraphleftindent code again.
5773
5774         * lyx_sty.h: changed ParagraphIndent to ParagraphLeftIndent.
5775
5776         * buffer.C (parseSingleLyXformat2Token): added compatibility code
5777         for paragrap_extra indent code and new token \\leftindent.
5778         (latexParagraphs): handle the leftindent as environment.
5779
5780         * ParameterStruct.h: added leftindent support.
5781
5782         * ParagraphParameters.C (leftIndent): added support functions for
5783         the paragraph left indent.
5784
5785         * LaTeXFeatures.C: change paragraphindent to paragraphleftindent seems
5786         more appropriate.
5787
5788 2002-05-05  Dekel Tsur  <dekelts@tau.ac.il>
5789
5790         * paragraph.C (isRightToLeftPar): Return false for a paragraph
5791         inside insetERT.
5792
5793         * text.C (computeBidiTables): No bidi in insetERT.
5794
5795         * BufferView_pimpl.C (setState): Fix keymap handling inside insetERT
5796         in RTL documents.
5797
5798 2002-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5799
5800         * version.C.in: pre 5
5801
5802 2002-05-02  José Matos  <jamatos@fep.up.pt>
5803         * buffer.C (makeDocBookFile): white space changes, add newline to
5804         command styles.
5805         (simpleDocBookOnePar): protect <emphasis> inside a CDATA section.
5806
5807         * tabular.C (docBook): fix typo.
5808
5809 2002-05-03  Juergen Vigna  <jug@sad.it>
5810
5811         * screen.C (drawFromTo): recalculate the rowpointer if we had a
5812         change in LyXText as we can not be sure it was not freed.
5813         (drawOneRow): remove unused code.
5814
5815         * text.C (drawInset): redo the calculation of the need_break_row as
5816         it could have a row which was already freed.
5817         (draw): look at the return value of drawInset and return false if
5818         it also returned false.
5819         (paintRowText): look at the return value of draw and return false if
5820         it also returned false.
5821
5822         * lyxtext.h: added bool return type to drawInset() and draw() so that
5823         if we have a change in the row so that the rowbreak has to be redone
5824         we abort drawing as it will be called again.
5825
5826 2002-05-02  Juergen Vigna  <jug@sad.it>
5827
5828         * BufferView_pimpl.C (moveCursorUpdate): make repaint if we had
5829         a change in the maintext also if we're inside an inset.
5830         (Dispatch): set the cursor again after a break line and after the
5831         screen has been updated as it could be we're in a different row.
5832
5833         * text2.C (fixCursorAfterDelete): check to make sure we don't request
5834         to set the cursor behind the pargraph with > size().
5835         (setCursor): check also for the same paragraph when checking where
5836         to put the cursor if we have a NFR inset.
5837
5838         * buffer.C (parseSingleLyXformat2Token): move the compatibility
5839         parts of layout read further up as it still was in the wrong
5840         position.
5841
5842 2002-05-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5843
5844         * screen.C (drawFromTo): change sine fullRebreak always return
5845         true.
5846
5847         * buffer.C (parseSingleLyXformat2Token): reindent some
5848
5849         * BufferView_pimpl.C (update): change since fullRebreak always
5850         return true.
5851         (Dispatch): git rid of the last hardcoded "Standard"s.
5852
5853 2002-05-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5854
5855         * text2.[Ch] (fullRebreak): make it return void now that we always
5856         returned true.
5857
5858 2002-04-30  Juergen Vigna  <jug@sad.it>
5859
5860         * buffer.C (parseSingleLyXformat2Token): reset the font before the
5861         ert compatibility check for "latex" layout.
5862
5863 2002-04-29  Dekel Tsur  <dekelts@tau.ac.il>
5864
5865         * buffer.C (parseSingleLyXformat2Token): Fix reading of old format
5866         minipages: use col% instead of p%, and also use the current font.
5867         (makeLaTeXFile): Fix use babel condition.
5868         (parseSingleLyXformat2Token): Correct font when reading old floats.
5869
5870 2002-04-28  Dekel Tsur  <dekelts@tau.ac.il>
5871
5872         * BufferView_pimpl.C (Dispatch): Check that float type exists when
5873         inserting list of floats.
5874
5875 2002-04-25  Herbert Voss  <voss@lyx.org>
5876
5877         * MenuBackend.C (expand): don't add the graphics extensions to the
5878         export menu
5879
5880 2002-04-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5881
5882         * CutAndPaste.C (SwitchLayoutsBetweenClasses): when converting a
5883         non-existing layout, do not complain if it was the default layout
5884         of the original class (bug #342)
5885
5886 2002-04-24  Juergen Vigna  <jug@sad.it>
5887
5888         * BufferView_pimpl.C (workAreaButtonPress): fix handling of mouse-wheel
5889         (workAreaButtonRelease): don't do anything if it was a mouse-wheel
5890
5891 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
5892
5893         * buffer.C (getBibkeyList): If using \bibliography, return the
5894         option field with the reference itself. Enables us to provide natbib
5895         support when using \bibliography.
5896
5897 2002-04-23  Mike Ressler  <mike.ressler@alum.mit.edu>
5898
5899         * lyxtextclass.[Ch]: add layout keyword ProvidesNatbib.
5900
5901         * LaTeXFeatures.C: do not add \usepackage{natbib} to tex file if
5902         natbib is provided by the LaTeX class.
5903
5904 2002-04-23  Juergen Vigna  <jug@sad.it>
5905
5906         * BufferView_pimpl.[Ch]: remove use of wrong and unneeded insetSleep/
5907         Wakeup functions.
5908
5909         * BufferView.[Ch]: remove not needed insetSleep/Wakeup functions.
5910
5911 2002-04-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5912
5913         * lyxfunc.C (getStatus): LFUN_PROTECTED_SPACE is allowed in maths
5914
5915         * paragraph_pimpl.C (simpleTeXSpecialChars): remove bogus
5916         ensuremath around textordmasculine, textordfeminine and
5917         textdegree.
5918
5919 2002-04-19  Juergen Vigna  <jug@sad.it>
5920
5921         * BufferView_pimpl.C (resizeCurrentBuffer): resize the insets before
5922         reinitializing the buffer otherwise row-dimensions may be wrong.
5923         (update): reset also the selection cursors if they do exits otherwise
5924         their x/y positions may be wrong.
5925
5926         * text2.C (cursorDown): don't enter the inset if we came from a row
5927         above and are one row over the inset.
5928
5929         * lyxfunc.C (dispatch): update paragraph layout after LFUN_ESCAPE when
5930         really leaving an inset.
5931
5932 2002-04-18  Juergen Vigna  <jug@sad.it>
5933
5934         * BufferView_pimpl.C (Dispatch): fixed to change layout also if one
5935         of the selected paragraph does not have the selected layout also if
5936         the last one had!
5937
5938         * text2.C (setLayout): fixed bug which did not change last selected
5939         paragraph.
5940
5941         * tabular.C (OldFormatRead): check also for \\end_inset as Lars
5942         changed the read and substituted \\end_float with \\end_inset!
5943
5944         * BufferView_pimpl.C (cursorPrevious):
5945         (cursorNext): fixed to make it work with rows heigher than the work
5946         area without moving the cursor only the draw of the row.
5947         (workAreaMotionNotify): fix jumping over high rows.
5948
5949 2002-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5950
5951         * lyxtextclass.C (Read): fix bit adding, bug discovered by Mike
5952         Ressler.
5953
5954 2002-04-16  Juergen Vigna  <jug@sad.it>
5955
5956         * text2.C (setCursor): set also the irow().
5957         (setCursorFromCoordinates): fixed to set the (i) cursor values right!
5958         (cursorUp):
5959         (cursorDown): support for locking an inset if the x_fix value goes
5960         inside it. That way I can transverse insets too with cursor up/down.
5961
5962         * lyxrow.h: added irow helper function same as other (i) functions.
5963
5964         * BufferView_pimpl.C (cursorPrevious):
5965         (cursorNext): fixed for insets!
5966
5967 2002-04-15  Juergen Vigna  <jug@sad.it>
5968
5969         * BufferView_pimpl.C (insetDimensions): use ix/iy values for inset
5970         position otherwise it is wrong in some cases.
5971
5972         * lyxfunc.C (dispatch): fix FINISHED UP/DOWN to handle x position
5973         inside the inset before the call.
5974
5975 2002-04-16  Angus Leeming  <a.leeming@ic.ac.uk>
5976
5977         * buffer.[Ch] (getBibkeyList): make it const.
5978
5979 2002-04-12  Juergen Vigna  <jug@sad.it>
5980
5981         * BufferView_pimpl.C (workAreaMotionNotify): use new ix() cursor pos.
5982
5983         * text2.C (getCursorX): new helper function
5984         (setCursor): compute also ix_
5985         (setCursorFromCoordinates): set also ix.
5986
5987         * lyxcursor.h: added ix_ and helper functions.
5988
5989         * BufferView_pimpl.C (workAreaMotionNotify): forgot to use iy().
5990
5991         * buffer.C (insertStringAsLines): dont break paragraph if the this
5992         paragraph is inside an inset which does not permit it!
5993
5994         * text.C (breakParagraph): honor keepempty flag and break the paragraph
5995         also with no chars on this paragraph.
5996         (paintRowText): only paint stuff if it's inside the workarea!
5997
5998         * paragraph.C (breakParagraph): honor keepempty flag and break the
5999         paragraph always below not above.
6000
6001         * BufferView2.C (unlockInset): update the paragraph layout on inset
6002         unlock as we changed paragraph in such a case.
6003
6004         * lyxfind.C (LyXFind): clear the former selection if not found!
6005
6006         * text2.C (insertInset): freeze Undo after setUndo so that it is not
6007         again called in insertChar().
6008
6009         * text.C (leftMargin): return LYX_PAPER_MARGIN if this row contains
6010         an inset which uses the whole row!
6011         (rightMargin): ditto.
6012         (insertChar): force a rebreak if we inserted an inset!
6013
6014 2002-03-28  Herbert Voss  <voss@lyx.org>
6015
6016         * lyxlength.[Ch]: add inBP() to get the right PS-point
6017         units (BigPoint). With inPixels we have rounding errors
6018
6019 2002-04-11  Juergen Vigna  <jug@sad.it>
6020
6021         * text2.C (setCursorFromCoordinates): set iy to the right value.
6022         (setCursor): add check if row->previous exists!
6023
6024         * buffer.C (parseSingleLyXformat2Token): reset font after read of
6025         an old float_type as this was the case in the old code!
6026
6027         * paragraph.C (simpleTeXOnePar): fix closing of foreignlanguage tags.
6028
6029         * BufferView2.C (showLockedInsetCursor): use iy
6030         (fitLockedInsetCursor): ditto
6031
6032         * BufferView_pimpl.C (checkInset): use LyXCursor::iy for baseline of
6033         locked insets as there we have the right value now.
6034
6035         * lyxcursor.C: added iy_ variable and iy functions to set to the
6036         baseline of cursor-y of the locked inset.
6037
6038         * text2.C (setCursorFromCoordinates): set LyXCursor::iy.
6039         (setCursor): fixed for insets which need a full row.
6040
6041         * text.C (rowLastPrintable): don't ignore the last space when before
6042         an inset which needs a full row.
6043         (numberOfSeparators): use rowLastPrintable and <= last to honor a space
6044         as last character of a row when before a inset which needs a full row.
6045
6046 2002-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6047
6048         * version.C.in: update date
6049
6050         * text2.C (fullRebreak): try to always return true and see what
6051         happens...
6052
6053 2002-04-04  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6054
6055         * MenuBackend.C (expand): use Floating::listName
6056
6057         * FloatList.C (FloatList): add listName argument to the built-in
6058         floats
6059
6060         * Floating.[Ch]: add listName member, which is the 'List of XXX'
6061         text associated with the float.
6062
6063 2002-04-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6064
6065         * MenuBackend.C (expand): change label "Wide xxx" to "xxx (wide)".
6066
6067 2002-04-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6068
6069         * ShareContainer.h: add a couple of missing typenames.
6070
6071 2002-04-02  Angus Leeming  <a.leeming@ic.ac.uk>
6072
6073         * lyxrc.C (getDescription): use _() correctly rather than N_().
6074
6075 2002-03-28  Herbert Voss  <voss@lyx.org>
6076
6077         * lyxlength.C: compatibility stuff for < 1.1.6fix4 and
6078         "old" 1.2.0 files which use c%, l%, p% t% instead of text%, ...
6079
6080 2002-04-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6081
6082         * lyx_main.C (init): use environment variable LYX_DIR_12x instead
6083         of LYX_DIR_11x. Same for LYX_USERDIR_12x.
6084
6085 2002-03-29  Juergen Vigna  <jug@sad.it>
6086
6087         * lyxfunc.C (dispatch): add a missing fitCursor call.
6088
6089         * BufferView2.C (fitLockedInsetCursor): the inset needs to know if
6090         it was scrolled by a cursor move, so return the bool status.
6091
6092         * BufferView.C (fitCursor): return the bool flag also to the outside
6093         world as this is needed.
6094
6095         * screen.C (toggleToggle): don't subtract the offset if it's positive.
6096
6097         * BufferView_pimpl.C (workAreaButtonPress): just lock the inset don't
6098         call the edit() as it is not needed (and wrong) IMO.
6099         (workAreaButtonPress): set the screen_first variable before evt.
6100         unlock the inset as this may change screen_first and then we have
6101         a wrong y position for the click!
6102
6103 2002-03-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6104
6105         * MenuBackend.C (expand): another translation that I missed
6106
6107 2002-03-28  Juergen Vigna  <jug@sad.it>
6108
6109         * screen.C (toggleToggle): fix for insettexts y_offset on drawing.
6110
6111         * tabular.C (OldFormatRead): fix ert compatibility read inside cells.
6112
6113 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6114
6115         * lyxfunc.C (getStatus): return 'disabled' early for LFUN_NOACTION
6116
6117         * MenuBackend.C (expand): fix export/view/update when there is no
6118         document open.
6119
6120 2002-03-27  Herbert Voss  <voss@lyx.org>
6121
6122         * lengthcommon.C: change c%, l%, p% t% to col%, line%, page%
6123         and text%
6124
6125 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6126
6127         * bufferview_funcs.C (currentState): only show paragraph number
6128         for is DEVEL_VERSION is set.
6129
6130         * lyxfunc.C (dispatch): put warning in INFO channel
6131
6132         * MenuBackend.C (expand): translate the name of floats
6133
6134         * FloatList.C (FloatList): mark the float names for translation
6135
6136         * converter.C (convert): use LibScriptSearch
6137
6138 2002-03-26  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6139
6140         * MenuBackend.C (defaults): fix default menu (we might as well get
6141         rid of it...)
6142
6143 2002-03-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6144
6145         * lyxvc.C (registrer): register the file with CVS if it's in a CVS
6146         directory.
6147
6148 2002-03-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6149
6150         * lyxvc.C: reorder includes.
6151
6152 2002-03-25  John Levon  <moz@compsoc.man.ac.uk>
6153
6154         * BufferView_pimpl.C (updateScrollbar): update on buffer switch
6155           properly
6156
6157 2002-03-19  John Levon  <moz@compsoc.man.ac.uk>
6158
6159         * CutAndPaste.C: change layouts earlier on paste
6160           to avoid crashing when calling getFont()
6161
6162 2002-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
6163
6164         * PrinterParams.h: #include "lyxrc.h" and remove that bloody
6165         irritating #error.
6166
6167 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6168
6169         * WorkArea.C: remove 'Pending' debug message.
6170
6171         * most files: ws cleanup
6172
6173         * buffer.[Ch]: ws changes
6174
6175         * Makefile.am (LYX_CONV_LIBS): remove ld -r stuff.
6176
6177 2002-03-21  Juergen Vigna  <jug@sad.it>
6178
6179         * tabular.C (SetMultiColumn): collapse also the contents of the
6180         cells and set the last border right. Added a Buffer const * param.
6181
6182 2002-03-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6183
6184         * Makefile.am (LYX_CONV_LIBS): select libs depending on partial
6185         linking or not.
6186
6187 2002-03-19  Juergen Vigna  <jug@sad.it>
6188
6189         * text2.C (clearSelection): reset also xsel_cache.
6190
6191         * BufferView_pimpl.C (Dispatch): call WorkArea::haveSelection(false)
6192         where it needs to be called (John tells us to do so too :)
6193         (selectionLost): reset sel_cache.
6194
6195         * WorkArea.C (event_cb): leave ret to 0 (John tells us to do so :)
6196
6197 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6198
6199         * text2.C (setCursorIntern): put debuging code in INSETS channel
6200
6201 2002-03-19  André Pönitz <poenitz@gmx.net>
6202
6203         * lyxfunc.C: tiny whitespace change
6204
6205 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6206
6207         * ToolbarDefaults.C (init):
6208         * LyXAction.C (init):
6209         * commandtags.h:
6210         * BufferView_pimpl.C (Dispatch):
6211         * lyxfunc.C (dispatch): remove LFUN_DEPTH
6212
6213 2002-03-19  Allan Rae  <rae@lyx.org>
6214
6215         * exporter.C (Export): removeAutoInsets before doing anything else.
6216         While I've just introduced a dependency on BufferView this really is
6217         the best place to clean the buffer otherwise you need to cleanup in
6218         a dozen places before calling export or cleanup in a dozen functions
6219         that export calls.
6220
6221         * converter.C (runLaTeX):
6222         (scanLog): Better handling of removeAutoInsets and screen updates.
6223
6224         * lyxfunc.C (dispatch): small whitespace changes
6225
6226 2002-03-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6227
6228         * WorkArea.C (C_WorkAreaEvent): return a value.
6229         (event_cb): return 1 if we handled the event, 0 otherwise.
6230
6231         * lyx_gui.C (LyX_XErrHandler): don't abort on BadWindow
6232
6233 2002-03-18  Juergen Vigna  <jug@sad.it>
6234
6235         * tabular.C (LeftAlreadyDrawed): fixed for multicolumn borders.
6236         (GetAdditionalWidth): ditto.
6237         (RightLine): ditto.
6238         (LeftLine): ditto.
6239
6240         * BufferView2.C (copy): use getLyXText() so that we do it inside an
6241         inset if we're there actually (probably not used right now but this
6242         is the direction to go for unifying code).
6243         (paste): disable code to clear the selection.
6244
6245         * BufferView_pimpl.C (workAreaButtonPress): check also for a selection
6246         inside an InsetText and move the check further up as it is in the
6247         wrong place.
6248
6249         * text2.C (pasteSelection): set a selection over the pasted text.
6250
6251 2002-03-14  Kayvan A. Sylvan  <kayvan@sylvan.com>
6252
6253         * Makefile.am (lyx_DEPENDENCIES): Swap the order of libfrontend
6254         and libgraphics to build on Cygwin.
6255
6256 2002-03-15  Juergen Vigna  <jug@sad.it>
6257
6258         * CutAndPaste.C (SwitchLayoutsBetweenClasses): fix the wrong use of
6259         inserting an Inset into the paragraph. I know this is not the best
6260         fix but we already use current_view in CutAndPaste so we will remove
6261         all of it's using at the same time.
6262
6263         * buffer.C (sgmlError): deactivated function till it is rewritten in
6264         the right mode, now it can create problems.
6265
6266         * paragraph.C (isLineSeparator): check if getInset returns != 0,
6267         before accessing it.
6268
6269 2002-03-14  Juergen Vigna  <jug@sad.it>
6270
6271         * undo_funcs.C (textHandleUndo): do the right thing when updating
6272         the inset after the undo/redo.
6273
6274         * text2.C (setCursor): just some testcode for #44 not ready yet.
6275
6276         * undo_funcs.C (textHandleUndo): set the next() and previous()
6277         pointers of the paragraph to 0 before deleting otherwise we have
6278         problems with the Paragraph::[destructor].
6279
6280         * text.C (breakParagraph): IMO we should ALWAYS force a real undo
6281         on a paragraph insertion.
6282
6283 2002-03-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6284
6285         * buffer.C (asciiParagraph): use += operator for char append to
6286         string.
6287
6288         * paragraph.C (getFontSettings): compare >= not just >
6289         (highestFontInRange): ditto
6290         (setFont): ditto
6291
6292 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6293
6294         * paragraph.C: change several algorithm to be more appripriate for
6295         the problem domain. This is lookip in FontList and in the InsetList.
6296
6297 2002-03-13  André Pönitz <poenitz@gmx.net>
6298
6299         * commandtags.h:
6300         * LyXAction.C: remove unused LFUN_MATH_MACROARG
6301
6302 2002-03-06  John Levon  <moz@compsoc.man.ac.uk>
6303
6304         * commandtags.h:
6305         * LyXAction.C:
6306         * lyxfunc.C:
6307         * BufferView_pimpl.C: remove unused LFUN_CORE, LFUN_TEXT_INSET
6308
6309 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6310
6311         * Painter.C (display): anon helper function, adjust code for this
6312         change.
6313         (pixmap): remove function.
6314
6315         * Painter.h: remove private display variable.
6316
6317         * PainterBase.[Ch]: remove dummy[123] cruft, ws changes
6318
6319 2002-03-13  Angus Leeming  <a.leeming@ic.ac.uk>
6320
6321         * WorkArea.[Ch]: remove figinset_canvas cruft.
6322
6323 2002-03-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6324
6325         * lyxtextclass.C (operator): add one item cache optimization.
6326
6327         * bufferlist.h: doxy changes
6328
6329         * bufferlist.C: ws changes
6330
6331         * DepTable.[Ch] (ext_exist): place const in the right spot.
6332
6333         * BufferView_pimpl.C (resizeCurrentBuffer): further refine when to
6334         call resizeInsets.
6335         (workAreaExpose): call resizeInsets when the with BufferView changes.
6336         (Dispatch): adjust for protectedBlank removal
6337         (specialChar): call updateInset if the insert went ok.
6338
6339         * BufferView_pimpl.[Ch] (protectedBlank): remove func, use
6340         specialChar instead.
6341
6342         * BufferView2.C (ChangeInsets): remove warning add FIXME comment
6343
6344         * BufferView.h: doxy change
6345
6346         * Makefile.am (INCLUDES): remove @FRONTEND_INCLUDES@
6347
6348         * lyxtextclass.C (operator[]): remove non-const version
6349         (defaultLayout): remove non-const version
6350
6351 2002-03-12  Juergen Vigna  <jug@sad.it>
6352
6353         * BufferView_pimpl.C (resizeCurrentBuffer): only resize insets if we
6354         did resize the LyXText too.
6355
6356         * buffer.C (readLyXformat2): set layout information on newly allocated
6357         paragraphs.
6358
6359         * tabular.C (OldFormatRead): set layout information on the paragraph.
6360
6361 2002-03-12  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
6362
6363         * buffer.C (simpleDocBookOnePar): fix empty definition case for now.
6364
6365 2002-03-11  Juergen Vigna  <jug@sad.it>
6366
6367         * BufferView_pimpl.C (cursorPrevious): remove old cruft which is
6368         plainly wrong.
6369         (resizeCurrentBuffer): force also the insets to resize themselfes.
6370         (moveCursorUpdate): fixed up for InsetText.
6371
6372 2002-03-08  Angus Leeming  <a.leeming@ic.ac.uk>
6373
6374         * commandtags.h:
6375         * LyXAction.C: add LFUN_TOOLTIPS_TOGGLE, "toggle-tooltips"
6376         * lyxfunc.C (getStatus(LFUN_TOOLTIPS_TOGGLE)): set flag based on
6377         value of Dialogs::tooltipsEnabled().
6378         (dispatch(LFUN_TOOLTIPS_TOGGLE)): emit signal Dialogs::toggleTooltips.
6379
6380 2002-03-08  Juergen Vigna  <jug@sad.it>
6381
6382         * BufferView_pimpl.C (updateInset): update inset inside inset also
6383         if it isn't inside theLockingInset().
6384
6385 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6386
6387         * buffer.C (asciiParagraph): redo some of the word and line length
6388         handling.
6389         (getLists): look for Caption instead of caption.
6390
6391 2002-03-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6392
6393         * buffer.C (Buffer): initialize niceFile to true
6394         (makeLaTeXFile):
6395         (makeLinuxDocFile):
6396         (makeDocBookFile): make sure niceFile is true on exit
6397
6398 2002-03-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6399
6400         * buffer.C (makeLaTeXFile): escape ~ in \input@path
6401
6402 2002-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
6403
6404         * LyXSendto.C: remove.
6405         * LyXView.C (c-tor): clean-up Jürgen's #if 0 correctly.
6406         * lyx_gui.C: remove now-redundant comment.
6407         * ColorHandler.h: remove forward declaration of class WorkArea.
6408         * lyxfunc.C: remove #include "WorkArea.h".
6409
6410 2002-03-07  Juergen Vigna  <jug@sad.it>
6411
6412         * undo_funcs.C (textHandleUndo): fix problems when the paragraph
6413         got moved away with the DEPM and also set the inset_owner always
6414         right which before could have been omitted.
6415
6416 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6417
6418         * buffer.C (parseSingleLyXformat2Token): use default layout is the
6419         wanted layout is not found.
6420
6421 2002-03-07  Juergen Vigna  <jug@sad.it>
6422
6423         * CutAndPaste.C (cutSelection): another layout settings forgotten.
6424
6425 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6426
6427         * paragraph.C (breakParagraph): use default layout not layout of
6428         prev paragraph.
6429         (Paragraph): clear ParagraphParameters.
6430
6431 2002-03-06  Juergen Vigna  <jug@sad.it>
6432
6433         * buffer.C (parseSingleLyXformat2Token): changed "%" to "p%" as
6434         otherwise it would not be a valid lenght. Fixed a special case in
6435         the minipage compatibility read where we end the document with a
6436         minipage.
6437
6438         * text2.C (deleteEmptyParagraphMechanism): check if old_cursor.par()
6439         was set as it could be 0 for InsetTexts first entry.
6440
6441 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6442
6443         * paragraph.C (writeFile): if layout is empty write out
6444         defaultLayoutName().
6445
6446         * buffer.C (parseSingleLyXformat2Token): if we have a buggy .lyx
6447         file without named layout we set layout to defaultLayoutName().
6448
6449 2002-03-06  Juergen Vigna  <jug@sad.it>
6450
6451         * CutAndPaste.C (copySelection): set layout for new paragraph.
6452
6453         * text.C (prepareToPrint): leave ERT inset left aligned
6454         (leftMargin): don't indent paragraphs inside ERT insets
6455
6456 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6457
6458         * paragraph.C (breakParagraph): dont call clear do the work manually
6459
6460         * paragraph.[Ch] (clear): remove function
6461
6462 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6463
6464         * paragraph.C (Paragraph): dont call clear, the work has already
6465         been done.
6466
6467         * lyxtextclass.C (operator): assert if n is empty
6468
6469         * CutAndPaste.C (cutSelection): dont call Paragraph::clear, do the
6470         work manually instead.
6471
6472 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
6473
6474         * BufferView_pimpl.C: protect selectionLost against text == 0
6475
6476 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6477
6478         * text.C (breakParagraph): fix a setting layout to '0' problem.
6479
6480 2002-03-05  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
6481
6482         * buffer.C (makeLinuxDocFile, makeDocBookFile): take in account the
6483         final location of file, for the included files, and graphics.
6484
6485 2002-03-05  Juergen Vigna  <jug@sad.it>
6486
6487         * CutAndPaste.C (pasteSelection): fix the depth level on paste.
6488
6489 2002-03-04  Juergen Vigna  <jug@sad.it>
6490
6491         * lyx_cb.C (getContentsOfAsciiFile): new helper function.
6492
6493         * tabular.C (calculate_width_of_column_NMC): fixed to use also the
6494         last column of multicolumn cells.
6495         (SetWidthOfMulticolCell): recalculate NMC and real columns.
6496
6497 2002-03-04  Jose Abilio Oliveira Matos  <jamatos@novalis.fc.up.pt>
6498
6499         * exporter.C (Export): for linuxdoc and docbook the buffer is a nice
6500         file if it doesn't go to a temporary file.
6501
6502         * buffer.C (sgmlOpenTag):
6503         (sgmlCloseTag):  remove extra newline insertion.
6504
6505 2002-03-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6506
6507         * text.C (getRowNearY): comment out debug msg
6508
6509 2002-03-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6510
6511         * text2.C: first -> first_y
6512
6513         * text.C (getRowNearY): add some attemts at a possible
6514         optimization, not working.
6515
6516         * tabular.[Ch]: add BufferParams to several function so that newly
6517         created paragraph can be initialized to he default layotu for the
6518         buffers textclass.
6519
6520         * tabular-old.C (ReadOld): add buf->params to call of Init
6521
6522         * screen.C: rename text->first to text->first_y
6523
6524         * paragraph.C (breakParagraph): always set layout in the broken
6525         paragraph
6526
6527         * lyxtextclass.C (Read): remove lowercase
6528         (hasLayout): ditto
6529         (operator): ditto
6530         (delete_layout): ditto
6531
6532         * lyxtext.h: rename first -> first_y
6533
6534         * lyxlayout.C (Read): remove lowercase
6535         (name): ditto
6536         (setName): ditto
6537         (obsoleted_by): ditto
6538
6539         * bufferlist.C (newFile): set layout on first paragrpah of new buffers.
6540
6541         * buffer.C (insertErtContents): add params are to InsetERT
6542         (parseSingleLyXformat2Token): add code to check if a paragraphs
6543         layout really exist.
6544         (parseSingleLyXformat2Token): add params to several inset
6545         constructors
6546         (asciiParagraph): remove lowercase, do the layout comparisons with
6547         no_case
6548
6549         * BufferView_pimpl.C (cursorNext): first -> first_y
6550         (resizeCurrentBuffer): first -> first_y
6551         (updateScrollbar): first -> first_y
6552         (scrollCB): first -> first_y
6553         (workAreaMotionNotify): first -> first_y
6554         (workAreaButtonPress): first -> first_y
6555         (checkInsetHit): first -> first_y
6556         (cursorPrevious): first -> first_y
6557         (cursorNext): first -> first_y
6558         (Dispatch): add buffer_->params to severl inset contructors
6559
6560 2002-03-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6561
6562         * lyxlayout.C (Read): remove some debug info that I forgot.
6563
6564         * buffer.C (makeLaTeXFile): fix calling of LaTeXFeatures, and
6565         clean up the code slightly.
6566         (makeLinuxDocFile): ditto
6567         (makeDocBookFile): ditto
6568
6569         * text2.C: layout as string
6570
6571         * text.C: layout as string
6572
6573         * paragraph_pimpl.C: layout as string
6574
6575         * paragraph.[Ch]: layout as string
6576
6577         * lyxtextclasslist.[Ch]: layout as string
6578
6579         * lyxtextclass.[Ch]: layout as string
6580
6581         * lyxtext.h: layout as string
6582
6583         * lyxlayout.[Ch]: layout as string
6584
6585         * lyx_cb.C: layout as string
6586
6587         * bufferview_funcs.C: layout as string
6588
6589         * bufferparams.C: layout as string
6590
6591         * buffer.C: layout as string
6592
6593         * LyXView.[Ch]: layout as string
6594
6595         * LaTeXFeatures.[Ch]: layout as string
6596
6597         * CutAndPaste.C (SwitchLayoutsBetweenClasses): layout as string
6598
6599         * BufferView_pimpl.C: change current_layout to string, remove
6600         lyx::layout_type.
6601         (Dispatch):
6602         (smartQuote):
6603         (insertInset):
6604         (workAreaButtonRelease): layout as string
6605
6606         * BufferView2.C (unlockInset): adjust
6607
6608         * vspace.C (asLatexCommand): use an explict temp variable.
6609
6610 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
6611
6612         * Makefile.am: use FRONTEND_*
6613
6614 2002-03-01  Juergen Vigna  <jug@sad.it>
6615
6616         * tabular.C (SetWidthOfMulticolCell): changed to something better
6617         I hope but still work in progress.
6618         (recalculateMulticolumnsOfColumn): renamed function from
6619         recalculateMulticolCells as it is more appropriate now.
6620         (SetWidthOfCell): calculate multicols better.
6621
6622 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6623
6624         * minibuffer.C (MiniBuffer): reset timout to 6000, as it was before.
6625
6626         * lyxfunc.C (processKeySym): print sequence also if it is
6627         `deleted' (complete)
6628
6629         * kbsequence.C (print): print sequence even if it is deleted
6630         (complete would be a better word, actually).
6631
6632         * lyxfunc.C (dispatch): print complete options after a prefix key
6633
6634         * vspace.C (asLatexCommand): rewrite in a slightly different form.
6635
6636 2002-03-01  Martin Vermeer  <martin.vermeer@hut.fi>
6637
6638         * text2.C (setCharFont): eliminate setCharFont code duplication.
6639
6640 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6641
6642         * BufferView_pimpl.C (Dispatch): remove bogus handling of
6643         LFUN_TABULAR_FEATURE (bug #177)
6644
6645 2002-02-29 ;-)  Angus Leeming  <a.leeming@ic.ac.uk>
6646
6647         * Makefile.am: remove figure.h
6648
6649 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
6650
6651         * Bufferview_pimpl.C:
6652         * CutAndPasteC:
6653         * LaTeX.C:
6654         * LyXSendto.C:
6655         * buffer.C:
6656         * bufferlist.C:
6657         * converter.C:
6658         * language.C:
6659         * lyxfunc.C:
6660         * lyxvc.C:
6661         * paragraph.C:
6662         * text.C:
6663         * text2.C: remove #include "lyx_gui_misc.h".
6664
6665         * LaTeX.C: added #include <cstdio>
6666
6667 2002-02-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6668
6669         * paragraph.C (getMaxDepthAfter): new method. The maximal depth
6670         that the paragraph following this one can have.
6671
6672         * text2.C (incDepth): use Paragraph::getMaxDepthAfter
6673
6674         * vspace.C (asLatexCommand): fix bogus gcc warning
6675
6676         * Makefile.am (lyx_SOURCES): remove vms_defines.h
6677
6678 2002-02-27  Martin Vermeer  <martin.vermeer@hut.fi>
6679
6680         * text2.C (setLayout): get rid of redundant code
6681
6682 2002-02-26  Martin Vermeer  <martin.vermeer@hut.fi>
6683
6684         * text2.C (incDepth): make sure depth cannot be increased beyond
6685         reasonable values.
6686
6687 2002-02-20  Angus Leeming  <a.leeming@ic.ac.uk>
6688
6689         * lyxfunc.C (dispatch): act on LFUN_FORKS_SHOW and LFUN_FORKS_KILL.
6690         also call grfx::GCache::changeDisplay if the graphicsbg color changes.
6691
6692         * PainterBase.h (image):
6693         * Painter.[Ch] (image): now accepts a grfx::GImage const & rather than
6694         a LyXImage const *.
6695
6696 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
6697
6698         * BufferView.C:
6699         * BufferView.h:
6700         * BufferView_pimpl.C:
6701         * BufferView_pimpl.h:
6702         * LaTeXFeatures.C:
6703         * LyXAction.C:
6704         * LyXView.C:
6705         * Makefile.am:
6706         * UpdateList.h:
6707         * UpdateList.C:
6708         * buffer.C:
6709         * figure.h:
6710         * figureForm.C:
6711         * figureForm.h:
6712         * figure_form.C:
6713         * figure_form.h:
6714         * lyx_cb.C:
6715         * lyx_gui.C:
6716         * lyx_gui_misc.C:
6717         * lyxfunc.C:
6718         * sp_base.h:
6719         * sp_ispell.h:
6720         * sp_pspell.h:
6721         * sp_spell.C: remove fig inset, and the crap house of
6722           cards that follows it
6723
6724 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
6725
6726         * Makefile.am:
6727         * lyxserver.C:
6728         * os2_defines.h:
6729         * os2_errortable.h:
6730         * nt_defines.h: move .h into support/
6731
6732         * vms_defines.h: remove
6733
6734         * WorkArea.C: add space in debug output
6735
6736         * text2.C:
6737         * paragraph.C:
6738         * buffer.C: add WITH_WARNINGS
6739
6740         * vc-backend.h:
6741         * vc-backend.C:
6742         * bufferlist.C: s/retrive/retrieve/, add docs
6743
6744         * vspace.h:
6745         * vspace.C:
6746         * kbmap.h:
6747         * lyxlength.h:
6748         * lyxgluelength.h:
6749         * length_common.h:
6750         * chset.h:
6751         * chset.C: add docs
6752
6753         * lyxgui.C: add ID to X error handler
6754
6755         * lyxtestclass.c: fix typo
6756
6757 2002-02-26  Juergen Vigna  <jug@sad.it>
6758
6759         * tabular_funcs.C (write_attribute): changed so that some default
6760         attributes are not written at all.
6761         (getTokenValue): set default values before trying to read the
6762         value so we have the return value always set as default if we don't
6763         find the token we search for.
6764
6765         * tabular.C (Write): write bools as bools not as strings!
6766
6767 2002-02-22  Juergen Vigna  <jug@sad.it>
6768
6769         * BufferView_pimpl.C (workAreaButtonPress): call edit() before calling
6770         insetButtonPress for HIGHLY_EDITABLE_INSETS seems saner (fix #250).
6771
6772         * text.C (leftMargin): don't add an indent for paragraphs inside
6773         tabular cells (fix #208).
6774
6775 2002-02-21  José Matos  <jamatos@fep.up.pt>
6776
6777         * tabular.C (docBook): fixed support for long tables.
6778
6779 2002-02-20  Juergen Vigna  <jug@sad.it>
6780
6781         * text2.C (getFont): get the drawing font of the Inset if this
6782         paragraph is inside an inset (only important for InsetERT for now).
6783
6784         * buffer.C (insertErtContents): use new lanugage params in ERT
6785         constructor.
6786
6787         * CutAndPaste.C: commenting out seemingly uneeded code.
6788
6789 2002-02-19  Allan Rae  <rae@lyx.org>
6790
6791         * BufferView2.C (removeAutoInsets): fix remaining freed memory read.
6792         Iterators might be simple to use but they also get invalidated.
6793         (removeAutoInsets): renamed saved cursor tracking variables and added
6794         some comments to clarify what everything does.
6795
6796 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
6797
6798         * Chktex.C:
6799         * LaTeX.C:
6800         * LyXSendto.C:
6801         * converter.C:
6802         * lyx_cb.C:
6803         * vc-backend.C: Changes due to the renaming of support/syscall.[Ch] as
6804         support/systemcall.[Ch] and of class Systemcalls as class SystemCall.
6805
6806         * lyxfunc.C:
6807         * vc-backend.h: remove #include "support/syscall.h"
6808
6809         * LaTeX.C:
6810         * LyXSendto.C:
6811         * converter.C: rearrange #includes in Lars' approved fashion.
6812
6813         * LyXView.[Ch]: make autosave_timeout a pointer to Timeout. Can thus
6814         forward declare class Timeout in the header file.
6815
6816         * XFormsView.C: changes due to the above.
6817
6818         * minibuffer.[Ch]: make timer and stored_timer pointers to Timeout,
6819         similar to LyXView.
6820
6821         * commandtags.h: add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to the enum.
6822         * LyXAction.C (init): add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to items[]
6823
6824 2002-02-18  José Matos  <jamatos@fep.up.pt>
6825
6826         * buffer.C (simpleDocBookOnePar): if paragraph style is CDATA escapes
6827         insets contents.
6828
6829 2002-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
6830
6831         * a lot of small ws changes
6832         * add a lot of using std::XXX
6833         * use std construcs some places where approp.
6834         * use some exisint stuff from lyxfunctional where approp.
6835         * Make file changes to use partial linking (lets test this now...)
6836
6837 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
6838
6839         * Chktex.C:
6840         * buffer.C:
6841         remove #include "support/syscontr.h" as it's redundant. Always has been.
6842
6843         * Chktex.C:
6844         * LaTeX.C:
6845         * LyXSendto.C:
6846         * converter.C:
6847         * lyx_cb.C:
6848         * vc-backend.C:
6849         change Systemcalls::System to Systemcalls::Wait and
6850         change Systemcalls::SystemDontWait to Systemcalls::DontWait.
6851         No change of functionality, just reflects the stripped down Systemcalls
6852         class.
6853
6854 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
6855
6856         * debug.[Ch]: add a GRAPHICS type to the enum.
6857
6858 2002-02-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6859
6860         * text.C (nextBreakPoint): use Paragraph::isLineSeparator
6861
6862         * paragraph.C (isLineSeparator): call Inset::isLineSeparator if
6863         there is an inset.
6864
6865 2002-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6866
6867         * lyxfunc.C (getStatus): change the rules for LFUN_INSET_TOGGLE to
6868         match the changes below.
6869
6870         * text2.C (toggleInset): if there is not editable inset at cursor
6871         position, try to see if cursor is _inside_ a collapsable inset
6872         and close it.
6873
6874 2002-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6875
6876         * lyxfunc.C (getStatus): handle LFUN_SWITCHBUFFER so that the
6877         document menu has a nice checkbox
6878
6879 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6880
6881         * lyxlength.C (asLatexString): change PW to output as percent of
6882         \textwidth.
6883
6884         * lengthcommon.C: change '%' to 't%'
6885
6886         * lyxfunc.C (dispatch): a few comments from Martin
6887
6888 2002-02-06  John Levon  <moz@compsoc.man.ac.uk>
6889
6890         * WorkArea.h:
6891         * WorkArea.C:
6892         * BufferView_pimpl.h:
6893         * BufferView_pimpl.C: clear our selection when X tells us we've lost
6894           the X selection.
6895
6896 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6897
6898         * vspace.C (inPixels): fix compiler warning
6899
6900 2002-02-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6901
6902         * lyxfunc.C (getStatus): fix status message for disabled commands.
6903
6904 2002-02-01  John Levon  <moz@compsoc.man.ac.uk>
6905
6906         * BufferView_pimpl.C: fix crash on close buffer
6907         during selection (#227)
6908
6909 2002-01-27  Herbert Voss  <voss@lyx.org>
6910
6911         * buffer.C: link old Figure to new graphic inset
6912
6913 2002-01-26  Dekel Tsur  <dekelts@tau.ac.il>
6914
6915         * FontLoader.C (getFontinfo): Change the latex font names in order
6916         to match the names of type1inst.
6917
6918 2002-01-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6919
6920         * WorkArea.C (WorkArea): initialize the scrollbar bounds.
6921
6922         * DepTable.C (sumchange): do not evaluate end() on every iteratrion.
6923         (extchanged): ditto
6924         (ext_exist): ditto
6925         (remove_files_with_extension): ditto
6926         (remove_file): ditto
6927         (write): ditto
6928
6929         * BufferView_pimpl.C (updateScrollbar): do the right thing if the
6930         document is smaller than the work area height. Do not initialize
6931         static variables to 0.
6932
6933 2002-01-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6934
6935         * lyx_gui.C (init): give the toolbar tooltips a normal font.
6936
6937         * lyxfunc.C (getStatus): handle LFUN_LAYOUT like
6938         LFUN_LAYOUT_PARAGRAPHS.
6939
6940         * tabular.C (GetCellFromInset): new method. Finds an inset in a
6941         tabular. It is possible to provide a possible cell, which will
6942         typically be the actcell from the corresponding insettabular
6943
6944         * lyxfunc.C (getStatus): small cleanup; disable
6945         LFUN_LAYOUT_PARAGRAPHS in insets where forceDefaultParagraphs is
6946         true
6947
6948 2002-01-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6949
6950         * tabular.C (Validate): remove broken optimization (fixes bug #201)
6951
6952         * paragraph.C (startTeXParParams):
6953         (endTeXParParams): new methods. The LaTeX code to
6954         start/end paragraph formatting
6955         (simpleTeXOnePar): call startTeXParParams also when paragraph is
6956         empty (fixes bug #200)
6957
6958         * vspace.C (inPixels): adapt to the change below
6959         (inPixels): [later] more cleanups (remove unused variables)
6960
6961         * lyxlength.C (inPixels): change to use a width and a height as
6962         parameter.
6963
6964 2002-01-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6965
6966         * lyxlength.C (asLatexString): \pagewidth is not a LaTeX macro.
6967         Replaced with \paperwidth
6968
6969         * DepTable.C (insert): add std:: qualifier
6970
6971 2002-01-18  Allan Rae  <rae@lyx.org>
6972
6973         * text2.C (removeRow): add comment.  Should other refresh_?? vars be
6974         updated also?
6975
6976         * text.C (drawInset): Turned out I didn't know enough about how
6977         rebreaking worked.  This fixes most of the redraw problems.  I see
6978         an occasional cursor trail when a line is broken now and the cursor
6979         placement can seem out by a few pixels also after a rebreak.
6980
6981 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6982
6983         * buffer.C (parseSingleLyXformat2Token): update because minipage
6984         width is now a LyXLength
6985
6986         * lyxlength.C (inPixels): new method, extracted from VSpace::inPixels
6987
6988         * BufferView_pimpl.C (smartQuote): fix insertion of quote inset in
6989         math insets
6990
6991 2002-01-17  Juergen Vigna  <jug@sad.it>
6992
6993         * lyxfunc.C (dispatch): fixed PARAGRAPH_GOTO
6994
6995         * BufferView2.C (lockInset): call edit() so that theLockingInset()
6996         is set correctly and the inset is updated correctly.
6997
6998 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6999
7000         * CutAndPaste.C (pasteSelection): move the setInsetOwner call at
7001         the beginning of the loop.
7002
7003 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
7004
7005         * lyxrc.C: improve help for use_scalable_fonts
7006
7007 2002-01-17  Allan Rae  <rae@lyx.org>
7008
7009         * lyx_cb.C (ShowMessage): make sure we have a user and an owner.
7010
7011 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7012
7013         * CutAndPaste.C (pasteSelection): when pasting multiple paragraph,
7014         make sure to set their inset_owner to the right value (bug #171)
7015
7016 2001-12-12  Ben Stanley  <bds02@uow.edu.au>
7017
7018         * DepTable.h
7019         * DepTable.C: Implement mtime checking to reduce time spent doing
7020         CRCs.
7021
7022 2002-01-16  Juergen Vigna  <jug@sad.it>
7023
7024         * tabular.C (GetAdditionalHeight): one of error fixed.
7025
7026         * lyxrc.C (output): small fix in writing use_pspell.
7027
7028 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
7029
7030         * sp_base.h: #include LString.h
7031
7032 2002-01-16  Allan Rae  <rae@lyx.org>
7033
7034         * text2.C (removeRow): refresh_row needs a valid row.  Or does it?
7035         Can someone check this please?
7036
7037         * text.C (drawInset): It was possible that p.row would be removed by
7038         breakAgainOneRow upsetting a few other settings.  There may be another
7039         small tweak possible by setting need_break_row = 0 when p.row has been
7040         removed but I don't know enough about the logic here.
7041
7042 2002-01-15  Allan Rae  <rae@lyx.org>
7043
7044         * text.C (insertChar): removed conditional truism.
7045
7046         * BufferView2.C (removeAutoInsets): More tweaks.
7047         cur_par_prev could be a stray pointer.  Check for trailing empty line
7048         in case last line was cur_par and only had an error inset on it.
7049
7050 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7051
7052         * lyx_cb.C (MenuWrite): buffer->fileName is guaranteed to be
7053         absolute
7054
7055         * vc-backend.C (most methods):
7056         * exporter.C (Export):
7057         * converter.C (convert):
7058         (runLaTeX):
7059         * LyXSendto.C (SendtoApplyCB):
7060         * lyxfunc.C (dispatch):
7061         (menuNew):
7062         (open):
7063         (doImport):
7064         * lyx_cb.C (AutoSave):
7065         (InsertAsciiFile):
7066         * BufferView_pimpl.C (MenuInsertLyXFile):
7067         * buffer.C (runChktex): use Buffer::filePath().
7068
7069         * buffer.h: rename filename to filename_; rename filepath to
7070         filepath_ and make it private
7071         (filePath): new method
7072
7073         * buffer.C (writeFile): use fileName()
7074         (getLatexName):
7075
7076         * lyx_main.C (init): fix starting  of LyX when the binary is a
7077         link from so,ewhere else.
7078
7079         * minibuffer.C: include <cctype> for isprint
7080
7081 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
7082
7083         * buffer.C (parseSingleLyXformat2Token): changes associated with the
7084         change of InsetMinipage::width to InsetMinipage::pageWidth to avoid the
7085         name clash with InsetCollapsable's width function.
7086
7087 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7088
7089         * lastfiles.C: include <iterator>
7090
7091 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
7092
7093         * BufferView2.C (ChangeRefsIfUnique): use lyx::count rather than
7094         std::count.
7095
7096         * buffer.C (makeLaTeXFile): ditto.
7097         Also make loop operation more transparent.
7098
7099 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
7100
7101         * ToolbarDefaults.C: remove trailing comma closing namespace.
7102
7103         * WorkArea.h: remove WorkArea:: from declaration of event_cb.
7104
7105         * lyxfunc.[Ch]: clean-up declaration of verboseDispatch functions
7106         as in WorkArea.
7107
7108         * trans.C (Load): comment out unused variable, allowed.
7109
7110 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
7111
7112         * minibuffer.[Ch] (append_char): new method to recieve input from the
7113         drop-down completion browser. If a key was pressed, then recieve this
7114         char and append it to the existing string.
7115         (peek_event): modify the positioning data passed to the completion
7116         browser so that it can be placed above the minibuffer rather than below.
7117 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7118
7119         * LyXAction.C (init): alloe error-next for readonly documents.
7120
7121         * BufferView2.C (ChangeRefsIfUnique): use standard version of
7122         count.
7123
7124 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7125
7126         * bufferlist.C (readFile): create the buffer _after_ checking that
7127         the file exists.
7128
7129         * lyxfunc.C (verboseDispatch): fix handling of arguments
7130
7131         * lyxrc.C (setDefaults): do not initialize document_path to $HOME.
7132
7133         * lyxrc.C: use string::erase() instead of initializing to "".
7134
7135
7136 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
7137
7138         * BufferView_pimpl.h:
7139         * BufferView_pimpl.C:
7140         * WorkArea.h:
7141         * WorkArea.C:
7142         * text2.C: tell X when we have made a selection for copying
7143
7144 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7145
7146         * BufferView_pimpl.C (MenuInsertLyXFile):
7147         * lyxfunc.C (menuNew):
7148         (open):
7149         (doImport): add shortcuts to directory buttons
7150
7151         * BufferView_pimpl.C (workAreaButtonRelease): remove dead code (to
7152         open a float)
7153
7154         * lyxfunc.C (setStatusMessage):
7155         (getStatusMessage): new methods
7156         (getStatus):use setStatusMessage instead of setErrorMessage
7157         (dispatch): when function is disabled, set error message here
7158         [instead of in getStatus previously]
7159
7160         * BufferView_pimpl.C (workAreaButtonRelease): update
7161         toolbar/menubar here too.
7162
7163 2002-01-13  Allan Rae  <rae@lyx.org>
7164
7165         * BufferView2.C (removeAutoInsets): finished off earlier fix.
7166         Now seems indestructible.  Remaining task is to audit all other
7167         code affected by deleteEmptyParagraphMechanism.  One small quirk
7168         left is that an empty document with an error in the preamble can
7169         be made to report an error but no error box appears.  I don't know
7170         where it goes.
7171         (removeAutoInsets): Improved comments.
7172
7173 2002-01-13  John Levon  <moz@compsoc.man.ac.uk>
7174
7175         * Thesaurus.h:
7176         * Thesaurus.C: update for Aiksaurus 0.14
7177
7178 2002-01-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7179
7180         * text2.C (firstParagraph): removed member function, all uses
7181         replaces with ownerParagraph
7182         (redoParagraphs): here
7183         (updateInset): here
7184         (toggleAppendix): here
7185         * BufferView2.C (insertErrors): here
7186         (setCursorFromRow): here
7187
7188 2002-01-13  Allan Rae  <rae@lyx.org>
7189
7190         * BufferView2.C (removeAutoInsets): ensure we have a valid cursor if
7191         the old cursor is now invalid due to deleteEmptyParagraphMechanism.
7192         There is still a way to segfault this although you may have to do this
7193         multiple times: Have an InsetERT with an unknown command in it.
7194         View->DVI, move cursor between Error box and InsetERT and hit <Enter>,
7195         <down-arrow>, <Enter> again, View->DVI, BANG!
7196
7197         * text2.C (setCursor):
7198         (deleteEmptyParagraphMechanism):
7199         * lyxtext.h (setCursor):
7200         (deleteEmptyParagraphMechanism): return true if the paragraph was deleted.
7201         Making use of the return value may help fix other bugs.
7202
7203 2002-01-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7204
7205         * lyxfunc.C (dispatch): update toolbar/menubar after dispatching.
7206
7207         * LyXView.C (updateMenubar): call MenuBar::update here
7208         (updateToolbar): but not here
7209         (showState): do not update toolbar/menubar
7210
7211         * LyXAction.[Ch]: move isPseudoAction to the C file, since nobody
7212         should need to care about that.
7213
7214         * lyxfunc.C (verboseDispatch): simplify a bit
7215         (getStatus): have a version which takes a pseudoaction, and
7216         another which requires a (kb_action,string).
7217
7218         * LyXAction.C (retrieveActionArg): make it work also when action
7219         is not a pseudo-action.
7220         (getActionName): simplify a bit
7221         (helpText):
7222
7223 2002-01-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7224
7225         * lyxfunc.C (verboseDispatch): new families of methods with
7226         several ways to specify a command and a bool to indicate whether
7227         the command name and shortcut should be displayed in minibuffer
7228         (eventually, we could extend that to a finer bitmask like
7229         SHORTCUT|CMDNAME|CMDRESULT, or whatever).
7230         (dispatch): the pristine dispatch command which just, well,
7231         dispatchs! Note it still sets its result to minibuffer; I'm not
7232         sure we want that.
7233
7234         * lyxfunc.h: remove setHintMessage
7235
7236         * vc-backend.C: use LFUN_MENURELOAD instead of "buffer-reload"
7237
7238 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7239
7240         * BufferView_pimpl.C (specialChar): delete new inset if we have
7241         not been able to insert it.
7242
7243         * kbmap.C: revert to using int instead of kb_action, since all we
7244         are dealing with is pseudo-actions.
7245
7246         * LyXAction.C (searchActionArg): change to return int instead of
7247         kb_action, since the result is a pseudoaction.
7248
7249 2002-01-12  Dekel Tsur  <dekelts@tau.ac.il>
7250
7251         * buffer.C (insertErtContents): Fix (partially) the font bug.
7252
7253 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
7254
7255         * BufferView2.C (ChangeRefsIfUnique): use the HP version of std::count
7256         as the other one is broken on my machine!
7257
7258 2002-01-10  Martin Vermeer  <martin.vermeer@hut.fi>
7259
7260         * commandtags.h:
7261         * LyXAction.C: two new LFUNS, LFUN_FRAK and LFUN_ITAL.
7262
7263 2002-01-10  Angus Leeming  <a.leeming@ic.ac.uk>
7264
7265         * lyxrc.[Ch]: change names and descriptions of popup font variables to
7266         reflect their actual use. Provide compatibility code for older lyxrc
7267         files.
7268
7269         * lyx_gui.C (init): revoke change of 2002-01-07 of popup font style to
7270         FL_NORMAL_STYLE.
7271         change names of popup font variables in line with the changes to lyxrc.C
7272
7273 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7274
7275         * buffer.C (asciiParagraph): avoid outputing a word twice after
7276         an inset.
7277
7278         * lyxrc.C (getDescription): document that document_path and
7279         template_path can be empty.
7280
7281 2002-01-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7282
7283         * LaTeXFeatures.C (getMacros):
7284         * buffer.C (validate): rename feature "amsstyle" to "amsmath"
7285
7286         * buffer.C (makeLaTeXFile): remove test for "amsstyle" from here.
7287
7288         * LaTeXFeatures.C (useFloat): require "float" here instead of in
7289         getPackages.
7290         (getPackages): rename feature "floats" to "float". Use an array to
7291         iterate over 'simple' features (i.e. just a \usepackage). Add
7292         handling of "amsmath" (renamed from "amsstyle").
7293
7294 2001-12-29  Michael A. Koziarski  <michael@koziarski.org>
7295
7296         * LaTeXFeatures.C (require): Prevent duplicate entries in the
7297         features list.
7298
7299 2002-01-08  Angus Leeming  <a.leeming@ic.ac.uk>
7300
7301         * FuncStatus.C: small compile fix for DEC cxx. Doesn't like
7302         FuncStaus::FuncStatus & FuncStaus::some_method().
7303
7304 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
7305
7306         * FuncStatus.[Ch]: new files. This is a rewrite as a proper class
7307         of the func_satus stuff. Edited and massaged in various ways by
7308         JMarc.
7309
7310         * lyxfunc.C (getStatus): use FuncStatus
7311
7312 2002-01-08  Juergen Vigna  <jug@sad.it>
7313
7314         * text.C (nextBreakPoint): use function Inset::isChar().
7315
7316         * paragraph.C (TeXOnePar): use function
7317         Inset::forceDefaultParagraphs.
7318
7319         * buffer.C (latexParagraphs): use function
7320         Inset::forceDefaultParagraphs.
7321
7322 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
7323
7324         * lyx_gui.C (init): set the style of the menu popups to
7325         FL_BOLD_STYLE, thereby fixing bugzilla bug #32.
7326
7327 2002-01-07  Juergen Vigna  <jug@sad.it>
7328
7329         * text.C (setHeightOfRow): small fix
7330         (prepareToPrint): don't look at alignment if we don't have the place
7331         for doing it.
7332
7333 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
7334
7335         * box.C: New file. Move the Box methods and functions out of box.h,
7336         following Lars' suggestion.
7337
7338 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
7339
7340         * box.h: #include "support/LOstream.h", needed for inlined function.
7341
7342         * lyxtextclass.C:
7343         * lyxtextclasslist.C: added some using std declarations.
7344
7345 2002-01-06  John Levon  <moz@compsoc.man.ac.uk>
7346
7347         * box.h: make signed dimensions to allow insets wider than
7348           the screen (bug #162)
7349
7350         * BufferView_pimpl.C: add some insetHit debug
7351
7352 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
7353
7354         * vc-backend.C: add FIXME
7355
7356 2002-01-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7357
7358         * lyxfunc.C (getStatus): enable code for showing math font status
7359         in toolbar/menu.
7360
7361 2002-01-07  Juergen Vigna  <jug@sad.it>
7362
7363         * text.C (nextBreakPoint): removed debug output not needed anymore.
7364
7365 2002-01-06  Juergen Vigna  <jug@sad.it>
7366
7367         * text.C (nextBreakPoint): fixed up this function we had this bug
7368         since ever but now hopefully we break row better.
7369         (insertChar): we have to check if an inset is the next char as it
7370         could now happen that a large inset is causing a break.
7371
7372 2002-01-05  Juergen Vigna  <jug@sad.it>
7373
7374         * BufferView2.C (showLockedInsetCursor): don't draw the inset cursor
7375         if it doesn't like to be drawed.
7376
7377 2002-01-04  Juergen Vigna  <jug@sad.it>
7378
7379         * BufferView2.C (lockInset): forgot to set a cursor.
7380
7381         * lyxfunc.C (dispatch): add a finishUndo() in LFUN_ESCAPE.
7382
7383 2002-01-03  Martin Vermeer  <martin.vermeer@hut.fi>
7384
7385         * FormMathsPanel.C:
7386         * FormMathsPanel.h
7387         * MathsSymbols.C:
7388         * form_maths_panel.C:
7389         * form_maths_panel.h:
7390         * form_maths_panel.fd: implemented sub- and super- buttons in math
7391         panel.
7392
7393         * lyx_main.C: Revised hardwired bindings to allow original _ and ^
7394         (or ^ space) to be used as in TeX (req'd by André).
7395
7396         * lyxfunc.C: Allow ^ and _ again to be used both as
7397         super/subscript (mathed) and as themselves (in text).
7398
7399 2002-01-03  Allan Rae  <rae@lyx.org>
7400
7401         * LyXView.C (updateWindowTitle): Setup a short icon title of either
7402         "LyX" or the filename of the current buffer if it has one.  This is a
7403         modified form of John Levon's patch.
7404
7405         * XFormsView.C (setWindowTitle): also set icon title.
7406
7407         * LyXView.h (setWindowTitle): signature changed.
7408         * XFormsView.h (setWindowTitle): ditto.
7409
7410 2002-01-02  Juergen Vigna  <jug@sad.it>
7411
7412         * tabular.C (AppendColumn): hopefully fixed this memory access problem.
7413
7414 2001-12-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7415
7416         * screen.C (topCursorVisible): introduce a temp var for
7417         text->cursor.row(), handle the case where this row is null. (kindo
7418         hachish)
7419
7420         * text2.C (setCursor): add a couple of asserts.
7421
7422         * paragraph.h (inset_iterator): add -> operator
7423
7424         * paragraph.[Ch] (autoDeleteInsets): remove member function
7425
7426         * BufferView2.C (removeAutoInsets): rewrite to handle the old
7427         cursor pos correctly and handle inset deletion by itself.
7428         (insertErrors): move iterator declaration out of for expression
7429
7430         * lyxtextclass.C: add <algorithm>
7431
7432         * Makefile.am: added the new files to sources, removed layout.C
7433
7434         * layout.C: removed file
7435
7436         * layout.h: remove LYX_DUMMY_LAYOUT
7437
7438         * lyxtextclasslist.C (NumberOfLayout): do not special case dummy
7439         layout.
7440
7441         * lyxlayout.[Ch]:
7442         * lyxtextclass.[Ch]:
7443         * lyxtextclasslist.[Ch]: new files
7444
7445         * include order changes to a lot of files, also changes because of
7446         the six new files.
7447
7448 2001-12-27  Juergen Vigna  <jug@sad.it>
7449
7450         * buffer.C (asciiParagraph): more fixes.
7451
7452         * tabular.C (ascii): make ascii export support export of only the
7453         data separated by a column-delimiter.
7454         (ascii): better support for ascii export.
7455
7456         * buffer.C (asciiParagraph): rewrote to hopefully work as expected!
7457
7458 2001-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7459
7460         * tabular_funcs.C: use a "using std::getline" instead of the
7461         previous fix from Angus (necessary for cxx + lyxstring)
7462
7463 2001-12-24  Juergen Vigna  <jug@sad.it>
7464
7465         * BufferView_pimpl.C (tripleClick): fixed for InsetText.
7466
7467         * buffer.C (parseSingleLyXformat2Token): fixed 2 compatibility read
7468         problems. First check a minipage also if we have some ert-contents
7469         (not only on par->size(), second set the right depth of the paragraph
7470         on the relink to the root-paragraph-list!
7471
7472         * undo_funcs.C (textHandleUndo): fixed a stupid earlier wrong fix
7473         which then did not anymore update the main paragraphs on undo/redo!
7474
7475 2001-12-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7476
7477         * lyxfunc.C (getStatus): use func_status::toggle to simplify the
7478         code. Support all font-changing funcs (even those which are not in
7479         menu currently). Support for reporting font settings in
7480         mathed (disabled until Andre provides a function on mathed's side).
7481
7482         * func_status.h (toggle): small helper function to set toggle
7483         state on a flag.
7484
7485 2001-12-21  Angus Leeming  <a.leeming@ic.ac.uk>
7486
7487         * tabular_funcs.C: getline -> std::getline
7488
7489 2001-12-21  Juergen Vigna  <jug@sad.it>
7490
7491         * undo_funcs.C (textHandleUndo): fixed a case where tmppar3 is
7492         accessed and could be 0 (I couldn't generate this but it seems
7493         Michael could!).
7494
7495 2001-12-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7496
7497         * tabular_funcs.C: add LIstream.h, move write_attribute to..
7498         * tabular_funcs.h: here and include iosfwd
7499
7500 2001-12-20  Juergen Vigna  <jug@sad.it>
7501
7502         * undo_funcs.C (textHandleUndo): fixed crash when undo_cursor not
7503         inside inset but undo_par was.
7504
7505 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7506
7507         * Thesaurus.C: always include <config.h> in sources.
7508
7509         * Painter.h:
7510         * lyxlookup.h:
7511         * box.h: do not include <config.h> in header files
7512
7513         * text.C (paintLastRow): remove unused variable
7514
7515         * text.C (transformChar):
7516         (insertChar):
7517         * tabular-old.C (getTokenValue): use IsDigit instead of isdigit.
7518
7519         * Painter.C (text):
7520         * font.C (width): rewrite to use uppercase() instead of
7521         islower/toupper.
7522
7523         * lyxfind.C (IsStringInText): use uppercase instead of toupper.
7524
7525 2001-12-12  John Levon  <moz@compsoc.man.ac.uk>
7526
7527         * lyxfind.C: clean up of find failure position change
7528
7529 2001-12-20  Juergen Vigna  <jug@sad.it>
7530
7531         * Makefile.am (lyx_SOURCES): added tabular_funcs.[hC].
7532
7533         * tabular.C (isValidRow): added to check if we're in a LT-h/f row.
7534         (TeXRow): added to LaTeX a single tabular row.
7535         (TeXLongtableHeaderFooter): added to output LT-h/f data.
7536         (Latex): simplified and finally good LT-h/f support.
7537         (various_functions): just small adaptions for LT-h/f support.
7538
7539         * tabular_funcs.[hC]: added and moved here all not classfunctions
7540         of LyXTabular.
7541
7542 2001-12-19  Juergen Vigna  <jug@sad.it>
7543
7544         * tabular.[Ch]: better support for longtabular options (not finished
7545         yet!)
7546
7547 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7548
7549         * text.C (paintLastRow): use the label font instead of the font of
7550         the last character to compute the size of *_BOX. This makes more
7551         sense and avoids a crash with empty paragraphs.
7552         Use Painter::rectangle to draw EMPTY_BOX.
7553
7554 2001-12-19  Juergen Vigna  <jug@sad.it>
7555
7556         * undo_funcs.C (textHandleUndo): fixed setting of inset_owner of
7557         the paragraphs if the replaced paragraph is not the first one!
7558         Tried to delete not used paragraphs but does not work yet so for
7559         now it's inside #ifdef's and by default off!
7560
7561 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7562
7563         * MenuBackend.C: include "lyx_main.h" instead of declaring
7564         lastfiles (actually was declared as LastFiles* instead of a
7565         scoped_ptr).
7566
7567 2001-12-17  Juergen Vigna  <jug@sad.it>
7568
7569         * tabular.C (AppendColumn): applied John's fix
7570
7571 2001-12-15  John Levon  <moz@compsoc.man.ac.uk>
7572
7573         * BufferView.h:
7574         * BufferView.C:
7575         * BufferView_pimpl.h:
7576         * BufferView_pimpl.C: cleanup and fix of checkInsetHit().
7577
7578         * Makefile.am:
7579         * box.h: new start of class for above
7580
7581         * lyxfunc.C: ignore space-only minibuffer dispatches.
7582           Show the command name when it doesn't exist
7583
7584         * minibuffer.C: don't add empty lines to the history
7585
7586         * minibuffer.C: add a space on dropdown completion
7587
7588 2001-12-14  John Levon  <moz@compsoc.man.ac.uk>
7589
7590         * text.C: fix line above/below drawing in insets
7591
7592 2001-12-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7593
7594         * lyxlength.C (LyXLength): Initialize private variables.
7595
7596 2001-12-15  Dekel Tsur  <dekelts@tau.ac.il>
7597
7598         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Use buffer language
7599         when inserting error insets.
7600
7601 2001-12-13  Juergen Vigna  <jug@sad.it>
7602
7603         * undo_funcs.C (textRedo/Undo): fixed as the first paragraph was
7604         actually sometimes the before-paragraph.
7605         (setUndo): don't clear the redostack if we're not actually undoing!
7606
7607 2001-12-06  Juergen Vigna  <jug@sad.it>
7608
7609         * undo_funcs.C (textHandleUndo): well after John's hint I got here
7610         and fixed redoing of main paragraph, so we can use it now ;)
7611
7612         * text2.C (redoParagraphs): fixed a crash when having only 1 row!
7613
7614 2001-12-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7615
7616         * undo_funcs.C (textHandleUndo): undo undo leak fix below, as per
7617         Juergen's request
7618
7619 2001-12-13  André Pönitz <poenitz@gmx.net>
7620
7621         * undostack.[Ch]:
7622         * undo_func.C: minor cleanup
7623
7624 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7625
7626         * FontLoader.C (getFontinfo): only use symbol fonts with encoding
7627         -adobe-fontspecific. At least Mandrake and Redhat have a symbol
7628         font in urw-fonts package which is marked as -urw-fontspecific and
7629         does not work (incidentally, changing the encoding in the
7630         fonts.dir of this package to -adobe-fontspecific fixes the
7631         problem).
7632
7633         * undo_funcs.C (textHandleUndo): fix leak in undo, but now there
7634         is a crash when undoing first paragraph (Juergen, please take a
7635         look). THis does not mean the undo fix is wrong, just that it
7636         uncovers problems.
7637
7638         * text2.C (ownerParagraph): let the (int,Paragraph*) version call
7639         the (Paragraph*) version when needed instead of duplicating the
7640         code.
7641
7642         * text.C (workWidth): use Inset::parOwner to find out where the
7643         inset has been inserted. This is a huge performance gain for large
7644         documents with lots of insets. If Inset::parOwner is not set, fall
7645         back on the brute force method
7646
7647         * paragraph_pimpl.C (insertInset):
7648         * paragraph.C (Paragraph):
7649         (cutIntoMinibuffer): set parOwner of insets when
7650         inserting/removing them
7651
7652         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
7653
7654 2001-12-12  Martin Vermeer  <martin.vermeer@hut.fi>
7655
7656         * commandtags.h:
7657         * LyXAction.C:
7658         * lyx_main.C:
7659         * lyxfunc.C:
7660         * mathed/formulabase.C:
7661         * mathed/math_cursor.[Ch]:
7662         make sub/superscript into functions LFUN_SUB/SUPERSCRIPT.
7663
7664
7665 2001-12-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7666
7667         * lyxlength.[Ch] (operator!=): new function
7668
7669 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7670
7671         * text.C (workWidth): use Inset::parOwner to find out where the
7672         inset has been inserted. This is a huge performance gain for large
7673         documents with lots of insets. If Inset::parOwner is not set, fall
7674         back on the brute force method
7675
7676         * paragraph_pimpl.C (insertInset):
7677         * paragraph.C (Paragraph):
7678         (cutIntoMinibuffer): set parOwner of insets when
7679         inserting/removing them
7680
7681         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
7682
7683 2001-12-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7684
7685         * tabular-old.C (getTokenValue):
7686         * tabular.C (getTokenValue):
7687         (write_attribute): new versions for LyXLength
7688         (everywhere): adjust the use of widths
7689
7690         * tabular.h: change the type of widths from string to LyXLength
7691
7692 2001-12-11  Ben Stanley <bds02@uow.edu.au>
7693
7694         * paragraph.C: fixed missing line number count when exporting
7695         Environments to LaTeX file
7696
7697         * buffer.C: added informational message for checking line numbers.
7698
7699 2001-12-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7700
7701         * text2.C (deleteEmptyParagraphMechanism): if there is only one
7702         paragraph, do the 'double space' part, but not the 'empty
7703         paragraph' one.
7704
7705         * text.C (workWidth): small optimization
7706         (getLengthMarkerHeight): use minimal size for negative lengths.
7707
7708 2001-12-11  Dekel Tsur  <dekelts@tau.ac.il>
7709
7710         * lyxfont.C (GUIFamilyNames): Fix GUIFamilyNames array
7711
7712         * FontLoader.C (getFontinfo): Use "*-eufrak-medium"
7713
7714 2001-12-11  André Pönitz <poenitz@gmx.net>
7715
7716         * FontLoader.C:
7717         * lyxfont.[Ch]: support for fraktur font used by \mathfrak
7718
7719 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
7720
7721         * text2.C: keep selection on a setFont()
7722
7723 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
7724
7725         * lyx_cb.C: another bv->text misuse, from insert label
7726
7727 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
7728
7729         * kbsequence.h:
7730         * kbsequence.C: re-instate nmodifier mask
7731
7732 2001-12-12  Angus Leeming  <a.leeming@ic.ac.uk>
7733
7734         * lyx_main.h: make lyxGUI private.
7735
7736 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
7737
7738         * lyxfind.C: place the cursor correctly on failed search
7739
7740 2001-12-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7741
7742         * text.C (getLengthMarkerHeight): for small heights, the arrows
7743         are not always on top/bottom of the text
7744         (drawLengthMarker): smaller arrows; take the left margin in
7745         account; draw also vfills.
7746         (paintFirstRow):
7747         (paintLastRow): remove special code for vfill and standard spaces,
7748         since everything is handled in drawLengthMarker now.
7749
7750 2001-12-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7751
7752         * buffer.C (insertErtContents): try to handle font and language
7753         interaction a bit better.g
7754
7755         * ColorHandler.C (updateColor): change the hash to cover the whole
7756         LColor enum, ws cleanup
7757         (getGCLinepars): ditto
7758         (getGCLinepars): only lookup in the linecache once.
7759
7760 2001-12-07  Dekel Tsur  <dekelts@tau.ac.il>
7761
7762         * iterators.C (operator++): Make the iterator more robust
7763
7764         * BufferView2.C (removeAutoInsets): Use paragraph iterators
7765         (John's patch)
7766         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Ditto
7767
7768 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
7769
7770         * lyxtext.h:
7771         * text.C: better added space drawing
7772
7773 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
7774
7775         * LyXView.C:
7776         * BufferView2.C: fix layout combo update on inset unlock
7777
7778 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
7779
7780         * Makefile.am: don't compile unused files
7781
7782 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
7783
7784         * lyxfunc.C:
7785         * commandtags.h:
7786         * LyXAction.C: remove old LFUN_LAYOUTNO
7787
7788 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
7789
7790         * paragraph_pimpl.h:
7791         * paragraph_pimpl.C: isTextAt() doesn't need font param
7792
7793 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
7794
7795         * lyxlex.h:
7796         * lyxlex.C: little cleanup
7797
7798 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
7799
7800         * BufferView_pimpl.C: fix insertAscii for insets
7801
7802 2001-12-05  Juergen Vigna  <jug@sad.it>
7803
7804         * CutAndPaste.C (pasteSelection): remove not allowed insets/chars and
7805         set the right font on the "multi" paragraph paste!
7806
7807 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7808
7809         * trans_decl.h:
7810         * trans_mgr.[Ch]:
7811         * trans.[Ch]:
7812         * lyxgluelength.C:
7813         * lyxlength.C: remove out-commented code.
7814
7815         * BufferView_pimpl:
7816         * CutAndPaste.C:
7817         * DepTable.C:
7818         * buffer.C:
7819         * chset.C:
7820         * lastfiles.C:
7821         * lyxlex.C:
7822         * lyxlex_pimpl.C:
7823         * lyxserver.C:
7824         * screen.C:
7825         * tabular-old.C:
7826         * tabular.C:
7827         * text.C:
7828         * trans_mgr.C:
7829         * vc-backend.C: change "while(" to "while ("
7830
7831         * lyxlength.[Ch]: add zero function to check if length is zero or
7832         not
7833         * lyxgluelength.C: use it
7834
7835 2001-12-05  Allan Rae  <rae@lyx.org>
7836
7837         * lyxlength.C: Attempted a fix for the abs(int) header selection.
7838         Works for 2.95.3, from what I understand of Garst's reports this should
7839         work for other g++ versions.  We're screwed if the abs(int) definition
7840         changed between bugfix releases of gcc.
7841
7842 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
7843
7844         * text.C: fix chapter label offset !
7845
7846 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
7847
7848         * lyxtext.h:
7849         * text.C: fix hfill at end of line, clean up
7850
7851 2001-12-04  Juergen Vigna  <jug@sad.it>
7852
7853         * undo_funcs.C (textHandleUndo): added a call to inset->update() so
7854         that we force an update of the inset and it's owners if neccessary.
7855
7856 2001-12-03  Juergen Vigna  <jug@sad.it>
7857
7858         * text.C (rowLast): simplified code
7859
7860 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
7861
7862         * lyxfunc.C: fix show options on timeout
7863
7864 2001-12-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7865
7866         * screen.C (topCursorVisible): scroll half a page when the cursor
7867         reached top of bottom of screen
7868
7869 2001-12-02  John Levon  <moz@compsoc.man.ac.uk>
7870
7871         * minibuffer.C: deactivate on loss of focus
7872
7873 2001-12-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7874
7875         * vspace.[Ch] (operator!=): add operator.
7876
7877 2001-12-01  John Levon  <moz@compsoc.man.ac.uk>
7878
7879         * BufferView_pimpl.C: refuse to open an inset when
7880         there's a selection.
7881
7882 2001-11-30  John Levon  <moz@compsoc.man.ac.uk>
7883
7884         * BufferView_pimpl.C: allow to click on RHS of full row insets
7885
7886 2001-11-30  Juergen Vigna  <jug@sad.it>
7887
7888         * tabular.C (LyXTabular): add a same_id to set the same id's in the
7889         insets for undo reasons.
7890
7891 2001-11-28  André Pönitz <poenitz@gmx.net>
7892
7893         * vspace.[Ch]: cosmetical changes
7894
7895 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
7896
7897         * LyXAction.h:
7898         * LyXAction.C:
7899         * lyxfunc.h:
7900         * lyxfunc.C:
7901         * kbmap.h:
7902         * kbmap.C:
7903         * lyxrc.C:
7904         * kbsequence.h:
7905         * kbsequence.C: part re-write of old kb code
7906
7907         * Painter.C:
7908         * WorkArea.C: remove Lgb_bug_find_hack
7909
7910 2001-11-30  José Matos <jamatos@fep.up.pt>
7911
7912         * buffer.C (makeDocBookFile): add a comment to point a hack.
7913         (simpleDocBookOnePar): changed a PAR::META_INSET to isInset().
7914         Fixed a double write of labels.
7915
7916 2001-11-29 Ben Stanley <bds02@uow.edu.au>
7917
7918         * LaTeX.C:
7919         * LaTeX.h Fixed bug in LaTeX class where it would not
7920         re-run latex if no depfiles were changed, but the .dvi was removed.
7921
7922 2001-11-28  André Pönitz <poenitz@gmx.net>
7923
7924         * all the files from the change on 2001/11/26:
7925         use lyx::layout_type instead of LyXTextClass::size_type
7926         use lyx::textclass_type instead of LyXTextClassList::size_type
7927
7928 2001-11-29  Juergen Vigna  <jug@sad.it>
7929
7930         * text.C: added support for paragraph::isFreeSpacing()
7931
7932         * buffer.C: same as above
7933
7934         * paragraph.h: inserted isFreeSpacing() function to enable
7935         FreeSpacing inside InsetERT.
7936
7937         * CutAndPaste.C (cutSelection/copySelection): set the inset_owner
7938         of the paragraph's in the cut/copy buffer to 0!
7939
7940         * text2.C (removeRow): remove the assert as it can!
7941
7942         * lyxtext.h: added helper function firstRow returning firstrow and
7943         made firstrow private again.
7944
7945         * BufferView2.C (lockInset): don't relock if we're already locked!
7946
7947         * text2.C (deleteEmptyParagraphMechanism): don't do anything if it's
7948         the only paragraph.
7949         (removeRow): added Assert::(firstrow)
7950
7951         * debug.C: forgot to add INSETTEXT here.
7952
7953 2001-11-28  Juergen Vigna  <jug@sad.it>
7954
7955         * sp_spell.C (initialize): changed error text to more general
7956         spellchecker command use (not only ispell!)
7957
7958         * bufferlist.C (qwriteAll): fixed "Cancel" button handling!
7959
7960         * debug.h: inserted one for debugging INSETTEXT (and InsetTabular)!
7961
7962 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
7963
7964         * vspace.C: initialise lyxgluelength on failure
7965
7966 2001-11-28  Allan Rae  <rae@lyx.org>
7967
7968         * text.C (paintLastRow): g++-2.95.3 and others don't like variable
7969         declaration & definition that looks like a function declaration.
7970
7971 2001-11-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7972
7973         * BufferView2.C (copy):
7974         (copyEnvironment): do not clear the selection when doing a copy.
7975
7976         * text.C (paintFirstRow): compilation fix
7977
7978 2001-11-27  Ben Stanley  <bds02@uow.edu.au>
7979
7980         * tabular.C (Latex): correct line count when writing latex.
7981
7982 2001-11-27  John Levon  <moz@compsoc.man.ac.uk>
7983
7984         * paragraph_pimpl.h:
7985         * paragraph_pimpl.C: tidy, and fix font-change in "LaTeX"
7986           bug a bit
7987
7988 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
7989
7990         * text.C:
7991         * LColor.h:
7992         * LColor.C: change vfillline->added_space
7993
7994         * text.C: add markers and text for added space
7995
7996         * vspace.C: fix comment
7997
7998 2001-11-28  André Pönitz <poenitz@gmx.net>
7999
8000         * paragraph.C: whitespace changes
8001         * all the other files from the change on 2001/11/26:
8002         change *::pos_type into lyx::pos_type
8003
8004 2001-11-27  Dekel Tsur  <dekelts@tau.ac.il>
8005
8006         * buffer.C (parseSingleLyXformat2Token): Set the language to the
8007         language of the document when inserting error insets.
8008
8009 2001-11-26  André Pönitz <poenitz@gmx.net>
8010
8011         * BufferView_pimpl.[Ch]:
8012         *       CutAndPaste.C:
8013         * buffer.[Ch]:
8014         * lyxcursor.[Ch]:
8015         * lyxfind.C:
8016         * lyxfunc.C:
8017         * lyxrow.[Ch]:
8018         * paragraph.[Ch]:
8019         * paragraph_pimpl.[Ch]:
8020         * sp_spell.C:
8021         * text.C:
8022         * text2.C: reduce header dependencies, introduce type for positions
8023
8024 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
8025
8026         * <various>: change to use Alert.h
8027
8028 2001-11-25  Dekel Tsur  <dekelts@tau.ac.il>
8029
8030         * buffer.C (parseSingleLyXformat2Token): Insert an error inset
8031         when encountering an unknown token.
8032         (readLyXformat2): Show an error message if there were unknown tokens.
8033
8034 2001-11-22  John Levon  <moz@compsoc.man.ac.uk>
8035
8036         * BufferView2.C:
8037         * BufferView_pimpl.C:
8038         * buffer.C:
8039         * paragraph.h:
8040         * text.C:
8041         * text2.C: use par->isInset()
8042
8043 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
8044
8045         * paragraph_pimpl.h:
8046         * paragraph_pimpl.C: cleanup
8047
8048 2001-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8049
8050         * text2.C (removeRow):
8051         * text.C (setHeightOfRow): remove useless (and costly) call to
8052         getRow.
8053
8054 2001-11-20  Allan Rae  <rae@lyx.org>
8055
8056         * paragraph.C (insertFromMinibuffer): Fix for inset related crashes.
8057         Now need Inset*::checkInsertChar() to return true for appropriate
8058         cases so that the characters in the minibuffer will actually be
8059         inserted.
8060
8061 2001-11-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8062
8063         * text.C: change the order of the includes.
8064         (workWidth): initialize it at once.
8065         (workWidth): make maxw unsigned
8066         (setHeightOfRow): remove unused variable (inset)
8067         (selectSelectedWord): remove unused variable (inset)
8068         (paintRowText): fix drawing of hfill characters, and clean up a bit.
8069
8070 2001-11-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8071
8072         * lyxserver.C (emergencyCleanup): do not try to close pipes if
8073         server is not running.
8074         (openConnection):
8075         (closeConnection): add debug info when server is disabled.
8076
8077         * ColorHandler.C (getGCForeground): send debug message to GUI
8078         channel.
8079
8080         * lyxrc.C: do not include lyxserver.h and tex-strings.h.
8081
8082         * kbmap.C (bind): modify because return conventions of
8083         kb_sequence::parse have changed.
8084
8085         * kbsequence.C (parse): only ignore spaces and not any stupid
8086         control character. This avoids tests like s[i] <= ' ', which are
8087         guaranteed to fail with 8bit characters and signed chars.
8088         Change return code to string::npos when there have been no error
8089         (0 was a bad idea when error is at first character)
8090
8091 2001-11-14  José Matos  <jamatos@fep.up.pt>
8092
8093         * buffer.h:
8094         * buffer.C (simpleDocBookOnePar): removed unused argument.
8095
8096 2001-11-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8097
8098         * text.C (selectNextWordToSpellcheck): do not test explicitely for
8099         insets which are part of a word. Paragraph::isLetter takes care of
8100         that now. Use Paragraph::isInset to identify insets.
8101         (selectSelectedWord): do not test for hyphenation break.
8102
8103         * BufferView_pimpl.C (smartQuote): use Inset::isSpace, so
8104         that protected spaces are considered as spaces.
8105
8106         * paragraph.C (isLetter): cleanup the code for ispell extras; use
8107         Inset::isLetter.
8108
8109 2001-11-12  John Levon  <moz@compsoc.man.ac.uk>
8110
8111         * lyxserver.h:
8112         * lyxserver.C: fix it. and small cleanup.
8113
8114 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
8115
8116         * BufferView_pimpl.C: use inline helpers
8117
8118         * LaTeXFeatures.h:
8119         * LaTeXFeatures.C: fix typos
8120
8121         * Spacing.h:
8122         * Spacing.C: move spacing_string into class
8123
8124         * ToolbarDefaults.C: move stuff into namespace anon
8125
8126         * layout.h: update enum
8127
8128         * lyxfunc.C: use better debug
8129
8130         * minibuffer.h: fix typo
8131
8132         * debug.h:
8133         * debug.C:
8134         * WorkArea.C: add and use Debug::WORKAREA
8135
8136         * lyxtext.h:
8137         * text.C:
8138         * text2.C: code re-organisation, inline helpers
8139
8140 2001-11-09  Michael A. Koziarski <michael@koziarski.org>
8141
8142         * Layout.C: replaced a few cases of std::vector.size() == 0 with
8143         std::vector.empty().
8144
8145 2001-11-09  Allan Rae  <rae@lyx.org>
8146
8147         * paragraph.C (TeXOnePar): remove old, now-irrelevent comments about
8148         '\n's after tables.  Tabular and ERT inset work now makes this no
8149         longer necessary.
8150
8151 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
8152
8153         * minibuffer.h:
8154         * minibuffer.C: fix crash, improve drop-down completion
8155
8156 2001-11-06  John Levon  <moz@compsoc.man.ac.uk>
8157
8158         * lyxserver.h:
8159         * lyxserver.C: invalidate fd's when doing endPipe()
8160
8161 2001-11-08  José Matos  <jamatos@fep.up.pt>
8162
8163         * buffer.C (sgmlLineBreak): renamed from linux_doc_line_break.
8164         (simpleDocBookOnePar): removed code made obsolete by the new inset code.
8165
8166         * paragraph.h:
8167         * paragraph.C (sgmlConvertChar): renamed from linuxDocConvertChar.
8168
8169 2001-11-07  José Matos  <jamatos@fep.up.pt>
8170
8171         * buffer.h:
8172         * buffer.C (sgmlError): linuxDocError renamed, and made public, added
8173         const qualifier.
8174
8175         * buffer.C (sgmlOpenTag):
8176         * buffer.C (sgmlCloseTag): removed debug info.
8177
8178         * buffer.h (sgmlOpenTag):
8179         * buffer.h (sgmlCloseTag): made public.
8180
8181 2001-11-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8182
8183         * buffer.C (saveParamsAsDefaults):
8184         * lyx_cb.C (MenuLayoutSave): remove
8185
8186         * LyXAction.C (init):
8187         * commandtags.h:
8188         * lyxfunc.C (dispatch): remove LFUN_LAYOUT_SAVE_DEFAULT.
8189
8190 2001-11-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8191
8192         * buffer.C (setPaperStuff): removed from here...
8193
8194         * bufferparams.C (setPaperStuff): ... and moved there.
8195
8196 2001-11-03  John Levon  <moz@compsoc.man.ac.uk>
8197
8198         * minibuffer.h:
8199         * minibuffer.C:
8200         * XFormsView.C: add support for drop-down completion
8201
8202 2001-11-03  Dekel Tsur  <dekelts@tau.ac.il>
8203
8204         * paragraph.C (TeXOnePar): Correct placement of \selectlanguage
8205         commands.
8206
8207 2001-10-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8208
8209         * gettext.C (locale_init): set LC_NUMERIC to "C" even if nls is
8210         disabled.
8211
8212 2001-10-30  John Levon  <moz@compsoc.man.ac.uk>
8213
8214         * lyx_main.C: change ref to known bugs
8215
8216 2001-10-30  Kayvan A. Sylvan  <kayvan@sylvan.com>
8217
8218         * LaTeXFeatures.C (getPackages): Use lyxskak.sty now instead
8219         to work around older babel problems.
8220
8221 2001-10-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
8222
8223         * LaTeXFeatures.[hC]: Now uses skak.sty for chess material.
8224
8225 2001-10-24  Juergen Vigna  <jug@sad.it>
8226
8227         * tabular-old.C (ReadOld): below variable changes reflected.
8228
8229         * tabular.[Ch]: added ltType struct for longtable header/footer
8230         defines and changed all instances where they are used. Added
8231         future support for double top/bottom rows.
8232
8233 2001-10-24  José Matos  <jamatos@fep.up.pt>
8234
8235         * buffer.h (docbookHandleCaption):
8236         * buffer.C (docbookHandleCaption): removed unused function.
8237         (makeDocBookFile): moved docbook supported version to v4.1.
8238
8239 2001-10-24  José Matos  <jamatos@fep.up.pt>
8240
8241         * tabular.h:
8242         * tabular.C (docbookRow): new function to export docbook code of a row.
8243         (DocBook): now honors the longtable flags.
8244
8245 2001-10-23  José Matos  <jamatos@fep.up.pt>
8246
8247         * LaTeXFeatures.h:
8248         * LaTeXFeatures.C (getLyXSGMLEntities): new function to get the name
8249         of the lyx defined sgml entities used in a docbook/linuxdoc document.
8250
8251         * buffer.C (makeLinuxDocFile):
8252         (makeDocBookFile): reworked the preamble, more clean, and with
8253         support for lyx defined entities. Changed the document declaration
8254         to be more XML friendly.
8255
8256         * tabular.C (DocBook): removed / terminator to be more SGML friendly,
8257         if we need to output XML that should be done with a filter.
8258
8259 2001-10-22  Juergen Vigna  <jug@sad.it>
8260
8261         * sp_pspell.h (class PSpell): add alive function needed in the
8262         controller to see if the spellchecker could be started.
8263
8264 2001-10-22  Juergen Vigna  <jug@sad.it>
8265
8266         * buffer.C (insertStringAsLines): modify the font for inserting
8267         chars in certain conditions by calling checkInsertChar(font).
8268
8269 2001-10-19  Juergen Vigna  <jug@sad.it>
8270
8271         * text.C (workWidth): use getRow instead of wrong algorithm.
8272         (setHeightOfRow): fix for MARGIN_RIGHT_ADDRESS_BOX
8273
8274 2001-10-19  John Levon  <moz@compsoc.man.ac.uk>
8275
8276         * lyxserver.h:
8277         * lyxserver.C:
8278         * lyx_main.h:
8279         * lyx_main.C: add emergencyCleanup (remove pipes on crash)
8280
8281 2001-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8282
8283         * text.C (workWidth): do not search for the exact row when
8284         margintype is not MARGIN_RIGHT_ADDRESS_BOX. This is an
8285         optimization for big documents.
8286
8287 2001-10-18  Juergen Vigna  <jug@sad.it>
8288
8289         * text.C (workWidth): new function with added Inset * parameter.
8290
8291 2001-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8292
8293         * text2.C (setCursorFromCoordinates): use Paragraph::size_type
8294
8295         * lyxtext.h: change type of refresh_pos to Paragraph::size_type;
8296         change return type of getColumnNearX.
8297
8298
8299         * text.C (changeRegionCase): use uppercase/lowercase instead of
8300         toupper/tolower.
8301         (leftMargin):
8302         (rightMargin): simplify code by factoring out the uses of
8303         textclasslist.
8304         (labelFill):
8305         (numberOfHfills):
8306         (setHeightOfRow):
8307         (appendParagraph): use Paragraph::size_type
8308
8309 2001-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8310
8311         * vspace.C (asLatexString): add a missing break
8312
8313 2001-10-15  Herbert Voss  <voss@perce.de>
8314
8315         * vspace.C (asLatexString): fix bug in output of string for l% and p%.
8316
8317 2001-10-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8318
8319         * lyxfunc.C (getStatus): disable thesaurus when aiksaurus library
8320         is not available.
8321
8322 2001-10-10  André Pönitz <poenitz@gmx.net>
8323
8324         * lyxfunc.C: removed greek_kb_flag.
8325
8326 2001-10-10  Herbert Voss  <voss@perce.de>
8327
8328         * lyx_main.C: delete global string help_lyxdir.
8329
8330 2001-10-09  Herbert Voss  <voss@perce.de>
8331
8332         * commandtags.h (kb_action): added LFUN_HELP_TEXINFO.
8333
8334         * LyXAction.C (init): added LFUN_HELP_TEXINFO to items array.
8335
8336         * lyx_main.C: added global string help_lyxdir.
8337
8338         * lyxfunc.C (dispatch): added LFUN_HELP_TEXINFO to switch.
8339
8340 2001-10-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
8341
8342         * lyxrc.C (set_font_norm_type): support iso8859-4
8343
8344 2001-07-02  Claus Hentschel  <claus.hentschel@mbau.fh-hannover.de>
8345
8346         * LaTeX.C (deplog): add another regex for MikTeX
8347
8348 2001-10-05  Adrien Rebollo  <adrien.rebollo@gmx.fr>
8349
8350         * lyxrc.C (set_font_norm_type): support iso8859-3
8351
8352 2001-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8353
8354         * BufferView_pimpl.C (tripleClick): fix stupid logic error.
8355
8356         * LaTeXFeatures.C: remove special case of french and index
8357
8358         * buffer.C (makeLaTeXFile): _really_ load babel late (i.e. just
8359         before \begin{document}). This solves several incompatibilities.
8360
8361 2001-10-03  Garst Reese  <reese@isn.net>
8362
8363         * lyx_cb.C: change CheckTex error msg.
8364
8365 2001-10-03  José Matos  <jamatos@fep.up.pt>
8366
8367         * buffer.C (simpleDocBookOnePar): add support for pass_thru.
8368
8369 2001-10-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8370
8371         * .cvsignore: update
8372
8373         * lyx_main.C (commandLineVersionInfo): use new style version info.
8374
8375         * buffer.C (writeFile):
8376         (makeLaTeXFile):
8377         (makeLinuxDocFile):
8378         (makeDocBookFile): use lyx_docversion instead of LYX_DOCVERSION.
8379
8380         * WorkArea.C (WorkArea): use lyx_version instead of LYX_VERSION.
8381
8382         * version.h: update to use stuff in version.C
8383
8384         * version.C.in: new file. Contains version information determined
8385         at compile time. This is a merging of version.h and
8386         version_info.h.in.
8387
8388 2001-10-03  Juergen Vigna  <jug@sad.it>
8389
8390         * BufferView_pimpl.C (update): don't change "dirty" status in
8391         updateInset call.
8392
8393 2001-10-03  Angus Leeming  <a.leeming@ic.ac.uk>
8394
8395         * WorkArea.C (c-tor): re-position version string slightly.
8396
8397 2001-10-02  Angus Leeming  <a.leeming@ic.ac.uk>
8398
8399         * BufferView_pimpl.C (buffer): remove call to WorkArea::show() and
8400         revert to previous code.
8401
8402         WorkArea.[Ch]: (show, destroySplash): methods removed.
8403
8404         WorkArea.C: rework code so that it's an amalgam of the codes before and
8405         after the splash screen was moved to WorkArea.
8406
8407 2001-10-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8408
8409         * lyxrc.C (read):
8410         * vspace.C (inPixels):
8411         (lyx_advance):
8412         * kbmap.C (bind):
8413         * buffer.C (insertStringAsLines):
8414         (asciiParagraph): fix types to be large enough
8415
8416         * lyxlex_pimpl.h: change member status from short to int
8417
8418         * layout.h: fix type of endlabeltype
8419
8420         * kbmap.C (bind):
8421         * kbsequence.C (parse): change return type to string::size_type
8422
8423         * LaTeX.C (updateBibtexDependencies): comment out unneeded
8424         variable
8425
8426         * Bullet.C (bulletSize):
8427         (bulletEntry): do not use short ints as parameters
8428
8429         * BufferView2.C (insertLyXFile): change a char to an int.
8430
8431         * WorkArea.C (WorkArea): remove unneeded floats in computation
8432
8433 2001-10-01  Dekel Tsur  <dekelts@tau.ac.il>
8434
8435         * buffer.C (asciiParagraph): Treat '\\' as other chars.
8436
8437         * paragraph.C (asString): Do not ignore newline/hfill chars when
8438         copying to the clipboard.
8439
8440 2001-09-29  Dekel Tsur  <dekelts@tau.ac.il>
8441
8442         * paragraph_pimpl.C (simpleTeXSpecialChars): Call to textrow.start
8443         after a multi-line inset.
8444
8445 2001-09-28  Dekel Tsur  <dekelts@tau.ac.il>
8446
8447         * paragraph.C (validate): Set NeedLyXFootnoteCode
8448
8449 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
8450
8451         * lyxfont.C (LyXSizeNames): changed increase-error to increase
8452         and decrease-error to decrease.
8453
8454 2001-09-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8455
8456         * text2.C (deleteEmptyParagraphMechanism): reformat a bit to make
8457         it more readable (should be equivalent)
8458
8459 2001-09-27  Adrien Rebollo  <adrien.rebollo@gmx.fr>
8460
8461         * paragraph_pimpl.C (simpleTeXSpecialChars): handle latin9 too.
8462
8463 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8464
8465         * text2.C (fixCursorAfterDelete): new method. Fixes the parameters
8466         of a cursor (row, etc.) after a character has been deleted
8467         (deleteEmptyParagraphMechanism): call the method above on _all_
8468         cursors held by the LyXText when a double space has been
8469         detected/deleted.
8470
8471 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
8472
8473         * BufferView_pimpl.C (buffer): call WorkArea::show to pop-up the
8474         pixmap.
8475         (resizeCurrentBuff): remove code to destroy the old splash dialog.
8476
8477         * WorkArea.[Ch]: add the "LyX" pixmap and version string to the
8478         background. Use greyOut() and the new show() methods to toggle between
8479         the foreground and background. Add code to remove the splash after
8480         its initial showing.
8481
8482         * lyx_gui.C: Remove dependency on frontends/Dialogs.h.
8483         (create_forms): no longer call Dialogs::showSplash.
8484
8485 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8486
8487         * .cvsignore: add version_info.h
8488
8489 2001-09-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8490
8491         * version_info.h.in: new file
8492
8493         * Makefile.am: add version_info.h.in
8494
8495         * lyx_main.C (commandLineVersionInfo): use version_info defined in
8496         version_info.h instead of VERSION_INFO
8497
8498 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
8499
8500         * text.C (selectNextWordToSpellcheck): reverted change to if-block.
8501         The ERT inset now returns string().
8502
8503 2001-09-21  Angus Leeming  <a.leeming@ic.ac.uk>
8504
8505         * lyxtext.h, text.C (selectNextWord): renamed as
8506         selectNextWordToSpellcheck.
8507
8508         * text.C (selectNextWordToSpellcheck): Modified to not select
8509         words inside an ERT inset.
8510
8511 2001-09-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8512
8513         * lyx_cb.C (MenuLayoutSave): change a bit the question
8514
8515         * sp_base.h: include <sys/types.h>
8516
8517 2001-09-18  Angus Leeming  <a.leeming@ic.ac.uk>
8518
8519         * LColor.[Ch]: added graphicsbg to color enum and to ColorEntry.
8520
8521 2001-09-20  Michael Schmitt  <Michael.Schmitt@teststep.org>
8522
8523         * several files: fix typos in user-visible strings
8524
8525 2001-09-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8526
8527         * text2.C (pasteSelection): do not set the selection, since it
8528         will be cleared later. Actually, the intent was to fix the way the
8529         selection was set, but I figured rmoving the code was just as good.
8530
8531 2001-09-19  Dekel Tsur  <dekelts@tau.ac.il>
8532
8533         * FontLoader.C (available): Check if font is available without
8534         loading the font.
8535
8536 2001-09-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
8537
8538         * lyxrc.[Ch]: added auto_reset_options variable and associated code.
8539
8540 2001-09-13  Angus Leeming  <a.leeming@ic.ac.uk>
8541
8542         * lyxrc.[Ch]: added display_graphics variable and associated code.
8543
8544 2001-09-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8545
8546         * bufferparams.C (hasClassDefaults): new method. Returns true if
8547         the buffer parameters correspond to known class defaults
8548
8549 2001-09-17  Angus Leeming  <a.leeming@ic.ac.uk>
8550
8551         * XFormsView.C (show): set minimum size to the main window.
8552
8553 2001-09-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8554
8555         * text2.C (copySelection):
8556         (cutSelection):
8557         * lyxfind.C (LyXReplace):
8558         * BufferView_pimpl.C (Dispatch): pass the correct flag to
8559         LyXText::selectionAsString.
8560
8561         * paragraph.C (asString): add "label" argument to the second form
8562
8563         * text2.C (selectionAsString): add "label" argument and pass it to
8564         Paragraph::asString.
8565
8566 2001-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8567
8568         * lyx_main.C (commandLineHelp): remove version information
8569
8570 2001-09-08  Rob Lahaye  <lahaye@users.sourceforge.net>
8571
8572         * lyx_main.C: add -version commandline option
8573
8574 2001-09-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8575
8576         * paragraph.h: make the optional constructor arg required instead.
8577         some modifications to other files because of this.
8578
8579         * minibuffer.C (C_MiniBuffer_peek_event): make it static
8580
8581         * lyxserver.C (C_LyXComm_callback): make it static
8582
8583         * lyx_main.C (error_handler): make it static
8584
8585         * lyx_gui.C (LyX_XErrHandler): make it static
8586
8587         * XFormsView.C (C_XFormsView_atCloseMainFormCB): make it static
8588
8589         * WorkArea.C: make the extern "C" methods static.
8590
8591         * Makefile.am (lyx_LDADD): simplify
8592
8593 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
8594
8595         * commandtags.h: removed redundant LFUNs, LFUN_HELP_COPYRIGHT,
8596         LFUN_HELP_CREDITS, LFUN_HELP_VERSION.
8597
8598         * LyXAction.C (init):
8599         * lyxfunc.C (dispatch): associated code removal.
8600
8601 2001-09-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8602
8603         * lyxfont.h (isSymbolFont): shut off warning
8604
8605         * text.C (setHeightOfRow):
8606         (getVisibleRow): fix crash with empty paragraphs which have a
8607         bottom line
8608
8609 2001-09-07  Rob Lahaye  <lahaye@users.sourceforge.net>
8610
8611         * lyxrc.[Ch]: added dialogs_iconify_with_main variable and associated
8612         code.
8613
8614 2001-09-04  José Matos  <jamatos@fep.up.pt>
8615         * buffer.C
8616         * buffer.h
8617         * tabular.C (docbook): rename docBook method to docbook.
8618
8619 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
8620
8621         * Makefile.am: add dependencies to main.o.
8622
8623 2001-09-03  Dekel Tsur  <dekelts@tau.ac.il>
8624
8625         * FontLoader.C (available): Return false if !lyxrc.use_gui
8626
8627 2001-09-03  Michael Schmitt <schmitt@itm.mu-luebeck.de>
8628
8629         * FontInfo.C (query):
8630         * converter.C (view):
8631         * importer.C (Import):
8632         * exporter.C (Export): Can not -> cannot.
8633
8634 2001-09-02  John Levon  <moz@compsoc.man.ac.uk>
8635
8636         * BufferView_pimpl.C: allow to create index inset even if
8637           string is empty
8638
8639 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
8640
8641         * buffer.C (getLists): replace boost::tie code with an explicit pair
8642         as boost::tie can break some compilers.
8643
8644         * iterators.h: Added a std:: declaration to the return type of
8645         ParIterator::size.
8646
8647 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
8648
8649         * lyxrc.C: add help for view_dvi_paper_option, default to safe
8650           case.
8651
8652 2001-09-02  Dekel Tsur  <dekelts@tau.ac.il>
8653
8654         * iterators.[Ch]: New files. Provide paragraph iterators.
8655
8656         * buffer.C (changeLanguage): Use paragraph iterators.
8657         (isMultiLingual): ditto
8658
8659         * BufferView2.C (ChangeInsets): Use paragraph iterators.
8660
8661 2001-09-01  Dekel Tsur  <dekelts@tau.ac.il>
8662
8663         * FontLoader.C: Support for cmr font.
8664
8665 2001-08-31  Dekel Tsur  <dekelts@tau.ac.il>
8666
8667         * FontLoader.C (getFontinfo): Handle latex symbol fonts.
8668         (available): New method.
8669
8670         * FontInfo.C (getFontname): Use scalable fonts even when
8671         lyxrc.use_scalable_fonts is false, if no non-scalable fonts was
8672         found.
8673
8674 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
8675
8676         * converter.C (Formats::view): reverted! Incorrect fix.
8677
8678 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
8679
8680         * converter.C (Formats::view): only output the -paper option
8681         if the dvi viewer is xdvi, thereby fixing bug #233429.
8682
8683 2001-08-23  Herbert Voss  <voss@perce>
8684
8685         * BufferView_pimpl.C: small fix for LFUN_INSERT_BIBTEX
8686
8687 2001-08-20  Dekel Tsur  <dekelts@tau.ac.il>
8688
8689         * Spacing.h (Spacing): Set space to Default on in the default
8690         constructor.
8691
8692 2001-08-19  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8693
8694         * vc-backend.h (RCS::versionString): add RCS to version
8695         (CVS::versionString): add CVS to version
8696
8697         * vc-backend.C (scanMaster): do not add CVS to version.
8698         (scanMaster): do not add RCS to version
8699
8700         * lyxvc.C (versionString): new method
8701
8702         * lyxfunc.C (initMiniBuffer): use LyXVC::versionString
8703
8704 2001-08-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8705
8706         * Spacing.C (set): initialize fval
8707
8708 2001-08-15  Dekel Tsur  <dekelts@tau.ac.il>
8709
8710         * lyxlex_pimpl.C (next): Treat \ as normal char if not followed by
8711         " or \.
8712
8713 2001-08-16  Juergen Vigna  <jug@sad.it>
8714
8715         * lyxfunc.C (dispatch): implemented the new FINISHED states.
8716
8717 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
8718
8719         * BufferView_pimpl.C:
8720         * figureForm.C:
8721         * lyxtext.h:
8722         * text2.C: setParagraph takes linespacing now
8723
8724 2001-08-15  John Levon  <moz@compsoc.man.ac.uk>
8725
8726         * LyxAction.C: add internal LFUN_CITATION_INSERT
8727
8728         * LyXView.C: actually apply fix
8729
8730         * bufferlist.C: fix open non-existent file
8731
8732         * lyxfind.C: fix indentation
8733
8734         * lyxfunc.C: remove unneeded assert, fix typo
8735
8736 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
8737
8738         * MenuBackend.C: use "Floatname List"
8739
8740 2001-08-14  Dekel Tsur  <dekelts@tau.ac.il>
8741
8742         * buffer.C (parseSingleLyXformat2Token): Do not generate errors
8743         when converting LaTeX layout to insetERT.
8744         Generate a non-collapsed float when reading old float
8745
8746 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
8747
8748         * BufferView2.C (showLockedInsetCursor): Use normal cursor shape in
8749         ERT insets.
8750
8751 2001-08-13  Juergen Vigna  <jug@sad.it>
8752
8753         * text.C (fill): return 0 instead of 20 as this seems to be the more
8754         correct value.
8755
8756 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
8757
8758         * encoding.C (TransformChar): Use lyxrc.font_norm_type instead of
8759         lyxrc.font_norm.
8760
8761 2001-08-13  Juergen Vigna  <jug@sad.it>
8762
8763         * lyxfind.C (LyXReplace): fixed not single-replacing characters with
8764         casesensitive off.
8765         (SearchBackward): comment out the unlocking of the inset_owner this
8766         should not be needed!
8767
8768 2001-08-11  Dekel Tsur  <dekelts@tau.ac.il>
8769
8770         * Many files: Remove inherit_language, and add latex_language
8771
8772         * BufferView2.C (showLockedInsetCursor): Fix cursor shape in
8773         collapsible insets.
8774
8775 2001-08-10  Juergen Vigna  <jug@sad.it>
8776
8777         * text.C (prepareToPrint): fixed hfill-width in draw!
8778
8779         * BufferView2.C (selectLastWord): save the selection cursor as this
8780         now is cleared in the function LyXText::clearSelection!
8781
8782 2001-08-08  Juergen Vigna  <jug@sad.it>
8783
8784         * BufferView_pimpl.C (Dispatch): use a non-cut-buffer cut on DELTE
8785         BACKSPACE type functions.
8786
8787         * CutAndPaste.C (cutSelection): added a bool so that the stuff actually
8788         is only cutted from the document but not put in the cut-buffer, where
8789         still the old stuff should be.
8790
8791         * text2.C (cutSelection): added bool to pass to CutAndPaste::cutSelection.
8792
8793         * BufferView2.C (cut): added a bool to pass to LyXText::cutSelection.
8794
8795         * tabular.C (SetWidthOfCell): fixed special case where the width
8796         was not updated!
8797         (LeftLine): handle '|' in align_special.
8798         (RightLine): ditto
8799         (LeftAlreadyDrawed): ditto
8800         (SetWidthOfCell): ditto
8801
8802 2001-08-07  Juergen Vigna  <jug@sad.it>
8803
8804         * lyx_main.C (readUIFile): fixed some forgotten lowercase!
8805
8806 2001-08-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8807
8808         * lyxlex_pimpl.[Ch]: converto to lowercase funcs
8809         * lyxlex.[hC]: ditto
8810
8811 2001-08-06  Juergen Vigna  <jug@sad.it>
8812
8813         * text.C (getVisibleRow): fix up row clearing a bit.
8814
8815 2001-08-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8816
8817         * minibuffer.C: make sure the X server sees the changes in the input.
8818
8819 2001-08-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8820
8821         * paragraph.C (getFont): split into...
8822         (getLabelFont): this
8823         (getLayoutFont): and this
8824         * paragraph_pimpl.C (realizeFont): calling this
8825
8826         * text2.C (getFont): split into...
8827         (getLayoutFont): this
8828         (getLabelFont): and this
8829         (realizeFont): all three calling this
8830
8831         * lyxfont.h: remove all NO_LATEX macros and code... adjust all
8832         files where used.
8833
8834 2001-08-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8835
8836         * lyxfunc.C (getStatus): add checkbox support for LFUN_APPENDIX
8837
8838 2001-08-02  Kayvan A. Sylvan  <kayvan@sylvan.com>
8839
8840         * BufferView_pimpl.C (smartQuote): Added code to exempt pass_thru
8841         layouts from the Quote inset insertion.
8842
8843 2001-08-03  Juergen Vigna  <jug@sad.it>
8844
8845         * BufferView_pimpl.C (update): do the fitCursor only at the end!
8846
8847         * screen.C (drawFromTo): don't call fitcursor here and do the loop
8848         only if status not is already CHANGED_IN_DRAW (second level).
8849
8850         * text.C (draw): don't set the need_break_row when inside an
8851         InsetText LyXText.
8852
8853 2001-08-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8854
8855         * buffer.C (parseSingleLyXformat2Token): handle more latex
8856         conversion cases.
8857
8858         * bufferview_funcs.[hC]: change function names to
8859         begin with small char, adjust other files.
8860
8861 2001-08-02  André Pönitz <poenitz@gmx.net>
8862
8863         * lyxfunc.C:
8864         BufferView_pimpl.C: remove broken special code for math-greek
8865
8866 2001-08-02  Juergen Vigna  <jug@sad.it>
8867
8868         * BufferView_pimpl.C (update): redone this function so that we
8869         update the text again if there was a CHANGE_IN_DRAW.
8870
8871         * screen.C (cursorToggle): removed LyXText parameter and recoded.
8872         (drawFromTo): added a new internal bool which is used by draw() and
8873         redraw() function.
8874         (general): some cursor drawing problems fixed.
8875
8876 2001-08-01  Juergen Vigna  <jug@sad.it>
8877
8878         * lyxfind.C (LyXFind): fixed
8879         (SearchForward): ditto
8880         (SearchBackward): ditto
8881
8882         * BufferView_pimpl.C (workAreaMotionNotify): hopefully fixed the
8883         spurius drawing of the cursor in the main area.
8884
8885         * text2.C (status): small fix which could lead to a segfault!
8886         (clearSelection): remove unneeded BufferView param.
8887
8888 2001-08-01  André Pönitz <poenitz@gmx.net>
8889
8890         * lyxfunc.C: small change due to changed mathed interface
8891
8892 2001-08-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8893
8894         * bufferlist.C (loadLyXFile): add .lyx to file name if necessary
8895
8896 2001-08-01  John Levon  <moz@compsoc.man.ac.uk>
8897
8898         * lyxfunc.c: fail gracefully if file doesn't exist
8899
8900         * LyXSendto.C:
8901         * buffer.C:
8902         * lyxfunc.C:
8903         * BufferView_pimpl.C: IsDirWriteable() proto changed
8904
8905         * LyXView.C: fix updateWindowTitle() to store the last title
8906
8907 2001-07-31  Juergen Vigna  <jug@sad.it>
8908
8909         * text.C (setHeightOfRow): fixed setting of ascent/descent based on
8910         the font (wrong since using of Paragraph::highestFontInRange).
8911
8912         * paragraph.C (highestFontInRange): added a default_size parameter.
8913
8914         * text.C (getVisibleRow): minor clear row changes (still not perfect).
8915         (setHeightOfRow): reformat
8916
8917 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8918
8919         * converter.[hC] + affected files: move to (inital-char)lowercase
8920         function names.
8921
8922         * ParagraphParameters.C (ParagraphParameters): remove commented code
8923
8924         * PainterBase.[Ch]: remove commented code
8925
8926         * LaTeXFeatures.h: add "bool floats" for float.sty
8927
8928         * LaTeXFeatures.C (LaTeXFeatures): init floats
8929         (require): handle float
8930         (getPackages): do it with floats
8931
8932 2001-07-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8933
8934         * BufferView_pimpl.C (Dispatch): improve handling of
8935         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE
8936
8937         * commandtags.h: #include lyxfont.h here temporarily to avoid
8938         keybinding bug.
8939
8940         * bufferlist.h: include LString.h here.
8941
8942 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8943
8944         * text2.C (getStringToIndex): new method.
8945
8946 2001-07-29  Asger Alstrup Nielsen  <alstrup@alstrup>
8947
8948         * *: Reduced header file dependencies all over.
8949
8950 2001-07-30  Baruch Even  <baruch@lyx.org>
8951
8952         * buffer.C (readInset): Stop auto-converting InsetFig to InsetGraphics.
8953
8954 2001-07-29  Baruch Even  <baruch@lyx.org>
8955
8956         * buffer.C (readInset): Changed GRAPHICS to Graphics.
8957
8958 2001-07-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8959
8960         * ParameterStruct.h (endif): add a default constructor to make
8961         sure that all variables is initialized.
8962
8963         * ParagraphParameters.C (ParagraphParameters): adjust
8964
8965 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8966
8967         * BufferView_pimpl.C (Dispatch): use WHOLE_WORD selection for
8968         index; also, check that there is something to index, and that it
8969         does not span over several paragraphs.
8970         (doubleClick): use WHOLE_WORD_STRICT for double click.
8971
8972         * text.C (getWord): handle new WHOLE_WORD_STRICT word_location value.
8973
8974         * text2.C (toggleFree): do selection with WHOLE_WORD_STRICT
8975         scheme.
8976
8977 2001-07-26  Baruch Even  <baruch@lyx.org>
8978
8979         * buffer.C (readInset): Changed to call up InsetGraphics when reading
8980         an InsetFig figure, backwards compatible reading of old figure code.
8981
8982 2001-07-27  Juergen Vigna  <jug@sad.it>
8983
8984         * text2.C: font.realize function adaption.
8985
8986         * text.C (draw): add a warnings lyxerr text if needed.
8987
8988         * layout.C: font.realize function adaption.
8989
8990         * language.C: add inherit_language and implement it's handlings
8991
8992         * bufferview_funcs.C (StyleReset): remove language parameter from
8993         font creation (should be language_inherit now).
8994
8995         * bufferparams.C (writeFile): handle ignore_language.
8996
8997         * paragraph.C (getFontSettings): the language has to be resolved
8998         otherwise we have problems in LyXFont!
8999
9000         * lyxfont.C (lyxWriteChanges): added document_language parameter
9001         (update): removed unneeded language parameter
9002
9003         * paragraph.C (validate): fixed wrong output of color-package when
9004         using interface colors for certain fonts in certain environments,
9005         which should not seen as that on the final output.
9006
9007 2001-07-26  John Levon  <moz@compsoc.man.ac.uk>
9008
9009         * BufferView_pimpl.C:
9010         * Thesaurus.h:
9011         * Thesaurus.C:
9012         * Makefile.am:
9013         * commandtags.h:
9014         * LyXAction.C: add thesaurus support
9015
9016         * lyxfind.h:
9017         * lyxfind.C: add "once" parameter, for thesaurus, to not
9018           move to the next match
9019
9020 2001-07-26  Juergen Vigna  <jug@sad.it>
9021
9022         * lyxfont.C (realize): honor ignore_language too!
9023         (resolved): ditto.
9024
9025         * paragraph.C (TeXOnePar): handle ignore language right (hopefully).
9026
9027         * text.C (draw): one place more for ignore_language to not draw
9028         itself!
9029
9030 2001-07-25  Angus Leeming  <a.leeming@ic.ac.uk>
9031
9032         * LaTeXFeatures.C (getPackages): clean-up a little of the natbib code.
9033
9034 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9035
9036         * buffer.C (parseSingleLyXformat2Token): a more general fix for
9037         the minipage conversion problem.
9038
9039 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9040
9041         * buffer.C (parseSingleLyXformat2Token): check minipage if we
9042         insert an inset.
9043
9044 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9045
9046         * BufferView.h: don't forward declare WorkArea
9047
9048         * BufferView.C: don't include WorkArea.h
9049
9050 2001-07-25  André Pönitz <poenitz@gmx.net>
9051
9052         * commandtags.h:
9053         * LyXAction.C:
9054         * lyxfunc.C:  new LFUN 'math-space'
9055
9056         * BufferView.[Ch]: remove unneeded reference to 'WorkArea'
9057
9058 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9059
9060         * text2.C (toggleInset): call open/close
9061
9062 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9063
9064         * lyxfunc.C (dispatch): add debug for the disabled case
9065
9066         * font.C (buttonText): make similar to rectText
9067
9068         * buffer.C (readInset): comment out parsing of insetlist and
9069         insttheorem
9070
9071         * PainterBase.C (rectText): small correction
9072
9073         * BufferView_pimpl.C: comment out insettheorem and insetlist
9074         * LyXAction.C: ditto
9075         * commandtags.h: ditto
9076
9077 2001-07-24  Juergen Vigna  <jug@sad.it>
9078
9079         * text.C (draw): honor the ignore_language.
9080
9081         * lyxfont.C (LyXFont): set language to ignore_language in FONT_INIT1.
9082
9083 2001-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9084
9085         * lyxfunc.C (getStatus): BREAKLINE does _not_ insert a special
9086         char inset.
9087
9088 2001-07-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
9089
9090         * lyxtext.h: remove unused (and unimplemented) methods
9091
9092 2001-07-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
9093
9094         * text.C (getVisibleRow): honor background color
9095
9096         * PainterBase.h:
9097         * Painter.h: remove default color argument for fillRectangle
9098
9099         * text.C (backgroundColor): new method
9100
9101 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9102
9103         * text.C (getVisibleRow): adjust
9104
9105         * font.[Ch] (rectText): new method, metrics
9106         (buttonText): new method, metrics
9107
9108         * PainterBase.[hC]: make rectText and buttonText always draw and take
9109         fewer paramteres.
9110
9111 2001-07-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
9112
9113         * ToolbarDefaults.C (read):
9114         * MenuBackend.C (read): allow escaping in all strings
9115
9116         * BufferView_pimpl.C (insertAndEditInset): new method.
9117         (Dispatch): use insertAndEditInset whenever appropriate.
9118
9119         * BufferView_pimpl.C (insertNote): removed
9120
9121         * BufferView_pimpl.C (smartQuote): new method, moved from
9122         BufferView; if an insetquote cannot be inserted, insert a '"'
9123         character instead.
9124
9125         * BufferView2.C: remove insertCorrectQuote();
9126
9127         * lyxfunc.C (getStatus): Add support for all remaingin
9128         inset-insert lfuns.
9129
9130         * trans_mgr.C (insertVerbatim): do not treat '"' specially.
9131
9132         * lyxrc.C (read): in RC_BIND, allow escaped sequences in the
9133         command (necessary to pass " as parameter of self-insert.
9134
9135         * text.C (selectWordWhenUnderCursor):
9136         (selectWord): add word_location parameter
9137         (selectWordWhenUnderCursor): same + remove special code for word
9138         boundary.
9139         (selectNextWord): use kind() to guess type of insetspecialchar,
9140         not latex().
9141
9142         * buffer.C (insertStringAsLines): new method, extracted from LyXText.
9143         (insertErtContents): create ert insets as collapsed.
9144         (readInset): better compatibility code for Info inset.
9145
9146 2001-07-20  Juergen Vigna  <jug@sad.it>
9147
9148         * lyxfunc.C (dispatch): use always LyXFind now!
9149
9150         * text2.C (init): add a reinit flag so that the LyXText can be
9151         reinited instead of deleted and reallocated (used in InsetText).
9152
9153         * BufferView_pimpl.C: use the new Inset::edit(BV, bool) where needed.
9154
9155         * text.C: ditto
9156
9157         * text2.C: ditto
9158
9159 2001-07-18  Juergen Vigna  <jug@sad.it>
9160
9161         * text.C (selectNextWord): handle insets inside inset by calling
9162         always the bv->text functions so that we can go up the_locking_inset!
9163
9164         * BufferView_pimpl.C (show/hideCursor): fixed cursor showing up
9165         in strange locations when inside an inset!
9166
9167         * lyxfind.[Ch]: give all functions a LyXText * parameter and implement
9168         handling to include insets.
9169
9170         * lyxfunc.C (dispatch): changes to calls SearchBackward/Forward.
9171
9172 2001-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9173
9174         * LyXAction.C (init):
9175         * commandtags.h:
9176         * BufferView_pimpl.C (Dispatch): change HYPHENATION_BREAK to
9177         LIGATURE_BREAK, since the name is so stupid.
9178
9179 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
9180
9181         * buffer.C (readInset): enable reading of new InsetNotes as well as old
9182         InsetInfos.
9183
9184         * FontLoader.C: remove FORMS_H_LOCATION cruft.
9185
9186         * sp_form.[Ch]: remove.
9187
9188         * src/LColor.[Ch]: remove noteframe. Change note to "yellow".
9189
9190         * src/BufferView_pimpl.C (insertNote): use InsetNote in place of
9191         InsetInfo.
9192
9193         * src/buffer.C (readInset): ditto.
9194
9195 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
9196
9197         * BufferView_pimpl.C (specialChar): new method. Obsoletes
9198         menuSeparator(), endOfSentenceDot(), ldots() and
9199         hyphenationPoint(), which are therefore removed.
9200         (Dispatch): handle LFUN_HYPHENATION_BREAK.
9201
9202         * LyXAction.C (init):
9203         * commandtags.h: add LFUN_HYPHENATION_BREAK.
9204
9205         * paragraph.C (getWord): removed.
9206
9207         * BufferView_pimpl.C (Dispatch): use last word or selection for
9208         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE.
9209
9210         * lyx_main.C (queryUserLyXDir): do not ask before creating
9211         user_dir, except if it has been named explicitely.
9212
9213 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
9214
9215         * BufferView_pimpl.C (updateScrollbar): Fix crash when reading in
9216         a document of zero size.
9217
9218 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
9219
9220         * LaTeXFeatures.[Ch]: add variable "bool natbib" and set it
9221         approriately in the c-tor and in require().
9222         (getPackages): output the appropriate LaTeX for natbib support.
9223
9224         * buffer.C (parseSingleLyXformat2Token): set the new bufferparams
9225         variables "use_natbib" and "use_numerical_citations" when reading the
9226         LyX file.
9227         (readInset): read the various natbib cite commands.
9228         (validate): white-space change.
9229
9230         * bufferparams.[Ch]: new variables "bool use_natbib" and
9231         "bool use_numerical_citations".
9232         (writeFile): output them in the LyX file.
9233
9234 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
9235
9236         * lyxfunc.C (getStatus): add support for all the inset insertion
9237         commands.
9238
9239         * text2.C (insertInset):
9240         * paragraph.C (insetAllowed):
9241         * BufferView_pimpl.C (insertInset): update to take in account the
9242         renaming of insertInsetAllowed
9243
9244         * lyxfunc.C (getStatus): add support for LFUN_INSET_TOGGLE.
9245
9246         * text2.C (getInset): new method. returns inset at cursor position.
9247
9248         * BufferView_pimpl.C (Dispatch): changes because of this.
9249
9250         * LyXAction.C (init): rename open-stuff to inset-toggle.
9251
9252         * commandtags.h: rename LFUN_OPENSTUFF to LFUN_INSET_TOGGLE.
9253
9254         * text2.C (toggleInset): renamed from openStuff; use
9255         Inset::open().
9256
9257 2001-07-13  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
9258
9259         * lyxrc.C (set_font_norm_type): recognise ISO_8859_15.
9260
9261         * lyxrc.h: added ISO_8859_15 to enum FontEncoding.
9262
9263 2001-07-18  Dekel Tsur  <dekelts@tau.ac.il>
9264
9265         * buffer.C (readLyXformat2): Add filename to the error dialog
9266
9267 2001-07-18  Juergen Vigna  <jug@sad.it>
9268
9269         * tabular.C (GetCellNumber): put an assert here instead of the check!
9270
9271 2001-07-17  Juergen Vigna  <jug@sad.it>
9272
9273         * BufferView_pimpl.C (toggleSelection): adapted too.
9274
9275         * text.C (selectNextWord): adapted for use with insets.
9276         (selectSelectedWord): ditto
9277
9278 2001-07-17  Juergen Vigna  <jug@sad.it>
9279
9280         * sp_spell.C (PSpell): fix initialitation order.
9281
9282 2001-07-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9283
9284         * paragraph.C: spacing
9285
9286 2001-07-17  Edwin Leuven  <leuven@fee.uva.nl>
9287
9288         * sp_spell.C: repair language selection for pspell
9289
9290 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9291
9292         * lyxfunc.h: change more methods to begin with lower char.
9293
9294 2001-07-16  Dekel Tsur  <dekelts@tau.ac.il>
9295
9296         * buffer.C (parseSingleLyXformat2Token): Generate error insets
9297         for unknown layouts.
9298
9299 2001-07-13  Dekel Tsur  <dekelts@tau.ac.il>
9300
9301         * buffer.C (readLyXformat2): Generate an error dialog if there are
9302         unknown layouts.
9303
9304 2001-07-16  Juergen Vigna  <jug@sad.it>
9305
9306         * sp_spell.C: always compile ISpell part.
9307
9308         * lyxrc.C: added use_pspell entry and it's handling.
9309
9310 2001-07-13  Juergen Vigna  <jug@sad.it>
9311
9312         * sp_spell.C: removed double includes.
9313
9314 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
9315
9316         Consistent use of Lsstream.h:
9317         * Lsstream.h: added using std::stringstream for consistencies sake.
9318
9319         * buffer.C: removed using std::stringstream
9320
9321         * lyxfont.C (stateText):
9322         * paragraph.C (asString):
9323         * text.C (selectNextWord, selectSelectedWord):
9324         * text2.C (setCounter):
9325         * vspace.C (asString, asLatexString):
9326         std::ostringstream -> ostringstream.
9327
9328 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
9329
9330         * LyXAction.C: add LFUN_HELP_ABOUTLYX
9331         * commandtags.h: add LFUN_HELP_ABOUTLYX
9332         * lyxfunc.C: add about lyx remove credits/copyright/version stuff
9333
9334 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
9335
9336         * BufferView_pimpl.C: sigchldchecker instead of sigchldhandeler in
9337         cursorToggle()
9338         * lyx_gui_misc.C: remove spellchecker
9339         * lyxfunc.C: showSpellchecker
9340         * sp_base.h: added
9341         * sp_ispell.h: added
9342         * sp_pspell.h: added
9343         * sp_spell.C: added
9344         * sp_form.[Ch]: removed
9345         * spellchecker.[Ch]: removed
9346
9347 2001-07-12  Kayvan A. Sylvan  <kayvan@sylvan.com>
9348
9349         * paragraph_pimpl.C (simpleTeXBlanks): Simply return if pass_thru
9350         is set.
9351         (simpleTeXSpecialChars): Simply print the input character without
9352         any special translation if pass_thru is set.
9353
9354         * layout.h: Added bool pass_thru to layout class for being able to
9355         implement pass through of a paragraph for Literate Programming.
9356
9357         * layout.C: add LT_PASS_THRU to LayoutTags enum.
9358         * layout.C (LyXLayout): set pass_thru to flase in constructor.
9359         * layout.C (Read): add "passthru" to list of layout tags and add
9360         code to set the pass_thru boolean when it is read.
9361
9362 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9363
9364         * trans_decl.h: remove allowed from KmodInfo
9365
9366         * trans.[Ch] (AddDeakkey): change prototype to not have allowd.
9367         remove allowed code
9368         (Load): adjust
9369
9370         * paragraph_pimpl.C (erase): use boost::prior
9371
9372         * Painter.C (text): use data() instead of c_str() when length is
9373         also provided.
9374         * WorkArea.C (putClipboard): ditto
9375         * font.h (width): ditto
9376
9377         * BufferView2.C: use it-> instead of (*it). for iterators
9378         * texrow.C: ditto
9379         * paragraph_pimpl.C: ditto
9380         * paragraph.C: ditto
9381         * minibuffer.C: ditto
9382         * language.C: ditto
9383         * kbmap.C: ditto
9384         * encoding.C: ditto
9385         * counters.C: ditto
9386         * converter.C: ditto
9387         * chset.C: ditto
9388         * Variables.C: ditto
9389         * TextCache.C: ditto
9390         * MenuBackend.C: ditto
9391         * LyXAction.C: ditto
9392         * LColor.C: ditto
9393         * FloatList.C: ditto
9394         * DepTable.C: ditto
9395         * ColorHandler.C (LyXColorHandler): ditto
9396
9397 2001-07-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9398
9399         * BufferView_pimpl.C (Dispatch): handle LFUN_OPENSTUFF.
9400
9401         * text2.C (openStuff): reintroduce this method (which had been
9402         nuked in NEW_INSETS frenzy).
9403
9404         * lyxfunc.C (Dispatch): when an action has not been handled, use
9405         its name in the error message, not its number.
9406
9407         * paragraph.C (inInset): change method name to begin with lowercase.
9408
9409         * undo_funcs.C:
9410         * text2.C: updates because of this.
9411
9412 2001-07-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9413
9414         * ToolbarDefaults.C (add): add spaces in error message
9415
9416 2001-07-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9417
9418         * buffer.C (readLyXformat2): initialize the ert comp. variables.
9419         (readLyXformat2): rename return_par to first_par, use lyxlex's
9420         pushToken and remove the manual push handling.
9421         (parseSingleLyXformat2Token): add another ert comp. variable:
9422         in_tabular, rename return_par to first_par. handle newlines better
9423
9424 2001-07-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9425
9426         * kbsequence.C (getiso): redirect debug info to Debug::KBMAP.
9427
9428 2001-07-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9429
9430         * text2.C (getParFromID): removed
9431
9432         * buffer.C (getParFromID): new method moved form lyxtext.
9433         * BufferView2.C (insertErrors): adjust
9434         (setCursorFromRow): adjust
9435         * BufferView_pimpl.C (restorePosition): adjust
9436         * lyxfunc.C (Dispatch): adjust
9437         * undo_funcs.C (textUndo): adjust
9438         (textRedo): adjust
9439         (textHandleUndo): adjust
9440         (textHandleUndo): adjust
9441
9442 2001-07-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9443
9444         * buffer.C: up' the LYX_FORMAT
9445
9446         * lyxfont.h: turn NO_LATEX on as default
9447
9448         * buffer.C (insertErtContents): new methods of tex style compability.
9449         (parseSingleLyXformat2Token): use it several places.
9450         * tabular.C (OldFormatRead): and here
9451
9452 2001-07-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9453
9454         * text2.C: remove some commented code.
9455         reindent file.
9456
9457         * trans_mgr.[Ch]: simplify normalkey to only take a char as arg.
9458         * trans.C: changes because of the above.
9459
9460 2001-07-07  Dekel Tsur  <dekelts@tau.ac.il>
9461
9462         * text2.C (setCounter): Fix counters bug with bibliography layout.
9463
9464 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9465
9466         * paragraph_pimpl.C (simpleTeXBlanks): don't go through owner_ for
9467         own member functions
9468         (simpleTeXSpecialChars): ditto
9469
9470 2001-07-06  Juergen Vigna  <jug@sad.it>
9471
9472         * a lot of files: changed the access to LyXText::status and the
9473         call of undo-functions.
9474
9475         * undo.[Ch]: added a inset_id to the undo informations.
9476
9477         * undo_funcs.[Ch]: added and moved here all undo functions.
9478
9479         * lyxtext.h: give the status enum a weight, made status_ a private
9480         variable and made accessor functions for it, removed the whole bunch
9481         of undo-functions as they are now in their own file, make some
9482         functions publically available. Added function ownerParagraph with
9483         int parameter.
9484
9485         * paragraph.[Ch]: added "bool same_ids" to the constructor,
9486         made InInset() a const function, added getParFromID() function.
9487
9488         * buffer.[Ch]: added const version for inset_iterator functions,
9489         added getInsetFromID() function.
9490
9491         * BufferView2.C, BufferView_pimpl.C, text.C, text2.C, lyxfunc.C:
9492         changed undo functions for new version.
9493
9494 2001-07-05  Juergen Vigna  <jug@sad.it>
9495
9496         * paragraph_pimpl.C (Pimpl): set id_ also here (this is because some
9497         unknow mechanism does not call the proper constructor but only this
9498         one also if I request the other!?
9499
9500 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9501
9502         * BufferView_pimpl.C (resizeCurrentBuffer): init the new LyXText
9503
9504         * text2.C (LyXText): use initialization lists.
9505
9506         * lyxtext.h (Selection): initialize set_ and mark_
9507         (init): remove method
9508
9509 2001-07-05  Dekel Tsur  <dekelts@tau.ac.il>
9510
9511         * LaTeX.C (scanLogFile): Parse rerun messages from latex packages.
9512
9513 2001-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9514
9515         * screen.[Ch]: change method names to begin with lowercase
9516
9517         * BufferView_pimpl.C (updateScrollbar): simplify further and
9518         hopefully make it a bit faster.
9519
9520 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9521
9522         * ColorHandler.C (LyXColorHandler): use GUIRunTime instead of
9523         calling directly xforms functions.
9524
9525         * Painter.C (Painter):
9526         * lyx_cb.C (MenuWrite):
9527         * FontInfo.C (query): use GUIRunTime::x11Display() instead of
9528         fl_display.
9529
9530         * lyx_gui.C: remove bogus guiruntime extern declaration.
9531
9532 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9533
9534         * text2.C (redoHeightOfParagraph): comment out stuff we don't need
9535         in NEW_INSETS
9536         (redoDrawingOfParagraph): ditto
9537         (redoParagraphs): ditto
9538         (cutSelection): don't create a object for CutAndPaste use the
9539         static method directly
9540         (pasteSelection): ditto
9541
9542         * bufferview_funcs.[Ch]: move ProhibitInput and AllowInput to
9543         LyXview (+ rename)
9544
9545 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9546
9547         * modifications to some other files because of this.
9548
9549         * Makefile.am (lyx_SOURCES): add XFormsView
9550
9551         * XFormsView.[Ch]: new files
9552
9553         * LyXView.[Ch]: make LyXView a base class for the gui handling for
9554         the main window. Move the gui dependent stuff to XFormsView
9555
9556 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9557
9558         * tabular.C (GetCellInset): update cur_cell also in the row/col
9559         version of this function.
9560
9561         * lyxfunc.C: no need to include figure_form.h here.
9562
9563         * FontLoader.h:
9564         * lyxfunc.h:
9565         * lyxscreen.h:
9566         * text2.C:
9567         * lyxvc.C: no need to include forms.h here.
9568
9569 2001-06-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9570
9571         * lyxrc.C (read): change debugging channel for RC_BIND to lyxrc.
9572
9573         * lyxfunc.C (Dispatch):
9574         * Spacing.C (set):
9575         * BufferView_pimpl.C (Dispatch): use .c_str() on istringstream
9576         constructor argument.
9577
9578 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9579
9580         * paragraph.C (Paragraph): dont't clear, and just set layout.
9581         (makeSameLayout): use params's copy contructor.
9582
9583         * ParagraphParameters.[Ch] (makeSame): delete method
9584
9585 2001-06-29  John Levon  <moz@compsoc.man.ac.uk>
9586
9587         * Variables.[Ch]: fix indentation, rename set to isSet
9588
9589 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9590
9591         * lyxfunc.C (Dispatch): fix typo
9592
9593 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9594
9595         * paragraph_pimpl.C: add std:: qualifier to lower_bound and
9596         upper_bound.
9597
9598         * bufferlist.C: include assert.h for emergencyWrite().
9599
9600 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
9601
9602         * lyx_main.C: if we can't even find a readable LYX_DIR directory,
9603           give up at last (bug #425202) !
9604
9605 2001-06-27  John Levon  <moz@compsoc.man.ac.uk>
9606
9607         * lyx_gui_misc.C:
9608         * sp_form.h:
9609         * sp_form.C:
9610         * spellchecker.h:
9611         * spellchecker.C: strip spellchecker options and bring up
9612           preferences tab instead
9613
9614 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9615
9616         * BufferView_pimpl.C (Dispatch): add .c_str() to the argument of
9617         the istringstream constructor
9618
9619 2001-06-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9620
9621         * paragraph.C (getLayout): fix return value
9622
9623         * paragraph.h: do not declare getLayout as inline.
9624
9625         * lyxtext.h: remove LyXText:: qualifier to changeRegionCase
9626
9627 2001-06-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9628
9629         * lyxcursor.h (operator<): new func
9630         (operator>): new func
9631         (operator>=): new func
9632         (operator<=): new func
9633
9634         * text.C (changeCase): use selection.start and selection.end
9635         (changeRegionCase): require from to be <= to. Require par to be a
9636         valid paragraph.
9637
9638         * LaTeXFeatures.C (getFloatDefinitions): std:: qualify ostream
9639
9640 2001-06-27  Juergen Vigna  <jug@sad.it>
9641
9642         * text.C (cursorLeftOneWord): changed to return the cursor and added
9643         overlay with BufferView * parameter which calls this one.
9644         (getWord): added
9645         (selectWord): use new getWord function.
9646         (changeCase): renamed from changeWordCase as and extended to work
9647         also on selections.
9648
9649         * lyxtext.h: added enum word_location
9650
9651         * BufferView_pimpl.C (Dispatch): change function changeWordCase to
9652         changeCase as this operates now also on selections.
9653
9654 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
9655
9656         * lyxfunc.C (getStatus): support LFUN_MATH_MUTATE
9657
9658         * many files: send debug output to Debug::INFO instead of
9659         Debug::ANY.
9660
9661         * converter.C (View):
9662         (Convert):
9663         (Move): send debug output to Debug::FILES instead of console.
9664
9665 2001-06-26  The LyX Project  <lyx@rose.home.sad.it>
9666
9667         * lyxfunc.C (getStatus): use func_status
9668
9669         * func_status.h: new header, describing the results of
9670         LyXFunc::getStatus;
9671
9672         * lyxfunc.C (getStatus): add support for LFUN_MATH_VALIGN and
9673         LFUN_MATH_HALIGN.
9674
9675 2001-06-25  The LyX Project  <jug@sad.it>
9676
9677         * buffer.C (sgmlOpenTag):
9678         (sgmlCloseTag):
9679         (SimpleDocBookOnePar):  disable the depth spaces, for the moment.
9680
9681 2001-06-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9682
9683         * text2.C: remove some dead code
9684
9685         * tabular.C (GetCellInset): store the last cell checked (gotten)
9686
9687         * tabular.h: add the helper for the speedup
9688
9689         * lyxtext.h: remove some dead code
9690
9691 2001-06-26  The LyX Project  <Asger>
9692
9693         * paragraph.C: Change export to LaTeX of alignment to
9694         \begin{center} and family for better roundtrip work with reLyX.
9695
9696         * Tune the math drawing a bit.
9697
9698 2001-06-25  The LyX Project  <Asger>
9699
9700         * LColor.C (LColor): New color for math background. New color
9701         for buttons.
9702
9703 2001-06-25  The LyX Project  <jug@sad.it>
9704
9705         * lyxfunc.C (MenuNew): remove extra check for .lyx file
9706
9707         * lyxfunc.C (Open):
9708         * bufferlist.C (newFile): do not restrict to files ending with
9709         .lyx
9710
9711         * BufferView_pimpl.C (MenuInsertLyXFile):
9712
9713 2001-06-24  The LyX Project  <jug@sad.it>
9714
9715         * lyxlex_pimpl.C (compare_tags): use compare_ascii_no_case instead
9716         of compare_no_case
9717
9718 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9719
9720         * lyxtext.h: rename most methods to begin with a small char.
9721         Lots of changes because of this.
9722
9723         * paragraph.C (Paragraph): do not call fitToSize
9724         (erase): call Pimpl::erase
9725         (insertChar): call Pimpl::insertChar
9726         (insertInset): call Pipl::insertInset
9727         (breakParagraph): do not call fitToSize
9728         (breakParagraphConservative): do not call fitToSize
9729         (fitToSize): remove method
9730
9731         * buffer.C (parseSingleLyXformat2Token): do not call fitToSize
9732
9733 2001-06-24  The LyX Project  <Asger>
9734
9735         * Fix Qt compilation^2
9736
9737 2001-06-24  The LyX Project  <jug@sad.it>
9738
9739         * paragraph.[Ch] (outerHook): new method. mostly equivalent to
9740         depthHook(getDepth()-1).
9741
9742         * paragraph.h:
9743         * ParagraphParameters.h:
9744         * ParameterStruct.h: change type of depth to unsigned int ==
9745         depth_type. Many adaptations to other files before of that.
9746
9747 2001-06-24  The LyX Project  <Asger>
9748
9749         * Fix Qt compilation.
9750
9751 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9752
9753         * paragraph.h: renamed several methods to begin with small letter.
9754         several changes to many parts of the code because of this.
9755
9756 2001-06-23  The LyX Project  <jug@sad.it>
9757
9758         * text2.C (InsertStringAsLines): renamed from InsertStringA;
9759         rewritten to discard all double spaces when KeepEmpty is off
9760         (InsertStringAsParagraphs): renamed from InsertStringB; rewritten
9761         to only handle newlines but not fiddle with spaces and friends.
9762
9763         * lyxfunc.C (MenuNew): when doing 'new from template', use
9764         template_path as default directory
9765
9766 2001-06-23  The LyX Project  <Asger>
9767
9768         * Clean-up of header file includes all over
9769         * paragraph.h: Move some of the stuff into paragraph_pimpl.h
9770
9771 2001-06-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9772
9773         * paragraph.h: renamed from lyxparagraph.h
9774
9775 2001-06-23  Asger  <lyx@violet.home.sad.it>
9776
9777         * Buffer.h: Removed Buffer::resize
9778         * BufferList.h: Removed BufferList::resize
9779         * LyXView.h: Added LyXView::resize. This way, we will only reflow
9780         the document lazily when we change the width, or the font settings.
9781
9782 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
9783
9784         * lyxfunc.C: silently ignore empty dispatches from the minibuffer
9785
9786 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
9787
9788         * buffer.h: remove out of date comment
9789
9790 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
9791
9792         * lyxscreen.h:
9793         * screen.C: fix "theoretical" GC leak
9794
9795 2001-06-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9796
9797         * LaTeX.C (scanAuxFile):
9798         (deplog): remove trailing \r when reading stream (useful under
9799         win32)
9800
9801 2001-06-15  Angus Leeming  <a.leeming@ic.ac.uk>
9802
9803         * BufferView_pimpl.C (fitCursor): emit a signal updateParagraph.
9804         (resizeCurrentBuffer): have functions BufferView::theLockingInset()
9805         and BufferView::theLockingInset(Inset*), so should use them and not
9806         access bv_->text->the_locking_inset directly.
9807
9808         * lyxfunc.C (Dispatch): cosmetic name change of three signals.
9809
9810 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
9811
9812         * Makefile.am:
9813         * tex-defs.h: remove old unused file
9814
9815 2001-06-15  John Levon  <moz@compsoc.man.ac.uk>
9816
9817         * BufferView_pimpl.C: fix typo, remove minibuffer message
9818           when buffer has loaded
9819
9820 2001-06-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9821
9822         * lyxfunc.C (Dispatch): use stringstream
9823         (MenuNew): use stringstream
9824         (Open): use stringstream
9825
9826         * importer.C (Import): use stringstream
9827
9828         * bufferview_funcs.C (CurrentState): use stringstream
9829
9830         * LaTeX.C (run): use stringstream
9831
9832         * BufferView_pimpl.C (savePosition): use stringstream
9833         (restorePosition): use stringstream
9834         (MenuInsertLyXFile): use stringstream
9835
9836 2001-06-14  Angus Leeming  <a.leeming@ic.ac.uk>
9837
9838         * BufferView.C:
9839         * Bullet.C:
9840         * ColorHandler.C:
9841         * FontInfo.C:
9842         * FontLoader.C:
9843         * LColor.C:
9844         * LaTeXFeatures.C:
9845         * Painter.C:
9846         * gettext.C:
9847         * lyx_gui_misc.C:
9848         * lyxserver.C:
9849         * vspace.C: removed // -*- C++ -*- as first line.
9850
9851         * lyxfind.h:
9852         * version.h: added // -*- C++ -*- as first line.
9853
9854 2001-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9855
9856         * lyxfunc.C (getStatus): support LFUN_READ_ONLY_TOGGLE
9857
9858         * text2.C (SetSelectionOverString): do not test str[i]==0 for end
9859         of string
9860
9861 2001-06-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9862
9863         * buffer.C (parseSingleLyXformat2Token): fix compatability reading
9864         of floats.
9865
9866 2001-06-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9867
9868         * gettext.C: include LString.h even when --disable-nls is on.
9869
9870 2001-06-12  Angus Leeming  <a.leeming@ic.ac.uk>
9871
9872         * converter.h (Get): changed argument type from int to
9873         FormatList::size_type to avoid unnecessary conversion.
9874
9875         * bufferview_funcs.C (ToggleAndShow): check state of LyXText pointer
9876         before using it.
9877
9878 2001-06-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9879
9880         * gettext.h: include LString.h even when --disable-nls is on.
9881
9882 2001-06-07  Juergen Vigna  <jug@sad.it>
9883
9884         * text.C (BreakAgain): subst spaces with tabs.
9885
9886         * paragraph.C (deleteInsetsLyXText): set recursive on deleteLyXText.
9887         (resizeInsetsLyXText): set force on resizeLyXText.
9888
9889 2001-06-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9890
9891         * gettext.h (gettext_init):
9892         (locale_init): use a real definition instead of a macro
9893
9894 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
9895
9896         * Bufferview_pimpl.C:
9897         * LColor.h:
9898         * LColor.C: further lcolor tidies
9899
9900 2001-06-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9901
9902         * BufferView_pimpl.C (updateScrollbar): simplify.
9903
9904         * BufferView2.C: don't include insets/insetinfo.h, change
9905         prototype for insertInset and call the Pimpl version. let
9906         updateInset call Pimpl version.
9907
9908         * BufferView.h: move inset_slept to BufferView::Pimpl, move
9909         gotoInset to BufferView::Pimpl
9910
9911 2001-06-01  Juergen Vigna  <jug@sad.it>
9912
9913         * lyxfunc.C (Dispatch): LFUN_PREFIX don't call the update if we're
9914         inside a LockingInset (is the update needed at all?).
9915
9916 2001-05-31  Juergen Vigna  <jug@sad.it>
9917
9918         * BufferView_pimpl.C (Dispatch): we need a new instanze of cursor
9919         here not the old one otherwise how should we compare it afterwards
9920         if it's the same!
9921
9922 2001-06-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9923
9924         * lyxfont.C:
9925         * tabular.C:
9926         * tabular-old.C:
9927         * FontInfo.C: bring C functions into global namespace when
9928         necessary
9929
9930 2001-05-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9931
9932         * LString.h: make sure config.h has been loaded before LString.h.
9933
9934         * lyxlex_pimpl.C (EatLine): comment out annoying debug messages
9935         (one for each char read by EatLine!).
9936
9937         * lyx_main.C (init): constify lyxdir. Lowercase the name of some
9938         variables.
9939
9940 2001-06-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9941
9942         * paragraph.C (BreakParagraph): set the inset_owner in the new par
9943         to the same as the par we break from
9944
9945 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9946
9947         * commandtags.h: add LFUN_INSET_WIDE_FLOAT
9948
9949         * MenuBackend.C (expand): also create menu entries for wide
9950         versions of the floats.
9951
9952         * LyXAction.C (init): add entry for LFUN_INSET_WIDE_FLOAT
9953
9954         * BufferView_pimpl.C (Dispatch): implement LFUN_INSET_WIDE_FLOAT
9955
9956         * Makefile.am (lyx_DEPENDENCIES): adjust for change in
9957         frontends/Makefile.am
9958
9959         * text2.C: adjust
9960         * text.C: adjust
9961
9962
9963         * tabular.C (getTokenValue): add std::
9964
9965         * tabular-old.C (getTokenValue): add std::
9966         (getTokenValue): ditto
9967         (getTokenValue): ditto
9968
9969         * screen.C (ToggleSelection): adjust
9970
9971         * lyxtext.h: put selection cursors inside a Selection struct.
9972
9973         * lyxfunc.C (moveCursorUpdate): adjust
9974
9975         * lyxfont.C (latexWriteStartChanges): add std::
9976
9977         * lyxfind.C: adjust
9978
9979         * font.h: delete with(char const *, LyXFont const &)
9980
9981         * buffer.C (parseSingleLyXformat2Token): use contains instead of strstr
9982
9983         * FontInfo.C (getFontname): add std::
9984
9985         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
9986         (workAreaButtonPress): adjust
9987         (tripleClick): adjust
9988         (update): adjust
9989         (moveCursorUpdate): adjust
9990         (Dispatch): adjust
9991
9992         * BufferView2.C (gotoInset): adjust
9993
9994 2001-05-30  Juergen Vigna  <jug@sad.it>
9995
9996         * spellchecker.C (USE_ORIGINAL_MANAGER_FUNCS): as it seems only I use
9997         to check pspell I add this as default as I now have new pspell
9998         libraries and they seem to use this.
9999
10000 2001-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10001
10002         * text2.C (CutSelection): make the cursor valid before the call to
10003         ClearSelection.
10004
10005 2001-05-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10006
10007         * kbsequence.C (parse): de-uglify a bit the parsing code, which
10008         relied on 0 terminated strings and other horrors. Bug found due to
10009         the new assert in lyxstring!
10010
10011         * lyx_main.C (defaultKeyBindings): add bindings the cursor-related
10012         KP_ keys.
10013
10014 2001-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10015
10016         * lyx_main.C (defaultKeyBindings): move self-insert KP_ bindings
10017         to latinkeys.bind.
10018
10019         * lyxfunc.C (processKeySym): change method of getting to the
10020         self-insert char.
10021
10022         * BufferView(2).[Ch]: move hfill, protectedBlank, newline,
10023         menuSeparator, endOfSentenceDot, ldots, hypenationPoint and menuUndo
10024         * BufferView_pimpl.[Ch]: here as private methods.
10025
10026 2001-05-28  Juergen Vigna  <jug@sad.it>
10027
10028         * text.C (SetHeightOfRow): added the update() call again as it is
10029         needed to initialize inset dimensions!
10030
10031 2001-05-16  Juergen Vigna  <jug@sad.it>
10032
10033         * text2.C (SetCharFont): Add new function with BufferView * and
10034         bool toggleall parameters for setting insets internal fonts.
10035         (SetFont): Freeze the undo as we may change fonts in Insets and
10036         all this change should be inside only one Undo!
10037
10038         * bufferview_funcs.C (ToggleAndShow): fixed this functions for
10039         setting font's in insets as for them we have the SetFont function!
10040
10041 2001-05-15  Juergen Vigna  <jug@sad.it>
10042
10043         * text2.C (ClearSelection): to be sure we REALLY don't have any
10044         selection anymore!
10045
10046         * tabular.C (TeXCellPreamble): fixed the left border problem for
10047         multicolumn cells.
10048
10049 2001-05-27  Dekel Tsur  <dekelts@tau.ac.il>
10050
10051         * LaTeX.C (deplog): Make sure that the main .tex file is in the
10052         dependancy file
10053
10054 2001-05-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10055
10056         * lyx_main.C (defaultKeyBindings): set KP_enter to point at
10057         LFUN_BREAKPARAGRAPH.
10058
10059         * LyXAction.C (init): remove external name for LFUN_LAYOUTNO, set
10060         help test to "internal only", similar for LFUN_INSERT_URL
10061
10062         * BufferView_pimpl.C (Dispatch::LFUN_QUOTE): change it to to the insertcorrectQuote.
10063         (Dispatch::LFUN_SELFINSERT): fix to handle math greek,
10064         auto_region_delete and deadkeys.
10065
10066 2001-05-22  John Levon  <moz@compsoc.man.ac.uk>
10067
10068         * LColor.h:
10069         * LColor.C: remove some dead entries, tidy a little
10070
10071 2001-05-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10072
10073         * lyxfunc.C (processKeySym): comment the Escape handling, remove
10074         commented code.
10075         (Dispatch): implement LFUN_ESCAPE
10076
10077         * commandtags.h: add LFUN_ESCAPE
10078
10079         * LyXAction.C (init): add entry for LFUN_ESCAPE
10080
10081         * BufferView_pimpl.C (Dispatch): adjust for open_new_inset move.
10082         Remove commented code.
10083         (insertNote): moved here
10084         (open_new_inset): moved here
10085
10086         * BufferView[2].[Ch]: move insertNote and open_new_inset to
10087         BufferView_pimpl
10088
10089 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10090
10091         * kbmap.C (findbinding): clean it up and make it work correctly.
10092
10093         * lyx_main.C (init): do not pass argc and argv as parameters
10094
10095 2001-05-16  Ruurd Reitsma  <r.a.reitsma@wbmt.tudelft.nl>
10096
10097         * buffer.C: fix path for OS/2 & Win32
10098
10099         * lyx_gui.C:
10100         * lyx_main:
10101         * lyx_main.C: Added os:: class.
10102
10103         * os2_defines.h: update
10104
10105 2001-05-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10106
10107         * lyxfunc.[Ch] (processKeySym): return void. Handle unknown actions
10108         better by trying again with reduced state.
10109
10110 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10111
10112         * lyxrc.C (read): print error about invalid key sequence only when
10113         debugging (because not all latinX keysyms are known to some X
10114         servers)
10115
10116         * kbsequence.C (getiso): add a few std:: qualifiers
10117         (getiso): comment out extra return statement.
10118
10119 2001-05-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10120
10121         * BufferView_pimpl.C (Dispatch): comment out the old "default" key
10122         handling.
10123         (Dispatch): enhance the accent inset a bit. (not perfect)
10124
10125 2001-05-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10126
10127         * buffer.C (makeLaTeXFile): use stringstream on language_optons.
10128
10129 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10130
10131         * bufferlist.C (emergencyWrite): fix assert() call
10132
10133 2001-05-04  Kayvan A. Sylvan  <kayvan@sylvan.com>
10134
10135         * text.C (InsertChar): Added trivial patch to only send the "you
10136         can not do multiple spaces this way" message once during a
10137         session.
10138
10139 2001-05-08  Baruch Even  <baruch@lyx.org>
10140
10141         * Makefile.am: Changed order of libraries to get LyX to link properly
10142         with the gnome frontend.
10143
10144 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10145
10146         * LaTeXFeatures.h: add a std:: qualifier
10147
10148 2001-05-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10149
10150         * paragraph.C (String): use stringstream
10151
10152 2001-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10153
10154         * paragraph.C (writeFile): remove footflag arg
10155
10156         * buffer.C (makeLaTeXFile): use stringstream
10157         (latexParagraphs): remove footnot gurba
10158
10159         * LaTeXFeatures.C (getPackages): use stringstream
10160         (getMacros): likewise
10161         (getTClassPreamble): likewise
10162         (getFloatDefinitions): new method
10163
10164         * paragraph.C (writeFile): reindent
10165         (Erase): reindent
10166
10167         * WorkArea.h: revert the xpos + etc changes.
10168
10169         * CutAndPaste.C (SwitchLayoutsBetweenClasses): constify name and s
10170
10171         * lyxparagraph.[Ch]: add copy constructor, remove Clone
10172
10173         * CutAndPaste.C (copySelection): use LyXParagraph copy constructor
10174         (pasteSelection): likewise
10175         * text2.C (CreateUndo): likewise
10176
10177 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10178
10179         * minibuffer.C (peek_event): temporarily reduce the functionality
10180         of the minibuffer (to allow args on lfuns)
10181
10182         * commandtags.h: remove LFUN_LOA_INSERT, LFUN_LOF_INSERT,
10183         LFUN_LOT_INSERT. add LFUN_FLOAT_LIST
10184
10185         * buffer.C (readInset): add compability reading of old float
10186         lists, add reading of new style float list.
10187         (readInset): avoid reevaluation of inscmd.getCmdName()
10188         (getLists): reindent
10189
10190         * MenuBackend.C (MenuItem): implement parsing of
10191         md_floatlistinsert and md_floatinsert.
10192         (expand::LastFiles): move initalizaton of iterators out of loop,
10193         avoid reevaluation.
10194         (expand::Documents): introduce typdedef vector<string> Strings,
10195         and use it.
10196         (expand::ExportFormats): introduce typedef vector<Format const *>
10197         Formats, and use it.
10198         (expand): implement FloatListInsert and FloatInsert.
10199
10200         * LyXAction.C (init): remove entries for LFUN_LOA_INSERT,
10201         LFUN_LOA_VIEW, LFUN_LOF_INSERT, LFUN_LOFVIEW, LFUN_LOT_INSERT,
10202         LFUN_LOTVIEW. Add entry for LFUN_FLOAT_LIST
10203
10204         * BufferView_pimpl.C (Dispatch::LFUN_TOC_INSERT): remvoe the float
10205         handling.
10206         (Dispatch::LFUN_FLOAT_LIST): implement
10207
10208 2001-04-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
10209
10210         * LaTeX.C (run): Fix problem with --export code.
10211
10212 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
10213
10214         * BufferView.[Ch] (workarea): removed.
10215         (getClipboard) new method; wrapper for workarea()->getClipboard()
10216
10217         * ToolbarDefaults.C (read): removed final lex.next() command; it's a
10218         bug.
10219
10220         * WorkArea.h (width, height, xpos, ypos): These methods all
10221         returned the dimensions of the work_area sub-area of WorkArea,
10222         resulting in a position error if the WorkArea were resized. Now
10223         return the dimensions of the entire WorkArea.
10224
10225         * lyx_main.C (ReadUIFile): don't print out spurious warnings.
10226
10227 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10228
10229         * LaTeX.C (deplog): correct the syntax of regex reg1
10230
10231 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10232
10233         * undo.C: remove !NEW_INSETS cruft
10234
10235 2001-04-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10236
10237         * text2.C: remove !NEW_INSETS cruft
10238
10239         * text.C: remove !NEW_INSETS cruft
10240
10241         * tabular.C: remove !NEW_INSETS cruft
10242
10243         * spellchecker.C: remove !NEW_INSETS cruft
10244
10245         * lyxtext.h: remove !NEW_INSETS cruft
10246
10247         * lyxlex_pimpl.C: remove !NEW_INSETS cruft
10248
10249         * lyxfunc.C: remove !NEW_INSETS cruft
10250
10251         * lyxfind.C: remove !NEW_INSETS cruft
10252
10253         * lyx_cb.C: remove !NEW_INSETS cruft
10254
10255         * figureForm.C: remove  !NEW_INSETS cruft
10256
10257         * bufferview_funcs.[Ch]: remove !NEW_INSETS cruft
10258
10259         * buffer.[Ch]: remove !NEW_INSETS cruft
10260
10261         * ToolbarDefaults.C: remove !NEW_INSETS cruft
10262
10263         * CutAndPaste.C: remove !NEW_INSETS cruft
10264
10265         * BufferView_pimpl.C: remove !NEW_INSETS cruft
10266
10267         * BufferView2.C: remove !NEW_INSETS cruft
10268
10269         * BufferView.h: remove !NEW_INSETS cruft
10270
10271 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10272
10273         * Lsstream.h: include LString.h before the sstream headers to
10274         fix problem with gcc 2.95.3 and lyxstring
10275
10276 2001-05-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10277
10278         * lyx_main.C: add using directives when needed for C functions
10279         declared in std:: namespace.
10280
10281 2001-04-27  Juergen Vigna  <jug@sad.it>
10282
10283         * text.C (Fill): return 20 instead of 0 if paper_width < 0 (endless)
10284         (SetHeightOfRow): comment out the update call should not be needed!
10285
10286 2001-04-13  Juergen Vigna  <jug@sad.it>
10287
10288         * tabular.C (GetAdditionalHeight): changed parameter from cell to row.
10289         (LyXTabular): tried to minimize operator= operations (and realized
10290         hopfully Lars wish).
10291
10292 2001-04-27  Juergen Vigna  <jug@sad.it>
10293
10294         * spellchecker.C (sc_check_word): fixed Assert to lyx::Assert.
10295
10296 2001-04-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10297
10298         * lyxfunc.C (Dispatch): hack to make listof algorithm work
10299
10300         * buffer.C (readInset): hack to make listof algorithm work
10301
10302         * BufferView_pimpl.C: hack to make listof algorithm work
10303
10304 2001-04-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10305
10306         * LyXAction.C: removed all !NEW_INSETS cruft
10307         (init): moved lfun_item in method
10308
10309         * lyxparagraph.[Ch]: removed all !NEW_INSETS cruft
10310
10311 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
10312
10313         * BufferView2.C (theLockingInset): white space.
10314
10315 2001-04-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10316
10317         * minibuffer.C: include <iostream>
10318
10319         * BufferView_pimpl.C: implement LFUN_TRANSPOSE_CHARS
10320
10321         * LyXAction.C (init): add LFUN_TRANSPOSE_CHARS
10322
10323         * commandtags.h: add LFUN_TRANSPOSE_CHARS
10324
10325         * text.[Ch] (TransposeChars): new method
10326
10327 2001-04-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10328
10329         * call message directly through LyXView instead of through LyXFunc
10330         * BufferView2.C: adjust
10331         * BufferView_pimpl.C: adjust
10332         * FontLoader.C: adjust
10333         * buffer.C: adjust
10334         * bufferview_funcs.C: adjust
10335         * converter.C: adjust
10336         * figureForm.C: adjust
10337         * importer.C: adjust
10338         * lyx_cb.C: adjust
10339         * lyx_gui_misc.C: adjust
10340         * lyxfunc.C: adjust
10341         * lyxvc.C: adjust
10342         * text2.C: adjust
10343         + more files in subdirs
10344
10345         * lyxparagraph.h (size): move up int file
10346         (GetLayout): ditto
10347
10348         * adjust all uses of Assert to lyx::Assert.
10349
10350         * BufferView2.C (ChangeCitationsIfUnique): adjust for
10351         lyxfunctional in namespace lyx
10352         * layout.C (hasLayout): ditto
10353         (GetLayout): ditto
10354         (GetLayout): ditto
10355         (delete_layout): ditto
10356         (NumberOfClass): ditto
10357         * converter.C (GetFormat): ditto
10358         (GetNumber): ditto
10359         (Add): ditto
10360         (Delete): ditto
10361         (SetViewer): ditto
10362         * bufferlist.C (getFileNames): ditto
10363         (emergencyWriteAll): ditto
10364         (exists): ditto
10365         (getBuffer): ditto
10366         * MenuBackend.C (hasSubmenu): ditto
10367         (hasMenu): ditto
10368         (getMenu): ditto
10369         * BufferView_pimpl.C (getInsetByCode): ditto
10370
10371 2001-04-18  Juergen Vigna  <jug@sad.it>
10372
10373         * vspace.C (asLatexString): fixed the 100% problem.
10374
10375 2001-04-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10376
10377         * lyxfunc.C (Dispatch):
10378         * minibuffer.C:
10379         * minibuffer.h: add a few std:: qualifiers
10380
10381 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10382
10383         * minibuffer.[Ch]: reimplement so that commands is initiated and
10384         run from lyxfunc, simplified som handling, and made the completion
10385         and history code for complete. wip.
10386
10387         * lyxfunc.C (processKeySym): call message
10388         (miniDispatch): new temporary method
10389         (LFUN_EXEC_COMMAND): reimplement for new minibuffer
10390         (LFUN_MESSAGE): implement
10391         (LFUN_MESSAGE_PUSH): implement
10392         (LFUN_MESSAGE_POP): implement
10393         (initMiniBuffer): the initial/defualt minibuffer message.
10394
10395         * lyxfont.[Ch]: inline some more getters
10396
10397         * lyx_gui_misc.C (WriteAlert): use LFUN_MESSAGE
10398
10399         * lyx_gui_misc.[Ch] (WriteStatus): remove method
10400
10401         * lyx_cb.[Ch] (ShowMessage): remove delay arg, use LFUN_MESSAGE
10402         (AutoSave): use LFUN_MESSAGE
10403         (Reconfigure): ditto
10404
10405         * importer.C (Import): constify som local vars, use LFUN_MESSAGE
10406
10407         * figureForm.C: use LFUN_MESSAGE
10408
10409         * converter.C (runLaTeX): use LFUN_MESSAGE
10410
10411         * bufferview_funcs.C: use LFUN_MESSAGE
10412         (Melt): ditto
10413         (changeDepth): ditto
10414
10415         * bufferparams.h: use boost::
10416
10417         * bufferlist.h: inherit privately from noncopyable
10418
10419         * bufferlist.C (loadLyXFile): remove some commented code.
10420
10421         * buffer.C (runChktex): use LFUN_MESSAGE
10422
10423         * ShareContainer.h: inherit privately from noncopyable
10424
10425         * ParagraphParameters.[hC] (depth): inline it.
10426
10427         * LyXView.[Ch] (LyXView): connect the minibuffer signals to lyxfunc
10428         methods.
10429         (message): new method
10430         (messagePush): ditto
10431         (messagePop): ditto
10432         (show): init minibuffer
10433         (showState): direct call
10434
10435         * LaTeX.[Ch]: inherit privately from noncopyable
10436         (run): change second arg to LyXFunc*, use LFUN_MESSAGE
10437         instead of WriteStatus.
10438
10439         * FontLoader.C (doLoad): use LFUN_MESSAGE_PUSH and LFUN_MESSAGE_POP
10440
10441         * BufferView_pimpl.C (buffer): don't init minibuffer
10442         (workAreaButtonPress): use LFUN_MESSAGE
10443         (workAreaButtonRelease): ditto
10444         (savePosition): ditto
10445         (restorePosition): ditto
10446         (MenuInsertLyXFile): ditto
10447         (workAreaExpose): don't init minibuffer
10448         (update): remove commented code, simplify
10449
10450         * BufferView2.C (openStuff): use LFUN_MESSAGE
10451         (toggleFloat): ditto
10452         (menuUndo): ditto
10453         (menuRedo): ditto
10454         (copyEnvironment): ditto
10455         (pasteEnvironment): ditto
10456         (copy): ditto
10457         (cut): ditto
10458         (paste): ditto
10459         (gotoInset): ditto
10460         (updateInset): remove some commented code
10461
10462         * lastfiles.h: inherit privately from noncopyable
10463         * layout.h: ditto
10464         * lyx_gui.h: ditto
10465         * lyx_main.h: ditto
10466         * lyxlex.h: ditto
10467         * lyxlex_pimpl.h: ditto
10468
10469         * commandtags.h: comment out LFUN_FOOTMELT, LFUN_MARGINMELT,
10470         LFUN_FLOATSOPERATE, LFUN_MELT, add LFUN_MESSAGE,
10471         LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
10472
10473         * LyXAction.h: inherit privately from noncopyable, add methods
10474         func_begin, func_end, returning iterators to the func map.
10475
10476         * LyXAction.C (init): comment out LFUN_FLOATSOPERATE, LFUN_MELT,
10477         add entries for LFUN_MESSAGE, LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
10478         (func_begin): new method
10479         (func_end): new method
10480
10481         * CutAndPaste.C (cutSelection): split into two versons (NEW_INSETS
10482         and not)
10483         (copySelection): ditto
10484         (pasteSelection): ditto
10485
10486         * BufferView.C: whitespace change
10487         * BufferView.h: inherit privately from noncopyable
10488
10489 2001-04-16  Allan Rae  <rae@lyx.org>
10490
10491         * tabular-old.C (l_getline):
10492         * spellchecker.C (sc_check_word):
10493         * lyxfunc.C (Dispatch): #warning triggers an error on Sun CC 6.0 as
10494         an unrecognised preprocessor directive.  So ensure they're wrapped.
10495
10496 2001-04-14  Dekel Tsur  <dekelts@tau.ac.il>
10497
10498         * src/exporter.C (Export): Give an error message when path to file
10499         contains spaces.
10500
10501 2001-04-12  Dekel Tsur  <dekelts@tau.ac.il>
10502
10503         * LaTeX.C (deplog): Always check that foundfile exists.
10504
10505 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10506
10507         * lyx_main.h:
10508         * lyx_main.C (ReadLanguagesFile): fix weird typo in method name
10509
10510 2001-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10511
10512         * tabular.[Ch] (getLabelList): implement new method
10513
10514         * minibuffer.h: comment ouf setTiimer
10515
10516         * minibuffer.C (ExecutingCB): constify res
10517         (peek_event): constify s
10518         (Set): constify ntext
10519         (Init): constify nicename
10520
10521         * BufferView2.C (updateInset): comment out Minibuffer::setTimer
10522
10523         * BufferView_pimpl.C (update): comment out Minibuffer::setTimer
10524         (savePosition): use two params to Minibuffer::Set
10525         (restorePosition): ditto
10526
10527 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10528
10529         * lyx_main.C: include language.h
10530
10531         * Makefile.am (lyx_main.o): add language.h
10532
10533 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10534
10535         * exporter.C:
10536         * paragraph.C:
10537         * screen.C:
10538         * tabular.C:
10539         * CutAndPaste.C: include gettext.h
10540
10541         * lyxfont.h: remove old hack with ON and OFF.
10542
10543         * lyxparagraph.h:
10544         * lyxfont.h: do not include language.h...
10545
10546         * BufferView2.C:
10547         * LaTeXFeatures.C:
10548         * Painter.C:
10549         * bufferview_funcs.C:
10550         * font.C:
10551         * lyxfont.C:
10552         * text.C:
10553         * text2.C:
10554         * trans_mgr.C:
10555         * paragraph.C: ... but do it here instead
10556
10557 2001-04-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10558
10559         * text2.C (SetLayout): split in NEW_INSETS and non NEW_INSETS version
10560
10561         * tabular.C: small reformat
10562
10563         * paragraph.C (GetFontSettings): split in NEW_INSETS and non
10564         NEW_INSETS version
10565         (GetChar): ditto
10566         (BreakParagraph): ditto
10567         (SetOnlyLayout): ditto
10568         (SetLayout): ditto
10569
10570         * lyxparagraph.h: add definitions for SetLayout and SetOnlyLayout
10571         with one arg less.
10572
10573         * lastfiles.C: removed most using decl, add std:: where needed
10574
10575         * buffer.C: ws changes
10576
10577         * MenuBackend.C (class compare_format): put into anon namespace
10578         (expand): constify label, names, action, action2
10579         (expand):
10580
10581         * text.C (SingleWidth): constify font
10582         (IsBoundary): constify rtl2
10583         (GetVisibleRow): constify ww
10584
10585         * LaTeX.C (deplog): constify logfile
10586
10587         * BufferView_pimpl.C (checkInsetHit): constify width, inset_x,
10588         start_x, end_x
10589         (workAreaExpose): constify widthChange, heightChange
10590
10591         * lyxrow.C (par): moved
10592         (height): moved
10593         (next): moved
10594         * lyxrow.h: as inlines here
10595
10596         * lyxfont.h (shape): moved from lyxfont.C
10597         (emph): moved from lyxfont.C
10598
10599         * lyxfont.C (LyXFont): use initialization list for all
10600         constructors
10601         (shape): move to lyxfont.h as inline
10602         (emph): move to lyxfont.h as inline
10603
10604
10605 2001-04-04  Juergen Vigna  <jug@sad.it>
10606
10607         * vspace.C: had to include stdio.h for use of sscanf
10608
10609 2001-04-03  Angus Leeming  <a.leeming@ic.ac.uk>
10610
10611         * BufferView.h:
10612         * BufferView_pimpl.h: remove xforms cruft. Both classes are
10613         independent of xforms.
10614
10615 2001-04-02  Juergen Vigna  <jug@sad.it>
10616
10617         * spellchecker.C: fixed namespace placing!
10618
10619 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
10620
10621         * lyxfunc.C (Dispatch): prevent crash in LFUN_GOTO_PARAGRAPH when
10622         the LyXParagraph * is 0.
10623
10624 2001-03-29  Juergen Vigna  <jug@sad.it>
10625
10626         * vspace.C: added support for %, c%, p%, l%.
10627         (stringFromUnit): added helper function.
10628         (asLatexString): changed to give right results for the %-values.
10629
10630         * buffer.C: convert the widthp in a width%.
10631
10632 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
10633
10634         * Makefile.am: removed form1.[Ch], lyx.[Ch] and added figure_form.[Ch],
10635         figureForm.[Ch].
10636
10637         * figureForm.[Ch]: stripped the FD_from_figure manipulation
10638         code out of lux_cb.[Ch], ready for its (imminent?) removal.
10639
10640         * lyx_cb.[Ch]: see above.
10641
10642         * figure_form.[Ch]: fdesign generated code, combining lyx.[Ch] and
10643         form1.[Ch].
10644
10645         * form1.[Ch]:
10646         * lyx.[Ch]: replaced by figure_form.[Ch].
10647
10648         * lyx_gui.C:
10649         * lyx_gui_misc.C:
10650         * lyxfunc.C: changed headers associated with above changes.
10651
10652 2001-03-27  Juergen Vigna  <jug@sad.it>
10653
10654         * BufferView_pimpl.C: set the temporary cursor right!
10655
10656 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
10657
10658         * BufferView_pimpl.C (Dispatch): corrected spelling givven -> given.
10659
10660 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
10661
10662         * LString.h: removed "using std::getline"!
10663
10664         * BufferView_pimpl.C (Dispatch): changes due to changes in
10665         InsetInclude::Params.
10666
10667         * buffer.C (tag_name): removed redundant break statements as they were
10668         producing lots of warnings with my compiler.
10669
10670 2001-03-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10671
10672         * LString.h: add "using std::getline" when using the real <string>.
10673
10674 2001-03-23  José Abílio Matos  <jamatos@fep.up.pt>
10675
10676         * buffer.C: removed bitset usage.
10677         PAR_TAG moved to an anonymous name space.
10678         (tag_name): new funtion, also in the anonymous namespace.
10679         (SimpleLinuxDocOnePar): replaced all the references to bitset by PAR_TAG.
10680         (makeDocBookFile): clean code. Completed transition from string arrays
10681         to string vectors.
10682         (SimpleDocBookOnePar): code clean.
10683
10684 2001-03-23  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
10685
10686         * tabular.C: add some comments.
10687
10688 2001-03-22  Juergen Vigna  <jug@sad.it>
10689
10690         * buffer.C (parseSingleLyXformat2Token): redone the minipage
10691         compatibility read a bit and fixed bug with minipage in different
10692         depth.
10693
10694 2001-03-21  José Abílio Matos  <jamatos@fep.up.pt>
10695
10696         * buffer.C (pop_tag): removed.
10697         (push_tag): removed.
10698         (makeLinuxDocFile): cleaner C++ code, declarations near usage point,
10699         array replaced with vector. Added support for CDATA sections.
10700         (SimpleLinuxDocOnePar): ditto. Paragraph tags are correctly handled,
10701         at any nest level.
10702         (makeDocBookFile): XML conformant declaration of CDATA section,
10703         fixed bug related to <emphasis> in the first paragraph char.
10704         (sgmlOpenTag): exclude empty tags.
10705         (sgmlCloseTag): ditto.
10706
10707         * buffer.h (pop_tag): removed.
10708         (push_tag): removed.
10709
10710 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
10711
10712         * language.h (Languages): added size_type and size().
10713
10714 2001-03-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
10715
10716         * buffer.C (parseSingleLyXformat2Token): Try to give a bit better
10717         response on compability reading of minipages. One probliem is that
10718         the old usage of minipages was «flertydig»
10719
10720         * several files here and in subdirs: don't use static at file
10721         scope use anon namespaces instead.
10722
10723 2001-03-19  Kayvan A. Sylvan <kayvan@sylvan.com>
10724
10725         * paragraph.C (TeXEnvironment): Added \n to \end{environment}
10726         LaTeX output. This is necessary for Literate document
10727         processing.
10728
10729 2001-03-17  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
10730
10731         * buffer.C: insert hfill when needed.
10732
10733         * tabular.C (l_getline): use string::erase, small whitespace change.
10734
10735         * BufferView_pimpl.C: try the anon namespace.
10736         * WorkArea.C: ditto
10737
10738 2001-03-16  Juergen Vigna  <jug@sad.it>
10739
10740         * BufferView_pimpl.C (workAreaButtonRelease): return only on button==2
10741         otherwise it won't open options-dialogs.
10742
10743         * buffer.C: honor pextraWidth(p) on converting minipages.
10744
10745         * tabular.C (l_getline): changed the functions to strip trailing \r.
10746
10747 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
10748
10749         * BufferView_pimpl.C:
10750         * minibuffer..C: added "using SigC::slot" declaration.
10751
10752 2001-03-16  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
10753
10754         * lyxlex_pimpl.h: noncopyable is in namespace boost.
10755
10756         * text2.C: ditto
10757
10758         * text.C: ditto
10759
10760         * paragraph.C: ditto
10761
10762         * lyxtext.h: NO_PEXTRA
10763
10764         * buffer.C: NO_PEXTRA_REALLY, NO_PEXTRA
10765
10766         * ParagraphParameters.C (clear): NO_PEXTRA_REALLY
10767         * ParameterStruct.h: ditto
10768         * ParagraphParameters.h: ditto
10769         * lyxparagraph.h: ditto
10770
10771 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
10772
10773         * buffer.C: add compability for minipage alignment.
10774         (latexParagraphs): remove unwanted pextra check.
10775
10776         * several files: remove CXX_WORKING_NAMESPACES
10777
10778         * buffer.C (pop_tag): tie is in namespace boost
10779
10780         * BufferView.h: noncopyable is in namespace boost
10781         * lyxlex.h: ditto
10782         * lyx_main.h: ditto
10783         * lyx_gui.h: ditto
10784         * layout.h: ditto
10785         * lastfiles.h: ditto
10786         * bufferlist.h: ditto
10787         * ShareContainer.h: ditto
10788         * LyXView.h: ditto
10789         * LyXAction.h: ditto
10790         * LaTeX.h: ditto
10791
10792 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
10793
10794         * Merging changes from BRANCH_MVC back into HEAD.
10795
10796         * Makefile.am: added controllers/libcontrollers.la to lyx_DEPENDENCIES
10797
10798 2001-03-15  John Levon  <moz@compsoc.man.ac.uk>
10799
10800         * BufferView_pimpl.C: change from intl.C
10801
10802         * combox.h:
10803         * combox.C:
10804         * Makefile.am: move combox.*
10805
10806         * form1.h:
10807         * form1.C:
10808         * lyx_gui.C:
10809         * intl.h:
10810         * intl.C: remove dialog (covered by prefs)
10811
10812 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
10813
10814         * lyxfunc.C (Dispatch): removed redundant break statement.
10815
10816 2001-03-14  Juergen Vigna  <jug@sad.it>
10817
10818         * tabular.C (l_getline): pay attention on \r\n (from Windows-files)
10819
10820 2001-03-14  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
10821
10822         * buffer.C: add hack to fix compability reading of minipages.
10823
10824 2001-03-13  Dekel Tsur  <dekelts@tau.ac.il>
10825
10826         * buffer.C (getLists): Cleanup.
10827
10828 2001-03-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10829
10830         * lyxfont.C (update): don't honor toggleall on font size.
10831
10832 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
10833
10834         * bmtable.c:
10835         * bmtable.h:
10836         * Makefile.am: moved to frontends/xforms/
10837
10838         * lyx_gui_misc.C:
10839         * lyxfunc.C:
10840         * BufferView_pimpl.C: changes for moved mathpanel
10841
10842 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
10843
10844         * gettext.h: fix gettext_init() in --disable-nls
10845
10846 2001-03-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10847
10848         * LaTeXFeatures.C (getMacros): add a .c_str() when using sstream.
10849
10850 2001-03-09  John Levon  <moz@compsoc.man.ac.uk>
10851
10852         * lyx.C:
10853         * lyx.h: strip external form
10854
10855 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
10856
10857         * BufferView_pimpl.C: add comment, destroySplash()
10858
10859 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
10860
10861         * BufferView_pimpl.C:
10862         * LyXAction.C:
10863         * buffer.C:
10864         * commandtags.h:
10865         * lyxfunc.C: use re-worked insetinclude
10866
10867 2001-03-12  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
10868
10869         * buffer.C: add using std::stringstream.
10870
10871         * lyx_cb.C: readd using std::ios.
10872
10873         * buffer.C: add using std::map.
10874
10875         * BufferView_pimpl.C: add using std::vector.
10876
10877         * ShareContainer.h: add std:: to swap.
10878
10879         * buffer.h: add some typedefs
10880         * buffer.C (getLists): use them
10881         (getLists): renamed from getTocList.
10882         add a counter for the different float types and use it in the
10883         generated string.
10884         (getLists): use the same counter for the NEW_INSETS and the "non"
10885         NEW_INSETS
10886
10887         * lyx_cb.h: remove unused items, includes, using etc.
10888
10889         * ShareContainer.h: remove some commented code, add more comments
10890         and "documentation".
10891
10892 2001-03-11  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
10893
10894         * buffer.C (getTocList): make the list also when NEW_INSETS is
10895         defined.
10896
10897         * buffer.h: remove TocType
10898
10899         * buffer.C (getTocList): change to return a map<string,
10900         vector<TocItem> >, implement for dynamic number of list.
10901
10902         * CutAndPaste.[Ch] (checkPastePossible): remove unused arg
10903         * text2.C (PasteSelection): adjust
10904         * CutAndPaste.C (pasteSelection): adjust
10905
10906         * FloatList.C (FloatList): update from the new_insets branch.
10907         * Floating.[Ch]: ditto
10908         * LaTeXFeatures.C: ditto
10909         * buffer.C: ditto
10910         * lyxlex_pimpl.C: ditto
10911
10912         * paragraph.C (Last): remove when NEW_INSETS is defined.
10913
10914         * other file: changes because of the above.
10915
10916 2001-03-09  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
10917
10918         * lyxparagraph.h: rename next to next_, previous to previous_,
10919         make them private for NEW_INSETS. Rename Next() to next(),
10920         Previous() to previous().
10921
10922         * other files: changes because of the above.
10923
10924 2001-03-08  Dekel Tsur  <dekelts@tau.ac.il>
10925
10926         * BufferView.h:
10927         * lyxparagraph.h: Add '#include "LString.h"' to fix compilation
10928         problem.
10929
10930 2001-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10931
10932         * main.C (main): pass lyx_localedir to gettext_init().
10933
10934         * gettext.h: remove locale_init and gettext_init macros
10935
10936         * gettext.C (locale_init): new function
10937         (gettext_init): new function
10938
10939         * lyx_gui.C (LyXGUI): use locale_init() instead of explicit
10940         setlocale().
10941
10942 2001-03-07  Edwin Leuven  <leuven@fee.uva.nl>
10943
10944         * Moved credits to frontends:
10945         * credits.[Ch]: removed
10946         * credits_form.[Ch]: removed
10947         * lyx_gui_misc.C: remove credits stuff
10948         * Makefile.am:
10949
10950 2001-03-07  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
10951
10952         * lyx_main.C: make toplevel_keymap a boost::scoped_ptr.
10953
10954         * kbmap.[Ch]: make kb_key::table a boost::shared_ptr, remove
10955         unneeded destructor.
10956
10957         * intl.[Ch] (Intl): free the fd_form_keymap, make the fd_form_keymap
10958         a standalone pointer again.
10959
10960         * ColorHandler.[Ch]: make lyxColorHandler a boost::scoped_ptr
10961
10962 2001-03-06  John Levon  <moz@compsoc.man.ac.uk>
10963
10964         * Makefile.am:
10965         * filedlg.h:
10966         * filedlg.C:
10967         * LyXAction.C:
10968         * ToolbarDefaults.C:
10969         * bufferlist.C:
10970         * commandtags.h:
10971         * form1.C:
10972         * form1.h:
10973         * lyx_cb.C:
10974         * lyx_cb.h:
10975         * lyxfunc.h:
10976         * lyxfunc.C:
10977         * BufferView_pimpl.C: use new file dialog in GUII
10978
10979         * lyx_cb.h:
10980         * lyx_cb.C: remove LayoutsCB to Toolbar
10981
10982 2001-03-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10983
10984         * ShareContainer.h (get): add std:: qualifier
10985
10986 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10987
10988         * ShareContainer.h: define a proper ShareContainer::value_type
10989         type (and use typename to please compaq cxx)
10990
10991 2001-03-06  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
10992
10993         * lyxparagraph.h: move serveral local vars to
10994         ParameterStruct/ParagraphParameters., use ShareContainer in
10995         FontTable., make vars in FontTable private and add getter and
10996         setter.
10997
10998         * paragraph.C: changes because of the above.
10999
11000         * lyxfont.h: remove copy constructor and copy assignment. (the
11001         default ones is ok), move number inside FontBits. move inlines to
11002         lyxfont.C
11003
11004         * lyxfont.C: add number to initializaton of statics, move several
11005         inlines here. constify several local vars. some whitespace
11006         cleanup. Dont hide outerscope variables.
11007
11008         * Spacing.h: add two new constructors to match the set methods.
11009
11010         * ShareContainer.h: new file, will perhaps be moved to support
11011
11012         * ParameterStruct.h: new file
11013
11014         * ParagraphParameters.h: new file
11015
11016         * ParagraphParameters.C: new file
11017
11018         * Makefile.am (lyx_SOURCES): add ParagraphParameters.C,
11019         ParagraphParameters.h, ParameterStruct.h and ShareContainer.h
11020
11021         * BufferView_pimpl.C: ParagraphParameter changes.
11022         * buffer.C: Likewise.
11023         * bufferview_funcs.C: Likewise.
11024         * text.C: Likewise.
11025         * text2.C: Likewise.
11026
11027 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11028
11029         * lyxfind.C (LyXReplace): do not redefine default argument in
11030         implementation.
11031         (IsStringInText): ditto
11032         (SearchForward): ditto
11033         (SearchBackward): ditto
11034
11035 2001-03-06  Juergen Vigna  <jug@sad.it>
11036
11037         * lyxfind.C (IsStringInText): put parentes around expressions.
11038
11039 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
11040
11041         * lyxfind.[Ch]: find stuff moved out of text2.C/lyxtext.h
11042
11043 2001-02-23  John Levon  <moz@compsoc.man.ac.uk>
11044
11045         * lyx_main.C: add ISO_Left_Tab as bind synonym for Tab
11046
11047         * stl_string_fwd.h: add comment
11048
11049         * lyx_gui_misc.C: killed ALWAYS_CLOSE_MATH_PANELS
11050
11051         * tabular.h:
11052         * tabular.C: remove unused DocBook methods
11053
11054         * intl.C:
11055         * language.C:
11056         * paragraph.C:
11057         * buffer.C:
11058         killed DO_USE_DEFAULT_LANGUAGE
11059
11060 2001-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11061
11062         * lyx_gui.C: do not include language.h.
11063
11064         * bufferview_funcs.C (ToggleAndShow): do not provide optional
11065         arguments in function implementation.
11066
11067 2001-02-28  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
11068
11069         * BufferView_pimpl.C: add <ctime>
11070
11071 2001-02-27  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
11072
11073         * BufferView_pimpl.C: add using std::find_if
11074
11075 2001-02-27  José Matos  <jamatos@fep.up.pt>
11076
11077         * LaTeXFeatures.C (getIncludedFiles): call to BasePath replaced
11078         by OnlyPath.
11079
11080 2001-02-11  José Matos  <jamatos@fep.up.pt>
11081
11082         * buffer.C (makeDocBookFile): command styles now have a parameter as
11083         "title" by default.
11084
11085 2001-02-23  Edwin Leuven <leuven@fee.uva.nl>
11086
11087         * layout_forms.[Ch]: removed
11088         * lyx_cb.[Ch]: out character
11089         * lyx_gui.C: out character
11090         * lyx_gui_misc.C: out character
11091         * bufferview_funcs.C: : out character,
11092         added toggleall as parameter in ToggleAndShow
11093
11094 2001-02-26  Dekel Tsur  <dekelts@tau.ac.il>
11095
11096         * lyxfunc.C (getStatus): Fix the LFUN_EXPORT case.
11097
11098         * text2.C (SetCurrentFont): Disable number property at boundary.
11099
11100 2001-02-26  Juergen Vigna  <jug@sad.it>
11101
11102         * lyxfunc.C (getStatus): added a string argument override function so
11103         that this is correctly called from LyXFunc::Dispatch if it contains a
11104         do_not_use_argument which is used!
11105         (Dispatch): added check for "custom" export and call appropriate func.
11106
11107 2001-02-23  Dekel Tsur  <dekelts@tau.ac.il>
11108
11109         * lyxrc.C: Add language_command_local, language_use_babel and
11110         language_global_options.
11111
11112         * lyxfont.C (latexWriteStartChanges): Use language_command_local.
11113
11114         * buffer.C (makeLaTeXFile): Use language_use_babel and
11115         language_global_options.
11116
11117 2001-02-23  Juergen Vigna  <jug@sad.it>
11118
11119         * lyxfunc.C (Dispatch): removed the whole part of the switch statement
11120         which works with LyXText and putted it inside BufferView. Here now we
11121         only call for that part the BufferView::Dispatch() function.
11122
11123         * BufferView.C (Dispatch): added.
11124
11125         * BufferView_pimpl.C (Dispatch): added! Here are now all dispatch
11126         functions which needs to use a LyXText over from LyXFunc.
11127         (MenuInsertLyXFile): added
11128         (getInsetByCode): added
11129         (moveCursorUpdate): added
11130         (static TEXT): added
11131
11132 2001-02-22  Juergen Vigna  <jug@sad.it>
11133
11134         * BufferView_pimpl.C (update): call a status update to see if LyXText
11135         needs it.
11136
11137 2001-02-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
11138
11139         * vc-backend.C (revert): implement for CVS
11140         (getLog): implement for CVS
11141
11142 2001-02-20  Juergen Vigna  <jug@sad.it>
11143
11144         * text2.C (ClearSelection): added BufferView param for inset_owner call
11145
11146         * lyxfunc.C (TEXT): added this function and use it instead of
11147         directly owner->view()-text of getLyXText().
11148
11149 2001-02-20  Edwin Leuven <leuven@fee.uva.nl>
11150
11151         * src/layout_forms.C: out preamble
11152         * src/layout_forms.h: out preamble
11153         * src/lyx_cb.C: out preamble
11154         * src/lyx_cb.h: out preamble
11155         * src/lyx_gui.C: out preamble
11156         * src/lyx_gui_misc.C: out preamble
11157         * src/lyxfunc.C: connect with guii preamble
11158
11159 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
11160
11161         * src/buffer.h: tiny clean-ups to allow compilation with DEC cxx.
11162
11163 2001-02-17  Dekel Tsur  <dekelts@tau.ac.il>
11164
11165         * LaTeX.C (run): Do not use 'scanres & RERUN' when deciding
11166         whether to run bibtex.
11167
11168 2001-02-16  Dekel Tsur  <dekelts@tau.ac.il>
11169
11170         * Makefile.am (lyx_SOURCES): Remove BackStack.h
11171
11172 2001-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
11173
11174         * Makefile.am (lyx_SOURCES): removed bibforms.h
11175
11176         * vspace.h: doxygen
11177
11178         * text.C (GetVisibleRow): make several local vars const
11179
11180         * tabular.C: small cleanup.
11181
11182         * lyxserver.C (callback): use compare instead of strncmp
11183
11184         * lyxparagraph.h: remove all code dep. on HAVE_ROPE, move inclass
11185         inlines to after class or to paragraph.C
11186
11187         * lyxfont.h: remove friend operator!=
11188
11189         * converter.h: move friend bool operator< to non friend and after
11190         class def.
11191
11192         * combox.h: small cleanup
11193
11194         * buffer.h: doxygen, remove unused constructor, move inclas inlies
11195         to inlines after class def.
11196
11197         * buffer.C (pop_tag): use string operations instead of strcmp
11198
11199         * bmtable.c: doxygen, small cleanup
11200
11201         * LaTeX.h: remove friend operator==
11202
11203 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
11204
11205         * screen.C:
11206         * lyxrc.[Ch]:
11207         * lyxfunc.C:
11208         * lyxfont.[Ch]:
11209         * lyx_cb.C:
11210         * intl.[Ch]:
11211         * commandtags.h:
11212         * buffer.C:
11213         * WorkArea.[Ch]:
11214         * LyXAction.C:
11215         * BufferView_pimpl.C:
11216         * BufferView.[Ch]: remove cruft
11217
11218 2001-02-14  Juergen Vigna  <jug@sad.it>
11219
11220         * lyxfunc.C: removed #if 0 unused code
11221
11222         * lyxfunc.C (Dispatch): make LFUN_QUOTE work for InsetText.
11223
11224         * BufferView_pimpl.C (update): set updatestatus of inset if needed.
11225
11226         * text2.C (SetSelection): added a BufferView * parameter
11227
11228 2001-02-13  Juergen Vigna  <jug@sad.it>
11229
11230         * lyxfunc.C (Dispatch): fixed protected blank problem.
11231         * BufferView2.C (protectedBlank): added LyxText * parameter.
11232
11233         * tabular.C (AppendRow): forgot to set row_info of newly added row.
11234         (AppendColumn): same as above for column_info.
11235
11236         * lyxfunc.C (Dispatch): supported some more functions in InsetText.
11237         (moveCursorUpdate): use a LyXText param for support of InsetText.
11238
11239         * BufferView_pimpl.C (doubleClick): added support for InsetText.
11240         (tripleClick): ditto
11241
11242         * lyxfunc.C (LFUN_APPENDIX): changed to use "text" pointer.
11243
11244         * BufferView_pimpl.C (update): added LyXText param to honor insets.
11245
11246         * bufferview_funcs.C (ToggleAndShow): fixed for text in insets.
11247
11248         * text2.C (SetSelection): set correct update status if inset_owner
11249         (ToggleFree): ditto
11250
11251 2001-02-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
11252
11253         * tabular.C: remove some commented code.
11254
11255 2001-02-12  John Levon  <moz@compsoc.man.ac.uk>
11256
11257         * BufferView_pimpl.C: call hideSplash()
11258
11259         * LyXAction.C: make buffer-child-insert use LFUN_CHILD_CREATE
11260
11261         * include_form.h:
11262         * bibforms.h: remove
11263
11264         * lyxfunc.C:
11265         * src/commandtags.h: LFUN_CHILDINSERT -> LFUN_CHILD_INSERT,
11266           add LFUN_CHILD_CREATE
11267
11268         * counters.h: fix tiny typo
11269
11270         * lyx_cb.C:
11271         * lyx.h:
11272         * lyx_gui.C:
11273         * lyx.C: move splash to frontends/xforms/
11274
11275         * lyx_gui_misc.C: move Include and Bibform to frontends
11276
11277         * lyxvc.h: clarify comment
11278
11279         * vspace.C: tiny housekeeping
11280
11281 2001-02-10  Dekel Tsur  <dekelts@tau.ac.il>
11282
11283         * text.C (PrepareToPrint): RTL Fix.
11284
11285         * paragraph.C (GetUChar): New method.
11286         (String):  Use GetUChar.
11287
11288         * buffer.C (asciiParagraph): Use GetUChar.
11289
11290 2001-02-09  Dekel Tsur  <dekelts@tau.ac.il>
11291
11292         * text.C (GetVisibleRow): Fix selection drawing for RTL text in tables.
11293
11294 2001-02-09  John Levon  <moz@compsoc.man.ac.uk>
11295
11296         * buffer.h:
11297         * buffer.C: rename to getLogName(), handle
11298           build log / latex log nicely
11299
11300 2001-02-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11301
11302         * MenuBackend.C:
11303         * MenuBackend.h: remove support for reference menuitem type.
11304
11305 2001-02-07  John Levon  <moz@compsoc.man.ac.uk>
11306
11307         * BufferView_pimpl.C: housekeeping
11308         * BufferView_pimpl.h:
11309         * LyXView.h:
11310         * Makefile.am:
11311         * Timeout.C:
11312         * Timeout.h:
11313         * minibuffer.h: move Timeout GUI-I
11314
11315 2001-02-07  Dekel Tsur  <dekelts@tau.ac.il>
11316
11317         * lyxrc.C (read): Update converters data-structures.
11318
11319 2001-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
11320
11321         * LaTeX.h (operator!=): add operator != for Aux_Info
11322
11323 2001-02-06  John Levon  <moz@compsoc.man.ac.uk>
11324
11325         * Makefile.am: remove LaTeXLog.C, log_form.[Ch]
11326
11327         * LaTeXLog.C: deleted, useful code moved to Buffer
11328
11329         * buffer.h:
11330         * buffer.C: new function getLatexLogName()
11331
11332         * lyx_gui_misc.C:
11333         * lyx_gui.C:
11334         * lyxvc.C:
11335         * lyxvc.h:
11336         * lyxfunc.C: use frontends for LaTeX and VC logs
11337
11338 2001-02-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11339
11340         * LaTeX.h: yet another std:: that Allan forgot.
11341
11342         * Variables.C (set): renamed from isset(), because this clashes
11343         with some HP-UX macros (grr).
11344
11345 2001-02-06  Allan Rae  <rae@lyx.org>
11346
11347         * LaTeX.h: Another bug fix.  Missing std:: this time.
11348
11349 2001-02-04  Allan Rae  <rae@lyx.org>
11350
11351         * paragraph.C (TeXOnePar): Partial fix for the '\n' generation in
11352         floats problem. I've left it commented out because it's not quite
11353         correct.  It should also test that the current object is a table or
11354         figure inset.  But I haven't gotten around to figuring out how to do
11355         that.  I *think* it'll be something like: "table" == inset.type()
11356
11357         * LaTeX.h (operator==): Aux_Info should have a friend that returns a
11358         bool.
11359
11360 2001-02-02  Dekel Tsur  <dekelts@tau.ac.il>
11361
11362         * LaTeX.C (scanAuxFile): A rewrite of this method. It now returns
11363         all the citation/databases/styles in the auxilary file.
11364         (run): Rerun latex if there was a babel language error.
11365
11366 2001-02-01  Dekel Tsur  <dekelts@tau.ac.il>
11367
11368         * text.C (Backspace): Preserve the font when changing newline char
11369         with a space.
11370         (BreakParagraph): If the cursor is before a space, delete the space.
11371
11372         * lyx_cb.C (QuitLyX): Do not save files when running with no gui.
11373
11374 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
11375
11376         * BufferView2.C (ChangeInsets): Renamed from ChangeRefs. Accept a
11377         new argument (code).
11378         (ChangeCitationsIfUnique): New method.
11379
11380         * paragraph.C (GetPositionOfInset): Handle bibkey.
11381
11382 2001-01-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11383
11384         * BufferView_pimpl.h: change type of Position::par_pos to
11385         LyXParagraph::size_type.
11386
11387 2001-01-29  Dekel Tsur  <dekelts@tau.ac.il>
11388
11389         * BufferView_pimpl.C (savePosition, restorePosition): Write
11390         messages to minibuffer.
11391
11392 2001-01-28  José Matos  <jamatos@fep.up.pt>
11393
11394         * buffer.C (makeDocBookFile): adds support for document language.
11395         A silly restriction on the name of LatexCommand types where removed.
11396         Added support for CDATA sections, allows to chars unescaped, used
11397         among others in code, to avoid escape < and >.
11398
11399 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
11400
11401         * BufferView_pimpl.C (savePosition, restorePosition): Use a vector of
11402         saved positions instrad of a stack. Furthermore, a position is
11403         stored using paragraph id/paragraph position.
11404
11405         * commandtags.h: Add LFUN_BOOKMARK_SAVE and LFUN_BOOKMARK_GOTO.
11406         Remove LFUN_REF_BACK.
11407
11408 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
11409
11410         * converter.C (dvipdfm_options): New method.
11411
11412 2001-01-26  Dekel Tsur  <dekelts@tau.ac.il>
11413
11414         * vspace.C (isValidLength): Fix for empty input string.
11415
11416 2001-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11417
11418         * LyXAction.C (init): change description of LFUN_FIGURE to
11419         "Insert Graphics"
11420
11421 2001-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11422
11423         * LaTeX.C: add using directive
11424
11425 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
11426
11427         * MenuBackend.C (expand): Fix the sorting of the formats.
11428
11429 2001-01-24  John Levon  <moz@compsoc.man.ac.uk>
11430
11431         * lyx_main.C: tiny error message fix
11432
11433 2001-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11434
11435         * lyx_gui.C (LyXGUI): force the LC_NUMERIC locale to "C" after
11436         calling fl_initialize(). This fixes the problem with ',' as
11437         decimal separator in text files.
11438
11439 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
11440
11441         * trans.C (process): Fix the keymap bug.
11442
11443 2001-01-23  Dekel Tsur  <dekelts@tau.ac.il>
11444
11445         * LaTeX.C (scanAuxFiles): New method. Provides support for
11446         multiple bibliographies (when using the bibtopic/bibunits pacakges).
11447         (scanLogFile) Scan for "run BibTeX" messages.
11448
11449         * buffer.C (makeLaTeXFile): Do not load the ae package when using
11450         OT1 font encoding. Also, load the aecompl package if the ae
11451         package is loaded.
11452
11453         * tex-strings.C: Add "ae" to tex_fonts[] (from Matej Cepl).
11454
11455 2001-01-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11456
11457         * texrow.C (increasePos): turn two error messages into debug
11458         messages.
11459
11460 2001-01-20  Dekel Tsur  <dekelts@tau.ac.il>
11461
11462         * LaTeX.C (scanAux): Handle the \@input macro.
11463         (runBibTeX): Use scanAux().
11464
11465         * language.C (latex_options_): New field.
11466
11467         * LaTeXFeatures.C (getMacros): Add language macros.
11468
11469         * buffer.C (makeLaTeXFile): Small fix.
11470
11471 2001-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11472
11473         * lyxfunc.C: fix the name of the inset for LFUN_CHILDINSERT
11474
11475         * text2.C: add a using directive.
11476
11477 2000-01-17  John Levon  <moz@compsoc.man.ac.uk>
11478
11479         * BufferView2.C:
11480         * lyx_gui_misc.h:
11481         * lyxfr1.C:
11482         * lyxfunc.C: kill LyXBell.
11483
11484 2001-01-17  Dekel Tsur  <dekelts@tau.ac.il>
11485
11486         * text.C (IsBoundary): Remove the error message
11487
11488         * WorkArea.C (work_area_handler): Decrease keyboard purge threshold.
11489
11490         * lyxrc.C (setDefaults): Correct initialization value for
11491         font_norm_type.
11492
11493 2001-01-15  Dekel Tsur  <dekelts@tau.ac.il>
11494
11495         * BufferView2.C (gotoInset): New method. Replaces gotoNote() and
11496         gotoError().
11497
11498         * text2.C (GotoNextInset): New method. Replaces GotoNextError()
11499         and GotoNextNote().
11500
11501         * src/LyXAction.C: Added reference-next.
11502
11503         * text.C (InsertChar): Use contains instead of strchr.
11504
11505         * lyx_cb.C (MenuInsertLabel): Enable default value code.
11506
11507 2001-01-13  Dekel Tsur  <dekelts@tau.ac.il>
11508
11509         * paragraph.C (SimpleTeXOnePar) Put \protect before paragraph
11510         alignment commands (when needed).
11511
11512         * text.C (InsertChar): Add ':' to number separator chars.