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