]> git.lyx.org Git - lyx.git/blob - src/ChangeLog
555b745518c4a6afab0e60a81d9c8e6a3cf96109
[lyx.git] / src / ChangeLog
1
2 2004-08-14  André Pönitz  <poenitz@gmx.net>
3
4         * paragraph.h: inline getChar()
5         
6         * BufferView.h: remove unused declarations
7
8 2004-08-14  José Matos  <jamatos@lyx.org>
9
10         * Buffer.[Ch] (readDocument): new name for old readBody.
11         * Buffer.C: new file format, new keywords: \begin_document,
12         \begin_header, \begin_body, \end_body.
13
14         * bufferparams.C (readToken): replace all calls to lex.nextToken
15         by lex.next(). Do the same to eatLine except where really needed.
16
17         * lyxfont.C (lyxWriteChanges): remove whitespaces in the end of
18         line when writing to the lyx file.
19
20         * output_plaintext.C (asciiParagraph): fix Bibliography style
21         handling.
22
23         * text.C (read): fix end of file handling.
24
25 2004-08-14  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
26
27         * MenuBackend.C (Menu::operator[]): new method to access
28         individual menu items
29         (Menu::hasFunc): new method. search for an item that corresponds
30         to a given func
31         (MenuBackend::specialMenu): new method
32         (MenuBackend::expand): if a special menu has been set, skip
33         entries whose func() appears in this menu
34
35 2004-08-14  Lars Gullik Bjonnes  <larsbj@lyx.org>
36
37         * text3.C: use Debug::DEBUG a bit more
38
39         * text.C (leftMargin): try to simplify a tiny bit change var x to
40         l_margin. Dont output the wide margins always.
41         (rightMargin): no margin in inner texts
42
43         * rowpainter.h (nestMargin): new func
44         (changebarMargin): new func
45         (rightMargin): new func
46
47         * rowpainter.C (paintDepthBar): changebarMargin and nestMargin is
48         now functions.
49         (paintLast): ditto
50
51         * factory.C (createInset): modify setDrawFrame
52
53         * cursor.C: use Debug::DEBUG a bit more
54
55 2004-08-14  André Pönitz  <poenitz@gmx.net>
56
57         * coordcache.[Ch]:
58         * Makefile.am: new files to accomodate an 'external' (x,y)-position
59         cache for all insets in (at least partially) visible (top-level)
60         paragraphs.
61         
62         * BufferView_pimpl.C: reset external coord cache before every update.
63         This means the coord cache only contains valid entries.
64
65 2004-08-14  Lars Gullik Bjonnes  <larsbj@lyx.org>
66
67         bug 1096
68         * BufferView_pimpl.C (getInsetByCode): move function out of class
69         and change in to a template in anon namespace. Also fix to do what
70         suits us better.
71
72 2004-08-13  Lars Gullik Bjonnes  <larsbj@lyx.org>
73
74         bug 1305
75         * paragraph_funcs.C (moveItem): use Paragraph::value_type instead
76         of char
77         (breakParagraph): rename par to par_offset and use a local
78         reference. Add code to keep the language over a rebreak.
79         (breakParagraphConservative): rename par to par_offset, use a
80         local reference
81         (mergeParagraph): ditto
82         (outerHook): ditto
83         (isFirstInSequence): ditto
84         (outerFont): rename pit to par_offset
85
86         * paragraph.C: ws change
87         * paragraph.h: ditto
88         * text3.C: ditto
89         * text.C: ditto
90
91 2004-08-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
92
93         * paragraph_pimpl.C (simpleTeXSpecialChars): remove special
94         treatment for ']'
95
96         * paragraph.C (simpleTeXOnePar): when we have a \item with
97         optional argument, enclose the argument with curly brackets (in
98         case it contains a closing square bracket)
99
100         * text2.C (editXY):
101         * text2.C (editXY):
102         * text3.C (checkInsetHit): constify
103
104 2004-08-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
105
106         * LyXAction.C (init): mark LFUN_WORD_FIND as working in read-only
107         documents (bug 1629)
108
109 2004-08-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
110
111         Fix toggling of collapsable insets with the mouse (bug 1558)
112
113         * lyxfunc.C (dispatch): adapt to LCursor changes
114
115         * BufferView_pimpl.C (workAreaDispatch): adapt to LCursor changes;
116         make sure that dispatch is not invoked twice
117
118         * cursor.C (needsUpdate): new method
119         (dispatch): return void
120         (result): new method, to access the DispatchResult of the cursor.
121
122 2004-08-13  José Matos  <jamatos@lyx.org>
123
124         * tabular.C (docbook): close empty tags in XML. Fix bug 1147.
125
126 2004-08-13  André Pönitz  <poenitz@gmx.net>
127
128         * cursor.C (macroModeClose): use plainInsert instead of niceInsert.
129
130         * CutAndPaste.C (eraseSelection): fix cursor position after erasing
131           multiple cells
132
133 2004-08-12  André Pönitz  <poenitz@gmx.net>
134
135         * text3.C: take out the 'cursor right' form insertInset and only
136         do it in those places when it is really needed. Fixes crash on
137         C-m...
138
139 2004-08-08  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
140
141         * lyxfunc.C (dispatch): implement LFUN_SAVE_AS_DEFAULT
142
143         * BufferView_pimpl.C (setBuffer): initialize the current font of
144         the underlying LyXText
145
146 2004-08-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
147
148         * kbsequence.C (print): use UI native formatting for menu
149         shortcuts
150
151         * text.C (insertChar): call Paragraph::insertChar with a font
152         argument (cosmetic)
153
154         * paragraph.C (insertInset, insertChar): the version that takes a
155         LyXFont argument is now a wrapper around the other one (the
156         opposite used to be true).
157
158         * paragraph_pimpl.C (insertInset, insertChar): remove the LyXFont
159         argument. Font setting is done in Paragraph now.
160
161 2004-08-04  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
162
163         * outputparams.h: add new members intitle and lang.
164
165         * paragraph.C (simpleTeXOnePar): initialize rp.lang and
166         rp.intitle. Actually use rp in call to simpleTeXSpecialChars
167
168 2004-08-01  Lars Gullik Bjonnes  <larsbj@gullik.net>
169
170         * text3.C (dispatch): remove special handling of button 4 and 5,
171         it is now taken care of in the frontend code.
172
173 2004-07-25  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
174
175         * Spacing.h: add <string> (STLPort compile fix)
176
177 2004-08-02  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
178
179         * LaTeXFeatures.C: (jurabib) \RequirePackage -> \usepackage
180
181 2004-07-25  Lars Gullik Bjonnes  <larsbj@gullik.net>
182
183         * lyxlex_pimpl.C (compare_tags): chagne return type of operator()
184         to bool.
185
186         * converter.C (showMessage): inherit from unary_function, make
187         operator() const.
188
189         * buffer.C (writeFile): initialize retval
190
191         * InsetList.h: rename private variable list to list_
192         * InsetList.[Ch]: adjust accordingly.
193
194 2004-07-24  Lars Gullik Bjonnes  <larsbj@gullik.net>
195
196         * text3.C, text2.C, text.C, tabular.C, paragraph_funcs.C, paragraph.C:
197         * lyxlength.C, lyxgluelength.C, lyxfunc.C, lyxfont.C, lyxfind.C:
198         * kbmap.C, funcrequest.C, factory.C, cursor.C, counters.C:
199         * bufferview_funcs.C, bufferparams.C, buffer.C, Spacing.C:
200         * ParagraphParameters.C, LaTeXFeatures.C: replace
201         "support/std_sstream.h" with <sstream>
202
203 2004-07-23  Lars Gullik Bjonnes  <larsbj@gullik.net>
204
205         * lyxserver.C (startPipe): use this (pointer) not *this (reference)
206         * lyxsocket.C (LyXServerSocket): ditto
207         (serverCallback): ditto
208
209 2004-07-23  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
210
211         * LaTeXFeatures.C: check release date when loading jurabib.
212
213 2004-07-22  Lars Gullik Bjonnes  <larsbj@gullik.net>
214
215         * lyxserver.C (startPipe): call register_socket_callback
216         (endPipe): call unregister_socket_callback
217
218 2004-07-21  Lars Gullik Bjonnes  <larsbj@gullik.net>
219
220         * lyxsocket.C (LyXServerSocket): reduce max outstanding clients to 3
221         (LyXServerSocket): register the callback
222         (LyXServerSocket): unregister the callback
223         (fd): delete function
224         (serverCallback): improve error checking and setup the callbacks.
225         (dataCallback): change arg to fd.
226         (writeln): new func (copied fro the client socket) used for server
227         write to client.
228         (LyXDataSocket): simplify
229         (~LyXDataSocket): close ann unregiser callback
230         (server): delete function
231         (fd): delete function
232         (readln): small changes, improve some std::string usage
233         (writeln): constify a bit
234
235 2004-06-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
236
237         * kbmap.C (find1keybinding): new method, only used by LyX/Mac with
238         Qt frontend
239
240 2004-07-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
241
242         * BufferView_pimpl.C (setBuffer): set the layout combox value only
243         after it has been populated
244
245 2004-06-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
246
247         * text2.C (insertInset): move cursor when inserting inset.
248
249 2004-06-30  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
250
251         * kbmap.C (findbindings): a couple of new methods. returns a
252         container of kb_sequence objects. The real work is done by the
253         private recursive version
254         (printbindings): uses findbindings to print out a bracketed list
255         of bindings (renamed from findbinding).
256
257         * MenuBackend.C (binding): use kb_keymap::findbindings
258
259         * lyxfunc.C (sendDispatchMessage): use use kb_keymap::printbindings.
260
261 2004-07-01  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
262
263         * buffer.C: up LYX_FORMAT to 235 (needed for the paperpackage fix)
264
265 2004-06-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
266
267         * paragraph.C (isWord): return true on insets that report
268         isLetter().
269
270         * text.C (getWord): use Paragraph::isWord to decide what is in a
271         word and what is not; fix bug 1609.
272
273 2004-06-27  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
274
275         * tex-strings.C: add "none" to string_paperpackages[], fixes
276         off-by-one-error in the paperpackage selection.
277
278         * lyxlex.[Ch]:
279         * tex-strings.[Ch]: char const * string[n]
280         -> char const * const string[]
281
282 2004-06-10  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
283
284         * lyxfunc.C (getStatus): if lyx_gui::getStatus disables the
285         command, return early.
286
287 2004-06-18  Lars Gullik Bjonnes  <larsbj@gullik.net>
288
289         * debug.h: add DEBUG to enum and fix size of ANY.
290
291         * debug.C: add support for Debug::DEBUG
292         (showTags): cast errorTags.level to unsigned int
293
294         * BufferView_pimpl.C (fitCursor): use Debug::DEBUG
295         (redoCurrentBuffer): ditto
296         (updateScrollbar): ditto
297         * cursor.C (dispatch): ditto
298         * text2.C (setLayout): ditto
299         (setFont): ditto
300         (updateCounters): ditto
301         (editXY): ditto
302         (deleteEmptyParagraphMechanism): ditto
303
304 2004-06-09  Lars Gullik Bjonnes  <larsbj@gullik.net>
305
306         * Makefile.am (dist_noinst_DATA): use the dist_ and noinst_
307         annotations to cleanup the Makefile slightly.
308
309 2004-05-10  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
310
311         * lyxrc.C: do not set user_email to a default value but use empty
312         instead. The entry used to be translated, which does not work
313         since at the point where lyxrc is constructed there is no
314         translation service available
315
316         * messages.C (getLocaleDir): remove and use directly
317         lyx_localedir() instead
318
319 2004-06-02  Angus Leeming  <leeming@lyx.org>
320
321         Fix crash caused by dereferencing null pointer 'exportdata' in
322         OutputParams by creating a new ExportData variable on the heap,
323         storing it in a boost::shared_ptr.
324         The crash was triggered when generating an Instant Preview
325         of an external inset.
326
327         * Makefile.am: add outputparams.C
328
329         * outputparams.[Ch]: store exportdata as a shared_ptr<Exportdata>.
330         (c-tor): allocate memory to it.
331
332         * exporter.C (c-tor): associated changes.
333
334 2004-06-01  Angus Leeming  <leeming@lyx.org>
335
336         * output_linuxdoc.C (linuxdocParagraphs): Check that the paragraph
337         contains data before calling isInset(0). (Bug 1513.)
338
339 2004-06-01  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
340
341         * exporter.C (checkOverwrite): new method
342         * exporter.C (copyFile): new method
343         * exporter.C (Export): copy referenced files to the document dir
344         * exporter.[Ch]: new class ExportedFile
345         * exporter.[Ch]: new class ExportData. Contains currently the
346         names of referenced external files
347         * outputparams.h: add exportdata member.
348
349 2004-05-28  Lars Gullik Bjonnes  <larsbj@gullik.net>
350
351         * Makefile.am (DISTCLEANFILES): add version.C, stamp-version and
352         version.C-tmp
353
354 2004-05-19  Angus Leeming  <leeming@lyx.org>
355
356         * LaTeXFeatures.C:
357         * ToolbarBackend.C:
358         * bufferparams.C:
359         * lyxfunc.C: small changes due to the introduction of namespace
360         lyx::frontend and the moving of namespace biblio to lyx::biblio.
361
362 2004-05-18  Alfredo Braunstein  <abraunst@lyx.org>
363
364         * text3.C (dispatch): supress update when only moving the cursor
365         * cursor.C (selHandle): remove commented code
366
367 2004-05-17  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
368
369         * paragraph.C (startTeXParParams): correct column count
370         * CutAndPaste.C (pasteSelection): remove const_cast
371         * output_docbook.C (docbookParagraphs): remove const_cast
372         * output_latex.C (TeXEnvironment, TeXOnePar, TeXDeeper): remove
373         const_cast and return ParagraphList::const_iterator
374         * output_linuxdoc.C (linuxdocParagraphs): remove const_cast
375         * output_plaintext.C (writeFileAscii): remove const_cast
376         * paragraph.[Ch] (simpleTeXOnePar): make const
377         * paragraph_funcs.C (outerPar): use const iterators
378         * paragraph_pimpl.C (validate): use const iterators
379         * text.C (setHeightOfRow): use const iterators
380
381 2004-05-17  Angus Leeming  <leeming@lyx.org>
382
383         * lfuns.h:
384         * LyXAction.C (init): new LFUN_INSET_REFRESH.
385
386         * lyxfunc.C (dispatch): in the LFUN_BUFFERPARAMS_APPLY block loop
387         over all insets and dispatch LFUN_INSET_REFRESH to any citation insets
388         if the citation engine has changed.
389
390 2004-05-14  José Matos  <jamatos@lyx.org>
391
392         * buffer.C (makeDocBookFile): add a default Formal Public Identifier
393         if the textclass does not provide it. Have it different for sgml and
394         xml.
395         support the language of document.
396         * output_docbook.C (docbookParagraphs):
397         * paragraph.[Ch] (getDocbookId): new function that gets the id of the
398         first anchor as the id of the paragraph, remove special case code.
399         * sgml.C (escapeChar): escape only < & >.
400
401 2004-05-14  Angus Leeming  <leeming@lyx.org>
402
403         * bufferparams.h: move biblio::CiteEngine enum here to minimize
404         dependencies on src/frontends/controllers/biblio.h. Define a
405         CiteEngine_enum wrapper class to enable the enum to be forward
406         declared.
407
408 2004-05-12  Angus Leeming  <leeming@lyx.org>
409
410         * buffer.C: up LYX_FORMAT to 234.
411         * bufferparams.[Ch]: replace the three bools, use_natbib, use_jurabib,
412         use_numerical_citations with a single biblio::CiteEngine cite_engine
413         variable.
414         * LaTeXFeatures.C (getPackages): use BufferParams::cite_engine.
415
416 2004-05-13  José Matos  <jamatos@lyx.org>
417
418         * converter.h:
419         * converter.C (Converter, readFlags): add xml member.
420         * outputparams.h: add XML flavor.
421         * buffer.C (makeDocBookFile): add support for the sgml/xml distinction.
422
423 2004-05-03  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
424
425         * lyxfunc.C (dispatch):
426         (getStatus): fix handling of LFUN_SEQUENCE
427
428 2004-04-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
429
430         * debug.C (showLevel): do not forget the end-of-line marker
431
432 2004-04-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
433
434         * kbmap.C (read): do not stop parsing a bind file when an error
435         occurs (bug 1575)
436
437 2004-04-29  Angus Leeming  <leeming@lyx.org>
438
439         * cursor.C:
440         * factory.C:
441         * pariterator.C:
442         * text2.C: wrap a bunch of #warning statements
443         inside #ifdef WITH_WARNINGS blocks.
444
445 2004-04-29  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
446
447         * buffer.C: increment format to 233.
448
449 2004-04-28  Angus Leeming  <leeming@lyx.org>
450
451         * BufferView_pimpl.C:
452         * lyxfunc.C:
453         * text3.C:
454         s/updateToolbar()/updateToolbars()/
455         s/Toolbar.h/Toolbars.h/
456
457 2004-04-28  Angus Leeming  <leeming@lyx.org>
458
459         * BufferView.[Ch] (c-tor):
460         * BufferView_pimpl.[Ch] (c-tor): no longer receives x,y position.
461         No longer passes these data to the WorkArea generator.
462
463 2004-04-28  Angus Leeming  <leeming@lyx.org>
464
465         * BufferView_pimpl.C (c-tor): pass LyXView & to WorkArea generator.
466
467 2004-04-26  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
468
469         * LaTeXFeatures.C, lyx_sty.[Ch]: add \lyxdot macro
470
471 2003-09-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
472
473         * output_latex.C (TeXEnvironment): make sure that there is a line
474         break before \end{foo} for the last paragraph of a document
475         (TeXOnePar): if the paragraph is at the end of the document (or
476         inset) and the language has to be reset, then make sure that the
477         line break is _before_ the language command, not after (fixes bug
478         1225); also make sure that the language reset command is the first
479         thing after the paragraph (to ensure proper nesting of
480         environments and thus fix bug 1404)
481
482 2004-04-21  John Levon  <levon@movementarian.org>
483
484         * ToolbarBackend.h:
485         * ToolbarBackend.C: make "name" be a programmatic name
486         and a gui_name field.
487
488         * lyxfunc.C: display the minibuffer on M-x
489
490 2004-04-18  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
491
492         * LaTeX.C (runMakeIndex, runBibTeX): quote correctly file name
493         (bug 1526)
494
495 2004-04-19  Angus Leeming  <leeming@lyx.org>
496
497         * BufferView_pimpl.C (setBuffer): changed preview interface.
498
499         * lyxrc.[Ch] (preview): no longer a bool. Now an enum with three
500         possible values.
501
502 2004-04-19  John Levon  <levon@movementarian.org>
503
504         * BufferView_pimpl.C:
505         * text3.C: fix bug 1569 (insert->label doesn't give suggestion)
506
507 2004-04-05  Angus Leeming  <leeming@lyx.org>
508
509         * text.C (redoParagraphs): add call to updateCounters(), thereby
510         fixing the missing "Figure #:" label from the caption of a
511         figure float.
512
513 2004-04-13  Angus Leeming  <leeming@lyx.org>
514
515         * text3.C (dispatch): call Inset::.notifyCursorLeaves when the
516         cursor is clicked out of an inset.
517
518 2004-04-13  Angus Leeming  <leeming@lyx.org>
519
520         * lyx_main.[Ch] (updateInset): pass it an InsetBase pointer rather
521         than an InsetOld one.
522
523 2004-04-12  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
524
525         * format.[Ch]: add editor to Format
526         * lyxrc.[Ch]: merge RC_FORMAT and RC_VIEWER. Add editor to Format
527         * LyXAction.C, lfuns.h, lyxfunc.C: add lfun LFUN_GRAPHICS_EDIT
528
529 2004-04-08  André Pönitz  <poenitz@gmx.net>
530
531         * metricsinfo.h: remove PainterInfo::width member
532
533 2004-04-08  Angus Leeming  <leeming@lyx.org>
534
535         * lyx_sty.C (boldsymbol_def): modify so that it outputs
536         "\providecommand" rather than "\newcommand", thereby preventing
537         clashes with packages that define "\boldsymbol" themselves.
538         Eg, beamer.
539
540 2004-04-08  Angus Leeming  <leeming@lyx.org>
541
542         * lyxrc.C (read): don't try to set the color of none, inherit, ignore
543         thereby squashing an unnecessary warning.
544
545 2004-04-01  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
546
547         * LaTeXFeatures.[Ch]: change buffer_ to a pointer and add accessor
548         setBuffer()
549
550 2004-04-07  Alfredo Braunstein  <abraunst@lyx.org>
551
552         * BufferView.C (setCursor): call redoParagraph (some insets could
553         have been opened)
554         (putSelectionAt): remove the 'double update' trick
555
556         * BufferView_pimpl.C (fitCursor): call refreshPar
557         (workAreaDispatch): remove an uneeded update call
558         (dispatch): remove some manual update calls
559
560         * cursor.[Ch]: remove cached_y_, updatePos
561         (selHandle): set noUpdate when appropriate
562
563         * lyxfunc.C (dispatch): track if we need an update
564
565         * metricsinfo.[Ch]: PainterInfo receive a Painter & on construction
566
567         * rowpainter.[Ch] (RowPainter): remove superfluous xo_ parameter
568         (paintSelection): cheap optimization, do not call cursorX when not
569         needed
570         (paintPars): change signature
571         (refreshPar): add
572         (paintText): adjust
573         (paintTextInset): adjust
574
575         * text.C: adjust
576
577 2004-04-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
578
579         * lengthcommon.C: compilation fix: remove explicit array size from
580         unit_name[] and friends
581
582 2004-04-05  Angus Leeming  <leeming@lyx.org>
583
584         * LyXAction.C (init): set LFUN_DIALOG_UPDATE's atrib flag to NoBuffer.
585
586         * lyxfunc.C (getStatus): enable LFUN_DIALOG_UPDATE if no buffer is
587         present only for the preferences dialog.
588         (dispatch): handle LFUN_DIALOG_UPDATE for the preferences dialog.
589
590 2004-04-05  Angus Leeming  <leeming@lyx.org>
591
592         * lyxrc.[Ch] (write): now takes a 'bool ignore_system_lyxrc' arg
593         to enable the frontends to export changes to lyxrc correctly.
594
595         * lyxfunc.C (dispatch): output lyxrc.write("preferences", false).
596
597 2004-04-07  André Pönitz  <poenitz@gmx.net>
598
599         * cursor.[Ch] (selClear, adjust): remove math
600
601         * cursor_slice.C: more agressive assert
602
603         * lyxfunc.C:
604         * BufferView_pimpl.C: rework mouse event dispatch
605
606         * dociterator.C:
607         * paragraph.C:
608         * text2.C:
609         * text3.C: adjust
610
611 2004-04-05  André Pönitz  <poenitz@gmx.net>
612
613         * cursor.[Ch] (valign, halign...): remove unneeded functions
614
615 2004-04-05  Angus Leeming  <leeming@lyx.org>
616
617         * lyxlength.[Ch] (unit_name et al.): const-correct.
618
619 2004-04-05  Angus Leeming  <leeming@lyx.org>
620
621         * BufferView_pimpl.C:
622         * buffer.C:
623         * counters.C:
624         * cursor.C:
625         * lyxfunc.C
626         * paragraph.C:
627         * pariterator.C:
628         * text.C:
629         * text2.C:
630         * text3.C: wrap #warning calls inside #ifdef WITH_WARNINGS blocks.
631
632 2004-04-01  Alfredo Braunstein  <abraunst@lyx.org>
633
634         * text3.C (getStatus): add LFUN_BEGINNINGBUF
635
636 2004-04-01  Alfredo Braunstein  <abraunst@lyx.org>
637
638         * lyxfind.C: add a couple of inTexted() tests + other small fixes
639         * BufferView_pimpl.[Ch] (getStatus)
640         * BufferView.[Ch] (getStatus): add
641         * lyxfunc.C (getStatus): move lfuns handled in
642         BufferView::dispatch to te function above
643         * Cursor.C (setSelection): set selection() = true
644
645 2004-04-01  Alfredo Braunstein  <abraunst@lyx.org>
646
647         * lyxfunc.C (getStatus): enable LFUN_WORD_{FIND,REPLACE}
648
649 2004-03-31  Angus Leeming  <leeming@lyx.org>
650
651         * lyxfunc.C (dispatch): Fall through to the generic
652         Dialogs::show("preamble").
653
654 2004-03-31  Angus Leeming  <leeming@lyx.org>
655
656         * lyxfunc.C (dispatch): Fall through to the generic
657         Dialogs::show("spellchecker").
658
659 2004-03-31  Angus Leeming  <leeming@lyx.org>
660
661         * lyxfunc.C (getStatus, dispatch): changed invocation of the
662         preferences dialog.
663
664 2004-03-31  Alfredo Braunstein  <abraunst@lyx.org>
665
666         * BufferView.C
667         * cursor.[Ch]
668         * dociterator.[Ch]:
669         * insetiterator.[Ch]:
670         * lyxfind.C:
671         * lyxfunc.C:
672         * pariterator.[Ch]:
673         * text2.C:
674         * undo.[Ch]: s/DocumentIterator/DocIterator/g
675
676 2004-03-31  Alfredo Braunstein  <abraunst@lyx.org>
677
678         * BufferView.C (setCursor, putSelectionAt): call edit to open the
679         insets where we are putting the cursor.
680
681 2004-03-31  Angus Leeming  <leeming@lyx.org>
682
683         * lfuns.h:
684         * LyXAction.C: new lfun LFUN_LYXRC_APPLY.
685
686         * lyxrc.[Ch] (read, write): overloaded member functions taking
687         a std::[io]stream arguments.
688
689         * lyxfunc.C (getStatus, dispatch): handle LFUN_LYXRC_APPLY.
690
691 2004-03-31  Angus Leeming  <leeming@lyx.org>
692
693         * lyxfunc.C (loadTextclass): new helper function, invoked by two of
694         dispatch's case blocks, LFUN_TEXTCLASS_APPLY and LFUN_TEXTCLASS_LOAD.
695
696         * lyxtextclass.C (load): if the text class couldn't be loaded, then
697         don't overwrite 'loaded_ = false' with 'loaded_ = true' !
698
699 2004-03-31  Angus Leeming  <leeming@lyx.org>
700
701         * lyxfunc.C (dispatch): remove the cursor-manipulation code from
702         the LFUN_ALL_INSETS_TOGGLE code.
703
704 2004-03-30  Angus Leeming  <leeming@lyx.org>
705
706         * lyxfunc.C (dispatch): the specialization Dialogs::showDocument
707         has died. Fall through to the generic Dialogs::show("document").
708
709 2004-03-30  Angus Leeming  <leeming@lyx.org>
710
711         * lfuns.h:
712         * LyXAction.C: new lfuns LFUN_LANGUAGE_BUFFER, LFUN_TEXTCLASS_APPLY,
713         LFUN_TEXTCLASS_LOAD, LFUN_SAVE_AS_DEFAULT, LFUN_BUFFERPARAMS_APPLY.
714
715         * lyxfunc.C (getStatus, dispatch): define the actions for these
716         lfuns. Little more than a cut and pste job from ControlDocument.C
717
718         * lyxtextclass.[Ch] (loaded): accessor for the private bool loaded_.
719
720 2004-03-30  Angus Leeming  <leeming@lyx.org>
721
722         * lfuns.h:
723         * LyXAction.C (init): new lfuns, LFUN_KEYMAP_TOGGLE,
724         LFUN_NEXT_INSET_TOGGLE, LFUN_ALL_INSETS_TOGGLE.
725
726         * lyxfunc.C (dispatch): LFUN_ALL_INSETS_TOGGLE is used to toggle the
727         open/closed state of ollapsable insets. Usage:
728
729         all-inset-toggle <state> <name>, where
730         <state> == "open" || "closed" || "toggle" and
731         <name> is an identifier for a 'type' of inset. Eg "branch", "ert",...
732
733         * lyxtext.h, text2.C (toggleInset): removed.
734
735         * text3.C (dispatch): split the existing LFUN_INSET_TOGGLE in two,
736         LFUN_KEYMAP_TOGGLE and LFUN_NEXT_INSET_TOGGLE. LFUN_NEXT_INSET_TOGGLE
737         now passes LFUN_INSET_TOGGLE to the found inset.
738
739         * InsetList.[Ch] (insetsOpenCloseBranch): removed. Functionality
740         is now invoked as "all-insets-toggle toggle branch".
741
742 2004-03-30  Angus Leeming  <leeming@lyx.org>
743
744         * dociterator.C:
745         * insetiterator.C:
746         * pariterator.[Ch]: added/corrected header blurb.
747
748 2004-03-30  Alfredo Braunstein  <abraunst@lyx.org>
749
750         * dociterator.[Ch]: add an inset_ member
751         (backwardPos): implemented
752         (backwardPos, forwardPos): use inset_ when the stack is empty.
753         (doc_iterator_begin, doc_iterator_end): implemented
754         * pariterator.[Ch]: adjust, add begin, end
755         * insetiterator.[Ch]: adjust, add begin, end
756         * cursor.C:
757         * document.C:
758         * BufferView.C:
759         * BufferView_pimpl.C:
760         * CutAndPaste.C: adjust
761
762 2004-03-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
763
764         * buffer.C: increment file format to 232.
765         * LaTeXFeatures.C: add bibtopic package.
766         * bufferparams.[Ch]: param \use_bibtopic.
767
768         * lyxrc.[Ch]: add lyxrc bibtex_command
769         * LaTeX.C: use rc.bibtex_command instead of hardcoded string.
770
771         * buffer.C: increment file format to 231.
772
773 2004-03-28  Alfredo Braunstein  <abraunst@lyx.org>
774
775         * dociterator.C: implement forwardPar
776         * iterators.[Ch]: remove, replaced by
777         * pariterator.[Ch]: this. derive ParIterator from DocumentIterator
778         * BufferView.C:
779         * BufferView_pimpl.C:
780         * CutAndPaste.C:
781         * buffer.C:
782         * bufferview_funcs.C:
783         * cursor.C:
784         * lyxfind.C
785         * lyxfunc.C
786         * paragraph_funcs.C
787         * toc.C:
788         * Makefile.am: adjust
789
790 2004-03-28  Alfredo Braunstein  <abraunst@lyx.org>
791
792         * CutAndPaste.C (pasteSelection): fix 2 crashes
793         (eraseSelection): fix a crash
794         * paragraph_funcs.C: remove a warning
795
796 2004-03-28  Angus Leeming  <leeming@lyx.org>
797
798         * lfuns.h:
799         * LyXAction.C (init): new LFUN_PRINT.
800
801         * lyxfunc.C (getStatus, dispatch): handle LFUN_PRINT.
802
803 2004-03-27  Angus Leeming  <leeming@lyx.org>
804
805         * lfuns.h:
806         * LyXAction.C (init): new LFUN_EXPORT_CUSTOM.
807
808         * lyxfunc.C (getStatus, dispatch): handle LFUN_EXPORT_CUSTOM.
809
810 2004-03-27  Angus Leeming  <leeming@lyx.org>
811
812         * paragraph_funcs.C (moveItem): fix memory leaks, ensure that
813         insetlist always contains non-null pointers to insets.
814
815 2004-03-26  Angus Leeming  <leeming@lyx.org>
816
817         * src/BufferView_pimpl.C:
818         * src/CutAndPaste.C:
819         * src/buffer.C:
820         * src/iterators.C:
821         * src/output_plaintext.C:
822         * src/outputparams.h:
823         * src/paragraph_funcs.C:
824         * src/rowpainter.C:
825         * src/text.C:
826         * src/text2.C:
827         * src/frontends/controllers/ControlErrorList.C:
828         * src/frontends/gtk/FileDialogPrivate.C:
829         * src/frontends/gtk/GPainter.C:
830         * src/frontends/gtk/GToolbar.C:
831         * src/frontends/qt2/QRef.C:
832         * src/mathed/math_scriptinset.C: squash compiler warnings.
833
834 2004-03-26  Angus Leeming  <leeming@lyx.org>
835
836         * ispell.C (LaunchIspell::start):
837         * lyx_cb.C (AutoSaveBuffer::start):
838         invoke run(DontWait) rather than runNonBlocking().
839
840 2004-03-26  Alfredo Braunstein  <abraunst@lyx.org>
841
842         * buffer_funcs.C (readFile): add cancel button to two prompt dialogs
843
844 2004-03-26  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
845
846         * kbsequence.C (print): adjust
847
848         * kbmap.C (printKeySym): rename and change signature
849         (printKey): use LyXKeySym::print()
850
851 2004-03-26  Martin Vermeer  <martin.vermeer@hut.fi>
852
853         * undo.C: add using std::advance to compile for stlport
854
855 2004-03-24  Angus Leeming  <leeming@lyx.org>
856
857         * lyxfunc.C (dispatch): remove test code in LFUN_QUIT handler as
858         it leads to a crash when no buffer is present.
859
860 2004-03-25  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
861             Martin Vermeer  <martin.vermeer@hut.fi>
862
863         * lyxfunc.C (dispatch):
864         * bufferparams.C (readToken): use the new LColor::setColor
865
866         * LColor.[Ch] (setColor): new version that takes two strings as
867         argument and creates a new color entry if necessary
868
869 2003-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
870
871         * buffer.C (makeLaTeXFile): if the main latex file that is
872         processed is usually a subdocument of some master, then pretend
873         for a while that it is actually the master
874
875 2003-02-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
876
877         * buffer.C (getLabelList):
878         (getBibkeyList): use getMasterBuffer()
879         (getMasterBuffer): new method. Returns the main document in the
880         case where one is using included documents.
881
882 2004-03-25  André Pönitz  <poenitz@gmx.net>
883
884         * Makefile.am:
885         * iterators.[Ch]:
886         * PosIterator.[Ch]: drop PosIterator, replaced by DocumentIterator
887
888         * ParagraphList_fwd.h: change ParagraphList to a std::vector
889
890         * CutAndPaste.[Ch]: simpler interface by moving some stuff from
891         text*.C over here. Rename namespace CutAndPaste to lyx::cap
892
893         * ParameterStruct.h: merge with ParagraphParameters
894
895         * lyxtext.h: remove LyXText::parOffset() and getPar()
896
897         * text3.C: Remove all 'manual' update calls. We do now one per user
898         interaction which is completely sufficient.
899
900         * Bidi.C:
901         * BufferView.[Ch]:
902         * BufferView_pimpl.C:
903         * FontIterator.[Ch]:
904         * MenuBackend.C:
905         * ParagraphParameters.[Ch]:
906         * buffer.C:
907         * buffer.h:
908         * bufferlist.C:
909         * cursor.[Ch]:
910         * cursor_slice.[Ch]:
911         * dociterator.[Ch]:
912         * errorlist.[Ch]:
913         * factory.C:
914         * lfuns.h:
915         * lyxfind.C:
916         * lyxfunc.C:
917         * output_docbook.[Ch]:
918         * output_latex.[Ch]:
919         * output_linuxdoc.[Ch]:
920         * output_plaintext.[Ch]:
921         * paragraph.[Ch]:
922         * paragraph_funcs.[Ch]:
923         * paragraph_pimpl.[Ch]:
924         * rowpainter.C:
925         * tabular.[Ch]:
926         * text.C:
927         * text2.C:
928         * toc.C:
929         * undo.[Ch]: adjust
930
931         * frontends/controllers/ControlDocument.C:
932         * frontends/controllers/ControlErrorList.C:
933         * frontends/controllers/ControlSpellchecker.C:
934         * insets/inset.C:
935         * insets/inset.h:
936         * insets/insetbase.h:
937         * insets/insetbibitem.C:
938         * insets/insetbox.C:
939         * insets/insetbranch.C:
940         * insets/insetcaption.C:
941         * insets/insetcharstyle.C:
942         * insets/insetcharstyle.h:
943         * insets/insetcollapsable.C:
944         * insets/insetcollapsable.h:
945         * insets/insetert.C:
946         * insets/insetfloat.C:
947         * insets/insetfoot.C:
948         * insets/insetmarginal.C:
949         * insets/insetnote.C:
950         * insets/insetoptarg.C:
951         * insets/insettabular.C:
952         * insets/insettext.C:
953         * insets/insettext.h:
954         * insets/insetwrap.C:
955         * mathed/math_mboxinset.C:
956         * mathed/math_nestinset.C:
957         * mathed/math_scriptinset.C:
958         * mathed/math_scriptinset.h:
959         * support/types.h:
960
961 2004-03-24  Angus Leeming  <leeming@lyx.org>
962
963         * BufferView_pimpl.C (cursorToggle): use the cursor toggle to
964         deal with any child processes that have finished but are waiting to
965         communicate this fact to the rest of LyX.
966
967 2004-03-24  Angus Leeming  <leeming@lyx.org>
968
969         64-bit compile fixes.
970
971         * errorlist.[Ch] (pos_start, pos_end): store as lyx::pos_type.
972         (c-tor): pass lyx::pos_types rather than ints.
973
974         * paragraph.[Ch] (beginOfBody, begin_of_body_): return, store as
975         lyx::pos_type.
976
977         * text.C (Delete): compile fix.
978         (getPar): ensure that function declaration is the same as that in
979         the header file.
980
981 2004-03-23  Angus Leeming  <leeming@lyx.org>
982
983         * ispell.C (LaunchIspell):
984         * lyx_cb.C (AutoSaveBuffer): change the signature of clone to return
985         a boost::shred_ptr rather than a std::auto_ptr.
986
987 2004-03-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
988
989         * lyxfunc.C (getStatus): handle read-only buffers correctly;
990         handle LFUN_FILE_INSERT_*
991
992         * lyxrc.C (setDefaults, getDescription, output, read):
993         * lyxrc.h: remove ps_command
994
995 2004-03-22  Angus Leeming  <leeming@lyx.org>
996
997         * lyx_main.C (error_handler, init): remove handler for SIGPIPE.
998         Ensure that error_handler is processed once only and that all data
999         is saved before attempting to output any warning messages.
1000
1001         * cursor.[Ch] (nopos_, noPos): remove unused member variable/function.
1002
1003 2004-03-21  Alfredo Braunstein  <abraunst@lyx.org>
1004
1005         * tabular.C (TeXRow): crash fix (from Kayvan and André)
1006
1007 2004-03-19  André Pönitz  <poenitz@gmx.net>
1008
1009         * cursor.[Ch] (reset): take main text inset as argument
1010
1011         * BufferView: adjust
1012         * BufferView_pimpl.C: adjust
1013
1014         * paragraph.[Ch]: fix completely broken operator=()
1015
1016 2004-03-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1017
1018         * LColor.C (getFromLyXName): make sure that the color name is used
1019         as lowercase.
1020
1021 2004-03-17  Angus Leeming  <leeming@lyx.org>
1022
1023         * lfuns.h:
1024         * LyXAction.C (init): remove LFUN_FORKS_KILL.
1025
1026         * lyxfunc.C (getStatus, dispatch) remove lfuns to show the forks
1027         dialog and to kill a forked process.
1028
1029 2004-03-17  Alfredo Braunstein  <abraunst@lyx.org>
1030
1031         * text2.C (setCursorFromCoordinates): fix font problem
1032
1033 2004-03-17  Alfredo Braunstein  <abraunst@lyx.org>
1034
1035         * BufferView_pimpl.C (resizeCurrentBuffer): remove unneeded and
1036         bogus "rebuild cursor" code
1037
1038 2004-03-11  André Pönitz  <poenitz@gmx.net>
1039
1040         * buffer.[Ch]: use InsetText instead of LyXText as container for
1041         the main lyx text.
1042
1043         * dociterator.[Ch]: drop the BufferView * member which is not needed
1044         anymore after the change to buffer.C
1045
1046         * paragraph_funcs.C:
1047         * text.C:
1048         * text2.C:
1049         * BufferView.[Ch]:
1050         * BufferView_pimpl.[Ch]:
1051         * cursor.[Ch]:
1052         * cursor_slice.[Ch]: adjust
1053
1054         * text3.C: fix bug in mathDispatch
1055
1056 2004-03-08  André Pönitz  <poenitz@gmx.net>
1057
1058         * undo.[Ch]: use 'StableDocumentIterator' as base for
1059         the Undo struct.
1060
1061 2004-03-07  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1062
1063         * LaTeXFeatures.C:
1064         * bufferparams.[Ch]: add jurabib support and param.
1065
1066         * LaTeX.C: add FIXME/comment.
1067
1068 2004-03-05  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1069
1070         * buffer.C: increment file format to 230.
1071
1072 2004-03-04  Alfredo Braunstein  <abraunst@lyx.org>
1073
1074         * cursor.C (dispatch): avoid infinite loops
1075
1076 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1077
1078         * rowpainter.C (paintSelection): fix x coordinates
1079
1080 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1081
1082         * text.C (rowBreakPoint): fix breaking before displayed insets
1083
1084 2004-03-01  André Pönitz  <poenitz@gmx.net>
1085
1086         * dociterator.[Ch]: new class for the 'iterator part' of LCursor.
1087
1088         * cursor.[Ch]: adjust, additioally: remove the 'current_' machinery
1089
1090         * Makefile.am:
1091         * BufferView.C:
1092         * BufferView_pimpl.C:
1093         * buffer.C:
1094         * lyxfind.C:
1095         * lyxfunc.C:
1096         * text.C:
1097         * text2.C:
1098         * text3.C: adjust
1099
1100 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1101
1102         * lyxtext.h:
1103         * text.C:
1104         * text2.C:
1105         * rowpainter.C:
1106         * BufferView_pimpl.C: rename textwidth -> maxwidth,
1107         prepareToPrint -> computeRowMetrics and remove textWidth accessor.
1108
1109 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1110
1111         * Bidi.[Ch] (computeTables): const correctness
1112         * lyxrow.[Ch]: add RowMetrics class, move there fill_separator,
1113         fill_hfill, fill_label_hfill and x from Row
1114         * lyxtext.h: prepareToPrint returns a RowMetrics
1115         * rowPainter.C: adjust
1116         * text.C (prepareToPrint): use width, not textWidth. adjust
1117         (redoParagraphInternal, cursorX): adjust
1118         * text2.C (getColumnNearX): adjust
1119         (init): put a default value to the top LyXText::width
1120
1121 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1122
1123         * FontIterator.[Ch]: move FontIterator from lyxtext.h/text.C to here
1124
1125 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1126
1127         * lyxtext.h: add FontIterator class
1128
1129         * text.C (FontIterator, operator*, operator->, operator++): add
1130         (rowBreakPoint, setRowWidth): adjust (fixing a
1131         rebreaking bug)
1132
1133 2004-02-25  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1134
1135         * BufferView_pimpl.C (workAreaDispatch): allow also
1136         LFUN_FILE_OPEN, which is used by the drag-and-drop code.
1137
1138 2004-02-27  Alfredo Braunstein  <abraunst@lyx.org>
1139
1140         * text.C (rowBreakPoint): fix a bug showing with very large insets
1141
1142 2004-02-25  André Pönitz  <poenitz@gmx.net>
1143
1144         * text3.C:
1145         * cursor.[Ch]: move some mathed specific code to mathed
1146
1147 2004-02-21  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1148
1149         * lyxrc.C, buffer.C, exporter.C: use always a temp dir, ignore
1150         use_tempdir in preferences
1151         * buffer.C (readFile), lyxvc.C (getLogFile): check success of
1152         tempfile creation
1153         * lyx_main.C: ensure that tempdir is valid
1154         * lyxlex.h: correct typo
1155         * buffer.[Ch] (isMultiLingual), (isUnnamed): make const
1156         * paragraph.[Ch] (isMultiLingual): make const
1157         * cursor.[Ch] (openable): make const
1158
1159 2004-02-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1160
1161         * text3.C: fixed LFUN_QUOTE and add lfun arguments single/double.
1162
1163 2004-02-20  André Pönitz  <poenitz@gmx.net>
1164
1165         * dispatchresult.h: rename 'FINISHED' to 'FINISHED_LEFT'
1166
1167         * cursor.[Ch]: prepare for localized getStatus()
1168
1169         * lyxtext.h:
1170         * tabular.C:
1171         * text.C:
1172         * text2.C:
1173         * text3.C:  streamlines the LyXText cursor movement handlers a bit.
1174
1175 2004-02-20  André Pönitz  <poenitz@gmx.net>
1176
1177         * lyxfunc.[Ch]: rename view_status_message() to viewStatusMessage()
1178
1179 2004-02-16  Alfredo Braunstein  <abraunst@lyx.org>
1180
1181         * text2.C (setCursorFromCoordinates): switch to absolute coords
1182         (cursorUp): adjust
1183         (cursorDown): adjust
1184         * text3.C (dispatch): adjust
1185
1186 2004-02-16  André Pönitz  <poenitz@gmx.net>
1187
1188         * cursor.[Ch]: use new '_void_ dispatch(...)' signature (see
1189           insets/ChangeLog)
1190
1191         * cursor_slice.[Ch]: remove unneeded acessor function
1192
1193         * lyxtext.h: rename rtl() to isRTL()
1194
1195         * rowpainter.C:
1196         * tabular.C:
1197         * text.C:
1198         * text2.C:
1199         * text3.C: adjust
1200
1201 2004-02-16  Alfredo Braunstein  <abraunst@lyx.org>
1202
1203         * rowpainter.C (paintSelection): coord fix
1204
1205 2004-02-15  Georg Baum <Georg.Baum@post.rwth-aachen.de>
1206
1207         * Spacing.C: compile fix
1208
1209 2004-02-13  Alfredo Braunstein  <abraunst@lyx.org>
1210
1211         * cursor.C (dispatch): restore current_ before returning
1212
1213 2004-02-13  Alfredo Braunstein  <abraunst@lyx.org>
1214
1215         * text2.C (cursorUp, cursorDown): fix coords
1216         (moveUp): fix crash
1217
1218 2004-02-12  André Pönitz  <poenitz@gmx.net>
1219
1220         * lyxtext.h:
1221         * text.C:
1222         * text2.C:
1223         * text3.C: add LCursor & parameter to most cursor movement functions
1224           remove usage of LyXText::cursorRow() and cursorPar()
1225
1226         * cursor.[Ch]: add textRow() needed members
1227
1228         * BufferView.C:
1229         * BufferView_pimpl.C:
1230         * paragraph.[Ch]:
1231         * BufferView.C:
1232         * BufferView_pimpl.C: adjust
1233
1234 2004-02-11  André Pönitz  <poenitz@gmx.net>
1235
1236         * lyxfunc.C:
1237         * BufferView.[Ch]:
1238         * BufferView_pimpl.C: shift undo/redo handling
1239
1240         * cursor.[Ch]: fix mathed crash
1241
1242         * lyxfind.C:
1243         * lyxtext.h: move selectionAsText to LCursor
1244
1245         * output_latex.C:
1246         * paragraph.C:
1247         * text.C:
1248         * text2.C:
1249         * text3.C: adjust
1250
1251         * rowpainter.C: fix excessive drawing
1252
1253 2004-02-06  André Pönitz  <poenitz@gmx.net>
1254
1255         * BufferView.[Ch]:
1256         * BufferView_pimpl.[Ch]:
1257         * text3.C: move some text specific LFUN handling
1258
1259 2004-02-06  Alfredo Braunstein  <abraunst@lyx.org>
1260
1261         * text3.C (checkInsetHit): adjust coords
1262         * text2.C (getColumnNearX): adjust coords
1263         (edit): adjust coords
1264         * text.C (getRowNearY): add two asserts
1265
1266 2004-02-06  Martin Vermeer  <martin.vermeer@hut.fi>
1267
1268         * converter.C:
1269         * format.C: add using std::distance to compile on gcc 2.95/stlport
1270
1271 2004-02-04  Martin Vermeer  <martin.vermeer@hut.fi>
1272
1273         * cursor.[Ch]: workaround gcc 2.95 pointer comparison bug
1274
1275 2004-02-04  André Pönitz  <poenitz@gmx.net>
1276
1277         * BufferView.[Ch] (insertInset):
1278         * BufferView_pimpl.[Ch] (insertInset): remove unneeded return value
1279
1280         * text2.C:
1281         * text3.C: adjust
1282
1283 2004-02-03  Alfredo Braunstein  <abraunst@lyx.org>
1284
1285         * BufferView_pimpl.C (dispatch): remove call to LCursor::dispatch
1286         on the default clause of the switch
1287         * lyxfunc.C (dispatch): call BufferView::dispatch if the event
1288         wasn't catched by LCursor::dispatch
1289
1290 2004-02-03  André Pönitz  <poenitz@gmx.net>
1291
1292         * BufferView.C:
1293         * cursor.[Ch]: some additional asserts
1294
1295         * undo.[Ch]: remove LyXText dependency in interface
1296
1297         * lyxfunc.C: adjust
1298
1299         * lyxtext.h (firstPar, lastPar): remove dead functions
1300
1301         * text.C:
1302         * text2.C:
1303         * text3.C:
1304         * paragraph.[Ch]: adjust
1305
1306 2004-02-03  Alfredo Braunstein  <abraunst@lyx.org>
1307
1308         * lyxfind.C (find): fix argument order in call to ::find
1309
1310 2004-02-02  André Pönitz  <poenitz@gmx.net>
1311
1312         * cursor.[Ch]: remove direct access to anchor
1313
1314         * text.C: remove findText() hack
1315
1316 2004-02-02  Alfredo Braunstein  <abraunst@lyx.org>
1317
1318         * iterators.[Ch] (lockPath): remove in favour of...
1319         * BufferView.[Ch] (setCursor): this addition
1320         * BufferView.C (putSelectionAt): adjust
1321         * undo.C (performUndoOrRedo): adjust
1322         * lyxfunc.C (dispatch): adjust
1323
1324 2004-02-02  Alfredo Braunstein  <abraunst@lyx.org>
1325
1326         * iterators.C (lockPath): add a missing slice
1327         * undo.C (performUndoOrRedo): remove redundant positioning code
1328
1329 2004-02-01  Lars Gullik Bjonnes  <larsbj@gullik.net>
1330
1331         * vc-backend.C (scanMaster): ";" -> ';'
1332
1333 2004-01-31  Lars Gullik Bjonnes  <larsbj@gullik.net>
1334
1335         * lyxtextclasslist.C (less_textclass_avail_desc): inherit from
1336         std::binary_function
1337
1338         * lyxtextclass.C (compare_name): rename to...
1339         (LayoutNamesEqual): ...this
1340
1341         * lyxlex_pimpl.C (compare_tags): inherit from
1342         std::binary_function, put back into anon namespace
1343
1344         * lyxfind.C (MatchString): inherig from std::binary_function
1345         (findChange): use empty() istead of !size()
1346
1347         * format.C (FormatNamesEqual): new functor
1348         (getFormat): use it
1349         (getNumber): use it
1350         (add): use it
1351         (erase): use it
1352         (setViewer): use it
1353
1354         * converter.C (compare_Converter): rename to...
1355         (ConverterEqual): ...this, and fixup a bit.
1356         (getConverter): use it, and make function const
1357         (getNumber): use it, and make function const
1358         (add): use it
1359         (erase): use it:
1360
1361         * bufferlist.C: add using boost::bind
1362
1363         * MenuBackend.C (MenuNamesEqual): new functor
1364         (hasMenu): use it, and make function const
1365         (hasSubmenu): use nested bind to get rid of compare_memfun.
1366
1367 2004-01-30  André Pönitz  <poenitz@gmx.net>
1368
1369         * BufferView_pimpl.C:
1370         * cursor.C:
1371         * cursor.h:
1372         * cursor_slice.[Ch]:
1373         * lyxfunc.C:
1374         * lyxtext.h:
1375         * paragraph_funcs.C:
1376         * paragraph_funcs.h:
1377         * rowpainter.C:
1378         * text.C:
1379         * text2.C:
1380         * text3.C: move some of the edit(x,y) handling to the insets
1381         some coordinate changes.
1382
1383 2004-01-28  Lars Gullik Bjonnes  <larsbj@gullik.net>
1384
1385         * text.C: add using statements for std::advance and std::distance
1386
1387         * paragraph.C: add using statement for std::distance
1388
1389         * lyxfind.C: add using statement for std::advance
1390
1391         * cursor.C (region): remove std:: from swap
1392         (openable): use nucleus in stead of operator->
1393
1394         * BufferView.C: add using statements for std::distance and std::swap
1395
1396 2004-01-27  Lars Gullik Bjonnes  <larsbj@gullik.net>
1397
1398         * iterators.C: Remove the pimple, move the needed structures to
1399         the header file. Create accessor for the positions stack.
1400         (asPosIterator): remove function
1401
1402         * PosIterator.C (PosIterator): move constructors to top of file
1403         (PosIterator): reimplement the constructor taking a ParIterator in
1404         terms of setFrom.
1405         (setFrom): new function
1406         (operator!=): inline it
1407
1408 2004-01-26  Lars Gullik Bjonnes  <larsbj@gullik.net>
1409
1410         * lyxfind.C (replaceAll): use std::advance
1411
1412         * iterators.h: inherit from std::iterator.
1413
1414         * PosIterator.C (advance, distance): remove
1415         * PosIterator.h: interit from std::iterator.
1416
1417 2004-01-26  André Pönitz  <poenitz@gmx.net>
1418
1419         * BufferView.[Ch]:
1420         * BufferView_pimpl.[Ch]:
1421         * InsetList.[Ch]:
1422         * PosIterator.[Ch]:
1423         * buffer.h:
1424         * bufferview_funcs.C:
1425         * cursor.[Ch]:
1426         * cursor_slice.h:
1427         * factory.[Ch]:
1428         * iterators.[Ch]:
1429         * lyxfind.C:
1430         * lyxfunc.C:
1431         * lyxtext.h:
1432         * output_docbook.C:
1433         * output_latex.C:
1434         * output_linuxdoc.C:
1435         * output_plaintext.C:
1436         * paragraph.[Ch]:
1437         * paragraph_funcs.[Ch]:
1438         * paragraph_pimpl.[Ch]:
1439         * rowpainter.C:
1440         * tabular.C:
1441         * tabular.h:
1442         * text.C:
1443         * text2.C:
1444         * text3.C: more IU:  dumps most of the rest of the mathcursor
1445     implementation into cursor.[Ch]; "globalize" a bit of it.
1446
1447 2004-01-25  Angus Leeming  <leeming@lyx.org>
1448
1449         * lyxfunc.C (dispatch): Dialogs::showSearch is no more.
1450
1451 2004-01-19  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1452
1453         * LaTeXFeatures.h: add nice_ and nice() const
1454         * buffer.[Ch]: remove niceFile(), use LaTeXFeatures::nice() instead
1455
1456 2004-01-20  André Pönitz  <poenitz@gmx.net>
1457
1458         * BufferView.[Ch]:
1459         * BufferView_pimpl.C:
1460         * PosIterator.C:
1461         * bufferview_funcs.C:
1462         * cursor.[Ch]:
1463         * cursor_slice.[Ch]:
1464         * factory.C:
1465         * iterators.C:
1466         * lyx_cb.C:
1467         * lyxfind.C:
1468         * lyxfunc.C:
1469         * lyxtext.h:
1470         * rowpainter.C:
1471         * text.C:
1472         * text2.C:
1473         * text3.C:
1474         * undo.[Ch]: lots of IU. Shift selection stuff from the BufferView to
1475           LCursor and mathcursor parts to LCursor and InsetBase.
1476
1477 2004-01-15  André Pönitz  <poenitz@gmx.net>
1478
1479         * cursor_slice.[Ch]: add a few covienience functions
1480
1481         * funcrequest.[Ch]: remove BufferView * member
1482
1483         * BufferView_pimpl.C:
1484         * cursor.C:
1485         * factory.[Ch]:
1486         * lyxfind.[Ch]:
1487         * lyxfunc.C:
1488         * lyxtext.h:
1489         * text3.C:
1490         * undo.[Ch]: adjust to this and changed signature of Inset::priv_dispatch()
1491
1492 2004-01-14  Alfredo Braunstein  <abraunst@lyx.org>
1493
1494         * text.C (getWord): fix getWord (and thus LFUN_WORDSEL)
1495         * text3.C (dispatch): fix LFUN_WORD{RIGHT,LEFT}SEL
1496
1497 2004-01-13  André Pönitz  <poenitz@gmx.net>
1498
1499         * textcursor.[Ch]:
1500         * lyxtext.h: hide cursor and selection anchor behind accessor function
1501
1502         * BufferView.C:
1503         * BufferView_pimpl.[Ch]:
1504         * PosIterator.C:
1505         * bufferview_funcs.C:
1506         * cursor.h:
1507         * lyxfind.C:
1508         * lyxfunc.C:
1509         * text.C:
1510         * text2.C:
1511         * text3.C:
1512         * undo.C: adjust
1513
1514         * cursor.h:
1515         * cursor_slice.[Ch]: some integer type changes for inset unification
1516
1517         * lyxcursor.[hC]: remove, it's CursorSlice now.
1518
1519         * Makefile.am:
1520         * BufferView_pimpl.[Ch]:
1521         * bufferview_funcs.C:
1522         * cursor_slice.C:
1523         * lyxtext.h:
1524         * text.C:
1525         * text2.C:
1526         * text3.C:
1527         * textcursor.[Ch]: adjust
1528
1529 2004-01-08  Alfredo Braunstein  <abraunst@lyx.org>
1530
1531         * text2.C (undoSpan): add and use
1532         * text.C (breakParagraph): use undoSpan (fix bug 578)
1533         * lyxtext.h: adjust
1534
1535 2004-01-08  Angus Leeming  <leeming@lyx.org>
1536
1537         * BufferView_pimpl.C (MenuInsertLyXFile):
1538         * lyx_cb.C (WriteAs, getContentsOfAsciiFile):
1539         * lyxfunc.C (menuNew, open, doImport):
1540         FileFilterList change to the FileDialog open and save functions.
1541
1542 2004-01-07  Lars Gullik Bjonnes  <larsbj@gullik.net>
1543
1544         * ShareContainer.h: make isEqual and isUnique adaptable
1545
1546         * CutAndPaste.C: make resetOwnerAndChanges adaptable
1547
1548 2004-01-07  Angus Leeming  <leeming@lyx.org>
1549
1550         * LyXAction.C:
1551         * lfuns.h: add LFUN_WORD_FIND and LFUN_WORD_REPLACE.
1552
1553         * BufferView_pimpl.C (dispatch): act on these LFUNs.
1554
1555         * lyxfind.[Ch] (find2string, replace2string, find, replace): new
1556         functions replacing find, replace and replaceAll.
1557
1558         * lyxfunc.C (dispatch): invoke LFUN_WORD_FIND from a call to
1559         LFUN_WORDFIND(FORWARD|BACKWARD).
1560
1561 2004-01-07  Alfredo Braunstein  <abraunst@lyx.org>
1562
1563         * text.C (breakParagraph): remove an outdated #warning
1564
1565 2004-01-07  André Pönitz  <poenitz@gmx.net>
1566
1567         * lyxfind.C: somewhat clearer logic
1568
1569         * text.C: prevent crash in cursorX on unitialized row cache
1570
1571 2004-01-07  Alfredo Braunstein  <abraunst@lyx.org>
1572
1573         * lyxcursor.[Ch] (operator>): add
1574         * textcursor.C (selStart, selEnd): use std::min and std::max
1575
1576 2004-01-06  Lars Gullik Bjonnes  <larsbj@gullik.net>
1577
1578         * Chktex.C: include boost/format.hpp
1579
1580 2004-01-05  Lars Gullik Bjonnes  <larsbj@gullik.net>
1581
1582         * InsetList.C: replace functor MathcIt with adaptable functor
1583         InsetTablePosLess
1584         (insetIterator): modify accordingly
1585
1586         * BranchList.h: move the BranchNamesEqual functor here from...
1587         * BranchList.C: ... to here
1588
1589         * BranchList.C: new BranchListEqual fuctor, use it. Remove
1590         SameName and match.
1591         (add): replace a finding loop with std::find_if.
1592
1593 2003-12-31  Martin Vermeer  <martin.vermeer@hut.fi>
1594
1595         * output_docbook.C: moving LatexParam functionality into
1596         .layout files
1597
1598 2003-12-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1599
1600         * buffer.C: increment format to 229.
1601
1602 2003-12-28  Michael Schmitt  <michael.schmitt@teststep.org>
1603
1604         * LaTeXFeatures.C:
1605         * lyx_sty.[Ch]: remove minipageindent_def
1606
1607         * LyXAction.C:
1608         * factory.C:
1609         * lfuns.h:
1610         * lyxfunc.C:
1611         * text3.C: remove LFUN_INSET_MINIPAGE
1612
1613 2003-12-28  Angus Leeming  <leeming@lyx.org>
1614
1615         * text3.C (dispatch): output useful info on receipt of LFUN_GETLAYOUT.
1616
1617 2003-12-19  Alfredo Braunstein  <abraunst@lyx.org>
1618
1619         * text2.C (setParagraph): fix off-by-one crash
1620
1621 2003-12-18  Martin Vermeer  <martin.vermeer@hut.fi>
1622
1623         * output_docbook.C: header stuff for AGU
1624
1625 2003-12-17  Alfredo Braunstein  <abraunst@lyx.org>
1626
1627         * text2.C (redoCursor): remove
1628         * text.C:
1629         * text3.C:
1630         * BufferView_pimpl.C: remove calls to redoCursor and
1631         setCursor(cursor.par(), cursor.pos()) all around
1632
1633 2003-12-15  Angus Leeming  <leeming@lyx.org>
1634
1635         * buffer.C: up the format to 228.
1636
1637 2003-12-15  André Pönitz  <poenitz@gmx.net>
1638
1639         * cursor_slice.[Ch]: new class to cover texted and mathed's cursor
1640         slices
1641
1642         * Makefile.am:
1643
1644         * BufferView_pimpl.C:
1645         * cursor.[Ch]:
1646         * lyxcursor.[Ch]:
1647         * rowpainter.[Ch]:
1648         * lyxtext.h:
1649         * text.C:
1650         * text2.C:
1651         * text3.C: adjust
1652
1653 2003-12-15  Angus Leeming  <leeming@lyx.org>
1654
1655         * metricsinfo.C (ColorChanger): use LColor::getFromLyXName rather
1656         than getFromGUIName to manipulate the color.
1657
1658 2003-12-14  Angus Leeming  <leeming@lyx.org>
1659
1660         * BranchList.[Ch]: minimize the API.
1661         (Branch::getBranch, getColor): now return a 'const &'.
1662         (Branch::setSelected) now returns a bool set to true if the
1663         selection status changes.
1664         (BranchList::clear, size, getColor, setColor, setSelected,
1665         allBranches, allSelected, separator): removed.
1666         (BranchList::find): new functions, returning the Branch with
1667         the given name.
1668         (BranchList::add, remove): return a bool indicating that
1669         the operation was successful.
1670
1671         * InsetList.C (insetsOpenCloseBranch): much simplified thanks to a
1672         new InsetBranch::isBranchSlected member function.
1673
1674         * LColor.[Ch]: mimimize the API.
1675         (fill): renamed as addColor and made private.
1676         (setColor, getGUIName, getX11Name, getLaTeXName): the overloaded
1677         versions of these functions taking a string arg have been removed.
1678
1679         * bufferparams.C (readToken):
1680         * lyxfunc.C (dispatch):
1681         * lyxrc.C (read): changes due to the altered BranchList and
1682         LColor APIs.
1683
1684         * factory.C (createInset, readInset): changes due to altered
1685         InsetBranch c-tor.
1686
1687 2003-12-14  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1688
1689         * factory.C:
1690         * lyxfunc.C: remove insetminipage. "minipage-insert"
1691         now produces a frameless minipage box inset.
1692
1693 2003-12-12  Alfredo Braunstein  <abraunst@lyx.org>
1694
1695         * textcursor.[Ch] (selStart,selEnd): add new methods
1696         remove selection::start, end, use LyXCursor::operator<
1697         * lyxcursor.[Ch] (operator<): add
1698         * BufferView_pimpl.[Ch]: add new struct xsel_cache_
1699         * BufferView.[Ch] (unsetXSel): add
1700         * text2.C (clearSelection): use unsetXSel,adjust
1701         * text.C: adjust
1702         * text3.C: adjust
1703         * rowpainter.C: adjust
1704         * bufferview_funcs.C (put_selection_at): adjust
1705
1706 2003-12-12  Alfredo Braunstein  <abraunst@lyx.org>
1707
1708         * BufferView_pimpl.C: small coord. correction
1709
1710 2003-12-12  Alfredo Braunstein  <abraunst@lyx.org>
1711
1712         * BufferView_pimpl.C (workAreaDispatch): avoid crashing when
1713         dragging over the splash screen.
1714
1715 2003-12-11  Angus Leeming  <leeming@lyx.org>
1716
1717         * BufferView_pimpl.C (dispatch): remove LFUN_INSET_APPLY code
1718         as it is now handled in LyXText::dispatch.
1719
1720         * text3.C (doInsertInset): remove a level of nesting.
1721
1722 2003-12-11  Angus Leeming  <leeming@lyx.org>
1723
1724         * factory.C (createInset): changes due to the changed interface to
1725         InsetCommandMailer::string2params.
1726
1727 2003-12-10  Angus Leeming  <leeming@lyx.org>
1728
1729         * lyxfunc.C (dispatch): enable all inset dialogs to be opened with
1730         'dialog-show-new-inset <inset name>'
1731
1732 2003-12-10  Angus Leeming  <leeming@lyx.org>
1733
1734         * buffer.C: up the format to 227.
1735
1736         * factory.C: the box inset is now identified simply by 'Box'.
1737
1738 2003-12-10  Angus Leeming  <leeming@lyx.org>
1739
1740         * buffer.C: up the format to 226.
1741
1742         * factory.C: the note inset is now identified simply by 'Note'.
1743
1744 2003-12-08  Alfredo Braunstein  <abraunst@libero.it>
1745
1746         * lyxtext.h, text2.C (setLayout): don't use cursor to iterate,
1747         when a pit is enough. Standarize a couple of loops.
1748
1749 2003-12-05  Angus Leeming  <leeming@lyx.org>
1750
1751         * lyxfunc.C (dispatch): DIALOG_SHOW now handles "latexlog" and
1752         "vclog" explicitly, passing the appropriate "<logtype> <filename>"
1753         data to the re-worked "log" dialog.
1754
1755 2003-12-03  André Pönitz  <poenitz@gmx.net>
1756
1757         * PosIterator.C:
1758         * iterators.C:
1759         * lyxtext.h:
1760         * output_latex.C:
1761         * paragraph_funcs.C:
1762         * text.C:
1763         * text2.C: use Inset::getText instead of Inset::getParagraph
1764
1765 2003-12-03  André Pönitz  <poenitz@gmx.net>
1766
1767         * buffer.[Ch]:
1768         * lyxtext.h:
1769         * paragraph_funcs.[Ch]: consolidate parts of Buffer::read() and
1770         InsetText::read() as LyXText::read()
1771
1772 2003-12-02  Angus Leeming  <leeming@lyx.org>
1773
1774         * lyxlex.[Ch] (operator void const *): add the 'const' to the return
1775         type. Add a comment in the implementation that the function uses
1776         the stream's bad() function rather than fail() as the std::streams
1777         would do.
1778
1779 2003-12-02  André Pönitz  <poenitz@gmx.net>
1780
1781         * lyxlex.[Ch]: make interface more similar to std::stream
1782
1783         * lyxlex_pimpl.[Ch]: don't use '__' in identifiers
1784
1785 2003-12-01  Martin Vermeer  <martin.vermeer@hut.fi>
1786
1787         * lyxtextclass.[Ch]: add latexparam to CharStyle inset
1788
1789 2003-12-01  Michael Schmitt  <michael.schmitt@teststep.org>
1790
1791         * vspace.[Ch]: remove VSpace::NONE
1792
1793 2003-12-01  André Pönitz  <poenitz@gmx.net>
1794
1795         * buffer.[Ch]:
1796         * lyxtext.h: move ParagraphList member to LyXText
1797         rename LyXText::ownerParagraphs to LyXText::paragraph
1798
1799         * CutAndPaste.C:
1800         * bufferview_funcs.C:
1801         * iterators.[Ch]:
1802         * lyx_cb.C:
1803         * paragraph.C:
1804         * rowpainter.C:
1805         * tabular.C:
1806         * text.C:
1807         * text2.C:
1808         * text3.C: adjust
1809
1810         * lyxfunc.C: move LFUN_INSET_TOGGLE handling to insets.
1811
1812         * undo.C: fix cursor positioning
1813
1814 2003-12-01  John Levon  <levon@movementarian.org>
1815
1816         * BufferView_pimpl.C: fix a crash on exit with
1817         a buffer open
1818
1819 2003-11-30  Martin Vermeer  <martin.vermeer@hut.fi>
1820
1821         * BranchList.C: fix setSelected() method.
1822
1823 2003-11-28  André Pönitz  <poenitz@gmx.net>
1824
1825         * ParagraphParameters.[Ch]:
1826         * ParameterStruct.h: remove space above/below from Paragraph to
1827          InsetVSpace
1828
1829         * BufferView_pimpl.C:
1830         * factory.C:
1831         * lyxfunc.C:
1832         * lyxtext.h:
1833         * output_latex.C:
1834         * paragraph.C:
1835         * paragraph_funcs.C:
1836         * rowpainter.[Ch]:
1837         * text.C:
1838         * text2.C:
1839         * text3.C: adjust
1840
1841 2003-11-28  Martin Vermeer  <martin.vermeer@hut.fi>
1842
1843         * factory.C: Syntax change for CharStyles
1844
1845 2003-11-28  André Pönitz  <poenitz@gmx.net>
1846
1847         * BufferView.[Ch]:
1848         * BufferView.[Ch]:
1849         * buffer.[Ch]:
1850         * buffer.[Ch]: move LyXText member
1851
1852 2003-11-28  André Pönitz  <poenitz@gmx.net>
1853
1854         * BufferView.[Ch]: make LyXText * text a private member
1855
1856         * BufferView_pimpl.C:
1857         * cursor.C:
1858         * iterators.C:
1859         * lyx_cb.C:
1860         * lyxfind.C:
1861         * lyxtext.h:
1862         * rowpainter.[Ch]:
1863         * text.C:
1864         * text2.C:
1865         * undo.C: adjust
1866
1867         * output_plaintext.C: cleanup
1868
1869 2003-11-27  Martin Vermeer  <martin.vermeer@hut.fi>
1870
1871         * buffer.C:
1872         * lyxtextclass.[Ch]: parametrize SGML document header
1873
1874 2003-11-27  Martin Vermeer  <martin.vermeer@hut.fi>
1875
1876         * converter.[Ch]:
1877         * exporter.C: replace bool-valued Pdflatex() by FLAVOR-valued
1878         getFlavor().
1879
1880 2003-11-27  Alfredo Braunstein  <abraunst@lyx.org>
1881
1882         * text2.C (setFont): rework using PosIterator (no more recursive)
1883         (setCharFont): no more needed
1884         (setLayout): no more selection cursors fiddling (done by redoCursor)
1885         * text.C: cursorRight(bv)->cursorRight(true) (TODO: find and
1886         destroy remaining ones)
1887
1888 2003-11-26  Alfredo Braunstein  <abraunst@lyx.org>
1889
1890         * bufferview_funcs.[Ch]: split changeDepthAllowed from changeDepth
1891         * lyxtext.h: ditto
1892         * text2.C: same thing + updateCounters fix + redoCursor also adjusts
1893         selection cursors
1894         * lyxfunc.C: adjust
1895         * text3.C: adjust + re-allow multi par depth changes
1896         * textcursor.C: simplify a bit
1897
1898 2003-11-25  Martin Vermeer  <martin.vermeer@hut.fi>
1899
1900         * src/buffer.C:
1901         * src/lyxlayout.C:
1902         * src/lyxlayout.h:
1903         * src/lyxtext.h:
1904         * src/output_docbook.C:
1905         * src/output_latex.C:
1906         * src/paragraph.C:
1907         * src/paragraph.h:
1908         * src/sgml.C:
1909         * src/sgml.h:
1910         * src/text2.C: Introducing a number of tags parametrizing various
1911         XML formats that we may want to support
1912
1913 2003-11-25  André Pönitz  <poenitz@gmx.net>
1914
1915         * InsetList.[Ch] (begein, end): inline as suggested by profiler
1916
1917         * lyxtext.h (leftMargin/rightMargin): simplify interface
1918
1919         * rowpainter.C:
1920         * text.C:
1921         * text2.C:
1922         * text3.C: adjust
1923
1924 2003-11-24  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1925
1926         * lyxfunc.C (dispatch): propogate the bibtex databases from the
1927         master file to any child files. Fixes bug 546.
1928
1929 2003-11-24  Alfredo Braunstein  <abraunst@lyx.org>
1930
1931         * lyxfind.C (findNextChange): remove unneeded bv->text->init call
1932
1933 2003-11-24  André Pönitz  <poenitz@gmx.net>
1934
1935         * rowpainter.C: simplification
1936
1937         * text2.C (updateCounters): remove call to redoParagraph on
1938         changed labels as this is far too expensive.
1939
1940 2003-11-24  Alfredo Braunstein  <abraunst@lyx.org>
1941
1942         * converter.C (convert): fix a crash: this function gets
1943         called with buffer == 0 from importer code.
1944
1945 2003-11-22  Lars Gullik Bjonnes  <larsbj@gullik.net>
1946
1947         * text3.C (cursorPrevious): make sure that we do not compare
1948         iterators form different containers.
1949         (cursorNext): ditto
1950
1951         * rowpainter.C (paintSelection): make sure that we do not compare
1952         iterators from different containers.
1953
1954         * text3.C (dispatch): [PRIOR] make sure that we do not compare
1955         iterators from different ParagraphList containers.
1956         [NEXT] ditto
1957
1958         * text2.C (LyXText): change order of initialization slightly
1959         (operator=): new function. copy all variables except cache_par_
1960         (moveUp): make sure that we do not compare iterators from
1961         different ParagraphList constainers.
1962         (moveDown): ditto
1963
1964         * text.C (firstPar): new function
1965         (lastPar): new function
1966         (endPar): new function
1967
1968         * lyxtext.h: move things around and group public functions, public
1969         variables, private functions, private variables
1970
1971 2003-11-21  Michael Schmitt  <michael.schmitt@teststep.org>
1972
1973         * factory.C: change call to InsetERT constructor to avoid
1974         additional invocation of method status
1975         * text2.C (toggleInset): remove redundant update() call
1976         * InsetList.[Ch] (insetsOpenCloseBranch): Pass Buffer reference
1977         instead of a Bufferview pointer
1978
1979 2003-11-21  André Pönitz  <poenitz@gmx.net>
1980
1981         * rowpainter.C: simplification
1982
1983 2003-11-21  Alfredo Braunstein  <abraunst@lyx.org>
1984
1985         * text3.C (dispatch): make possible to extend a word/row selection
1986         with the mouse
1987
1988 2003-11-21  Alfredo Braunstein  <abraunst@lyx.org>
1989
1990         * lyxtext.h: x0_,y0_ -> xo_,yo_
1991         * text2.C (cursorUp, cursorDown): adjust + some cursorRow use
1992         * text3.C (checkInsetHit): fix coordinates using absolute xo_,yo_
1993         * rowpainter.C (paintRows): paint full paragraphs
1994
1995 2003-11-20  Alfredo Braunstein  <abraunst@lyx.org>
1996
1997         * text2.C (cursorUp, cursorDown): small fix (insettext::edit takes
1998         screen coordinates)
1999
2000 2003-11-20  Alfredo Braunstein  <abraunst@lyx.org>
2001
2002         * lyxtext.h: add x0_, y0_
2003         * text3.C (cursorPrevious, cursorNext): rewrite (using x0_, y0_)
2004         * text2.C (cursorDown, cursorUp): rewrite (using x0_, y0_)
2005
2006 2003-11-18  Alfredo Braunstein  <abraunst@lyx.org>
2007
2008         * text2.C (setCursorIntern): move the x_target update here *
2009         * text3.C: change some bv() to true/false in calls to
2010         cursorUp/Down/Right/Left
2011         * cursor.C: use helper function.
2012
2013 2003-11-17  Alfredo Braunstein  <abraunst@lyx.org>
2014
2015         * BufferView_pimpl.C: send LFUN_MOUSE_MOTION to the cursor
2016         * paragraph_funcs.[Ch]: correct comment
2017         * rowpainter.C: do not paint selections away from bv->cursor()
2018         Fix a long standing selection painting bug.
2019         * text3.C: generalize mouse-selection code to LyXTexts other that
2020         top one
2021         * textcursor.C: do not use y coords if we can use par offsets
2022
2023 2003-11-17  Alfredo Braunstein  <abraunst@lyx.org>
2024
2025         * lyxfunc.C (dispatch): add a missing LCursor::updatePos (fix
2026         cursor position after e.g. inset insert)
2027
2028 2003-11-16  Alfredo Braunstein  <abraunst@lyx.org>
2029
2030         * lyxfind.C (replace): adjust to locking removal + some
2031         code simplification
2032
2033 2003-11-14  Alfredo Braunstein  <abraunst@lyx.org>
2034
2035         * cursor.C (dispatch): dispatch to BufferView::dispatch at the end
2036         of the path
2037
2038 2003-11-14  Martin Vermeer  <martin.vermeer@hut.fi>
2039
2040         * lyxlayout.[Ch]:
2041         * output_docbook.C: XML sanitation: new layout
2042         parameters InnerTag and CommandDepth
2043
2044 2003-11-13  Martin Vermeer  <martin.vermeer@hut.fi>
2045
2046         * BufferView_pimpl.C:
2047         * factory.C:
2048         * text3.C: Fix the insertion and modification of button-style
2049         insets
2050
2051 2003-11-13  André Pönitz  <poenitz@gmx.net>
2052
2053         * InsetList.[Ch]: remove deleteLyXText
2054
2055         * paragraph.[Ch]: cache beginOfBody position
2056
2057         * Bidi.C:
2058         * text.C:
2059         * text2.C:
2060         * text3.C: remove superfluous update() calls
2061
2062         * vspace.C: cleanup
2063
2064 2003-11-13  Alfredo Braunstein  <abraunst@lyx.org>
2065
2066         * BufferView_pimpl.C (fitCursor): call screen().fitCursor()
2067         * BufferView.C (fitLockedInsetCursor): remove
2068         * cursor.[Ch] (getDim): add
2069         * text.C (getRowNearY): add faster version
2070         * text3.C: remove some update calls
2071
2072 2003-11-12  Martin Vermeer  <martin.vermeer@hut.fi>
2073
2074         * LaTeXFeatures.C:
2075         * LyXAction.C:
2076         * MenuBackend.C:
2077         * MenuBackend.h:
2078         * dispatchresult.h:
2079         * factory.C:
2080         * lfuns.h:
2081         * lyxfunc.C:
2082         * lyxtextclass.C:
2083         * lyxtextclass.h:
2084         * text3.C: The Character Style /XML short element patch.
2085
2086 2003-11-11  Martin Vermeer  <martin.vermeer@hut.fi>
2087
2088         * text3.C:
2089         * factory.C: Small step to solving 'unable to insert some insets'
2090         problem
2091
2092 2003-11-11  Alfredo Braunstein  <abraunst@lyx.org>
2093
2094         * cursor.[Ch] (updatePos): new function for updating the y
2095         position of the tip inset
2096         * bufferview_funcs.C (put_selection_at):
2097         * BufferView_pimpl.C (workAreaDispatch): rationalise update calls
2098
2099 2003-11-11  André Pönitz  <poenitz@gmx.net>
2100
2101         * text.C: remove big comment on invalid Paragraph pointers as it is
2102         not valid anymore
2103
2104 2003-11-11  André Pönitz  <poenitz@gmx.net>
2105
2106         * text_funcs.[Ch]: merge with ...
2107
2108         * text.C: ... this
2109
2110         * lyxtext.h:
2111         * text2.C:
2112         * text3.C: adjust
2113
2114         * Makefile.am: remove text_funcs.[Ch]
2115
2116 2003-11-11  Alfredo Braunstein  <abraunst@libero.it>
2117
2118         * cursor.C (getPos): return absolute cached y coord
2119
2120         * BufferView_pimpl.C (fitCursor): new simplistic code
2121         (workAreaDispatch): add a fitCursor call
2122
2123 2003-11-10  André Pönitz  <poenitz@gmx.net>
2124
2125         * BufferView.[Ch]:
2126         * BufferView_pimpl.[Ch]: merge update() and updateInset()
2127
2128 2003-11-10  André Pönitz  <poenitz@gmx.net>
2129
2130         * lfuns.h: new LFUN_FINISHED_LEFT, LFUN_FINISHED_RIGHT,
2131         LFUN_FINISHED_UP, LFUN_FINISHED_DOWN used in dispatch to
2132         indicate that the cursor needs to leave an inset
2133
2134         * lyxtext.h: remove inset locking
2135
2136         * cursor.[Ch]: re-implement functionality provided by inset locking
2137
2138         * BufferView.[Ch]:
2139         * BufferView_pimpl.[Ch]:
2140         * LyXAction.C:
2141         * bufferview_funcs.[Ch]:
2142         * factory.C:
2143         * funcrequest.[Ch]:
2144         * iterators.C:
2145         * lyx_cb.C:
2146         * lyxfind.C:
2147         * lyxfunc.C:
2148         * text.C:
2149         * text2.C:
2150         * text3.C:
2151         * undo.C: adjust
2152
2153 2003-11-07  Alfredo Braunstein  <abraunst@libero.it>
2154
2155         * PosIterator.[Ch]: replace the stack with a vector, add inset
2156         accesor
2157         * iterators.[C]: adjust
2158
2159 2003-11-06  Alfredo Braunstein  <abraunst@libero.it>
2160
2161         * lyxfind.C (replaceAll): mark the buffer dirty if something was
2162         replaced
2163         * paragraph_funcs.C (readParToken): put the correct id in the
2164         error item, not the id of the top paragraph
2165
2166 2003-11-06  Alfredo Braunstein  <abraunst@libero.it>
2167
2168         * iterators.[Ch] (ParIterator): new PosIterator-based ctor
2169         * bufferview_funcs.C (put_selection_at): use the above
2170
2171 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
2172
2173         * text2.C (deleteEmptyParagraphMechanism): fix n-th crash
2174
2175 2003-11-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2176
2177         * output_linuxdoc.h:
2178         * output_plaintext.h:
2179         * output.h:
2180         * output_docbook.h: add #include statements
2181
2182 2003-11-05  José Matos  <jamatos@lyx.org>
2183
2184         * output_docbook.[Ch]:
2185         * output_latex.[Ch]:
2186         * output_linuxdoc.[Ch]:
2187         * output_plaintext.[Ch]: New files for output formats.
2188         * output.[Ch]: New file for helper functions.
2189
2190         * buffer.[Ch]:
2191         * paragraph_funcs.[Ch]: output functions moved to new files.
2192
2193         * outputparams.h: rename of latexrunparams.h
2194
2195         * LaTeX.[Ch]:
2196         * buffer.[Ch]:
2197         * bufferlist.[Ch]:
2198         * converter.[Ch]:
2199         * exporter.C:
2200         * paragraph.[Ch]:
2201         * paragraph_funcs.[Ch]:
2202         * paragraph_pimpl.[Ch]:
2203         * tabular.[Ch]: rename ascii to plaintext
2204         and LatexRunParams to OutputParams.
2205
2206 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
2207
2208         * iterators.[Ch] (text): require bv argument
2209         * undo.C (recordUndo):
2210         * lyxfunc.C (dispatch):
2211         * bufferview_funcs.C (put_selection_at): adjust
2212
2213 2003-11-05  João Luis M. Assirati  <assirati@fma.if.usp.br>
2214
2215         * lyxsocket.C: export variables XEDITOR and LYXSOCKET
2216
2217 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
2218
2219         * lyxfunc.C (dispatch): make LFUN_GOTO_PARAGRAPH work with deep
2220         nestings
2221
2222 2003-11-04  André Pönitz  <poenitz@gmx.net>
2223
2224         * cursor.[Ch]: restructure
2225
2226         * BufferView.[Ch]:
2227         * BufferView_pimpl.[Ch]: new LCursor cursor_ member
2228
2229         * iterators.[Ch] (asCursor): remove
2230
2231         * lfuns.h: remove LFUN_INSET_EDIT
2232
2233         * lyxfunc.C:
2234         * tabular.C:
2235         * text.C:
2236         * text2.C:
2237         * text3.C: use Inset::edit() instead of dispatch(LFUN_INSET_EDIT)
2238
2239 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
2240
2241         * lyxfind.[Ch]: complete overhaul
2242         * BufferView_pimpl.C:
2243         * lyxfunc.C: adjust
2244         * paragraph.[Ch] (insert): add
2245
2246 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
2247
2248         * BufferView.[Ch]:
2249         * lyxtext.h:
2250         * text.C: remove dead spellcheck code
2251
2252 2003-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
2253
2254         * dispatchresult.h: add a val setter
2255
2256         * cursor.C (dispatch): use a tempvar for data_[i]
2257
2258 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
2259
2260         * PosIterator.[Ch]: compile fix
2261
2262 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
2263
2264         * text.C (cursorPar): deactivate the cursor cache
2265
2266 2003-11-03  Alfredo Braunstein  <abraunst@libero.it>
2267
2268         * undo.C (performUndoOrRedo): fix cursor positioning with lockPath
2269
2270 2003-11-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
2271
2272         * text3.C (dispatch): adjust for new DisptchResult semantics.
2273
2274         * lyxfunc.C (dispatch): handle update when return from
2275         Cursor::dispatch, adjust for new DispatchResult semantics.
2276
2277         * dispatchresult.h: drop NOUPDATE from dispatch_result_t. Make
2278         DispatchResult(true) mean to not update. Add class functions for
2279         setting dispatched and update, as well as reading.
2280
2281         * cursor.C (dispatch): don't handle update here
2282
2283 2003-11-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
2284
2285         * trans_mgr.h: store t1_ and t2_ in scoped_ptr
2286         * trans_mgr.C: adjust
2287
2288         * paragraph_funcs.C (readParToken): exception safety
2289
2290         * lyxvc.h: store the vcs pointer in a scoped_ptr
2291         * lyxvc.C: adjust
2292
2293         * lyxsocket.C (serverCallback): exception safety
2294
2295         * lyx_cb.C (AutoSaveBuffer): make it return a auto_ptr
2296
2297         * ispell.C (clone): make it return a auto_ptr
2298
2299         * factory.C (createInset): exception safety
2300         (readInset): exception safety
2301
2302         * bufferlist.C (newBuffer): exception safety
2303
2304         * Thesaurus.C (Thesaurus): use initialization for aik_
2305
2306         * MenuBackend.C (expandToc): exception safety.
2307
2308 2003-11-03  André Pönitz  <poenitz@gmx.net>
2309
2310         * buffer.C:
2311         * buffer.h:
2312         * bufferview_funcs.C: remove getInsetFromId()
2313
2314         * lyxcursor.[Ch]:
2315         * BufferView.[Ch]: move x_fix from LyXCursor to BufferView
2316
2317         * lyxfunc.C:
2318         * text2.C:
2319         * text3.C: adjust
2320
2321 2003-11-03  Alfredo Braunstein  <abraunst@libero.it>
2322
2323         * PosIterator.C (distance, advance): new
2324         * bufferview_funcs.[Ch] (put_selection_at): new
2325         * iterators.[Ch] (lockPath): new
2326
2327 2003-11-02  Alfredo Braunstein  <abraunst@libero.it>
2328
2329         * iterators.[Ch] (asPosIterator): added
2330         * buffer.[Ch] (pos_iterator_begin, pos_iterator_end): added
2331         * PosIterator.[Ch]: added
2332
2333 2003-11-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2334
2335         * text3.C:
2336         * lyxfunc.C:
2337         * cursor.C (dispatch):
2338         * BufferView_pimpl.C (dispatch): adjust for DispatchResult changes
2339
2340         * dispatchresult.h: remove UNDISPATCHED, DISPATCHED and
2341         DISPATCHED_NOUPDATE from dispatch_result_t, add NONE. Add a
2342         contructor, add a class function dispatched. Remove operator>=
2343
2344 2003-11-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2345
2346         * debug.C: only use the default constructor for debugstream
2347         (lyxerr) here.
2348
2349         * main.C (main): include debug.h and setup the lyxerr streambuf
2350         here.
2351
2352 2003-10-31  José Matos  <jamatos@lyx.org>
2353
2354         * paragraph_funcs.C (addDepth, asciiParagraph): move from buffer.C
2355
2356         * buffer.[Ch] (writeFileAscii, makeLinuxDocFile, makeDocBookFile):
2357         * paragraph.[Ch] (simpleLinuxDocOnePar, simpleDocBookOnePar, asString):
2358         * paragraph_funcs.[Ch] (linuxdocParagraphs, docbookParagraphs):
2359         * paragraph_pimpl.C (simpleTeXSpecialC):
2360         * tabular.[Ch] (linuxdoc, docbookRow, docbook, ascii):
2361         add LatexRunParams argument.
2362
2363         * exporter.C (Export): change call accordingly.
2364
2365         * latexrunparams.h: add new member to take care of the other backends.
2366 2003-10-30  José Matos  <jamatos@lyx.org>
2367
2368         * buffer.C (makeLinuxDocFile, makeDocBookFile):
2369         * paragraph_funcs.[Ch] (linuxdocParagraphs, docbookParagraphs):
2370         factorise code for paragraph output.
2371         * buffer.[Ch]:
2372         * paragraph.[Ch] (simpleLinuxDocOnePar, simpleDocBookOnePar):
2373         move functions.
2374
2375 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
2376
2377         * text3.C (dispatch):
2378         * lyxfunc.C (dispatch):
2379         * cursor.C (dispatch):
2380         * BufferView_pimpl.C (dispatch): explict DispatchResult ctor fallout.
2381
2382         * dispatchresult.h: make the dispatch_result_t ctor explicit
2383
2384 2003-10-29  Martin Vermeer  <martin.vermeer@hut.fi>
2385
2386         * sgml.[Ch]:
2387         * buffer.C: small refactoring of docbook stuff
2388
2389 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
2390
2391         * dispatchresult.h: remove FINISHED_POP as FINISHED has the same
2392         meaning.
2393
2394 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
2395
2396         * dispatchresult.h: rename DISPATCHED_POP to FINISHED_POP, remove
2397         operator dispatch_result_t, and operators for == != and >=
2398
2399         * cursor.C (dispatch): adjust for operator dispatch_result_t
2400         removal. comment out call to update
2401
2402         * BufferView_pimpl.C (dispatch): dont implicit covert to bool
2403
2404 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
2405
2406         * text3.C:
2407         * text2.C:
2408         * text.C:
2409         * lyxtext.h:
2410         * lyxfunc.C:
2411         * cursor.C:
2412         * BufferView_pimpl.C: dispatch_result -> DispatchResult changes.
2413         (dispatch):
2414
2415         * dispatchresult.h: new file, DispatchResult broken out of
2416         insets/insetbase.h
2417
2418         * Makefile.am (lyx_SOURCES): add dispatchresult.h
2419
2420 2003-10-28  Alfredo Braunstein  <abraunst@libero.it>
2421
2422         * text.C (rowBreakPoint): put a hack inside #if 0
2423
2424 2003-10-28  André Pönitz  <poenitz@gmx.net>
2425
2426         * lyxtext.h:
2427         * metricsinfo.C:
2428         * paragraph_funcs.C:
2429         * rowpainter.C:
2430         * text.C:
2431         * text2.C: general cleanup (lots of small stuff)
2432
2433 2003-10-28  Alfredo Braunstein  <abraunst@libero.it>
2434
2435         * text2.C (cursorEnd): simple fix to the "end key goes to one
2436         before the end on last row" bug
2437
2438 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
2439
2440         * text.C (backspace): fix the "zombie characters"
2441
2442 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
2443
2444         * lyxfunc.C (dispatch): small fix to toc navigation inside branches
2445
2446 2003-10-27  André Pönitz  <poenitz@gmx.net>
2447
2448         * lfuns.h: new LFUN_REPEAT, LFUN_INSERT_LINE, LFUN_INSERT_PAGEBREAK
2449
2450         * factory.C: handle new InsetPagebreak, InsetLine
2451
2452         * ParagraphParameters.h: remove [line|pagebreak]_[above|below]
2453         and move handling into new InsetPagebreak, InsetLine
2454
2455         * BufferView_pimpl.C:
2456         * LyXAction.C:
2457         * ParagraphParameters.C:
2458         * ParameterStruct.h:
2459         * lyxfunc.C:
2460         * lyxtext.h:
2461         * paragraph.C:
2462         * paragraph.h:
2463         * paragraph_funcs.C:
2464         * paragraph_pimpl.C:
2465         * rowpainter.C:
2466         * text.C:
2467         * text2.C:
2468         * text3.C: adjust
2469
2470 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
2471
2472         * text.C:
2473         * lyxrow_funcs.[Ch]:
2474         * Bidi.C:
2475         * paragraph.C:
2476         * lyxtext.h:
2477         * rowpainter.C:
2478         * text2.C:
2479         * text3.C: remove lastPos uses in favour of Row::endpos
2480
2481 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
2482
2483         * undo.C (performUndoOrRedo): fix two crashes by setting a
2484         cursor by hand and reordering some calls. Use bv->lockInset instead
2485         of inset->edit because the latter loses cursor information
2486
2487 2003-10-25  Alfredo Braunstein  <abraunst@libero.it>
2488
2489         * text.C (prepareToPrint): fix linebreak rowbreaking as suggested
2490         by Martin
2491         (rowBreakPoint): fix width. change point to point + 1.
2492         Add a missing check.
2493
2494 2003-10-25  Martin Vermeer  <martin.vermeer@hut.fi>
2495
2496         * MenuBackend.C:
2497         * lyxfunc.C: fix (at least partly) the problems
2498         with the Nav menu and headers inside branch insets
2499         reported by Kayvan
2500
2501 2003-10-24  Alfredo Braunstein  <abraunst@libero.it>
2502
2503         * paragraph.C (getChar): add strong asserts
2504
2505         * lyxrow_funcs.C (lastPos): remove hideous hack
2506
2507         * text.C (addressBreakPoint, rowBreakPoint): put endpos in place
2508         (fill): adjust to that (avoid an infinite loop)
2509
2510 2003-10-23  Alfredo Braunstein  <abraunst@libero.it>
2511
2512         * text3.C (cursorPrevious, cursorNext): fix 2 "dontlikes"
2513
2514 2003-10-23  André Pönitz  <poenitz@gmx.net>
2515
2516         * RowList_fwd.h: change list<> to vector<> to gain speed
2517         after suggestion from Alfredo
2518
2519 2003-10-23  Alfredo Braunstein  <abraunst@libero.it>
2520
2521         * lyxtext.h: move the bidi stuff from here...
2522         * text.C: and here
2523         * text2.C: and here
2524         * Bidi.[Ch]: ... to here
2525
2526 2003-10-23  André Pönitz  <poenitz@gmx.net>
2527
2528         * lyxtext.h:
2529         * text.C (isLastRow, isFirstRow): new functions
2530
2531         * paragraph.h: new width cache member
2532
2533         * rowpainter.C: replace RowList::iterator with Row & where possible
2534
2535         * lyxfunc.C: replace several view()->text with a single call
2536
2537         * toc.C: fix 'unused' warning
2538
2539 2003-10-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
2540
2541         * lyxlex_pimpl.C (setFile,setStream): be sure to use correct types
2542         when woring with stream::pos_type
2543         * paragraph_pimpl.C (simpleTeXSpecialChars): ditto
2544
2545 2003-10-22  André Pönitz  <poenitz@gmx.net>
2546
2547         * lyxtext.h:
2548         * text.C: use Row & instead of RowList::iterator
2549
2550         * lyxrow.h: rename end() to endpos()
2551
2552         * rowpainter.C:
2553         * text.C:
2554         * text2.C: adjust
2555
2556 2003-10-22  Angus Leeming  <leeming@lyx.org>
2557
2558         * buffer.[Ch] (fully_loaded): new member function, returning true
2559         only when the file has been loaded fully.
2560         Used to prevent the premature generation of previews and by the
2561         citation inset to prevent computation of the natbib-style label.
2562
2563         * buffer_funcs.C (newFile): set Buffer::fully_loaded once the
2564         templates are all set up.
2565
2566         * factory.C (createInset): remove call to InsetCitation::setLoadingBuffer.
2567
2568 2003-10-22  Martin Vermeer  <martin.vermeer@hut.fi>
2569
2570         * text.C: fixed an "oops" in the "is a bit silly"
2571         bug fix
2572
2573 2003-10-21  André Pönitz  <poenitz@gmx.net>
2574
2575         * FuncStatus.[Ch]: small stuff, whitespace
2576
2577         * lyxfont.[Ch]: operator<<() for debug reasons
2578
2579         * lyxfunc.C:
2580         * lyxrow_funcs.C:
2581         * lyxtext.h: whitespace, spelling
2582
2583         * paragraph.C: naming of variables
2584
2585         * text.C:
2586         * text2.C: small stuff
2587
2588
2589 2003-10-21  Martin Vermeer  <martin.vermeer@hut.fi>
2590
2591         * text.C: (1) finish off the inset display() work;
2592         (2) fix the "is a bit silly" bug (accessing char
2593         past end of par).
2594
2595 2003-10-20  Martin Vermeer  <martin.vermeer@hut.fi>
2596
2597         * text.C: re-introduce display() for insets, fixing the
2598         various bugs (stretch of line above, math inset
2599         positioning, ...)
2600
2601 2003-10-20  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2602
2603         * text.C (rightMargin): remove spurious semicolon
2604
2605         * lengthcommon.C: add empty unit_name* entries for UNIT_NONE (bug
2606         1415)
2607
2608 2003-10-18  Martin Vermeer  <martin.vermeer@hut.fi>
2609
2610         * text3.C: fix one crash due to wrong cursor def
2611
2612 2003-10-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
2613
2614         * vc-backend.C (scanMaster): make the regex static
2615
2616         * LaTeX.C (scanAuxFile): make the regexs static
2617
2618         * text3.C (doInsertInset, dispatch, dispatch):
2619         * text2.C (cursorUp, cursorDown):
2620         * text.C (selectNextWordToSpellcheck):
2621         * BufferView_pimpl.C (dispatch):
2622         * lyxfunc.C (dispatch):  localDispatch -> dispatch
2623
2624 2003-10-14  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2625
2626         * lyxsocket.C: include <cerrno>
2627
2628 2003-10-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
2629
2630         * lyxfunc.C (dispatch): remove textcache stuff
2631
2632         * bufferlist.C (release): remove textcache stuff
2633         (closeAll): ditto
2634
2635         * TextCache.C: delete file
2636         * TextCache.h: delete file
2637
2638         * Makefile.am (lyx_SOURCES): delete TextCache.C and TextCache.h
2639
2640         * BufferView_pimpl.C (buffer): remove textcache stuff, add a
2641         delete of the bv_->text.
2642         (resizeCurrentBuffer): remove texcache stuff
2643         (workAreaResize): ditto
2644
2645 2003-10-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
2646
2647         * lyxfunc.C (getStatus): also set flag disabled if it is a unknown
2648         action.
2649
2650 2003-10-16  André Pönitz  <poenitz@gmx.net>
2651
2652         * lyxrow.[Ch]:
2653         * paragraph.h:
2654         * rowpainter.C:
2655         * text.C:
2656         * text2.C:
2657         * text3.C: speed up by storing y positions per paragraph plus per-row
2658         offset instead of having a 'full' y position in the row.
2659
2660 2003-10-15  André Pönitz  <poenitz@gmx.net>
2661
2662         * iterators.[Ch]:
2663         * iterators.[Ch]:
2664         * undo.[Ch]: make undo aware of inner insets
2665
2666 2003-10-14  Angus Leeming  <leeming@lyx.org>
2667
2668         * lyx_main.[Ch]: make LyX a singleton class, accessible though the new
2669         static member functions LyX::ref() and LyX::cref.
2670         (lastfiles): new accessor functions for the new lastfiles_ member var.
2671         (addLyXView, views_): add a new LyXView to the list of views_.
2672         (updateInset): loop over all LyXViews to call their own updateInset
2673         member function, returning a pointer to the Buffer owning the inset.
2674
2675         * BufferView_pimpl.C (loadLyXFile):
2676         * MenuBackend.C (expandLastfiles):
2677         * bufferlist.C (MenuWrite, QuitLyX):
2678         lastfiles is no longer a global variable.
2679         Access through LyX::ref().lastfiles(), LyX::cref().lastfiles().
2680
2681         * boost.C (emergencyCleanup): LyX::emergencyCleanup is no longer a
2682         static function. Access through LyX::cref().emergencyCleanup().
2683
2684 2003-10-14  André Pönitz  <poenitz@gmx.net>
2685
2686         * iterators.[Ch]: new direct access to innermost LyXText and Inset
2687
2688         * undo.[Ch]: restoring part of 'undo in insets'
2689
2690         * Makefile.am:
2691         * undo_funcs.[Ch]: merge with undo.[Ch]
2692
2693         * tabular.C: small cleansing stuff
2694
2695 2003-10-14  Alfredo Braunstein  <abraunst@libero.it>
2696
2697         * paragraph_funcs.C (readParToken): report unknown insets as error
2698         boxes. Use the outer paragraph as location (also for unknown
2699         tokens).
2700
2701         * factory.C (readInset): do not abort on reading an unknown inset.
2702         Eat it and return 0.
2703
2704 2003-10-13  Angus Leeming  <leeming@lyx.org>
2705
2706         * lyx_main.C (LyX): remove call to setDisplayTranslator().
2707
2708         * lyxrc.C: displayTranslator is now a function,
2709         declared in GraphicsTypes.h.
2710
2711 2003-10-13  Joao Luis Meloni Assirati <assirati@fma.if.usp.br>
2712
2713         * format.C: new placeholder $$a to pass the socket address.
2714
2715         * bufferlist.[Ch]: new function getBufferFromTmp.
2716
2717         * lyxfunc.C: Modification of LFUN_GOTOFILEROW so that it can handle
2718           files in the temporary dir.
2719
2720 2003-10-13  Joao Luis Meloni Assirati <assirati@fma.if.usp.br>
2721
2722         * lyxsocket.[Ch]: new files. A simple local socket interface for lyx.
2723
2724         * Makefile.am: add lyxsocket.[Ch].
2725
2726         * lyx_main.C (error_handler): handle SIGPIPE.
2727
2728 2003-10-13  André Pönitz  <poenitz@gmx.net>
2729
2730         * BufferView_pimpl.C:
2731         * lyxtext.h:
2732         * text.C:
2733         * text2.C:
2734         * text3.C:
2735         * undo_funcs.[Ch]: use paroffset_type instead of
2736           ParagraphList::iterators to prevent multiple conversion
2737           (and get a more robust interface)
2738
2739 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
2740
2741         * lyxfunc.C (dispatch): RESULT -> dispatch_result
2742         * lyxtext.h: ditto
2743         * text3.C (dispatch): ditto
2744
2745 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
2746
2747         * LaTeX.C (handleFoundFile): move the static to smaller scope,
2748         move the onlyfile, use onlyfile instead of foundfile in a couple
2749         of places.
2750
2751         * DepTable.C (update): flush the error stream a bit more
2752
2753 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
2754
2755         * lyxserver.C (callback): adjust
2756
2757         * lyxfunc.C (getStatus): add a missing brace in commented code
2758         (ensureBufferClean): reindent
2759         (dispatch): delete version taking a string
2760
2761 2003-10-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
2762
2763         * LaTeX.C (deplog): move found file handlig from here...
2764         (handleFoundFile): .. to new function here.
2765         (deplog): make sure to discover several files mentioned on the
2766         same log line.
2767
2768 2003-10-10  André Pönitz  <poenitz@gmx.net>
2769
2770         * lyxfunc.C:
2771         * lyxtext.h:
2772         * tabular.C:
2773         * text.C:
2774         * text2.C:
2775         * text3.C: fix some of the tabular crashes
2776
2777 2003-10-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
2778
2779         * MenuBackend.C (binding): put debug message into Debug::KBMAP
2780
2781         * lyxlex_pimpl.C (setFile): put debug messages into Debug::LYXLEX.
2782
2783 2003-10-09  André Pönitz  <poenitz@gmx.net>
2784
2785         * lyxcursor.h: use paroffset_type instead of ParagraphList::iterator
2786
2787         * BufferView.C:
2788         * BufferView_pimpl.C:
2789         * bufferview_funcs.C:
2790         * lyx_cb.C:
2791         * lyxcursor.C:
2792         * lyxfind.C:
2793         * lyxfunc.C:
2794         * lyxtext.h:
2795         * text.C:
2796         * text2.C:
2797         * text3.C:
2798         * text_funcs.[Ch]:
2799         * textcursor.[Ch]:
2800         * undo_funcs.C: adjust
2801
2802 2003-10-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
2803
2804         * text2.C (incrementItemDepth): new function, use a backtracking
2805         algorithm to discover the correct item depth.
2806         (resetEnumCounterIfNeeded): new function, use a backtracking
2807         algorithm to discover if counter reset is needed.
2808         (setCounter): use them. Simplify a bit. Add different labels for
2809         different item depths for itemize.
2810
2811         * paragraph.C (Paragraph): remove initialization of enumdepth
2812         (operator=): ditto
2813
2814         * paragraph.h: get rid of enumdepth, and use itemdepth both for
2815         enumerate and itemize. Change the type of itemdepth to signed char.
2816
2817 2003-10-08  André Pönitz  <poenitz@gmx.net>
2818
2819         * lyxtext.h: make the paragraphs_ a pointer instead a ref to make the
2820           thing assignable.
2821         * text.C:
2822         * text2.C: adjust
2823
2824         * tabular.[Ch]: fix crash after 'row-insert'
2825
2826 2003-10-08  Angus Leeming  <leeming@lyx.org>
2827
2828         Fix doxygen warnings.
2829
2830         * CutAndPaste.[Ch] (availableSelections). Now returns a const vector.
2831         Remove CutAndPaste:: prefix from header file declaration.
2832
2833         * LColor.h (fill): remove LColor:: prefix from declaration.
2834
2835         * buffer.C (readParagraph, simpleLinuxDocOnePar, simpleDocBookOnePar):
2836         use lyx::depth_type rather than Paragraph::depth_type so that
2837         header file and .C file match.
2838
2839         * converter.h (intToFormat): remove Converters:: prefix from declaration.
2840
2841         * Spacing.h: \file Spacing.h -> \file src/Spacing.h
2842         * aspell.C: \file aspell_local.C -> \file aspell.C
2843         * gettext.C: \file gettext.C -> \file src/gettext.C
2844         * gettext.h: \file gettext.h -> \file src/gettext.h
2845         * lyxfont.C: \file lyxfont.C -> \file src/lyxfont.C
2846         * lyxfont.h: \file lyxfont.h -> \file src/lyxfont.h
2847         * text.C: \file text.C -> \file src/text.C
2848
2849         * toc.C: move comment so that doxygen is not confused.
2850
2851 2003-10-07  Angus Leeming  <leeming@lyx.org>
2852
2853         * factory.C (createInset): InsetExternal::Params -> InsetExternalParams
2854
2855 2003-10-07  Jürgen Spitzmüller <j.spitzmueller@gmx.de>
2856
2857         * aspell.C:
2858         * aspell_local.h: add forgotten std::string's.
2859
2860 2003-10-07  Martin Vermeer <martin.vermeer@hut.fi>
2861
2862         * LaTeXFeatures.C:
2863         * LyXAction.C:
2864         * factory.C:
2865         * lfuns.h:
2866         * lyxfunc.C:
2867         * text3.C: The Box patch. Fancybox support, minipage, parbox
2868
2869 2003-10-07  Martin Vermeer <martin.vermeer@hut.fi>
2870
2871         * CutAndPaste.h:
2872         * DepTable.h:
2873         * FloatList.h:
2874         * LaTeXFeatures.h:
2875         * ParagraphParameters.h:
2876         * TextCache.h:
2877         * Thesaurus.h:
2878         * bufferlist.h:
2879         * exporter.h:
2880         * importer.h:
2881         * lastfiles.h:
2882         * lyxfind.h:
2883         * lyxfont.h:
2884         * lyxlex.h:
2885         * lyxtextclasslist.h:
2886         * messages.h:
2887         * paragraph.h:
2888         * paragraph_pimpl.C:
2889         * textcursor.h: add <string> and other small fixes to make Lars'
2890         std::string patch compile with STLport.
2891
2892 2003-10-06  Angus Leeming  <leeming@lyx.org>
2893
2894         * LColor.h: Add missing #include <string>.
2895
2896 2003-10-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
2897
2898         * All most all file in all subdirs: Make <string> be the prefered
2899         way of getting to std::string, add using declarations.
2900
2901 2003-10-06  André Pönitz  <poenitz@gmx.net>
2902
2903         * metricsinfo.C: initialize LyXFont before changing attribute.
2904         (fixes the 'math in \emph is upright' bug)
2905
2906 2003-10-06  André Pönitz  <poenitz@gmx.net>
2907
2908         * tabular.[Ch]: saner reinitialization, ret rid of LyXTabular::owner_
2909
2910 2003-10-06  Martin Vermeer  <martin.vermeer@hut.fi>
2911
2912         * graph.C:
2913         * paragraph_pimpl.C: Small fixes to build using STLport
2914
2915 2003-10-02  André Pönitz  <poenitz@gmx.net>
2916
2917         * lyxfunc.C:
2918         * text3.C: move handling of LFUN_DEPTH *; fix #1360
2919
2920 2003-10-01  André Pönitz  <poenitz@gmx.net>
2921
2922         * factory.C: assert early
2923
2924 2003-09-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
2925
2926         * lyx_main.C: remove the global debug object
2927
2928         * debug.h: adjust for new debugstream
2929
2930         * debug.C: adjust for new debugstream and keep the global debug
2931         object here.
2932
2933 2003-09-22  Angus Leeming  <leeming@lyx.org>
2934
2935         * paragraph_pimpl.h: add #include "lyxfont.h". Needed by earlier versions
2936         of g++ which otherwise complain that the scoped_ptr destructor can't delete
2937         an incomplete class LyXFont.
2938
2939 2003-09-22  Martin Vermeer  <martin.vermeer@hut.fi>
2940
2941         * factory.C: bug fix in branches
2942
2943 2003-09-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
2944
2945         * lyxfunc.C (processKeySym): adjust
2946         (dispatch): adjust
2947         (dispatch): change arg name from ev to func, adjust
2948         (sendDispatchMessage): ditto
2949
2950         * lyx_main.C (defaultKeyBindings): adjust keybindings
2951         (deadKeyBindings): ditto
2952
2953         * kbsequence.C (addkey): return a FuncRequest
2954
2955         * kbmap.h (kb_key): struct var FuncRequest instead of int action.
2956
2957         * kbmap.C (bind): take a FuncRequest as arg, adjust
2958         (read): adjust
2959         (lookup): adjust
2960         (defkey): change to take a FuncRequest as arg, adjust
2961         (findbinding): take a FuncRequest as arg, adjust.
2962
2963         * funcrequest.h (operator=): added
2964
2965         * funcrequest.C (FuncRequest): default kb_action changed from
2966         LFUN_UNKNOWN_ACTION to LFUN_NO_ACTION
2967
2968         * buffer.C (dispatch): simplify
2969         (dispatch): adjust to take a FuncRequest as arg, adjust
2970
2971         * boost.C (assertion_failed): change assertion message slightly
2972
2973         * ToolbarBackend.C (read): simplify
2974
2975         * MenuBackend.C (binding): adjust call to findbinding, add a
2976         message if no binding is found.
2977         (read): simplify
2978         (expandToc): correct by adding a empty FuncRequest
2979
2980         * LyXAction.C: include <boost/assert.hpp>
2981         (isPseudoAction): delete function
2982         (LookupFunc): change name to...
2983         (lookupFunc): this. change return type to FuncRequest.
2984         (getActionName): take kb_action as arg, simplify
2985         (funcHasFlag): add an assert, simplify.
2986
2987 2003-09-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
2988
2989         * toc.C (action): return a FuncRequest, simplify
2990
2991         * lyxfunc.C (processKeySym): adjust
2992         (getStatus): delete version that takes an int.
2993         (getStatus): adjust
2994         (dispatch): delete version that takes action as int
2995         (dispatch): adjust
2996         (sendDispatchMessage): simplify and adjust
2997
2998         * funcrequest.C (getArg): take unsigned int as arg
2999
3000         * ToolbarBackend.C (read): adjust
3001         (add): delete version that takes func as a string.
3002         (getIton): take a FuncRequest as arg
3003
3004         * MenuBackend.h (MenuItem): store a FuncRequest instead of an int
3005         action.
3006
3007         * MenuBackend.C (MenuItem): add a new construct that only takes a
3008         Kind, simplify the constructor use for submenus.
3009         (add): adjust
3010         (expandLastfiles): adjust
3011         (expandDocuments): adjust
3012         (expandFormats): adjust
3013         (expandFloatListInsert): adjust
3014         (expandFloatInsert): adjust
3015         (expandToc2,expandToc,expandPasteRecent,expandBranches): adjust
3016
3017         * LyXAction.h: remove typdefs pseudo_map, arg_item and arg_map.
3018         Remove class variables lyx_pseudo_map and lyx_arg_map
3019
3020         * LyXAction.C (searchActionArg): delete function
3021         (getPseudoAction): delete function
3022         (retrieveActionArg): delete function
3023         (LookupFunc): make it return kb_action, simplify.
3024         (getActionName): simplify
3025
3026         * factory.C (createInset): fix new bug
3027
3028 2003-09-19  Angus Leeming  <leeming@lyx.org>
3029
3030         * CutAndPaste.C (pasteSelection): remove fudge used to set the
3031         masterFilename_ parameter in the include inset.
3032
3033         * factory.C (createInset): changes due to the changes to InsetInclude.
3034
3035 2003-09-19  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
3036
3037         * paragraph.C: use appropriate alignment tags inside floats (bug 1290)
3038
3039 2003-09-18  Angus Leeming  <leeming@lyx.org>
3040
3041         * buffer.C:
3042         * BufferView.C: pass the buffer when calling Inset::getLabelList,
3043         Inset::fillWithBibKeys.
3044         * tabular.[Ch] (getLabelList): receive, pass on a Buffer const & arg.
3045
3046 2003-09-18  Angus Leeming  <leeming@lyx.org>
3047
3048         * LaTeXFeatures.[Ch]: append a '_' to the names of all private member
3049         variables.
3050         (ctor): pass and store a 'Buffer const &'
3051         (buffer): new member function.
3052
3053         * buffer.C (makeDocBookFile, makeLinuxDocFile, makeLaTeXFile): pass
3054         '*this' to the LaTeXFeatures ctor.
3055
3056 2003-09-18  Angus Leeming  <leeming@lyx.org>
3057
3058         * LColor.h:
3059         * lyxfont.C:
3060         * lyxfont.h:
3061         * lyxtext.h:
3062         * text.C: rename EnumLColor as LColor_color.
3063
3064 2003-09-18  Angus Leeming  <leeming@lyx.org>
3065
3066         * cursor.[Ch]: use the dispatch_result wrapper class DispatchResult to
3067         remove #include "insets/insetbase.h" from cursor.h.
3068
3069 2003-09-18  Angus Leeming  <leeming@lyx.org>
3070
3071         * paragraph.[Ch] (insetAllowed): use the InsetOld::Code wrapper class
3072         InsetOld_code to remove #include "inset.h".
3073
3074         * iterators.C: add #include "insets/inset.h"
3075
3076 2003-09-16  Martin Vermeer  <martin.vermeer@hut.fi>
3077
3078         * BufferView.C: remove more locking stuff that apparently doesn't
3079         do anything sensible.
3080
3081 2003-09-16  André Pönitz  <poenitz@gmx.net>
3082
3083         * paragraph.[Ch]:
3084         * paragraph_pimpl.[Ch]: un-pimpl Paragraph::(Pimpl::)text for a >10%
3085           performance boost.
3086
3087 2003-09-16  Angus Leeming  <leeming@lyx.org>
3088
3089         * lyxfont.h (LyXFont_size): a wrapper class for LyXFont::FONT_SIZE.
3090
3091         * paragraph.[Ch] (highestFontInRange): use LyXFont_size as function
3092         arg/return type.
3093
3094         * paragraph.h: remove #include "lyxfont.h". Forward declare
3095         LyXFont_size.
3096
3097 2003-09-16  Angus Leeming  <leeming@lyx.org>
3098
3099         * paragraph.C (IsInsetChar): new function in namespace anon, moved out
3100         of support/textutils.h.
3101         (isWord): move the contents of support/textutils.h's IsWordChar here.
3102
3103         * buffer.C:
3104         * lyxfind.C:
3105         * rowpainter.C:
3106         * text.C:
3107         * text2.C: add #include "paragraph.h".
3108
3109         * rowpainter.C:
3110         * text.C: replace IsInsetChar(c) with a direct test of Paragraph::META_INSET.
3111
3112 2003-09-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
3113
3114         * main.C:
3115         * lyx_main.C:
3116         * lyx_cb.C:
3117         * buffer.C:
3118         * LaTeX.C: use namespace alias for lyx::support::os
3119
3120 2003-09-16  Angus Leeming  <leeming@lyx.org>
3121
3122         * bufferparams.C:
3123         * bufferview_funcs.C:
3124         * factory.C:
3125         * lyxfunc.C:
3126         * paragraph_pimpl.C:
3127         * rowpainter.C:
3128         * text.C: add #include "LColor.h".
3129
3130 2003-09-16  Angus Leeming  <leeming@lyx.org>
3131
3132         * lyxfont.[Ch]: (setFamily, setSeries, setShape, setSize, setEmph,
3133         setUnderbar, setNoun, setNumber, setColor, setLanguage): no longer
3134         return LyXFont &.
3135         Store the FontBits::color variable as an int rather than as an
3136         LColor::colorso that we can move LColor.h out of the lyxfont.h header
3137         file.
3138
3139         * rowpainter.C (paintAppendixStart, paintPageBreak, paintLengthMarker):
3140         LyXFont::setColor, decSize no longer return a LyXFont &, so cannot
3141         string calls together.
3142
3143         * lyxrc.C: add #include "LColor.h".
3144
3145 2003-09-15  Angus Leeming  <leeming@lyx.org>
3146
3147         * bufferparams.[Ch]: store the pimpl_ as a copied_ptr, rather than as
3148         a cow_ptr.
3149
3150 2003-09-15  Angus Leeming  <leeming@lyx.org>
3151
3152         * LColor.h: add an EnumLColor wrapper for LColor::color.
3153
3154         * lyxfont.[Ch] (color, setColor, realColor):
3155         * lyxtext.h, text.C (backgroundColor):
3156         pass EnumLColor args to/from the functions, rather than LColor::color
3157         ones.
3158
3159         * lyxfont.h:
3160         * lyxtext.h: forward declare EnumLColor.
3161
3162         * lyx_main.C: add #include "LColor.h".
3163
3164 2003-09-15  Angus Leeming  <leeming@lyx.org>
3165
3166         * .cvsignore: add lyx-gtk.
3167
3168 2003-09-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
3169
3170         * Chktex.C
3171         * LaTeX.C
3172         * LaTeXFeatures.C
3173         * ParagraphParameters.C
3174         * Spacing.C
3175         * buffer.C
3176         * bufferparams.C
3177         * bufferview_funcs.C
3178         * chset.C
3179         * counters.C
3180         * funcrequest.C
3181         * lyxfont.C
3182         * lyxgluelength.C
3183         * lyxlength.C
3184         * paragraph.C
3185         * paragraph_funcs.C
3186         * text3.C
3187         * vc-backend.C: remove usage of STRCONV
3188
3189 2003-09-15  Angus Leeming  <leeming@lyx.org>
3190
3191         * rowpainter.C (paintLengthMarker, paintPageBreak, paintAppendixStart):
3192         explicitly define the color passed to the painter.
3193
3194 2003-09-15  Angus Leeming  <leeming@lyx.org>
3195
3196         * bufferparams.C (BufferParams): reorder member initializers to avoid
3197         compiler warning.
3198
3199 2003-09-15  Alfredo Braunstein  <abraunst@libero.it>
3200
3201         * CutAndPaste.C (pasteSelection): remove an outdated #warning
3202         * text.C (updateRowPositions): remove an unusual nop
3203
3204 2003-09-12  André Pönitz  <poenitz@gmx.net>
3205
3206         * BufferView_pimpl.C:
3207         * Bullet.C:
3208         * layout.h:
3209         * lyxfunc.C:
3210         * lyxlayout.[Ch]:
3211         * lyxtextclass.C:
3212         * rowpainter.C:
3213         * text.C:
3214         * text2.C:
3215         * Counters.[Ch]: finish the 'automatic counters' job
3216
3217 2003-09-12  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
3218
3219         * aspell.C: include <boost/assert.cpp> (compile fix)
3220
3221 2003-09-10  Rob Lahaye  <lahaye@snu.ac.kr>
3222
3223         * boost.C (assertion_failed): use lyx::support::abort instead of
3224         assert.
3225
3226 2003-09-10  Angus Leeming  <leeming@lyx.org>
3227
3228         * Makefile.am (lyx_SOURCES): replace ParagraphList.h and RowList.h
3229         with their _fwd progeny.
3230
3231 2003-09-09  Angus Leeming  <leeming@lyx.org>
3232
3233         134 files throughtout the source tree: replace 'using namespace abc;'
3234         directives with the appropriate 'using abc::xyz;' declarations.
3235
3236 2003-09-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
3237
3238         * boost.C (emergencyCleanup): moved here from LAssert.c
3239         (assertion_failed): new function, called by BOOST_ASSERT
3240
3241         * several files: change Assert to BOOST_ASSERT
3242
3243 2003-09-09  Angus Leeming  <leeming@lyx.org>
3244
3245         * buffer.[Ch]: Add an Impl class and move Buffer's member
3246         variables into it. As a result move several header files out of
3247         buffer.h.
3248
3249         Add header files to lots of .C files all over the tree as a result.
3250
3251 2003-09-09  Angus Leeming  <leeming@lyx.org>
3252
3253         * buffer.[Ch]: make Buffer's member variables private. Add
3254         accessor functions.
3255
3256         Lots of changes all over the tree as a result.
3257
3258 2003-09-08  Angus Leeming  <leeming@lyx.org>
3259
3260         * graph.C: #include <config.h>.
3261
3262 2003-09-08  Angus Leeming  <leeming@lyx.org>
3263
3264         * BranchList.C:
3265         * BufferView.C:
3266         * BufferView_pimpl.C:
3267         * CutAndPaste.C:
3268         * DepTable.C:
3269         * LaTeX.C:
3270         * LaTeXFeatures.C:
3271         * LyXAction.C:
3272         * MenuBackend.C:
3273         * TextCache.C:
3274         * aspell.C:
3275         * buffer.C:
3276         * bufferlist.C:
3277         * changes.C:
3278         * chset.C:
3279         * converter.C:
3280         * counters.C:
3281         * debug.C:
3282         * graph.C:
3283         * ispell.C:
3284         * lyx_cb.C:
3285         * lyxfind.C:
3286         * lyxfunc.C:
3287         * lyxlex_pimpl.C:
3288         * lyxrc.C:
3289         * lyxrow.C:
3290         * paragraph.C:
3291         * rowpainter.C:
3292         * texrow.C:
3293         * text.C:
3294         * text2.C:
3295         * toc.C: remove redundant using directives.
3296
3297 2003-09-07  Angus Leeming  <leeming@lyx.org>
3298
3299         * LaTeXFeatures.h: remove #include "support/types.h".
3300         * ToolbarBackend.h: remove #include <algorithm>.
3301         * changes.h: remove #include <ctime>.
3302         * debug.h: remove #include <iosfwd>.
3303         * graph.h: remove #include "support/std_string.h".
3304         * lyx_main.h: remove #include <csignal>.
3305         * lyxlex_pimpl.h: remove #include <fstream>.
3306         * sgml.h: remove #include <algorithm>, <utility>.
3307         * toc.h: remove #include "support/std_ostream.h".
3308         Add #include <iosfwd>.
3309
3310 2003-09-07  Angus Leeming  <leeming@lyx.org>
3311
3312         * vspace.[Ch] (length): returns a const & to a LyXGlueLength.
3313
3314         * converter.h: forward declare LatexRunParams.
3315         * encoding.h: remove #include "lyxrc.h".
3316         * lyxtext.h: remove #include "LColor.h".
3317         * lyxtextclass.h: remove #include "support/types.h".
3318         * trans.h: remove #include "tex-accent.h".
3319         * trans_mgr.h: remove #include "tex-accent.h".
3320         * insets/inset.h: remove #include "support/types.h", <vector>.
3321         * insets/insetcollapsable.h: remove #include "LColor.h".
3322         * insets/insetinclude.h: remove #include "dimension.h".
3323         * insets/insetlatexaccent.h: remove #include "dimension.h".
3324         * insets/insetoptarg.h:: remove #include "insettext.h".
3325         * insets/insettext.h: remove #include "dimension.h",
3326         <boost/shared_ptr.hpp>
3327
3328         * insets/renderers.h: add #include "dimension.h".
3329         * insets/updatableinset.h: add #include "support/types.h".
3330
3331         * many .C files: Associated changes.
3332
3333 2003-09-06  Angus Leeming  <leeming@lyx.org>
3334
3335         * Bullet.[Ch]: factorize all those #ifdef ENABLE_ASSERTIONS to just
3336         one, inside testInvariant.
3337
3338         * PrinterParams.C: new file.
3339         * PrinterParams.[Ch]: move the function bodies out of line.
3340
3341 2003-09-06  Angus Leeming  <leeming@lyx.org>
3342
3343         * ParagraphParameters.h: forward declare ParameterStruct rather than
3344         including its header file.
3345         (depth): moved out-of-line.
3346
3347 2003-09-06  Angus Leeming  <leeming@lyx.org>
3348
3349         * BufferView_pimpl.h:
3350         * kbmap.h:
3351         * kbsequence.h:
3352         * lyxfunc.h: forward declare LyXKeySym rather than
3353         #include "frontends/LyXKeySym.h".
3354
3355         * BufferView_pimpl.C:
3356         * kbmap.C:
3357         * kbsequence.C:
3358         * lyxfunc.C: associated changes.
3359
3360 2003-09-06  Angus Leeming  <leeming@lyx.org>
3361
3362         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
3363         As a result, can remove the #include "insets/inset.h" from BufferView.h
3364
3365 2003-09-06  Angus Leeming  <leeming@lyx.org>
3366
3367         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
3368         As a result, can remove the #include "insets/inset.h" from BufferView.h
3369
3370 2003-09-06  Angus Leeming  <leeming@lyx.org>
3371
3372         * buffer_funcs.C:
3373         * buffer.h:
3374         * bufferlist.C:
3375         * BufferView.C:
3376         * bufferview_funcs.C:
3377         * BufferView_pimpl.C:
3378         * CutAndPaste.C:
3379         * lyx_cb.C:
3380         * lyxfunc.C:
3381         * paragraph.h:
3382         * ParagraphParameters.C:
3383         * tabular.C:
3384         * text3.C:
3385         * toc.C:
3386         * undo_funcs.C:
3387         * frontends/controllers/ControlDocument.C:
3388         * insets/insetcaption.C: rearrange the #includes into some sort of
3389         coherent order.
3390
3391         * buffer.h: remove #includes ErrorList.h, undo.h
3392
3393 2003-09-06  Angus Leeming  <leeming@lyx.org>
3394
3395         * support/types.h: add a 'depth_type' typedef, used to store the
3396         nesting depth of a paragraph.
3397
3398         * paragraph.h:
3399         * ParameterStruct.h: use this lyx::depth_type typedef rather than
3400         defining explicitly.
3401
3402         * buffer.h:
3403         * paragraph_funcs.h:
3404         * ParagraphParameters.h:
3405         * sgml.h: use lyx::depth_type rather than Paragraph or
3406         ParameterStruct's depth_type.
3407
3408         * buffer.h
3409         * paragraph_funcs.h: no need to #include paragraph.h anymore.
3410
3411         * BufferView.C:
3412         * BufferView_pimpl.C:
3413         * CutAndPaste.C:
3414         * ParagraphParameters.C:
3415         * buffer_funcs.C:
3416         * bufferlist.C:
3417         * bufferview_funcs.C:
3418         * lyx_cb.C:
3419         * lyxfunc.C:
3420         * tabular.C:
3421         * text3.C:
3422         * toc.C:
3423         * undo_funcs.C:
3424         * frontends/LyXView.C:
3425         * frontends/controllers/ControlDocument.C:
3426         * frontends/controllers/ControlErrorList.C:
3427         * insets/insetbibitem.C:
3428         * insets/insetbranch.C:
3429         * insets/insetcaption.C:
3430         * insets/insetcollapsable.C:
3431         * insets/insetenv.C:
3432         * insets/insetert.C:
3433         * insets/insetfloat.C:
3434         * insets/insetfoot.C:
3435         * insets/insetfootlike.C:
3436         * insets/insetnewline.C:
3437         * insets/insetquotes.C:
3438         * insets/insettabular.C:
3439         * insets/insettext.C:
3440         * insets/insetwrap.C: must now explicitly #include "paragraph.h".
3441
3442         * frontends/controllers/ControlChanges.C: #include "changes.h".
3443
3444 2003-09-06  Angus Leeming  <leeming@lyx.org>
3445
3446         * ParagraphList_fwd.h: new file, forward-declaring Paragraph rather
3447         than #including paragraph.h.
3448
3449         * ParagraphList.h:
3450         * RowList.h: deleted. Superfluous.
3451
3452         * CutAndPaste.h:
3453         * iterators.h:
3454         * lyxcursor.h:
3455         * lyxtext.h:
3456         * text_funcs.h:
3457         * undo.h:
3458         * undo_funcs.h:
3459         * insets/inset.h:
3460         * insets/insettext.h: use ParagraphList_fwd.h rather than
3461         ParagraphList.h.
3462
3463         * paragraph.h: don't forward declare ParagraphList.
3464
3465         * buffer.h:
3466         * paragraph_funcs.h: #include ParagraphList_fwd.h and paragraph.h
3467         rather than ParagraphList.h. paragraph.h is still needed for the
3468         Paragraph::depth_type parameters.
3469
3470         * textcursor.h: enable it to compile stand-alone in light of the
3471         above changes.
3472
3473         * bufferview_funcs.C:
3474         * iterators.C:
3475         * lyxfunc.C:
3476         * lyxrow_funcs.C:
3477         * paragraph.C:
3478         * rowpainter.C:
3479         * text.C:
3480         * text2.C:
3481         * text3.C:
3482         * text_funcs.C:
3483         * textcursor.C:
3484         * undo.C:
3485         * frontends/controllers/ControlParagraph.C:
3486         * frontends/controllers/ControlTabular.C:
3487         * insets/insetmarginal.C:
3488         * insets/insetminipage.C:
3489         * insets/insetnote.C:
3490         * insets/insetoptarg.C: add header files needed to compile again.
3491
3492 2003-09-06  Angus Leeming  <leeming@lyx.org>
3493
3494         * RowList_fwd.h: new file, forward-declaring Row rather than
3495         #including lyxrow.h.
3496
3497         * lyxrow_funcs.h:
3498         * lyxtext.h:
3499         * paragraph.h:
3500         * insets/insettext.h: use it instead of RowList.h
3501
3502         * bufferview_funcs.C:
3503         * lyxfunc.C:
3504         * lyxrow_funcs.C:
3505         * paragraph.C:
3506         * rowpainter.C:
3507         * text.C:
3508         * text2.C:
3509         * text3.C: #include "RowList.h".
3510
3511 2003-09-05  Angus Leeming  <leeming@lyx.org>
3512
3513         * factory.C (createInset):
3514         * vspace.C (c-tor): replace sscanf call with an istringstream.
3515         * ispell.C: re-add missing HP/UX headers.
3516         * lyxserver.C: re-add missing  os2 headers.
3517
3518 2003-09-05  Martin Vermeer  <martin.vermeer@hut.fi>
3519
3520         * BranchList.C:
3521         * graph.C:
3522         * ispell.C:
3523         * lastfiles.C:
3524         * lyx_cb.C:
3525         * lyxserver.C:
3526         * texrow.C:
3527         * text3.C: re-add missing system headers, needed for 2.95.2.
3528
3529 2003-09-05  Angus Leeming  <leeming@lyx.org>
3530
3531         Changes most place everywhere due to the removal of using directives
3532         from support/std_sstream.h.
3533
3534 2003-09-05  Angus Leeming  <leeming@lyx.org>
3535
3536         Replace LString.h with support/std_string.h,
3537         Lsstream.h with support/std_sstream.h,
3538         support/LIstream.h with support/std_istream.h,
3539         support/LOstream.h with support/std_ostream.h.
3540
3541         Changes resulting throughout the tree.
3542
3543 2003-09-05  Angus Leeming  <leeming@lyx.org>
3544
3545         * sgml.h: ensure that the header file can be compiled stand-alone.
3546         * *.C: strip out redundant #includes. (320 in total.)
3547
3548 2003-09-04  Angus Leeming  <leeming@lyx.org>
3549
3550         * LaTeXFeatures.C (getMacros): move the output of the preamble_snippets
3551         here (from getPackages).
3552
3553         * debug.[Ch]: add a new EXTERNAL tag.
3554
3555 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
3556
3557         * text2.C (cursorEnd): simplify
3558         (setCursor): adjust
3559         (getColumnNearX): adjust
3560
3561         * text.C (computeBidiTables): adjust
3562         (fill): adjust
3563
3564         * rowpainter.C (paintChars): adjust
3565         (paintSelection): adjust
3566         (paintChangeBar): adjust
3567         (paintText): adjust
3568
3569         * lyxrow_funcs.C (lastPrintablePos): remove, all users now call
3570         lastPos instead.
3571         (numberOfSeparators): adjust
3572
3573 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
3574
3575         * LyXAction.C:
3576         * box.[Ch]:
3577         * lfuns.h:
3578         * lyxfunc.C:
3579         * text3.C: Restricts the mouse click functionality
3580         of insets like bibtex, include, toc and floatlist to the visible
3581         button, and allows the use of LFUN_INSET_SHOW_DIALOG to bring
3582         up the dialogs. Cursor has to be in front of the inset (i.e.
3583         start of row) for this to function.
3584
3585 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
3586
3587         * bufferview_funcs.C (currentState): output row information
3588
3589 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
3590
3591         * bufferview_funcs.C (currentState): output paragraph position
3592
3593 2003-09-04  Angus Leeming  <leeming@lyx.org>
3594
3595         * FloatList.h: move out #include "Floating.h".
3596         * LaTeX.h: move out #include "DepTable.h".
3597         * LyXAction.h: move out #include "funcrequest.h".
3598         * buffer.h: move out #include "author.h", "iterators.h".
3599         * bufferparams.h: move out #include "LaTeXFeatures.h", "texrow.h".
3600         * lyx_main.h: move out #include "errorlist.h".
3601         * lyxfunc.h: move out #include "FuncStatus.h".
3602         * lyxtext: move out #include "lyxcursor.h".
3603         * paragraph_pimpl.h: move out #include "counters.h".
3604
3605 2003-09-03  Angus Leeming  <leeming@lyx.org>
3606
3607         * LaTeXFeatures.[Ch]: replace the externalPreambles string with a
3608         preamble_snippets list, enabling us to add snippets to the preamble
3609         only if the snippet was not there already.
3610
3611 2003-09-04  Angus Leeming  <leeming@lyx.org>
3612
3613         * Chktex.C, converter.C, lyx_cb.C: add #include "support/lyxlib.h".
3614
3615 2003-09-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
3616
3617         * lyxfunc.C (dispatch): if fitCursor did something be sure to
3618         update
3619
3620 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
3621
3622         * BranchList.C: point fix, earlier forgotten
3623
3624 2003-09-02  Angus Leeming  <leeming@lyx.org>
3625
3626         * box.C (contains): renamed from 'contained' after a fantastic
3627         amount of hot air.
3628
3629 2003-09-02  John Levon  <levon@movementarian.org>
3630
3631         * BufferView.C:
3632         * lyxcursor.h:
3633         * lyxcursor.C:
3634         * lyxfunc.C:
3635         * lyxfunc.h: remove cursor.i[x]y(), it no longer differs
3636
3637 2003-09-02  John Levon  <levon@movementarian.org>
3638
3639         * text2.C: simplification of cursorEnd(), including partial
3640         fix for bug 1376
3641
3642 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
3643
3644         * buffer.C (readFile): add a space
3645
3646 2003-09-02  Alfredo Braunstein  <abraunst@libero.it>
3647
3648         * BufferView_pimpl.C (update): remove bogus fitCursor() call
3649
3650 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
3651
3652         * buffer.C (readFile): new function, take a filename and a
3653         ParagraphList::iterator
3654         (readFile): adjust
3655         (readFile): adjust, make it private. don't use setStream, make
3656         lyx2lyx use a temporary file. Some simplificaton. Make the Alerts
3657         always contain the filename.
3658
3659         * BufferView.C (insertLyXFile): simplify and make it work for
3660         gzipped files.
3661
3662 2003-08-30  John Levon  <levon@movementarian.org>
3663
3664         * Makefile.am: fix dist (from Kayvan)
3665
3666 2003-08-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
3667
3668         * most files: change to use const Buffer refs
3669
3670 2003-08-27  André Pönitz  <poenitz@gmx.net>
3671
3672         * BufferView.[Ch]: remove getParentText, implement getParentLanguage
3673         on top of ownerPar().
3674
3675 2003-08-27  John Levon  <levon@movementarian.org>
3676
3677         * funcrequest.C: properly initialise POD members
3678
3679 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
3680
3681         * lyxtext.h (top_y): move top_y from here
3682         * text.C:
3683         * text2.C:
3684         * text3.C:
3685         * BufferView.[Ch]:
3686         * BufferView_pimpl.[Ch]: to here
3687         * frontends/screen.C:
3688         * insets/insettabular.C:
3689         * insets/insettext.C: adjust
3690         * rowpainter.[Ch] (paintRows): remove LyXText & argument
3691
3692 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
3693
3694         * BufferView.[Ch]:
3695         * BufferView_pimpl.[Ch] (updateInset): add an InsetOld * argument
3696
3697 2003-08-26  André Pönitz  <poenitz@gmx.net>
3698
3699         * paragraph_func.[Ch] (outerPar): new function
3700
3701         * paragraph.C:
3702         * paragraph_funcs.C:
3703         * paragraph_funcs.h:
3704         * paragraph_pimpl.C:
3705         * text2.C: remove Inset::par_owner
3706
3707 2003-08-25  Martin Vermeer  <martin.vermeer@hut.fi>
3708
3709         * lyxrow_funcs.C:
3710         * lyxtext.h:
3711         * text.C:
3712         * text2.C: eliminates the needFullRow/display() stuff
3713         altogether, putting the logic in metrics/draw in the insets.
3714
3715 2003-08-25  Alfredo Braunstein  <abraunst@libero.it>
3716
3717         * text2.C (redoParagraphInternal, redoParagraphs):
3718         * text.C (redoParagraph): add a call to updateRowPositions at the
3719         end of each 'metrics-like' call. Remove all others.
3720         (getRow): remove the 'y-computing' version.
3721         (getRowNearY): do not compute nor return the real y. Solve the
3722         'y < 0' problem and simplify.
3723
3724 2003-08-22  Angus Leeming  <leeming@lyx.org>
3725
3726         * *.[Ch]: clean-up of licence and author blurbs.
3727         Also move config.h out of a few .h files and into a few .C files.
3728
3729 2003-08-22  André Pönitz  <poenitz@gmx.net>
3730
3731         * lyxrow.[Ch]: add x_ and *fill_ members
3732
3733         * lyxtext.h:
3734         * text.C:
3735         * rowpainter.C:
3736         * text2.C: adjust/remove prepareToPrint() calls
3737
3738 2003-08-22  André Pönitz  <poenitz@gmx.net>
3739
3740         * lyxrow.[Ch]: add  end_ member
3741
3742         * lyxrow_funcs.C: use LyXRow::end_
3743
3744         * lyxtext.h (singleWidth): add LyXFont parameter
3745
3746         * rowpainter.C:
3747         * text2.C: adjust LyXText::singleWidth() calls
3748
3749         * text.C (redoParagraph): simplify row breaking logic
3750
3751
3752 2003-08-19  André Pönitz  <poenitz@gmx.net>
3753
3754         * funcrequest.C: initialize button_ member
3755
3756         * text3.C:
3757         * rowpainter.[Ch]: interface consolidation
3758
3759 2003-08-18  André Pönitz  <poenitz@gmx.net>
3760
3761         * BufferView.C:
3762         * BufferView_pimpl.C:
3763         * lyxfind.C:
3764         * paragraph_funcs.C:
3765         * rowpainter.C:
3766         * text3.C: remove LyXScreen::draw() and fitCursor calls
3767
3768         * BranchList.h: remove spurious semicolons
3769
3770         * MenuBackend.C: fix branchlist related crash
3771
3772 2003-08-17  Martin Vermeer  <martin.vermeer@hut.fi>
3773
3774         * BranchList.[Ch]:
3775         * InsetList.[Ch]:
3776         * LColor.[Ch]:
3777         * LyXAction.C:
3778         * Makefile.am:
3779         * MenuBackend.[Ch]:
3780         * bufferparams.[Ch]:
3781         * factory.C:
3782         * lfuns.h:
3783         * lyxfunc.C:
3784         * text3.C: implements the 'branch inset'
3785         idea. This allows the output of various versions of a document
3786         from a single source version, selectively outputing or suppressing
3787         output of parts of the text.
3788         This implementation contains a 'branch list editor' in a separate
3789         tab of the document settings dialog. Branches are user definable
3790         and have a "display colour" to distinguish them on-screen.
3791
3792         ColorHandler was somewhat cleaned up.
3793         (1) make possible a dynamically growing LColor list by allowing
3794         the graphic context cache to grow along (vector);
3795         (2) eliminate an IMHO unnecessary step in colour allocation.
3796
3797 2003-08-15  Kayvan A. Sylvan <kayvan@sylvan.com>
3798
3799         * BufferView_pimpl.C: compile fix
3800
3801 2003-08-15  André Pönitz  <poenitz@gmx.net>
3802
3803         * rowpainter.C: remove extra metrics calls
3804
3805         * lyxtext.h: merge the two constructors into a single one,
3806           pass reference to owner's par list
3807
3808         * BufferView_pimpl.C:
3809         * text.C:
3810         * text2.C: adjust
3811
3812 2003-08-15  André Pönitz  <poenitz@gmx.net>
3813
3814         * lyxrow_funcs.[Ch]:
3815         * lyxtext.h:
3816         * paragraph.h:
3817         * paragraph_funcs.C:
3818         * rowpainter.C:
3819         * text.C:
3820         * text2.C:
3821         * text3.C:
3822         * text_funcs.C: split LyXText::rowlist_ into individual
3823         Paragraph::rows_ chunks
3824
3825         * BufferView.[Ch]:
3826         * BufferView_pimpl.[Ch]:
3827         * lyxfind.C:
3828         * lyxtext.h:
3829         * text3.C: remove toggleSelection()
3830
3831 2003-08-12  Michael Schmitt  <michael.schmitt@teststep.org>
3832
3833         * bufferlist.C: beautify two alerts (shorter text of buttons)
3834         * buffer.C: Remove redundant ' ' from message
3835         * tabular.h:
3836         * tabular.C: rename LYX_VALIGN_CENTER" to LYX_VALIGN_MIDDLE";
3837         rename M_VALIGN_CENTER to M_VALIGN_MIDDLE;
3838         rename VALIGN_CENTER to VALIGN_MIDDLE
3839
3840 2003-08-11  André Pönitz  <poenitz@gmx.net>
3841
3842         * lyxtext.h (getPar):
3843         * text.C: new function
3844
3845 2003-08-11  André Pönitz  <poenitz@gmx.net>
3846
3847         * Makefile.am:
3848         * tracer.[Ch]: remove unneeded files
3849
3850         * InsetList.[Ch]: remove resizeInsetsLyXText()
3851
3852         * lyxtext.h:
3853         * text.C:
3854         * text2.C:
3855         * text3.C: merge insertParagraphs() and appendParagraph()
3856         remove breakAgain(), update()
3857
3858         * BufferView_pimpl.[Ch]:
3859         * bufferview_funcs.[Ch]:
3860         * lyxfunc.C:
3861         * paragraph.[Ch]:
3862         * rowpainter.C:
3863         * tabular.C: adjust after text & InsetList changes.
3864
3865 2003-08-08  André Pönitz  <poenitz@gmx.net>
3866
3867         * text.C (insertChar, backspace): replace rowlist fiddling
3868         with rebreak of full par
3869
3870         * lyxtext.h:
3871         * text.C (breakAgainOneRow, redoHeightOfParagraph,
3872         checkParagraph, updateInset): removed
3873
3874 2003-08-07  André Pönitz  <poenitz@gmx.net>
3875
3876         * paragraph.C:
3877         * text3.C: merge some LFUN handlers, remove dead code
3878
3879 2003-08-06  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3880
3881         * .cvsignore: add lyx-xforms, lyx-qt, version.C-tmp and stamp-version
3882
3883 2003-08-05  Alfredo Braunstein  <abraunst@libero.it>
3884
3885         * text2.C (DEPM): fix part of bug 1255 and 1256
3886
3887 2003-08-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3888
3889         * BufferView_pimpl.C (workAreaDispatch): change to use
3890         LyXView::dispatch instead of BufferView::Pimpl::dispatch for lfuns
3891         that are no mouse related.
3892
3893 2003-08-05  André Pönitz  <poenitz@gmx.net>
3894
3895         * BufferView.[Ch]:
3896         * BufferView_pimpl.[Ch]:
3897         * bufferview_funcs.C:
3898         * text2.C:
3899         * text3.C: rip out "deep update"
3900
3901         * textcursor.[Ch] (last_sel_cursor): remove unused member
3902
3903 2003-08-04  André Pönitz  <poenitz@gmx.net>
3904
3905         * BufferView.[Ch]:
3906         * BufferView_pimpl.[Ch]:
3907         * ParagraphParameters.C:
3908         * bufferview_funcs.C:
3909         * lyx_cb.C:
3910         * lyxfind.C:
3911         * lyxfunc.C:
3912         * text.C:
3913         * text2.C:
3914         * text3.C: replace "complicated" BufferView::update(...) calls with
3915         simpler ones.
3916
3917         * BufferView.[Ch]: remove now unneeded BufferView::UpdateCodes
3918
3919 2003-08-02  Kayvan Sylvan  <kayvan@sylvan.com>
3920
3921         * Makefile.am (lyx_SOURCES): add paper.h
3922
3923 2003-08-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3924
3925         * Makefile.am: move things around so that both lyx-qt and
3926         lyx-xforms can be built (according to --with-frontend). Then lyx
3927         is a symbolic link to lyx-[firstfrontend]
3928
3929 2003-08-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
3930
3931         * Always use std::endl with lyxerr
3932
3933 2003-08-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
3934
3935         * BufferView_pimpl.C: _Always_ use std::endl with lyxerr
3936
3937 2003-08-01  André Pönitz  <poenitz@gmx.net>
3938
3939         * BufferView.[Ch]:
3940         * BufferView_pimpl.[Ch]:
3941         * lyxfunc.C:
3942         * text3.C: merge BufferView::repaint() and BufferView::update()
3943
3944 2003-08-01  José Matos  <jamatos@lyx.org>
3945
3946         * buffer.[Ch]: file_format is no longer a buffer data element.
3947
3948 2003-08-01  André Pönitz  <poenitz@gmx.net>
3949
3950         * BufferView.C:
3951         * lyxtext.h:
3952         * text.C:
3953         * text2.C: make redoParagraph more independent of current cursor
3954
3955         * lyxtext.h (need_update, needUpdate, postPaint, clearPaint):
3956         * text.C:
3957         * text2.C: remove unneeded members
3958
3959 2003-07-30  André Pönitz  <poenitz@gmx.net>
3960
3961         * paragraph.[Ch] (copyIntoMinibuffer): removed unused function
3962
3963         * paragraph.[Ch] (cutIntoMinibuffer, insertFromMinibuffer):
3964           create a single function...
3965
3966         * paragraph_funcs.C (moveItem): ... here.
3967
3968         * text.C:
3969           lyxtext.h (LyXText::workWidth(InsetOld*)) remove. unused.
3970
3971 2003-07-30  Martin Vermeer  <martin.vermeer@hut.fi>
3972
3973         * LColor.[Ch]: Add comment and greyedout logical colors.
3974
3975 2003-07-30  André Pönitz  <poenitz@gmx.net>
3976
3977         * tabular.C: don't use Assert too heavily. This crashes where it
3978           shouldn't
3979
3980 2003-07-30  Alfredo Braunstein  <abraunst@libero.it>
3981
3982         * lyxfunc.C (dispatch): do not mark the buffer dirty if the action
3983         is disabled (bug 1232)
3984
3985 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
3986
3987         * factory.C: limited 'arg' scope
3988
3989 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
3990
3991         * factory.C: fixed Note submenu issues
3992
3993 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
3994
3995         * factory.C: submenu for Note/Comment/Greyedout
3996
3997 2003-07-29  Alfredo Braunstein  <abraunst@libero.it>
3998
3999         * lyx_main.C (LyX):
4000         * BufferView_pimpl.C (loadLyXFile): fix to bugs 1287 and 1297 + ws
4001
4002 2003-07-29  Martin Vermeer  <martin.vermeer@hut.fi>
4003
4004         * LaTeXFeatures.C:
4005         * lyx_sty.[Ch]:h: Implement a newenvironment in preamble for
4006         greyedout. Patch provided by Jürgen Spitzmüller.
4007
4008 2003-07-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4009
4010         * kbmap.C (read): fix error message when reading bind files
4011
4012 2003-07-29  Angus Leeming  <leeming@lyx.org>
4013
4014         * BufferView.[Ch] (ChangeCitationsIfUnique): This function most
4015         certainly does not do what it purports to do. I am doing it, and
4016         us, a favour by killing it.
4017
4018 2003-07-28  José Matos  <jamatos@lyx.org>
4019
4020         * buffer.C (readBody, do_writeFile):
4021         * paragraph.C(readParagraph): \end_document replaces \the_end.
4022
4023 2003-07-29  André Pönitz  <poenitz@gmx.net>
4024
4025         * BufferView.[Ch]:
4026         * BufferView_pimpl.[Ch]:
4027         * lyxfunc.C:
4028         * text2.C:
4029         * text3.C:
4030         * textcursor.[Ch]: remove toggleToggle & Co
4031
4032 2003-07-28  José Matos  <jamatos@fep.up.pt>
4033
4034         * buffer.C (readParagraph):
4035         * params_func (readParToken, readParagraph):
4036         * paragraph.C (write): \layout -> \begin_layout.
4037
4038 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
4039
4040         * lyxlex_pimpl.C (setFile): clean up slightly.
4041
4042         * bufferparams.h: add compressed var
4043
4044         * buffer_funcs.C (readFile): adjust for LyXLex change
4045         (newFile): ditto + simplify
4046
4047         * buffer.C (writeFile): handle writing of compressed files
4048
4049         * buffer.[Ch] (readFile): begin LyXLex here, remove one argument.
4050         Check if the file is compressed and set a bufferparm if so.
4051
4052         * Makefile.am (lyx_LDADD): remove explicit -lz
4053
4054 2003-07-28  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4055
4056         * buffer.C (do_writeFile, makeLaTeXFile, makeLinuxDocFile,
4057         makeDocBookFile): put the real LyX version in the first line of
4058         the file
4059
4060         * version.h:
4061         * version.C.in: remove lyx_docversion
4062
4063         * tabular.C (write_attribute): add a template-based version to
4064         write enums properly
4065
4066 2003-07-28  André Pönitz  <poenitz@gmx.net>
4067
4068         * lyxtext.h:
4069         * text.C:
4070         * text2.C:
4071         * text3.C: use doubles again for x-coordinates. They are needed.
4072
4073 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
4074
4075         * messages.C (getLocaleDir): use lyx_localedir()
4076
4077         * lyxlex_pimpl.C (setFile): compress stuff
4078
4079         * buffer.C (writeFile): add some compression stuff
4080         (do_writeFile): new func, dont call expliti close... will this
4081         breake anything?
4082
4083         * Makefile.am (lyx_LDADD): add -lz
4084
4085 2003-07-28  José Matos  <jamatos@fep.up.pt>
4086
4087         * buffer.C: increment file format.
4088         * paragraph_funcs (readParagraph, readParToken):
4089         * paragraph.C (readParagraph): add \end_layout.
4090
4091 2003-07-27  Angus Leeming  <leeming@lyx.org>
4092
4093         * Makefile.am: remove special casing for configure-time setting of
4094         LYX_DIR, TOP_SRCDIR and LOCALEDIR.
4095
4096         * lyx_main.C (init): remove all Jean-Marc's magic setting of
4097         system_lyxdir, build_lyxdir and user_lyxdir into the support lib.
4098
4099 2003-07-26  André Pönitz  <poenitz@gmx.net>
4100
4101         * paragraph_func.[Ch]:
4102         * paragraph.C (realizeFont): inline it whereever it is used
4103
4104         * rowpainter.C:
4105         * text.C:
4106         * text2.C:
4107         * text3.C: remove Buffer * parameter from a bunch of get*Font functions
4108
4109
4110 2003-07-26  André Pönitz  <poenitz@gmx.net>
4111
4112         *       lyxtext.h:
4113         * text.C:
4114         * text2.C: get rid of LyXText::need_break_row
4115
4116 2003-07-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
4117
4118         * toc.[Ch]: put namespace toc inside namespace lyx
4119
4120         * MenuBackend.C (expandToc2): adjust for lyx::toc
4121         (expandToc): ditto
4122
4123         * lyxfunc.C (dispatch): adjust for lyx::find
4124
4125         * lyxfind.[hC]: get rid of namespace lyxfind introduce namespace
4126         lyx::find instead. Reorganize a bit.
4127         (LyXReplace): rename to replace
4128         (LyXFind): rename to find
4129
4130         * BufferView_pimpl.C (trackChanges): adjust for lyx::find
4131         (dispatch): ditto
4132
4133 2003-07-26  André Pönitz  <poenitz@gmx.net>
4134
4135         * text.C (setHeightOfRow): restrict scope of temporary variable
4136
4137         * paragraph_funcs.C (readParToken): remove USE_CAPTION  compatibility
4138           code (never has been used?)
4139
4140 2003-07-27  Asger Alstrup  <alstrup@local>
4141
4142         * text.C (fill): Optimise algorithm to exploit that we can reuse
4143         the LyXFont for many characters.
4144         (setHeightOfRow): Same thing.
4145         (rowBreakPoint): Same thing.
4146
4147 2003-07-26  Asger Alstrup  <alstrup@local>
4148
4149         * text2.C (metrics): change a brain-dead algorithm to a smarter one.
4150
4151         * text.C (singleWidth): Spurious font copying in hot-spot
4152         singleWidth avoided. Reorder tests for arabic for efficiency.
4153
4154         * text.C (fill): handle empty paragraphs better.
4155
4156 2003-07-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4157
4158         * ispell.C:
4159         * encoding.h: add includes
4160
4161         * lyxrc.C: remove reading of bind files
4162
4163         * lyx_main.C (init): setup bindings and menus only if we have a
4164         gui.
4165
4166         * kbmap.C (read): new method. Do the actual reading of bind
4167         files.
4168
4169         * converter.C (dvipdfm_options):
4170         * bufferparams.C:
4171         * lyxrc.C (read):
4172         (output): adapt PAPER_* enums.
4173
4174         * lyxrc.h: include paper.h instead of bufferparams.h (mucho lighter)
4175
4176         * bufferparams.h: remove paper-related enums from there
4177
4178         * paper.h: New file. A trivial header file to hold paper-related
4179         enums. It should later expand to contain many paper-related
4180         horrors access.
4181
4182         * lyxrc.C: declare extern displayTranslator
4183
4184 2003-07-27  José Matos  <jamatos@fep.up.pt>
4185
4186         * tabular.[Ch] (linuxdoc): add support for tables and figures
4187         (linuxdoc).
4188
4189 2003-07-27  José Matos  <jamatos@fep.up.pt>
4190
4191         * buffer.[Ch] (makeLaTeXFile): changed name of arguments for
4192         consistency in both functions.
4193         * bufferlist.C (updateIncludedTeXfiles): change client to comply.
4194
4195 2003-07-26  Asger Alstrup  <alstrup@local>
4196
4197         * rowpainter.C (paintRows): Change algorithm to work directly on
4198         the insets rather than asking every character in the document
4199         whether its an inset.
4200
4201 2003-07.26  Alfredo Braunstein  <abraunst@libero.it>
4202
4203         * buffer.C (openFileWrite): factorize some code
4204
4205 2003-07-26  Angus Leeming  <leeming@lyx.org>
4206
4207         * lyx_cb.C:
4208         * lyx_main.[Ch]: replace occurances of system_tempdir with
4209         os::getTmpDir().
4210
4211 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
4212
4213         * rename Inset to InsetOld
4214
4215 2003-07-25  Asger Alstrup  <alstrup@diku.dk>
4216
4217         * undo_funcs.h: Removed setCursorParUndo to simplify things a bit.
4218         Renamed setUndo family to recordUndo. Renamed FINISH to ATOMIC
4219         which I think is a bit clearer. EDIT is gone, since it was
4220         premature optimisation, and broken for mathed anyway.
4221         * undo_funcs.C (performUndoOrRedo): Cleaned up and made it work
4222         with cursor positioning in insets as well (math insets still do not
4223         work, but that's a different story anyway.) It mysteriously
4224         crashes sometimes with undo in the first paragraph, but I'm fairly
4225         confident that this is a compiler bug.
4226
4227 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
4228
4229         * paragraph.C (Paragraph): adjust for new clone return type
4230         (operator==): ditto
4231         (copyIntoMinibuffer): ditto
4232
4233 2003-07-25  Asger Alstrup  <alstrup@lyx.org>
4234
4235         * undo_funcs.C (textHandleUndo): Fix undo crash in first paragraph
4236         by not having a special case, and always doing a full rebreak of
4237         the document after undo.
4238
4239 2003-07-23  Angus Leeming  <leeming@lyx.org>
4240
4241         * factory.C (createInset): InsetExternal::setParams now takes a
4242         Buffer const * arg.
4243
4244 2003-07-23  Angus Leeming  <leeming@lyx.org>
4245
4246         * factory.C (createInset): changed interface to the external and
4247         graphics mailers' string2params functions.
4248
4249 2003-07-23  Angus Leeming  <leeming@lyx.org>
4250
4251         * factory.C (createInset): pass a
4252         Buffer const * parameter to InsetExternalMailer's string2params.
4253
4254 2003-07-22  John Levon  <levon@movementarian.org>
4255
4256         * Thesaurus.h: include the right aiksaurus header
4257
4258 2003-07-21  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4259
4260         * MenuBackend.C (expand): check menu shortcuts unconditionally
4261
4262 2003-07-21  Angus Leeming  <leeming@lyx.org>
4263
4264         * factory.C (createInset): pass a
4265         buffer_path parameter to InsetGraphicsMailer's string2params.
4266
4267 2003-07-21  Angus Leeming  <leeming@lyx.org>
4268
4269         * BufferView_pimpl.C (buffer):
4270         * buffer.C (d-tor):
4271         * lyx_main.C (LyX):
4272         * lyxfunc.C (dispatch):
4273         * lyxrc.C (setDefaults, read, output): use namespace lyx::graphics
4274         rather than the grfx shortcut.
4275
4276 2003-07-21  André Pönitz  <poenitz@gmx.net>
4277
4278         * rowpainter.C: remove unused variables
4279
4280         * tabular_funcs.C:
4281         * tabular_funcs.h: move to tabular.C
4282         * Makefile.am: adjust
4283
4284         * tabular.[Ch]: basic optical cleaning
4285
4286         * author.h: pass references, not values
4287
4288 2003-07-18  André Pönitz  <poenitz@gmx.net>
4289
4290         * lyxtext.h:
4291         * metricsinfo.C:
4292         * metricsinfo.h:
4293         * rowpainter.C:
4294         * text.C:
4295         * text2.C:
4296         * text3.C: two-phase drawing for InsetText and InsetTabular
4297         some float -> int changes.
4298
4299 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
4300
4301         * lyx_main.C: fix the fix
4302
4303 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
4304
4305         * lyx_main.C: fix a crash in batch mode if no files specified
4306         * converter.C: ws
4307
4308 2003-07-17  Alfredo Braunstein  <abraunst@libero.it>
4309
4310         * format.[Ch] (papersize): moved to BufferParams
4311         * converter.[Ch] (dvips_options): moved to BufferParams
4312         (dvipdfm_options): moved to anon namespace
4313         * bufferparams.[Ch]: added above functions.
4314
4315 2003-07-17  André Pönitz  <poenitz@gmx.net>
4316
4317         * lyxtext.h:
4318         * rowpainter.C:
4319         * text2.C: don't call inset->update() anymore
4320
4321         * metricsinfo.[Ch]: add convenience constructor
4322
4323 2003-07-16  André Pönitz  <poenitz@gmx.net>
4324
4325         * lyxcursor.[Ch]:
4326         * lyxfunc.[Ch]:
4327         * text.C:
4328         * text2.C: replace the LyXCursor::irow_ member with
4329          on-demand computation of the value
4330
4331 2003-07-16  John Levon  <levon@movementarian.org>
4332
4333         * lyxfunc.C: support LFUN_INSET_SETTINGS for Note
4334
4335 2003-07-15  André Pönitz  <poenitz@gmx.net>
4336
4337         * text.C:
4338         * text2.C: remove no more needed refresh_row
4339
4340 2003-07-15  André Pönitz  <poenitz@gmx.net>
4341
4342         * lyxtext.h:
4343         * rowpainter.C:
4344         * text2.C:
4345         * text3.C: refresh_status tristate -> need_update bool
4346
4347 2003-07-15  Alfredo Braunstein  <abraunst@libero.it>
4348
4349         * lyxtext.h (init): remove reinit argument (act as if always true)
4350         * text2.C: adjust to that
4351
4352 2003-07-14  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
4353
4354         * bufferview_funcs.[Ch]: introduce function replaceSelection()
4355         * text3.C: use it to delete selections in some cases
4356         (bugs 441, 673, 702, 954).
4357
4358 2003-07-14  André Pönitz  <poenitz@gmx.net>
4359
4360         * rowpainter.[Ch]: reduce interface
4361
4362 2003-07-14  André Pönitz  <poenitz@gmx.net>
4363
4364         * BufferView_pimpl.C:
4365         * text2.C: adjust after removing unused BufferView * argument
4366
4367 2003-07-14  Alfredo Braunstein  <abraunst@libero.it>
4368
4369         * text2.C (init): fix a crash fired on resize
4370
4371 2003-07-11  Alfredo Braunstein  <abraunst@libero.it>
4372
4373         * buffer.[Ch]: added new closing signal
4374         * BufferView_pimpl.[Ch]: connect/disconnect to new signal
4375         * lyxfunc.C: removed BufferView::buffer(0) call now handled in
4376         BufferView::Pimpl via the closing the signal
4377
4378 2003-07-10  Alfredo Braunstein  <abraunst@libero.it>
4379
4380         * buffer.[Ch]: take out all bv-related from buffer
4381         * BufferView.C:
4382         * BufferView_pimpl.[Ch]: connect to new signals
4383         * CutAndPaste.C: removed useless asserts
4384         * bufferview_funcs.[Ch] (resizeInsets): moved from buffer
4385         * lyxvc.[Ch]:
4386         * vc-backend.[Ch]:
4387         * lyxfunc.C: moved view-related funciontality from vc here
4388         * paragraph.C: removed outdated comments
4389         * text.C: ws
4390
4391 2003-07-10  André Pönitz  <poenitz@gmx.net>
4392
4393         * BufferView_pimpl.C:
4394         * tabular.h:
4395         * tabular_funcs.C:
4396         * text.C:
4397         * text2.C: remove InsetText::InnerCache, clean up consequences
4398
4399 2003-07-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
4400
4401         * ispell.C: fix two typos in error messages
4402
4403 2003-07-08  Martin Vermeer  <martin.vermeer@hut.fi>
4404
4405         * Extend Note inset to other forms of annotation like Comment
4406         and Greyedout. Right button click gives dialog.
4407
4408         Files modified or added (+):
4409
4410         * insetnote.[Ch]
4411         * FormNote.[Ch]      +
4412         * ControlNote.[Ch]   +
4413         * form_note.fd       +
4414         * Makefile.am in frontends/xforms, frontends/xforms/forms,
4415         frontends/controllers
4416         * xforms/Dialogs.C
4417         * factory.C
4418
4419 2003-07-01  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
4420
4421         * aspell.C: add missing namespace lyx::support
4422
4423 2003-07-07  Alfredo Braunstein  <abraunst@libero.it>
4424
4425         * BufferView.[Ch] (newFile): Add
4426         * BufferView_pimpl.[Ch] (newFile, connectBuffer, disconnectBuffer): Add
4427         * LaTeX.[Ch] (message): added this signal and use it
4428         * buffer.[Ch] (busy, message): added these signals and use them
4429         * buffer_funcs.[Ch]: rename parseErrors to bufferErrors
4430         * converter.C:
4431         * exporter.C:
4432         * format.C:
4433         * importer.C: use buffer signals instead of direct bv calling
4434         * lyx_cb.[Ch] (ShowMessage): removed
4435         * lyx_main.C:
4436         * lyxfunc.C:
4437         * paragraph_funcs.C:
4438         * text2.C: use buffer signals
4439
4440 2003-07-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
4441
4442         * introduce namespace lyx::graphics
4443
4444 2003-07-02  André Pönitz  <poenitz@gmx.net>
4445
4446         * BufferView_pimpl.C (workAreaDispatch): tell the FuncRequest who we are
4447
4448 2003-07-01  André Pönitz  <poenitz@gmx.net>
4449
4450         * text.C:
4451         * text2.C:
4452         * text3.C:
4453         * text_funcs.[Ch]:
4454         * textcursor.h:
4455         * lyxtext.h: shuffle pure paragraph/cursor related cursor movement from
4456           text*.C to text_func.C
4457
4458 2003-07-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4459
4460         * introduce namespace lyx::support
4461
4462 2003-06-30  André Pönitz  <poenitz@gmx.net>
4463
4464         * Chktex.C:
4465         * funcrequest.C:
4466         * lyxtext.h:
4467         * text.C: re-enable --with-included-string
4468
4469 2003-06-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
4470
4471         * textcursor.C: add <config.h>
4472
4473         * text.C (getWord): remove const from word_location arg
4474
4475         * lyxvc.C (getLogFile): fix const type order
4476
4477         * lyxtext.h: remove const from word_location arg, add arg name
4478
4479         * lyxlayout.h: currect type on labeltype.
4480
4481         * importer.C: correct \file
4482
4483         * converter.C (intToFormat): use std:: on ret val, ws changes
4484
4485         * bufferlist.h: correct \file
4486
4487         * buffer.C (makeLinuxDocFile): fix const type order
4488         (makeDocBookFile): ditto
4489         (fillWithBibKeys): use std:: on stdlib args.
4490
4491         * CutAndPaste.C: fix authors.
4492         (availableSelections): use std:: on return vector
4493
4494 2003-06-27  André Pönitz  <poenitz@gmx.net>
4495
4496         * BufferView_pimpl.C:
4497         * bufferview_funcs.C:
4498         * lyxcursor.C:
4499         * lyxcursor.h:
4500         * lyxfunc.C:
4501         * lyxtext.h:
4502         * rowpainter.C:
4503         * text.C:
4504         * text2.C:
4505         * text3.C: remove LyXCursor::row_ member
4506
4507         * lyxtext.h:
4508         * text.C: rename fullRebreak() to partialRebreak() and implement
4509           a fullRebreak() that really bereks fully
4510
4511         * textcursor.h: new struct for cursor-related data
4512
4513 2003-06-26  Alfredo Braunstein  <abraunst@lyx.org>
4514
4515         * lyx_main.C (LyX): get full path of document loaded on the
4516         command line
4517
4518 2003-06-26  André Pönitz  <poenitz@gmx.net>
4519
4520         * lyxcursor.[Ch]: move rarely used operator==,!= out of line
4521           remove unused/broken operator>,<,>=.
4522
4523         *       text.C: remove only use of broken operator<= in an Assert().
4524
4525 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
4526
4527         * BufferView.[Ch] (getErrorList): removed unneeded forward declare,
4528         moved errorlist_.clear to showErrorList
4529
4530 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
4531
4532         * converter.C (scanLog, runLaTeX):
4533         * buffer.C (makeLinuxDocFile, makeDocBookFile, runChkTeX):
4534         move the bv->showErrorList call to the callers
4535         * lyxfunc.C: i.e. here...
4536         * text2.C: and here
4537         * BufferView.[Ch] (setErrorList, resetErrorList): both removed
4538         * exporter.[Ch] (Backends, BufferFormat): the first was moved to anon
4539         namespace, the second to...
4540         * buffer_funcs (BufferFormat, parseErrors): added
4541         * errorlist.C (ErrorList(TeXErrors const &)): removed
4542
4543 2003-06-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4544
4545         * ToolbarBackend.C (getIcon): complain when icon cannot be found
4546
4547 2003-06-24  "Garst R. Reese" <reese@isn.net>
4548
4549         * debug.C: fix typo
4550
4551 2003-06-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4552
4553         * lyx_main.C (init): honor LYX_DIR_14x and LYX_USERDIR_14x
4554
4555         * version.C.in: change docversion to 1.4
4556
4557 2003-06-22  Alfredo Braunstein  <abraunst@libero.it>
4558
4559         * buffer.C: fix a bug just introduced
4560
4561 2003-06-21  Alfredo Braunstein  <abraunst@libero.it>
4562
4563         * buffer.[Ch]: added the parseError signal and use it, removed
4564         sgmlError
4565         * BufferView.[Ch] (addError): moved to ...
4566         * BufferView_pimpl.[Ch] (addError, loadLyXFile): ... here. Attach
4567         to the Buffer::parseError signal to catch (guess what) parse errors
4568         * lyx_main.[Ch] (printError,LyX): added gui-less parsing error feedback
4569
4570 2003-06-19  Alfredo Braunstein  <abraunst@libero.it>
4571
4572         * bufferlist.[Ch] (loadLyXFile, readFile, newFile): removed the
4573         ability to create a buffer and to return an existing one from
4574         the list. Moved these functions to...
4575         * buffer_funcs.[Ch]: added
4576         * BufferView.[Ch] (loadLyXFile): added
4577         * BufferView_pimpl.[Ch] (loadLyXFile): Added. Does the guessing
4578         job removed from bufferlist::loadLyXFile.
4579         * buffer.C (setReadOnly): make it work without view
4580         (i.e added an if (users))
4581
4582 2003-06-19  Angus Leeming  <leeming@lyx.org>
4583
4584         * lfuns.h:
4585         * LyXAction.C (init):
4586         * lyxfunc.C (getStatus, dispatch): remove 14 LFUNs, replacing them
4587         with LFUN_DIALOG_SHOW <name> <data>.
4588
4589 2003-06-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4590
4591         * CutAndPaste.C (availableSelections): small compilation fix for
4592         ancient (gcc 2.9x) compilers
4593
4594 2003-06-18  Lars Gullik Bjønnes  <larsbj@gullik.net>
4595
4596         * text3.C (cursorNext): add tmp var
4597
4598         * text2.C (updateCounters): for function calling out of for clause
4599         (replaceSelectionWithString): ditto
4600         (insertStringAsParagraphs): ditto
4601         (getColumnNearX): add tmp var
4602         (setCursorFromCoordinates): add tmp var
4603         (cursorDownParagraph): add tmp var
4604         (deleteEmptyParagraphMechanism): add tmp var
4605
4606         * text.C (insertChar): add tmp var
4607
4608         * rowpainter.C (paintDepthBar): add tmp var
4609
4610         * CutAndPaste.C (availableSelections): potentially check all
4611         paragraphs in a cut to fill the shown strings.
4612
4613 2003-06-18  André Pönitz  <poenitz@gmx.net>
4614
4615         * kbmap.[Ch]: use vector<> instead of list<>
4616
4617 2003-06-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
4618
4619         * text3.C (dispatch): handle arg to LFUN_PASTE, call
4620         pasteSelection with index
4621
4622         * text2.C (pasteSelection): modify, call pasteSelection with index
4623
4624         * paragraph.C (asString): reimplement version with no interval to
4625         call the one with interval.
4626
4627         * lyxtext.h: add index arg to pasteSelection
4628
4629         * MenuBackend.C (MenuItem): handle PasteRecent
4630         (Menu::read::Menutags): add md_pasterecent
4631         (read): handle it
4632         (expandPasteRecent): new function
4633         (expand): use it
4634
4635         * MenuBackend.h: add PasteRecent to MenuItem::Kind
4636
4637         * CutAndPaste.C: get rid of some stale comments. Add typdefe for
4638         the limited stack
4639         (availableSelections): new function
4640
4641 2003-06-17  Angus Leeming  <leeming@lyx.org>
4642
4643         * lyxfunc.C (dispatch): s/showMathPanel/show("mathpanel")/
4644
4645 2003-06-17  Angus Leeming  <leeming@lyx.org>
4646
4647         * lfuns.h:
4648         * LyXAction.C (init): new LFUN_DIALOG_SHOW.
4649
4650         * lyxfunc.C (dispatch): invoke it.
4651
4652 2003-06-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4653
4654         * iterators.C (operator++, ParPosition): reintroduce some
4655         const_cast for the benefit of older compilers.
4656
4657 2003-06-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4658
4659         * text3.C (dispatch): do not modify clipboard when doing
4660         LFUN_BACKSPACE, LFUN_BACKSPACE_SKIP, LFUN_DELETE or
4661         LFUN_DELETE_SKIP on a selection selection
4662
4663 2003-06-16  André Pönitz  <poenitz@gmx.net>
4664
4665         * BufferView.C:
4666         * buffer.C:
4667         * buffer.h:
4668         * paragraph.C:
4669         * tabular.[Ch]: IU of clone() and getLabelList();
4670
4671 2003-06-13  André Pönitz  <poenitz@gmx.net>
4672
4673         * tabular.h: compactification
4674
4675 2003-06-12  André Pönitz  <poenitz@gmx.net>
4676
4677         * tabular.C:
4678         * tabular.h:
4679         * tabular_funcs.h: some renaming plus whitespace
4680
4681 2003-06-12  André Pönitz  <poenitz@gmx.net>
4682
4683         * BufferView.C:
4684         * BufferView_pimpl.C:
4685         * CutAndPaste.C:
4686         * buffer.C:
4687         * iterators.[Ch]:
4688         * lyxfunc.C:
4689         * text.C:
4690         * toc.C: Return a Paragraph & for ParIterator::operator*()
4691
4692 2003-06-11  John Levon  <levon@movementarian.org>
4693
4694         * lyx_main.C:
4695         * ToolbarBackend.h:
4696         * ToolbarBackend.C: add "Toolbars" section and
4697         put the flags there
4698
4699 2003-06-10  Angus Leeming  <leeming@lyx.org>
4700
4701         * lfuns.h:
4702         * LyXAction.C (init): new LFUN_EXTERNAL_EDIT.
4703
4704         * lyxfunc.C (dispatch): invoke it.
4705
4706 2003-06-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
4707
4708         * main.C: protect <ios> with HAVE_IOS
4709         (main): protect sync_with_stdio with HAVE_IOS
4710
4711 2003-06-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
4712
4713         * text2.C (cutSelection): adjust
4714         (pasteSelection): adjust
4715
4716         * messages.C: handle get of empty string
4717
4718         * main.C (main): use sync_with_stdio(false)
4719
4720         * lyxfunc.C (dispatch): adjust
4721
4722         * lyx_cb.[Ch] (MenuWrite): remove unneeded BufferView arg
4723         (WriteAs): remove unneeded BufferView arg.
4724
4725         * bufferparams.h: use correct types on papersize, papersize2 and
4726         paperpackage.
4727
4728         * bufferparams.C (readToken): adjust for type
4729         (writeLaTeX): add missing cases to switch.
4730
4731         * bufferlist.C (quitWriteBuffer): adjust
4732         (close): adjust
4733
4734         * buffer.C (asciiParagraph): remove some commented code.
4735
4736         * CutAndPaste.C: remove current_view extern variable.
4737         (cutSelection): add BufferParams arg.
4738         (eraseSelection): add BufferParams arg.
4739         (pasteSelection): add Buffer const & arg
4740
4741 2003-06-07  John Levon  <levon@movementarian.org>
4742
4743         * buffer.C:
4744         * paragraph_funcs.C:
4745         * paragraph_pimpl.C:
4746         * text.C:
4747         * text2.C:
4748         * paragraph.h:
4749         * paragraph.C: allow InsetERT to freely space lines,
4750         and some consolidation of code
4751
4752 2003-06-06  José Matos  <jamatos@fep.up.pt>
4753
4754         * buffer.C (makeDocBookFile): fix bug #821
4755
4756 2003-06-06  Alfredo Braunstein  <abraunst@libero.it>
4757
4758         * BufferView_pimpl.C (dispatch): use Dialogs::visible
4759
4760 2003-06-04  Angus Leeming  <leeming@lyx.org>
4761
4762         * buffer.C: bump format to 224.
4763
4764 2003-06-05  André Pönitz  <poenitz@gmx.net>
4765
4766         * text2.C (redoParagraphs): remove two const_cast<>
4767
4768 2003-06-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
4769
4770         * ParagraphList.h: remove last remnants of NO_STD_LIST
4771
4772 2003-06-03  Angus Leeming  <leeming@lyx.org>
4773
4774         * factory.C (createInset): small change to the way InsetExternal's params
4775         are set.
4776
4777 2003-06-04  André Pönitz  <poenitz@gmx.net>
4778
4779         * buffer.h: use Undo directly instead of shared_ptr<Undo>
4780
4781         * paragraph_pimpl.h:
4782         * paragraph.[Ch]: some Inset -> UpdatableInset changes
4783
4784         * undo.[Ch]: use ParagraphList instead of vector<Paragraph>
4785
4786         * undo_funcs.C: make some simple cases of undo work again
4787
4788 2003-06-03  John Levon  <levon@movementarian.org>
4789
4790         * ispell.C: HPUX doesn't have sys/select.h
4791         (from Albert Chin)
4792
4793 2003-06-03  John Levon  <levon@movementarian.org>
4794
4795         * CutAndPaste.C: update tabular and include inset
4796         buffer references
4797
4798         * buffer.h:
4799         * paragraph.h:
4800         * paragraph.C: remove owningBuffer(), don't pass Buffer
4801         to clone()
4802
4803         * factory.C: insetGraphicsParams changed
4804
4805 2003-06-02  John Levon  <levon@movementarian.org>
4806
4807         * LyXAction.C:
4808         * factory.C:
4809         * lfuns.h:
4810         * lyxfunc.C:
4811         * text3.C: remove insetparent
4812
4813 2003-06-02  John Levon  <levon@movementarian.org>
4814
4815         * buffer.h:
4816         * buffer.C: fix inset_iterator.end(), move out of line
4817         (bug 1149)
4818
4819 2003-06-01  John Levon  <levon@movementarian.org>
4820
4821         * text3.C: use a proper cut/paste when doing inset
4822         insert (from Jürgen Spitzmüller)
4823
4824 2003-06-01  John Levon  <levon@movementarian.org>
4825
4826         * factory.C: accept "\bibtex" not "\BibTeX" (bug 1018)
4827
4828 2003-05-30  André Pönitz  <poenitz@gmx.net>
4829
4830         * rowpainter.C: unify second drawing phase
4831
4832 2003-05-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
4833
4834         * trans_mgr.C: remove one case of current_view
4835
4836         * text2.C (cursorBottom): delete NO_STD_LIST stuff
4837
4838         * paragraph_funcs.h: remove paragraph.h include
4839
4840         * paragraph.h: delete NO_STD_LIST stuff
4841
4842         * paragraph.C (Paragraph): delete NO_STD_LIST stuff
4843
4844         * buffer.h: remove paragraph.h include
4845
4846         * ParagraphList.C: delete file
4847
4848         * Makefile.am (lyx_SOURCES): remove ParagraphList.C
4849
4850         * toc.C (getTocList): adjust
4851
4852         * paragraph_pimpl.C (validate): adjust
4853
4854         * paragraph_funcs.C (optArgInset): use const_iterator, adjust
4855
4856         * paragraph.C (Paragraph): adjust
4857         (getPositionOfInset): use const_iterator, adjust
4858         (bibitem): use const_iterator, adjust
4859         (setInsetOwner): adjust
4860
4861         * iterators.C (operator++): adjust
4862
4863         * InsetList.[Ch]: Replace selfmade iterator with standard
4864         vector::iterator also introduce const_iterator. Remove getPos,
4865         getInset and setInset from InsetTable. Adjust accordingly.
4866
4867         * BufferView.C (lockInset): adjust
4868         (ChangeInsets): adjust
4869
4870         * tabular.[Ch]: delete commented same_id functions
4871
4872 2003-05-28  John Levon  <levon@movementarian.org>
4873
4874         * lyxfunc.C: fix LFUN_ESCAPE (bug 1055)
4875
4876 2003-05-28  André Pönitz  <poenitz@gmx.net>
4877
4878         * metricsinfo.[Ch]: remove 'fullredraw' member
4879
4880 2003-05-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
4881
4882         * lyxtextclass.C (operator): remove caching.
4883
4884 2003-05-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
4885
4886         * text3.C: adjust
4887
4888         * text2.C (cursorBottom): adjust
4889         (setCounter): use ParagraphList::find, adjust
4890
4891         * text.C (workWidth): use ParagraphList::find, adjust
4892
4893         * lyxcursor.C (LyXCursor): adjust
4894
4895         * buffer.C (inset_iterator): adjust
4896
4897         * ParagraphList.h: make iterator(value_type) private, make
4898         ParagraphList a friend of iterator.
4899
4900         * ParagraphList.C (find): new function
4901
4902         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
4903
4904 2003-05-27  André Pönitz  <poenitz@gmx.net>
4905
4906         * dimension.[Ch]: a -> asc, d -> des, w -> wid
4907
4908 2003-05-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4909
4910         * lyxfont.C (latexWriteStartChanges): fix character count for \noun
4911
4912 2003-05-26  John Levon  <levon@movementarian.org>
4913
4914         * LyXAction.C: LFUN_ESCAPE should be ReadOnly
4915
4916 2003-05-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
4917
4918         * remove same_id from function signatures, adjust.
4919
4920 2003-05-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
4921
4922         * undo_funcs.C (createUndo): use the id functions directly, adjust.
4923
4924         * paragraph_pimpl.C (Pimpl): get rid of same_ids parameter
4925
4926         * paragraph.C (Paragraph): get rid of same_ids parameter
4927
4928         * ParagraphList.C (insert): adjust
4929         (push_back): adjust
4930
4931 2003-05-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
4932
4933         * paragraph_funcs.C (breakParagraph): adjust
4934         (breakParagraphConservative): adjust
4935
4936         * buffer.C (readParagraph): adjust
4937
4938         * ParagraphList.C (insert): take a reference instead of a pointer
4939         (insert): adjust
4940
4941         * paragraph.[Ch] (id): new function
4942
4943         * bufferlist.C (newFile): adjust
4944
4945         * ParagraphList.C (ParagraphList): adjust
4946         (assign): adjust
4947         (push_back): take a reference instead of a pointer.
4948
4949         * paragraph.h: add NO_STD_LIST define, remove NO_NEXT define.
4950
4951         * paragraph.C: remove all NO_NEXT node add some NO_STD_LIST parts
4952         instead.
4953
4954         * ParagraphList.h: degenerate to std::list if NO_STD_LIST is not
4955         set else use old code.
4956
4957         * ParagraphList.C: remove all NO_NEXT code and only compile this
4958         code of NO_STD_LIST is set.
4959
4960 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
4961
4962         * BufferView_pimpl.C:
4963         * TextCache.C:
4964         * TextCache.h:
4965         * bufferlist.C:
4966         * errorlist.h:
4967         * format.C:
4968         * format.h:
4969         * graph.C:
4970         * lyxfunc.C:
4971         * lyxrc.C:
4972         * graphics/GraphicsConverter.C:
4973         * graphics/PreviewLoader.C: header adjustment
4974
4975 2003-05-23  Angus Leeming  <leeming@lyx.org>
4976
4977         * LaTeXFeatures.[Ch] (useBabel): new method.
4978         * bufferparams.C (writeLaTeX): use it.
4979
4980 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
4981
4982         * ParagraphList.h (set): remove unused function.
4983
4984 2003-05-23  André Pönitz  <poenitz@gmx.net>
4985
4986         * BufferView.C:
4987         * BufferView_pimpl.C:
4988         * buffer.C:
4989         * buffer.h:
4990         * lyxfunc.C:
4991         * undo_funcs.C: setUndo reworked
4992
4993         * iterators.[Ch]: add access to topmost ParagraphList
4994
4995         * lyxtext.[Ch] (workWidth): add a const
4996
4997 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
4998
4999         * texrow.[Ch] (increasePos): remove function
5000         * exporter.C (export): removed unused var and outdated comment
5001
5002 2003-05-23  Angus Leeming  <leeming@lyx.org>
5003
5004         * latexrunparams.h: rename fragile as moving_arg.
5005         * paragraph.C (simpleTeXOnePar): ditto.
5006         * paragraph_pimpl.C (simpleTeXSpecialChars): ditto.
5007
5008 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
5009
5010         * undo_funcs.C (textHandleUndo): comment out next/previous stuff
5011         (createUndo): ditto
5012         (textUndoOrRedo): comment out a currently unused var.
5013
5014         * paragraph.h (NO_NEXT): enable NO_NEXT
5015
5016         * lyxfunc.C (dispatch): remove LFUN_REMOVEERRORS
5017
5018         * lfuns.h: remove LFUN_REMOVEERRORS and adjust lfun numbers.
5019
5020         * exporter.C (Export): adjust for removeAutoInsets removal.
5021
5022         * buffer.C (runChktex): adjust for removeAutoInsets removal.
5023
5024         * LyXAction.C (init): remove LFUN_REMOVEERRORS
5025
5026         * BufferView.[Ch] (removeAutoInsets): delete function
5027
5028 2003-05-22  Angus Leeming  <leeming@lyx.org>
5029
5030         * latexrunparams.h: add a free_spacing variable.
5031
5032         * paragraph.[Ch] (simpleTeXOnePar): further fragile clean-up; no need
5033         to pass moving_arg, as the data is stored in runparams.fragile.
5034
5035         * paragraph_funcs.C (TeXOnePar): no longer pass free_spacing arg
5036         to Inset::latexOptional or to simpleTeXOnePar.
5037
5038         * paragraph_pimpl.C (simpleTeXSpecialChars): no longer pass
5039         free_spacing arg to Inset::latexOptional.
5040
5041         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
5042         free_spacing arg.
5043
5044 2003-05-22  Angus Leeming  <leeming@lyx.org>
5045
5046         * latexrunparams.h: add fragile and use_babel variables.
5047
5048         * bufferparams.[Ch] (writeLaTeX): return use_babel.
5049         * buffer.C (makeLaTeXFile): store this returned value in
5050         runparams.use_babel, thus passing it to the inset::latex methods.
5051
5052         * paragraph.C (simpleTeXOnePar): no need to pass 'moving_arg' to
5053         simpleTeXSpecialChars as it is now stored in runparams.fragile.
5054
5055         * paragraph_funcs.[Ch] (TeXOnePar, latexParagraphs): TeXOnePar no
5056         longer has a fragile arg, as it is stored in runparams.fragile.
5057
5058         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars): no longer has a
5059         moving_arg parameter as the data is stored in runparams.fragile.
5060
5061         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
5062         a fragile parameter as the data is stored in runparams.fragile.
5063
5064 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
5065
5066         * paragraph.C (Paragraph): initialize next_par_ and prev_par_
5067
5068 2003-05-22  Angus Leeming  <leeming@lyx.org>
5069
5070         * latexrunparams.h: add a 'bool nice' which defaults to false.
5071
5072         * buffer.[Ch] (makeLaTeXFile): remove the nice parameter as it is
5073         now encapsulated within runparams.
5074
5075         * bufferlist.C (updateIncludedTeXfiles):
5076         * exporter.C (Export): ensuing change to the calls to makeLaTeXFile.
5077
5078 2003-05-22  Angus Leeming  <leeming@lyx.org>
5079
5080         * latexrunparams.h: new file containing struct LatexRunParams.
5081         * Makefile.am: add new file.
5082
5083         * LaTeX.[Ch] (c-tor, run):
5084         * buffer.[Ch] (makeLaTeXFile):
5085         * bufferlist.[Ch] (updateIncludedTeXfiles):
5086         * converter.C (convert, scanLog):
5087         * converter.[Ch] (runLaTeX):
5088         * exporter.C (Export):
5089         * paragraph.[Ch] (simpleTeXOnePar):
5090         * paragraph_funcs.C (TeXEnvironment, TeXOnePar, TeXDeeper):
5091         * paragraph_funcs.[Ch] (latexParagraphs):
5092         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars):
5093         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow, latex):
5094         pass around a LatexRunParams parameter.
5095
5096 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
5097
5098         * paragraph.[Ch]: remove unused constructor
5099
5100         * ParagraphList.C (erase): new function, taking two iterators
5101
5102 2003-05-22  André Pönitz  <poenitz@gmx.net>
5103
5104         * undo_funcs.C: remove duplicated code
5105
5106         * iterator.[Ch]: operator=
5107
5108 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
5109
5110         * tabular.C (SetMultiColumn): ws changes
5111
5112         * rowpainter.C (paintFirst): get rid of a ->previous
5113
5114         * lyx_cb.C (getPossibleLabel): parlist simplification
5115
5116         * BufferView.C (ChangeInsets): simplify slightly.
5117
5118 2003-05-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
5119
5120         * LyXAction.C: new lfun space-insert, kill protected-space-insert
5121         * lfuns.h: new LFUN_SPACE
5122         * lyxfunc.C: protected space has a new lfun
5123         * paragraph_funcs.C: read new space insets
5124         * text3.C:
5125         * factory.C: handle new space insets
5126
5127 2003-05-22  André Pönitz  <poenitz@gmx.net>
5128
5129         * BufferView.C:
5130         * BufferView_pimpl.C:
5131         * buffer.[Ch]:
5132         * lyxfunc.C:
5133         * undo_funcs.C: return a ParIterator from getParFromID.
5134
5135         * iterators.[Ch]: add two const's
5136
5137 2003-05-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
5138
5139         * toc.C (getTocList): adjust
5140
5141         * iterators.[Ch]: rework for parlist
5142
5143         * buffer.C (par_iterator_begin): adjust
5144         (par_iterator_end): adjust
5145
5146         * CutAndPaste.C (SwitchLayoutsBetweenClasses): adjust
5147
5148         * BufferView.C (removeAutoInsets): adjust
5149         (ChangeInsets): adjust
5150
5151 2003-05-21  Alfredo Braunstein  <abraunst@libero.it>
5152
5153         * text.C (top_y): fix bug 1110
5154
5155 2003-05-08  Alfredo Braunstein  <abraunst@libero.it>
5156
5157         * errorlist.[Ch]: added
5158         * buffer.C:
5159         * BufferView.[Ch]:
5160         * BufferView_pimpl.C:
5161         * CutAndPaste.[Ch]: get rid of InsetError users, use ErrorList
5162         instead
5163
5164 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
5165
5166         * Makefile.am: ensure that lyx is relinked upon changes to the
5167         various "convenience" libs.
5168
5169 2003-05-20  Angus Leeming  <leeming@lyx.org>
5170
5171         * Makefile.am (lyx_SOURCES): move format.[Ch] and graph.[Ch] so that
5172         files are compiled in alphabetical order again.
5173
5174         * gettext.h: #ifndef _GETTEXT_H_ -> #ifndef GETTEXT_H.
5175
5176 2003-05-19  Angus Leeming  <leeming@lyx.org>
5177
5178         * gettext.[Ch]: remove "char const * _(char const *)".
5179
5180 2003-05-19  André Pönitz  <poenitz@gmx.net>
5181
5182         * dimension.[Ch]: promote from mathed/dimension.[Ch]
5183
5184         * Makefile.am:
5185         * BufferView.C:
5186         * DepTable.h:
5187         * LaTeXFeatures.C:
5188         * buffer.C:
5189         * lyxfont.C:
5190         * lyxlex.h:
5191         * paragraph_funcs.C: dimensions() instead of ascend/descend/width
5192
5193 2003-05-19  André Pönitz  <poenitz@gmx.net>
5194
5195         * buffer.C:
5196         * lyxlayout.[Ch]:
5197         * lyxtextclass.[Ch]:
5198         * paragraph.C:
5199         * paragraph_funcs.[Ch]:
5200         * text2.C:
5201         * text3.C: more insetenv work
5202
5203 2003-05-16  Alfredo Braunstein  <abraunst@libero.it>
5204
5205         * ParagraphParameters.C (params2string): small bug fixed
5206
5207 2003-05-16  André Pönitz  <poenitz@gmx.net>
5208
5209         * debug.C:
5210         * bufferview_funcs.C: patch from Kornel Benko to prevent
5211           crash when _(...) is called twice in a statement
5212
5213 2003-05-16  André Pönitz  <poenitz@gmx.net>
5214
5215         * BufferView.C:
5216         * lyxfunc.C:
5217         * text.C:
5218         * text2.C:
5219         * text3.C:
5220         * undo_funcs.C: edit() -> LFUN_INSET_EDIT
5221
5222 2003-05-14  Alfredo Braunstein  <abraunst@libero.it>
5223
5224         * lyx_main.C (init): remove spurious static_cast
5225
5226 2003-05-14  André Pönitz  <poenitz@gmx.net>
5227
5228         * BufferView.C: fix format string
5229
5230 2003-05-12  Alfredo Braunstein  <abraunst@libero.it>
5231
5232         * BufferView.[Ch] (insertErrors): removed
5233         * BufferView.[Ch] (showErrorList): added
5234         * buffer.C (runChkTeX):
5235         * converter.C (scanLog): call showErrorList instead of inserterrors
5236
5237 2003-05-13  André Pönitz  <poenitz@gmx.net>
5238
5239         * BufferView_pimpl.C:
5240         * buffer.C:
5241         * bufferview_func.C:
5242         * MenuBackend.C:
5243         * lyxfunc.C:
5244         * lyxrc.C:
5245         * tex-accent.C:
5246         * text3.C:
5247         * toc.C:
5248         * tabular_funcs.h: tostr() from its own header
5249
5250         * ParagraphParameters.C:
5251         * ToolbarBackend.C:
5252         * bufferparams.C:
5253         * format.C:
5254         * lyxlex_pimpl.C:
5255         * text3.C: STRCONV()
5256
5257 2003-05-12  André Pönitz  <poenitz@gmx.net>
5258
5259         * BufferView.C:
5260         * BufferView_pimpl.C:
5261         * CutAndPaste.C:
5262         * LaTeX.C:
5263         * LaTeXFeatures.C:
5264         * ParagraphParameters.C:
5265         * buffer.C:
5266         * bufferlist.C:
5267         * bufferparams.C:
5268         * bufferview_funcs.C:
5269         * converter.C:
5270         * counters.C:
5271         * debug.C:
5272         * exporter.C:
5273         * format.C:
5274         * importer.C:
5275         * lyx_cb.C:
5276         * lyx_main.C:
5277         * lyxfont.C:
5278         * lyxfunc.C:
5279         * lyxvc.C:
5280         * paragraph.C:
5281         * paragraph_funcs.C:
5282         * tabular.C:
5283         * tabular_funcs.C:
5284         * text2.C:
5285         * text3.C:  boost::format -> bformat  all over the place
5286
5287
5288 2003-05-09  André Pönitz  <poenitz@gmx.net>
5289
5290         * LColor.[Ch]: Pimpl the #include <map> away
5291
5292 2003-05-09  John Levon  <levon@movementarian.org>
5293
5294         * bufferlist.C: never remove emergency saves
5295
5296 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
5297
5298         * Makefile.am: better lib building
5299
5300 2003-05-07  Lars Gullik Bjønnes  <larsbj@gullik.net>
5301
5302         * texrow.[Ch]: remove dependency on Paragraph and just store a id
5303         instead.
5304         * paragraph_pimpl.C (simpleTeXBlanks): adjust
5305         (simpleTeXSpecialChars): adjust
5306         (simpleTeXSpecialChars): adjust
5307         * paragraph.C (simpleTeXOnePar): adjust
5308         * buffer.C (makeLaTeXFile): adjust
5309
5310         * Makefile.am (BOOST_LIBS): allow boost as system lib.
5311
5312         * text2.C (changeDepth): parlist cleanup
5313         (getColumnNearX): ditto
5314
5315         * rowpainter.C (getLabelFont): parlist cleanup
5316
5317         * bufferlist.C (newFile): parlist cleanup
5318
5319         * CutAndPaste.C (eraseSelection): parlist cleanup
5320
5321         * BufferView_pimpl.C (trackChanges): parlist cleanup
5322         (dispatch): ditto
5323
5324         * BufferView.C (lockInset): parlist cleanup.
5325         (ChangeInsets): ditto
5326
5327 2003-05-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
5328
5329         * CutAndPaste.h: Update file header.
5330
5331         * CutAndPaste.C: Update file header.
5332         Store the parts cut out of the Document in a limited_stack.
5333         (copySelection): adjust
5334         (pasteSelection): new function, takes the index in the limited stack.
5335         (nrOfParagraphs): adjust
5336         (SwitchLayoutsBetweenClasses): Change to take a ParagraphList&,
5337         simplify error inset insertion.
5338         (checkPastePossible): adjust
5339
5340 2003-05-06  John Levon  <levon@movementarian.org>
5341
5342         * text2.C: don't cast wrap inset to float
5343
5344 2003-05-05  André Pönitz  <poenitz@gmx.net>
5345
5346         * iterator.C:
5347         * undo_funcs.C: use getParagraphs() instead of getFirstParagraph()
5348
5349         * buffer.[Ch]: new function hasParWithId() to help to get rid of a
5350           few naked Paragraph *.
5351
5352 2003-05-02  Michael Schmitt  <michael.schmitt@teststep.org>
5353
5354         * bufferparams.C: Output warning if a document with missing
5355         TeX document class is loaded
5356         * exporter.C: Disable TeX exports if the document class is missing
5357         * lyxtextclass.C:
5358         * lyxtextclass.h:
5359         * lyxtextclasslist.C: Handle new textclass.lst format; new method
5360         isTeXClassAvailable()
5361
5362 2003-05-03  John Levon  <levon@movementarian.org>
5363
5364         * BufferView.h:
5365         * BufferView.C: remove showLockedInsetCursor(), showCursor(),
5366         explicit cursor show/hide
5367
5368         * BufferView_pimpl.h:
5369         * BufferView_pimpl.C: hide cursor before dispatching. Show cursor
5370         after a cursor move lfun. Simplify cursorToggle(). Remove show/hideCursor().
5371
5372         * lyxfunc.C: hide cursor before dispatching.
5373
5374         * lyx_cb.C:
5375         * lyxfind.C:
5376         * text.C:
5377         * text3.C: remove explicit cursor hides
5378
5379 2003-05-02  André Pönitz  <poenitz@gmx.net>
5380
5381         * buffer.[Ch]: two instances of Paragraph * -> ParagraphList::iterator
5382
5383         * undo_funcs.C:
5384         * undo.[Ch]: rely on std::vector<Paragraph *> instead of manually
5385           linked lists
5386
5387         * text2.C: tiny whitespace
5388
5389 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
5390
5391         * undo_funcs.C: almost only ws changes.
5392
5393         * ParagraphList.C (splice): just return if pl is empty.
5394
5395 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
5396
5397         * ParagraphList.C (splice): new function.
5398
5399         * CutAndPaste.C (pasteSelection): use it
5400
5401 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5402
5403         * CutAndPaste.C (pasteSelection): remove the last next and
5404         previous from this file.
5405
5406 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5407
5408         * CutAndPaste.C (pasteSelection): more clean up, user proper
5409         ParagraphList functions for pasteing.
5410
5411         * ParagraphList.C (insert): new function, three arg insert
5412
5413 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5414
5415         * ParagraphList.C (insert): new function, three arg insert
5416
5417         * CutAndPaste.C (pasteSelection): work on the simple_cut_clone,
5418         not on paragraphs.
5419
5420 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5421
5422         * CutAndPaste.C (pasteSelection): copy paragraphlist the nice way.
5423
5424 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5425
5426         * CutAndPaste.C (pasteSelection): remove some unneeded code.
5427
5428 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5429
5430         * CutAndPaste.C (resetOwnerAndChanges): new helper functor
5431         (copySelection): clean up a bit.
5432         (pasteSelection): use make_pair
5433
5434         * ParagraphList.C (ParagraphList): implement copy constructor
5435         (operator=): implement, base on copy constructor.
5436         (assign): new func
5437
5438         * paragraph.C (erase): return a bool
5439
5440         * paragraph_pimpl.C (erasePos): remove function, move contents...
5441         (erase): ... here. Return a bool.
5442         (erase): call erase instead of erasePos.
5443
5444 2003-04-30  Alfredo Braunstein  <abraunst@libero.it>
5445
5446         * ParagraphList.h: define PitPosPair
5447         * CutAndPaste.C (copySelection, pasteSelection): big rework, use
5448         ParagraphList, fix a bug on pasting multiple pars
5449         * text2.C: change interface to C&P
5450
5451 2003-04-30  André Pönitz  <poenitz@gmx.net>
5452
5453         * undo_func.C: revert part of yesterday's patch 2
5454
5455 2003-04-30  John Levon  <levon@movementarian.org>
5456
5457         * LColor.C: s/tabular/table/
5458
5459 2003-04-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
5460
5461         * text3.C (dispatch): do not convert iterator -> pointer
5462         * undo_funcs.C (setCursorParUndo): ditto
5463         * text_funcs.C (transposeChars): ditto
5464
5465         * text2.C (setLayout): ws changes only
5466
5467         * text.C (breakParagraph): do not convert iterator -> pointer
5468         (insertChar): ditto
5469         (acceptChange): ditto
5470         (rejectChange): ditto
5471         (changeCase): ditto
5472         (Delete): ditto
5473         (backspace): ditto
5474
5475         * BufferView.C (lockedInsetStoreUndo): do not convert iterator ->
5476         pointer
5477
5478 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
5479
5480         * text3.C (gotoInset): YABG (yet another bad getChar)
5481
5482 2003-04-29  André Pönitz  <poenitz@gmx.net>
5483
5484         * paragraph.h: make operator= private unimplemented as long as
5485           it is unusable
5486
5487         * ParagraphList.C: whitespace
5488
5489         * paragraph.[Ch]:
5490         * paragraph_pimpl.[Ch]:
5491         * paragraph_funcs.C:
5492         * CutAndPaste.C:
5493         * undo_funcs.C: whitespace + Paragraph *  -> Paragraph (const) &
5494
5495         * text2.C:
5496           undo_funcs.[Ch]: Paragraph * -> ParagraphList::iterator
5497
5498 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
5499
5500         * CutAndPaste.[Ch] (cutSelection): big rework, some bugs fixed
5501         * paragraph.[Ch] (erase):
5502         * paragraph_pimpl.[Ch] (erase): change return type and value
5503         * text2.C (cutSelection): some rework
5504
5505 2003-04-28  John Levon  <levon@movementarian.org>
5506
5507         * bufferlist.C: changes for unsaved changes dialog
5508
5509 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
5510
5511         * bufferlist.C (newFile): set language (messages_) for new
5512         documents also.
5513
5514         * buffer.C (readFile): ws changes only.
5515
5516 2003-04-28  André Pönitz  <poenitz@gmx.net>
5517
5518         * undo_funcs.C:
5519         * lyxfunc.C:
5520         * buffer.[Ch]:
5521         * BufferView_pimpl.C:
5522         * BufferView.C: getParFromID related ParagraphList::iterator changes
5523
5524 2003-04-28  André Pönitz  <poenitz@gmx.net>
5525
5526         * tabular.[Ch]: part of Lars' Paragraph * -> ParagraphList::iterator
5527           Changes
5528
5529 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
5530
5531         * messages.C: remove one more localedir class variable.
5532
5533 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
5534
5535         * messages.C (getLocaleDir): singleton generation function
5536         (Pimpl): use it.
5537         (Messages): add a default constructor.
5538
5539         * main.C (main): do not setup localedir here, do not call
5540         gettext_init.
5541
5542         * gettext.C (_): use it.
5543         (gettext_init): delete funciton
5544
5545 2003-04-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
5546
5547         * gettext.C (getLyXMessages): new singleton generating function.
5548
5549         * buffer.C (updateDocLang): adjust
5550
5551         * Makefile.am (messages.o): add target
5552         (main.o): remove target
5553
5554 2003-04-27  John Levon  <levon@movementarian.org>
5555
5556         * bufferlist.C:
5557         * lyx_cb.C:
5558         * lyxfunc.C:
5559         * lyxvc.C: specify cancel button in Alert::prompt
5560
5561 2003-04-26  John Levon  <levon@movementarian.org>
5562
5563         * text3.C:
5564         * lyxfunc.C:
5565         * lfuns.h:
5566         * LyXAction.C: add LFUN_INSET_SETTINGS
5567
5568         * lyxfunc.C: don't enable tabular-feature when there's
5569         just any locking inset
5570
5571 2003-04-26  John Levon  <levon@movementarian.org>
5572
5573         * bufferlist.C: re-add Cancel to buffer close question
5574
5575         * lyxfunc.C: fix import UI a bit
5576
5577 2003-04-25  John Levon  <levon@movementarian.org>
5578
5579         * gettext.C: remove the broken asserts for now
5580
5581 2003-04-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
5582
5583         * messages.C: make case where setlocale cannot comply work better.
5584
5585         * buffer.C (updateDocLang): new function
5586         (changeLanguage): use it
5587         (readFile): use it
5588
5589         * text2.C (setCounter): use B_ a bit.
5590
5591         * lyxlayout.C (Read): be sure to trim the label strings.
5592
5593         * messages.C (Messages): fix typo in comment
5594
5595         * buffer.C (readFile): set message_ after file is loaded.
5596         (makeDocBookFile): remove double return
5597         (changeLanguage): reset message_ upon language change.
5598         (B_): new func, use this to get translated buffer strings.
5599
5600         * main.C: add myself and Jean Marc as authors.
5601
5602 2003-04-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
5603
5604         * messages.[hC]: pimplify Messages, and three different pimpls to be
5605         used in different circumstances.
5606
5607         * gettext.[Ch]: change for use with new message code.
5608
5609 2003-04-24 André Pönitz <poenitz@gmx.net>
5610
5611         * factory.C: support for eqref
5612
5613 2003-04-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
5614
5615         * messages.[Ch]: add missing char
5616
5617         * Makefile.am (lyx_SOURCES): add messages.[Ch]
5618
5619         * messages.[Ch]: New files
5620
5621 2003-04-18  John Levon  <levon@movementarian.org>
5622
5623         * BufferView.h:
5624         * BufferView.C:
5625         * BufferView_pimpl.C:
5626         * lfuns.h:
5627         * LyXAction.C:
5628         * lyxtext.h:
5629         * text2.C: remove layout-copy/paste (bug 778)
5630
5631 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
5632
5633         * text2.C (redoParagraphs): eliminate good_prevrit, rewrite a loop
5634
5635 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
5636
5637         * bufferlist.C (quitWriteBuffer): WriteAs and MenuWrite return true
5638         if they succeed. Act accordingly.
5639
5640 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
5641
5642         * text2.C (setCharFont): adjust
5643         (setCounter): adjust
5644         (insertStringAsLines): adjust
5645
5646         * text.C (leftMargin): adjust
5647         (setHeightOfRow): adjust
5648
5649         * rowpainter.C (paintFirst): adjust
5650         (paintLast): adjust
5651
5652         * paragraph_funcs.C (depthHook): ParagraphList::iterators
5653         (outerHook): ditto
5654         (isFirstInSequence): ditto
5655         (getEndLabel): ditto
5656         (outerFont): adjust
5657
5658         * paragraph.C (getParLanguage): comment out some hard stuff.
5659
5660         * buffer.C (insertStringAsLines): take a ParagraphList as arg
5661         (sgmlError): ditto
5662         (simpleDocBookOnePar): ditto
5663         (makeDocBookFile): use ParagraphList::iterator
5664
5665         * CutAndPaste.C (pasteSelection): adjust
5666
5667 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
5668
5669         * text2.C (getFont): adjust
5670         (getLayoutFont): adjust
5671         (getLabelFont): adjust
5672
5673         * paragraph_funcs.C (TeXOnePar): adjust
5674
5675         * buffer.C (simpleLinuxDocOnePar): adjust
5676         (simpleDocBookOnePar): adjust
5677
5678         * CutAndPaste.C (pasteSelection): adjust
5679
5680         * BufferView.C (getEncoding): adjust
5681
5682         * paragraph_funcs.C (outerFont): prepare for a ParagraphList arg.
5683
5684 2003-04-16  John Levon  <levon@movementarian.org>
5685
5686         * lyxfind.C: use parlist stuff for search/changes
5687
5688 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
5689
5690         * undo_funcs.C (textHandleUndo): ajust (rather big adsjust this one)
5691
5692         * text2.C (deleteEmptyParagraphMechanism): adjust
5693
5694         * text2.[Ch] (ownerParagraph): delete func (both of them
5695
5696 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5697
5698         * text_funcs.C (transposeChars): use ParagraphList::iterator here.
5699
5700 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5701
5702         * ParagraphList.C: prepare for NO_NEXT
5703
5704 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5705
5706         * text2.C (getFont): adjust
5707         (getLayoutFont): adjust
5708         (getLabelFont): adjust
5709
5710         * paragraph.C (getFont): adjust
5711         (getLabelFont): adjust
5712         (getLayoutFont): adjust
5713
5714         * paragraph_funcs.[Ch] (realizeFont): remove unneeded arguments.
5715
5716 2003-04-15  John Levon  <levon@movementarian.org>
5717
5718         From Angus Leeming
5719
5720         * lyx_main.C: handle Include in .ui files
5721
5722 2003-04-15  John Levon  <levon@movementarian.org>
5723
5724         * MenuBackend.C: make the doc files length shorter
5725
5726         * ToolbarBackend.h:
5727         * ToolbarBackend.C: handle toolbar placement flags,
5728         Minibuffer
5729
5730 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5731
5732         * paragraph_pimpl.C (simpleTeXSpecialChars): take a outerfont arg,
5733         adjust
5734
5735         * paragraph_funcs.C (TeXOnePar): adjust
5736
5737         * paragraph.C (getLabelFont): add outerfont arg, adjust
5738         (getLayoutFont): ditto
5739         (simpleTeXOnePar): adjust
5740
5741         * paragraph_pimpl.C (realizeFont): delete func
5742
5743 2003-04-14  Alfredo Braunstein  <abraunst@libero.it>
5744
5745         * text2.C (beforeFullRowInset): added a bad getchar check, removed
5746         row argument, constify cur argument.
5747
5748 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5749
5750         * text2.C (getFont): adjust
5751         (getLayoutFont): adjust
5752         (getLabelFont): adjust
5753
5754         * paragraph_funcs.C (TeXOnePar): adjust
5755         (outerFont): new func...
5756         (realizeFont): ...moved out from here, changed this to facilitate
5757         transition
5758
5759         * paragraph.C (getFont): take outerfont as arg, adjust
5760         (simpleTeXOnePar): add outerfont arg, adjust
5761
5762         * buffer.C (simpleLinuxDocOnePar): adjust
5763         (simpleDocBookOnePar): adjust
5764
5765         * CutAndPaste.C (pasteSelection): adjust
5766
5767         * BufferView.C (getEncoding): adjust
5768
5769 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
5770
5771         * text2.C (setCharFont): adjust
5772         (setCounter): adjust
5773
5774         * text.C (leftMargin): adjust
5775         (setHeightOfRow): adjust
5776
5777         * rowpainter.C (paintFirst): adjust
5778         (paintLast): adjust
5779
5780         * paragraph_pimpl.C (realizeFont): adjust
5781
5782         * paragraph.C (isFirstInSequence): move from here...
5783         * paragraph_funcs.C (isFirstInSequence): ...to here
5784
5785         * paragraph.C (outerHook): move from here...
5786         * paragraph_funcs.C (outerHook): ...to here
5787
5788         * paragraph.C (depthHook): move from here...
5789         * paragraph_funcs.C (depthHook): ...to here
5790
5791         * paragraph.C (getEndLabel): move from here...
5792         * paragraph_funcs.C (getEndLabel): ...to here
5793
5794         * text2.C (realizeFont): move from here...
5795         * paragraph_funcs.C (realizeFont): ...to here
5796
5797 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
5798
5799         * text3.C (gotoNextInset): use separate tmp vars for par and pos.
5800
5801 2003-04-14  Angus Leeming  <leeming@lyx.org>
5802
5803         * LColor.[Ch]: scrap LColor mathcursor.
5804
5805 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
5806
5807         * lyxlex.[Ch] (text): delete function
5808         * trans.C (Load): adjust
5809         * paragraph_funcs.C (readParToken): adjust
5810
5811 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
5812
5813         * lyxlex_pimpl.h: get rid of LEX_MAX_BUFF, change buff to be a
5814         vector<char> instead of a char[].
5815
5816         * lyxlex_pimpl.C (getString): adjust
5817         (next): adjust
5818         (lex): use getString
5819         (eatLine): adjust
5820         (nextToken): adjust
5821
5822         * lyxlex.C (text): use pimpl_->getString()
5823         (getBool): ditto
5824         (findToken): ditto
5825
5826 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
5827
5828         * text2.C (getInset): temp vars for cursor.par() and cursor.pos()
5829         (makeFontEntriesLayoutSpecific): temp var for par.size()
5830         (setLayout): temp var for ownerParagraphs().end()
5831         (fullRebreak): temp var for rows().end()
5832         (selectionAsString): temp var for boost::next(startpit), realize
5833         that the while really is a regular for loop.
5834         (cursorEnd): temp vars for cursor.row(), lastPos ++, only call
5835         setCursor in one place.
5836         (setParagraph): temp vr for ownerParagraphs().end()
5837         (updateCounters): make the while loop a for loop
5838         (cutSelection): temp var for ownerParagraphs().end()
5839         (updateInset): make the do {} while() a regular for loop
5840         (getCursorX): use temp vars
5841         (setCurrentFont): use temp vars
5842         (getColumnNearX): use temp vars
5843
5844 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
5845
5846         * text.C (transformChar): use temp var for getChar
5847         (computeBidiTables): use temp var for row->par()
5848         (fill): move temp vars for row->par() and pit->layout() earlier in
5849         the function.
5850         (labelFill): use temp var for row->par()
5851         (setHeightOfRow): do not allow rit to be RowList::end, get rid of
5852         asc and desc, realize that pit never changes and that firstpit is
5853         just a duplicate and not needed. Exchange rit->par() with pit in a
5854         lot of places.
5855         (breakAgain): use a temp var for boost::next(rit)
5856         (breakAgainOneRow): ditto
5857         (breakParagraph): use a temp var for rows().begin()
5858         (prepareToPrint): move nlh into minimal scope, use temp var for rit->par()
5859         (cursorRightOneWord): use temp var for cursor.par() and
5860         cursor.pos(), remove usage of tmpcursor.
5861         (cursorLeftOneWord): use temp var for cursor.par() and
5862         cursor.pos() only set cur at end of function.
5863
5864 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
5865
5866         * text.C, text2.C: exchange all usage of Paragraph::next with
5867         boost::next(ParagraphList::iterator)
5868
5869         * CutAndPaste.C (cutSelection): change 2. arg to a Paragraph*
5870
5871         * text2.C (cursorTop): simplify implementation
5872         (cursorBottom): ditto
5873         (setParagraph): use ParagraphList::iterator
5874         (setCurrentFont): adjust
5875         (getColumnNearX): adjust
5876         (cursorRight): adjust
5877         (cursorLeft): remove usage of Paragraph::previous
5878         (cursorUpParagraph): ditto
5879         (deleteEmptyParagraphMechanism): slight cleanup
5880
5881         * text.C (isBoundary): take a Paragraph const & instead of a
5882         pointer as arg.
5883         (addressBreakPoint): ditto
5884         (leftMargin): remove usage of Paragraph::previous.
5885         (setHeightOfRow): ditto
5886         (cursorLeftOneWord): ditto
5887         (selectNextWordToSpellcheck): ditto
5888         (Delete): ditto
5889         (backspace): ditto
5890         (breakParagraph): remove one usage of Paragraph::next
5891         (redoParagraph): ditto
5892         (acceptChange): ditto
5893         (insertChar): adjust
5894         (rowBreakPoint): adjust
5895
5896         * bufferview_funcs.C (toggleAndShow): adjust
5897
5898 2003-04-11  Alfredo Braunstein  <abraunst@libero.it>
5899
5900         * lyxrow.[Ch]: add a cached y position to a Row and Row::y()
5901         methods to access it.
5902         * lyxtext.h:
5903         * text.C: Added updateRowPositions to compute all row positions.
5904         Make top_y and getRowNearY() to use the cached y position
5905
5906 2003-04-11  John Levon  <levon@movementarian.org>
5907
5908         * text.C (rowBreakPoint): reintroduce the labelEnd
5909         checks, code copied from the row fill stuff. Deep voodoo.
5910
5911         * text.C (fill): add a comment and debugging for the
5912         next poor soul.
5913
5914 2003-04-11  John Levon  <levon@movementarian.org>
5915
5916         * text.C: make sure fullrow insets get wrapped to the next line,
5917         even when they're in a manual label
5918
5919 2003-04-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
5920
5921         * text2.C (insertParagraph): make it take ParagraphList::iterator
5922         as arg.
5923         (setLayout): make it return ParagraphList::iterator
5924         (redoParagraphs): ditto
5925         (setCounter): ditto
5926         (checkParagraph): ditto
5927
5928         * text.C (getRow): make getrow take ParagraphList::iterator as arg
5929
5930         * text2.C: adjust several funcs.
5931         (realizeFont): take a ParagraphList::iterator as arg.
5932         (getLayoutFont): ditto
5933         (getLabelFont): ditto
5934         (setCharFont): ditto
5935
5936         * text.C: adjust several funcs.
5937
5938 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
5939
5940         * text.C (selectNextWordToSpellcheck): don't accidentally
5941         skip insets
5942
5943 2003-04-10  John Levon  <levon@movementarian.org>
5944
5945         * ToolbarBackend.C (getIcon): special handling for
5946         LFUN_MATH_DELIM
5947
5948 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
5949
5950         * text2.C (cursorRight): a getChar assert fixed
5951
5952 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
5953
5954         * text2.C (getFont): change to take a ParagraphList::iterator
5955         instead of Paragraph*
5956         Adjust several functions.
5957
5958         * text.C (transformChar): change to take a ParagraphList::iterator
5959         instead of Paragraph*
5960         (singleWidth): ditto
5961         Adjust several functions.
5962
5963         * rowpainter.C: adjust several functions
5964         * rowpainter.h:store a ParagraphList::iterator and not a
5965         Paragraph&.
5966
5967
5968 2003-04-09  John Levon  <levon@movementarian.org>
5969
5970         * lyxfunc.C:
5971         * lfuns.h:
5972         * LyXAction.h:
5973         * LyXAction.C: remove LFUN_APROPOS, LFUN_GETTIP,
5974         and the "help" bits as well
5975
5976 2003-04-09  John Levon  <levon@movementarian.org>
5977
5978         * ToolbarBackend.h:
5979         * ToolbarBackend.C: allow multiple toolbars
5980
5981 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
5982
5983         * undo_funcs.C (setCursorParUndo): adjust
5984
5985         * text_funcs.C (transposeChars): adjust
5986
5987         * text3.C (gotoNextInset): adjust
5988         (dispatch): adjust
5989
5990         * text2.C (setLayout): adjust
5991         (changeDepth): adjust
5992         (setFont): adjust
5993         (redoParagraphs): adjust
5994         (selectionAsString): adjust
5995         (setParagraph): adjust
5996         (insertInset): adjust
5997         (cutSelection): adjust
5998         (copySelection): adjust
5999         (pasteSelection): adjust
6000         (insertStringAsLines): adjust
6001         (updateInset): adjust
6002         (setCursor): change to take a ParagraphList::iterator parameter
6003         (setCursorIntern): change to take a ParagraphList::iterator parameter
6004         (setCurrentFont): adjust
6005         (cursorLeft): adjust
6006         (cursorRight): adjust
6007         (deleteEmptyParagraphMechanism): adjust
6008
6009         * text.C (breakParagraph): adjust
6010         (insertChar): adjust
6011         (acceptChange): adjust
6012         (rejectChange): adjust
6013         (selectNextWordToSpellcheck): adjust
6014         (changeCase): adjust
6015         (Delete): adjust
6016         (backspace): adjust
6017
6018         * lyxfind.C (SearchForward): adjust
6019         (SearchBackward): adjust
6020         (nextChange): adjust
6021
6022         * lyxcursor.C (par): adjust
6023
6024         * lyxcursor.h: store a ParagraphList::iterator instead of a
6025         Paragraph*
6026
6027         * lyx_cb.C (getPossibleLabel): adjust
6028
6029         * bufferview_funcs.C (toggleAndShow): adjust
6030
6031         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
6032         (dispatch): adjust
6033
6034         * BufferView.C (removeAutoInsets): adjust
6035         (lockedInsetStoreUndo): adjust
6036
6037 2003-04-09  John Levon  <levon@movementarian.org>
6038
6039         * ToolbarBackend.C: try icon without argument
6040         if with argument fails
6041
6042 2003-04-08  John Levon  <levon@movementarian.org>
6043
6044         * ToolbarBackend.h:
6045         * ToolbarBackend.C: add getIcon(), handle tooltip,
6046         and change from "Icon" to "Item".
6047
6048 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
6049
6050         * BufferView.C (lockInset): another bad getchar crunched
6051
6052 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
6053
6054         * text2.C (changeDepth): do not setUndo on test_only (make undo work
6055         again)
6056
6057 2003-04-05  Alfredo Braunstein  <abraunst@libero.it>
6058
6059         * lyxfind.C (searchForward, searchBackwards): bug 782
6060
6061 2003-04-07  John Levon  <levon@movementarian.org>
6062
6063         * paragraph.C: remove dead comment
6064
6065         * text.C: remove troublesome depth-fiddling code
6066         in leftMargin() and rightMargin() (bug 1017)
6067
6068         * text.C: fix breaking of rows in nested lists
6069         (bug 1004)
6070
6071         * text2.C (updateCounters): fix up depth values
6072         (bug 1013)
6073
6074 2003-04-07  John Levon  <levon@movementarian.org>
6075
6076         * BufferView_pimpl.C: clear message when doc finishes resizing,
6077         and after a mouse event
6078
6079         * lyxfunc.C: clear message after exiting inset
6080
6081 2003-04-07  John Levon  <levon@movementarian.org>
6082
6083         * bufferview_funcs.C: show math status not outside
6084         status in the statusbar
6085
6086 2003-04-07  John Levon  <levon@movementarian.org>
6087
6088         * lyxfunc.C: note status changed after a depth change
6089
6090 2003-04-04  Angus Leeming  <leeming@lyx.org>
6091
6092         * LaTeX.h: move AuxInfo operator==, != out of line.
6093         Remove LaTeX virtual destructor; nothing derives from it.
6094         Move operator()() out of public area and rename it startscript().
6095         Change protected for private.
6096
6097 2003-04-04  Angus Leeming  <leeming@lyx.org>
6098
6099         * lyxfunc.C:
6100         * text2.C: remove unneeded #includes.
6101
6102 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
6103
6104         * text2.C (dEPM): fix the heigth of the next row
6105
6106 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
6107
6108         * text.C: squashed an invalid getChar requester + some ws changes
6109
6110 2003-04-03  John Levon  <levon@movementarian.org>
6111
6112         * bufferview_funcs.h:
6113         * bufferview_funcs.C:
6114         * lyxfunc.C:
6115         * lyxtext.h:
6116         * text2.C: make getStatus work for the env depth lfuns
6117
6118 2003-04-03  John Levon  <levon@movementarian.org>
6119
6120         * bufferview_funcs.h:
6121         * bufferview_funcs.C:
6122         * lyxfunc.C:
6123         * lyxtext.h:
6124         * text2.C: parlistize decDepth(), by merging it with incDepth()
6125
6126 2003-04-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
6127
6128         * lyxrow.h: store a ParagraphList::iterator instead of a
6129         Paragraph* and adjust other class functions to suit.
6130
6131         * lyxrow_funcs.C, text.C, text2.C, text3.C: adjust because of the
6132         above.
6133
6134 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
6135
6136         * text2.C (setCursor): do not anchor to cursor row for the time being
6137
6138 2003-04-02  John Levon  <levon@movementarian.org>
6139
6140         * LyXAction.C:
6141         * lfuns.h:
6142         * lyx_main.C:
6143         * lyxtext.h:
6144         * text.C:
6145         * text3.C: rename the "tab" lfuns. Remove tab support from normal text
6146
6147 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
6148
6149         * paragraph.h: make ParagraphList and ParagraphList::iterator
6150         friends of Paragraph.
6151
6152         * buffer.C (makeLinuxDocFile): move towards ParagraphList
6153
6154         * ParagraphList.C: Use the private next_ and previous_ from
6155         Paragraph.
6156
6157 2003-04-01  John Levon  <levon@movementarian.org>
6158
6159         * ToolbarBackend.h:
6160         * ToolbarBackend.C:
6161         * Makefile.am: rename, remove defaults gunk
6162
6163         * MenuBackend.h:
6164         * MenuBackend.C: remove defaults gunk
6165
6166         * Languages.h:
6167         * Languages.C: remove defaults gunk
6168
6169         * lyx_main.h:
6170         * lyx_main.C: error out if files couldn't be found.
6171
6172 2003-04-02  John Levon  <levon@movementarian.org>
6173
6174         * text2.C: make incDepth() use parlist
6175
6176 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
6177
6178         * undo_funcs.C (firstUndoParagraph): adjust
6179
6180         * text3.C (gotoInset): adjust
6181         (dispatch): adjust, and rewrite loop.
6182
6183         * text2.C (init): adjust, and rewrite loop.
6184         (redoParagraphs): adjust
6185         (updateInset): adjust, and rewrite loop.
6186         (deleteEmptyParagraphMechanism): adjust
6187
6188         * tabular.C (LyXTabular): adjust
6189         (SetMultiColumn): adjust
6190         (TeXRow): adjust
6191
6192         * lyxtext.[Ch] (ownerParagraph): delete function
6193         (ownerParagraphs): new function returns a ParagraphList.
6194
6195         * BufferView.C (removeAutoInsets): adjust
6196         (insertErrors): adjust
6197         (setCursorFromRow): adjust
6198
6199 2003-04-01  Angus Leeming  <leeming@lyx.org>
6200
6201         * BufferView_pimpl.C (buffer): ensure that the Layout is correct
6202         in the frontends.
6203
6204 2003-04-02  John Levon  <levon@movementarian.org>
6205
6206         * lyxtext.h:
6207         * text.C:
6208         * Makefile.am:
6209         * text_funcs.h:
6210         * text_funcs.C: make transposeChars a free function
6211
6212         * lyxrow_funcs.C: remove wrong comment
6213
6214 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
6215
6216         * lyxtext.h: adjust
6217         * rowpainter.C: adjust
6218         * text.C: adjust
6219         * text2.C: adjust
6220         * text3.C: adjust
6221
6222         * lyxrow_funcs. [Ch]: new files
6223
6224         * lyxrow.[Ch]: remove next and previous pointers
6225         (next,previous): remove accessor functions
6226         (isParEnd): move to lyxrow_funcs
6227         (lastPos): move to lyxrow_funcs
6228         (nextRowIsAllInset): move to lyxrow_funcs
6229         (lastPrintablePos): move to lyxrow_funcs
6230         (numberOfSeparators): move to lyxrow_funcs
6231         (numberOfHfills): move to lyxrow_funcs
6232         (numberOfLabelHfills): move to lyxrow_funcs
6233         (hfillExpansion): move to lyxrow_funcs
6234
6235         * lyxfunc.C: adjust
6236
6237         * bufferview_funcs.C (toggleAndShow): adjust
6238
6239         * RowList.h: Remove class RowList from file leave just a
6240         std::list<Row>.
6241
6242         * RowList.C: delete file
6243
6244         * Makefile.am (lyx_SOURCES): remove RowList.C, add lyxrow_funcs.C
6245         and lyxrow_funcs.h
6246
6247 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
6248
6249         * text3.C (cursorPrevious): adjust
6250         (cursorNext): adjust
6251         (dispatch): adjust
6252
6253         * text2.C (redoHeightOfParagraph): adjust
6254         (redoDrawingOfParagraph): adjust
6255         (setCursor): adjust
6256
6257         * text.C (breakParagraph): adjust
6258         (insertChar): adjust
6259         (backspace): adjust
6260
6261         * rowpainter.C (RowPainter): adjust
6262         (leftMargin): simplify and adjust
6263         (most rowpainter functions): adjust.
6264
6265         * rowpainter.h: store the row as RowList::iterator not as Row*
6266
6267         * lyxcursor.C (row): taka RowList::iterator as arg
6268         (irow): ditto
6269
6270         * lyxcursor.h: make the LyXCursor store RowList::iterators instead
6271         of Row*.
6272
6273 2003-04-01  Angus Leeming  <leeming@lyx.org>
6274
6275         * bufferview_funcs.C (string2font): rewrite so that it no longer uses
6276         stuff like bool Bool.
6277
6278 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
6279
6280         * text2.C (redoParagraphs): fix a bug (introduced by myself) and
6281         rewrite a loop
6282
6283 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
6284
6285         * text2.C (redoParagraphs): rewrite (with help from Alfredo) for
6286         RowList::iterator.
6287
6288         * lyxtext.h (rows): drop one version and leve a const variant that
6289         returns a RowList::iterator.
6290
6291 2003-03-31  Angus Leeming  <leeming@lyx.org>
6292
6293         * text.C (fill): ensure that the signature is the same as that in the
6294         header file.
6295
6296 2003-03-31  Lars Gullik Bjønnes  <larsbj@gullik.net>
6297
6298         * text2.C (redoParagraphs): adjust
6299         (updateCounters): adjust
6300         (checkParagraph): adjust
6301         (getColumnNearX): adjust and reformat a bit.
6302
6303         * text.C (top_y): adjust
6304         (workWidth): adjust
6305         (leftMargin): adjust
6306         (prepareToPrint): adjust
6307         (getRow): adjust
6308         (getRowNearY): adjust
6309
6310         * lyxtext.h: make rowlist_ mutable.
6311
6312         * RowList.h: add const_iterator
6313         * RowList.C: adjust for RowList::const_iterator.
6314
6315         * text2.C (getCursorX): make it take a RowList::iterator as arg,
6316         adjust.
6317
6318 2003-03-31  John Levon  <levon@movementarian.org>
6319
6320         * lyxrc.h:
6321         * lyxrc.C: moved pdf_mode and use_gui to elsewhere
6322
6323         * lyx_main.C: set default fonts from using lyx_gui funcs
6324
6325         * exporter.C: pdf_mode moved from lyxrc
6326
6327         * lyx_cb.C:
6328         * lyxfunc.C: changes from above
6329
6330 2003-03-31  John Levon  <levon@movementarian.org>
6331
6332         * lyx_main.C: fix to the last fix
6333
6334 2003-03-31  John Levon  <levon@movementarian.org>
6335
6336         * bufferlist.C: "Load original" -> "Load Original"
6337
6338         * converter.C:
6339         * exporter.C:
6340         * importer.C:
6341         * lyx_main.C:
6342         * format.C: more Alert cleanups
6343
6344 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
6345
6346         * text2.C (removeParagraph): make it take a RowList::iterator as
6347         arg, adjust.
6348         (getColumnNearX): make it take a RowList::iterator as arg, adjust.
6349         (postRowPaint): make it take a RowList::iterator as arg, adjust.
6350
6351         * text.C (anchor_row): make it take a RowList::iterator as arg,
6352         adjust.
6353         (computeBidiTables): make it take a const reference to Row instead
6354         of Row pointer, adjust.
6355         (leftMargin): make it take a RowList::iterator as arg, adjust.
6356         (rowBreakPoint): adjust
6357         (breakAgainOneRow): make it take a RowList::iterator as arg,
6358         adjust.
6359         (prepareToPrint): make it take a RowList::iterator as arg, adjust.
6360
6361         * bufferview_funcs.C (toggleAndShow): adjust
6362
6363 2003-03-30  John Levon  <levon@movementarian.org>
6364
6365         * Makefile.am:
6366         * BoostFormat.h:
6367         * boost-inst.C: moved to support
6368
6369         * several files: changes as a result
6370
6371 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
6372
6373         * text2.C (LyXText): adjust.
6374         (init): adjust
6375         (removeRow): make it take a RowList::iterator as arg, adjust.
6376         (fullRebreak): adjust
6377         (deleteEmptyParagraphMechanism): adjust
6378         (clearPaint): adjust
6379         (postPaint): adjust
6380
6381         * text.C (top_y): adjust
6382         (setHeightOfRow): make it take a RowList::iterator as arg, adjust.
6383         (breakAgain): make it take a RowList::iterator as arg, adjust.
6384         (breakParagraph): adjust
6385         (insertChar): adjust
6386         (backspace): adjust
6387
6388         * lyxtext.h: make anchor_row_ be a RowList::iterator, ditto
6389         need_break_row, and refresh_row.
6390
6391         * text3.C (dispatch): adjust
6392
6393         * text2.C (checkParagraph): adjust
6394         (setCursor): adjust
6395         (setCursorFromCoordinates): adjust
6396
6397         * text.C (top_y): adjust
6398         (workWidth): adjust
6399         (getRow): make it return a RowList::iterator, adjust
6400         (getRowNearY): make it return a RowList::iterator, adjust
6401
6402         * text2.C (init): adjust
6403         (insertRow): remove function
6404         (insertParagraph): adjust
6405         (redoParagraphs): adjust
6406         (fullRebreak): adjust
6407         (updateCounters): adjust
6408
6409         * text.C (top_y): rewrite to use RowList iterators.
6410         (top_y): adjust
6411         (setHeightOfRow): rewrite to sue RowList iterators.
6412         (appendParagraph): adjust
6413         (breakAgain): adjust
6414         (breakAgainOneRow): adjust
6415         (breakParagraph): adjust
6416         (getRow): adjust
6417         (getRowNearY): adjust, and remove commented code.
6418
6419         * lyxtext.h (firstRow): delete function
6420         (lastRow): delete function
6421         (rows): new function (const and non-const versions.)
6422         (insertRow): delete function
6423
6424         * lyxrow.[Ch] (Row): new constructor taking a par and a pos
6425
6426 2003-03-29  John Levon  <levon@movementarian.org>
6427
6428         * BufferView_pimpl.C: always update scrollbar top
6429         because pasting text when we're anchored could mean we
6430         miss an update altogether
6431
6432 2003-03-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
6433
6434         * text2.C (init): use rowlist_.end() and not 0.
6435         (insertRow): change to take a RowList::iterator as arg, adjust
6436         for this.
6437         (insertParagraph): change to take a RowList::iterator as arg,
6438         adjust for this.
6439         (redoParagraphs): remove some debug msgs.
6440
6441         * text.C (appendParagraph): change to take a RowList::iterator
6442         arg, adjust for this.
6443         (breakAgain): add an assert
6444         (breakAgainOneRow): ditto
6445
6446 2003-03-29  John Levon  <levon@movementarian.org>
6447
6448         * text2.C: do not clear selection after inc/decDepth
6449         (bug 550)
6450
6451 2003-03-29  John Levon  <levon@movementarian.org>
6452
6453         * BufferView.C:
6454         * buffer.C: fix broken strerrors according to Lars
6455
6456 2003-03-29  John Levon  <levon@movementarian.org>
6457
6458         * converters.C: more Alert cleanups
6459
6460 2003-03-29  John Levon  <levon@movementarian.org>
6461
6462         * bufferview_funcs.C: remove pointless Alert
6463
6464         * buffer.C: fix confusing error message when
6465         a template is chmoded 000
6466
6467 2003-03-29  John Levon  <levon@movementarian.org>
6468
6469         * BufferView.C:
6470         * BufferView.h:
6471         * BufferView_pimpl.C: Alert fixes
6472
6473         * Makefile.am:
6474         * tabular.C:
6475         * tabular-old.C: remove unused table compat reading
6476
6477 2003-03-29  John Levon  <levon@movementarian.org>
6478
6479         * BufferView.C:
6480         * buffer.C:
6481         * lyx_cb.h:
6482         * lyx_cb.C: more Alert cleanups
6483
6484         * lyxfunc.C: don't allow chktex if not latex document
6485
6486 2003-03-29  John Levon  <levon@movementarian.org>
6487
6488         * lyx_cb.C:
6489         * BufferView.C:
6490         * buffer.C: warnings pushed down from support/,
6491         kill err_alert
6492
6493 2003-03-29  John Levon  <levon@movementarian.org>
6494
6495         * lyxfunc.C: safety check for C-r (revert)
6496
6497 2003-03-29  John Levon  <levon@movementarian.org>
6498
6499         * bufferlist.h:
6500         * bufferlist.C: several UI fixes using Alert::prompt.
6501         Fix the pointless looping quit code. Fix stupid revert
6502         behaviour (bug 938)
6503
6504         * lyxvc.h:
6505         * lyxvc.C:
6506         * lyx_cb.C: use Alert::prompt
6507
6508         * lyx_main.C: remove a silly question
6509
6510         * lyxfunc.C: remove a couple of silly questions,
6511         use Alert::prompt
6512
6513 2003-03-28  John Levon  <levon@movementarian.org>
6514
6515         * text2.C: fix bug 974 (End on empty par)
6516
6517 2003-03-28  John Levon  <levon@movementarian.org>
6518
6519         * BufferView_pimpl.C:
6520         * LyXAction.C:
6521         * lfuns.h: remove do-nothing math greek lfuns
6522
6523 2003-03-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
6524
6525         * lyxgluelength.h (isValidGlueLength): add default arg on
6526         parameter 2. Remove default arg from friend in class.
6527
6528         * lyxlength.h (isValidLength): add default arg on parameter 2.
6529         Remove default arg from friend in class.
6530
6531         * text2.C (LyXText): adjust, initialize refresh_row.
6532         (init): adjust
6533         (removeRow): adjust
6534         (insertRow): adjust
6535         (insertParagraph): adjst
6536         (redoParagraphs): adjust
6537         (fullRebreak): adjust
6538         (updateCounters): adjust
6539         (deleteEmptyParagraphMechanism): first attempt at fixing a
6540         crashing bug.
6541
6542         * text.C (top_y): adjust
6543         (setHeightOfRow): adjust
6544         (getRow): adjust
6545         (getRowNearY): adjust
6546
6547         * lyxtext.h: include RowList.h
6548         (~LyXText): not needed anymore, deleted.
6549         (firstRow): modify for RowList
6550         (lastRow): new function
6551         Delete firstrow and lastrow class variables, add a Rowlist
6552         rowlist_ class variable.
6553
6554         * lyxrow.C (lastPos): use empty() and not !size() to check if a
6555         paragraph is empty.
6556
6557         * RowList.C (insert): fix case where it == begin().
6558
6559 2003-03-26  Angus Leeming  <leeming@lyx.org>
6560
6561         * BufferView_pimpl.C (dispatch): changes to the Dialogs interface for
6562         the thesaurus dialog.
6563
6564 2003-03-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
6565
6566         * Makefile.am (lyx_SOURCES): add RowList.[Ch]
6567
6568         * RowList.[Ch]: new files
6569
6570         * ParagraphList.C (erase): handle the case where it == begin
6571         correctly.
6572
6573 2003-03-25  John Levon  <levon@movementarian.org>
6574
6575         * Makefile.am:
6576         * aspell_local.h:
6577         * aspell.C: add new aspell support
6578
6579         * lyxrc.h:
6580         * lyxrc.C: Make use_pspell be use_spell_lib. Always
6581         have it accessible.
6582
6583 2003-03-25  Angus Leeming  <leeming@lyx.org>
6584
6585         * lfuns.h:
6586         * LyXAction.C (init): new LFUN_INSET_INSERT.
6587
6588         * BufferView_pimpl.C (dispatch): split out part of the
6589         LFUN_INSET_APPLY block LFUN_INSET_INSERT.
6590
6591         * factory.C (createInset): act on LFUN_INSET_INSERT rather than
6592         LFUN_INSET_APPLY.
6593
6594 2003-03-25  Angus Leeming  <leeming@lyx.org>
6595
6596         * lyxfunc.C (dispatch): changes to the Dialogs interface.
6597
6598 2003-03-25  Alfredo Braunstein  <abraunst@libero.it>
6599
6600         * text2.C:
6601         * text3.C: remove useless row->height(0)
6602
6603 2003-03-25  John Levon  <levon@movementarian.org>
6604
6605         * lyxtext.h:
6606         * text2.C:
6607         * text3.C: rename the refreshing stuff to better names
6608
6609 2003-03-24  John Levon  <levon@movementarian.org>
6610
6611         * BufferView_pimpl.h:
6612         * BufferView_pimpl.C: update layout choice on a mouse
6613         press/release
6614
6615 2003-03-23  John Levon  <levon@movementarian.org>
6616
6617         * Makefile.am: fix commandtags.h reference
6618
6619 2003-03-22  John Levon  <levon@movementarian.org>
6620
6621         * BufferView_pimpl.C:
6622         * lyxtext.h:
6623         * rowpainter.C:
6624         * rowpainter.h:
6625         * text.C:
6626         * text2.C: remove CHANGED_IN_DRAW, it cannot happen now
6627
6628 2003-03-21  Alfredo Braunstein  <abraunst@libero.it>
6629
6630         * lyxtext.h:
6631         * text.C: take the rtl methods out of line
6632
6633 2003-03-21 André Pönitz <poenitz@gmx.net>
6634
6635         * metricsinfo.[Ch]: new files containing structures to be passed around
6636         during the two-phase-drawing...
6637
6638 2003-03-21 André Pönitz <poenitz@gmx.net>
6639
6640         * lyxtextclass.C: read 'environment' tag.
6641
6642 2003-03-20  Alfredo Braunstein  <abraunst@libero.it>
6643
6644         * text2.C (removeRow): fix bug 964
6645
6646 2003-03-20  John Levon  <levon@movementarian.org>
6647
6648         * rowpainter.C:
6649         * text.C:
6650         * text2.C: paint cleanups. Inset::update() dropped font
6651         parameter
6652
6653 2003-03-19  John Levon  <levon@movementarian.org>
6654
6655         * lyxfunc.C: only fitcursor/markDirty if available()
6656
6657 2003-03-19  John Levon  <levon@movementarian.org>
6658
6659         * commandtags.h: rename to ...
6660
6661         * lfuns.h: ... this, and renumber / cleanup
6662
6663 2003-03-19  John Levon  <levon@movementarian.org>
6664
6665         * lyxfunc.C: mark buffer dirty if we executed a "dirtying" lfun.
6666         fit the cursor after an lfun
6667
6668         * BufferView.h:
6669         * BufferView.C:
6670         * BufferView_pimpl.h:
6671         * BufferView_pimpl.C: remove BufferView::FITCUR/CHANGE
6672
6673         * LyXAction.C: layout-character should have ReadOnly
6674
6675         * ParagraphParameters.C:
6676         * buffer.C:
6677         * bufferview_funcs.C:
6678         * lyx_cb.C:
6679         * lyxfind.C:
6680         * lyxtext.h:
6681         * text.C:
6682         * text2.C:
6683         * text3.C:
6684         * undo_funcs.C: changes from above
6685
6686 2003-03-18  John Levon  <levon@movementarian.org>
6687
6688         * BufferView_pimpl.C (scrollDocView): add updateLayoutChoice(),
6689         remove it from update()
6690
6691         * lyxfunc.C: update layout choice after an lfun
6692
6693         * text3.C: remove extra updateLayoutChoice()s
6694
6695 2003-03-18  John Levon  <levon@movementarian.org>
6696
6697         * text.C: top_y change means full repaint, fix
6698         a drawing bug with cursor movement
6699
6700 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
6701
6702         * lyxtext.h:
6703         * text.C:
6704         * text2.C: anchor row on setCursor
6705
6706 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
6707
6708         * lyxtext.h: remove almost all mutable keywords
6709         * text.C:
6710         * text2.C:
6711         * text3.C: remove const keywords accordingly
6712
6713 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
6714
6715         * paragraph_funcs.C (TeXDeeper): reduce number of args, move into
6716         anon namespace
6717         (TeXEnvironment): ditto
6718         (TeXOnePar): ditto
6719
6720 2003-03-17  John Levon  <levon@movementarian.org>
6721
6722         * text.C (rowBreakPoint): remove attempt to fix displayed
6723         math insets inside a manual label
6724
6725 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
6726
6727         * lyxtext.h: remove BufferView* as first arg from almost all class
6728         functions.
6729         * other files: adjust.
6730
6731 2003-03-17  John Levon  <levon@movementarian.org>
6732
6733         * lyxtext.h:
6734         * undo_funcs.C:
6735         * text2.C: more paint cleanups
6736
6737         * BufferView_pimpl.C: screen prototype changed, use postPaint etc.
6738
6739         * rowpainter.h:
6740         * rowpainter.C: remove "smart" background painting code
6741
6742 2003-03-16  John Levon  <levon@movementarian.org>
6743
6744         * lyxtext.h:
6745         * text.C:
6746         * text2.C:
6747         * text3.C: add helper functions for setting refresh_row/y
6748
6749 2003-03-14  Kayvan Sylvan  <kayvan@sylvan.com>
6750
6751         * paragraph_pimpl.C (simpleTeXSpecialChars): Added fix for the
6752         newline inset which *can* get inserted in the pass_thru layouts.
6753         This is primarily for literate documents.
6754
6755 2003-03-14  Dekel Tsur  <dekelts@tau.ac.il>
6756
6757         * buffer.C: increment LYX_FORMAT to 223
6758
6759 2003-03-14 André Pönitz <poenitz@gmx.net>
6760
6761         * textclass.h: prepare for environment handling, ws changes
6762         * lyxlayout.C: read latexheader and latexfooter tags
6763
6764 2003-03-14  John Levon  <levon@movementarian.org>
6765
6766         * text2.C: rewrite ::status() a bit
6767
6768 2003-03-13  John Levon  <levon@movementarian.org>
6769
6770         * lyxtext.h: add some docs
6771
6772 2003-03-13  John Levon  <levon@movementarian.org>
6773
6774         * lyxtext.h:
6775         * text.C:
6776         * text2.C:
6777         * text3.C: remove pointless 2nd arg to setHeightOfParagraph()
6778
6779 2003-03-13  John Levon  <levon@movementarian.org>
6780
6781         * text3.C: fix appendix redrawing
6782
6783 2003-03-13  John Levon  <levon@movementarian.org>
6784
6785         * text.C (setHeightOfRow):
6786         * rowpainter.h:
6787         * rowpainter.C: make appendix mark have the text
6788           "Appendix" so the user knows what it is
6789
6790         * LColor.h:
6791         * LColor.C: s/appendixline/appendix/ from above
6792
6793 2003-03-13  John Levon  <levon@movementarian.org>
6794
6795         * paragraph_pimpl.C: fix Andre's backing out of the strong assertion
6796
6797         * text.C: fix a getChar(pos) bug properly
6798
6799 2003-03-13  Angus Leeming  <leeming@lyx.org>
6800
6801         * commandtags.h:
6802         * LyXAction.C (init): new LFUNs PARAGRAPH_APPLY and PARAGRAPH_UPDATE.
6803         Probably only temporary. Let's see how things pan out.
6804
6805         * BufferView.C (unlockInset):
6806         * BufferView_pimpl.C (fitCursor):
6807         replace Dialogs::updateParagraph with dispatch(LFUN_PARAGRAPH_UPDATE).
6808
6809         * BufferView_pimpl.C (dispatch): code for LFUNs LAYOUT_PARAGRAPH,
6810         PARAGRAPH_UPDATE, PARAGRAPH_APPLY.
6811
6812         * ParagraphParameters.[Ch] (setParagraphParams, params2string):
6813         new functions that convert ParagraphParameters to and from a string.
6814
6815         * lyxfunc.C (dispatch): move LFUN_LAYOUT_PARAGRAPH to
6816         BufferView::Pimpl's dispatch.
6817         In LFUN_ESCAPE, dispatch LFUN_PARAGRAPH_UPDATE.
6818
6819 2003-03-13 André Pönitz <poenitz@gmx.net>
6820
6821         * lyxfunc.C:
6822         * text3.C:
6823         * factory.C: make it aware of InsetEnv
6824
6825 2003-03-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
6826
6827         * text2.C (setCursor): never ask for one past last
6828         (setCursor): add some debugging messages.
6829
6830         * text.C (singleWidth): never ask for one past last
6831         (singleWidth): ditto
6832         (leftMargin): ditto
6833         (rightMargin): ditto
6834         (rowBreakPoint): ditto
6835         (setHeightOfRow): ditto
6836         (prepareToPrint): ditto
6837
6838         * rowpainter.C (paintBackground): never ask for one past last
6839         (paintText): never ask for one past last
6840
6841         * paragraph_pimpl.C (getChar): make the assert stricter, never
6842         allow the one past last pos to be taken
6843
6844         * paragraph.C (getChar): ws changes only
6845
6846         * lyxrow.C (nextRowIsAllInset): never ask for one past last
6847         (numberOfSeparators): ditto
6848         (numberOfHfills): ditto
6849
6850 2003-03-12  John Levon  <levon@movementarian.org>
6851
6852         * author.h:
6853         * author.C:
6854         * bufferparams.h:
6855         * bufferparams.C:
6856         * paragraph_funcs.C: fix per-buffer authorlists
6857
6858 2003-03-12  John Levon  <levon@movementarian.org>
6859
6860         * text.C: fix newline in right address
6861
6862 2003-03-12  Angus Leeming  <leeming@lyx.org>
6863
6864         * BufferView_pimpl.C (dispatch): remove LFUNs from switch as they
6865         duplicate those in LyXFunc::dispatch.
6866
6867         * commandtags.h:
6868         * LyXAction.C:
6869         * ToolbarDefaults.C:
6870         rename LFUN_FREE as LFUN_FONTFREE_APPLY.
6871         Add LFUN_FONTFREE_UPDATE.
6872
6873         * lyxfunc.C (dispatch): code for LFUN_FREEFONT_APPLY,
6874         LFUN_FREEFONT_UPDATE, LFUN_LAYOUT_CHARACTER.
6875
6876         * bufferview_func.[Ch]: several new functions to facilliate
6877         transfer of data to and from the character dialog.
6878
6879 2003-03-12  John Levon  <levon@movementarian.org>
6880
6881         * buffer.C:
6882         * paragraph.h:
6883         * paragraph.C:
6884         * paragraph_funcs.C:
6885         * paragraph_pimpl.C:
6886         * sgml.C:
6887         * tabular.C:
6888         * text.C:
6889         * text3.C: remove META_NEWLINE in favour of an inset
6890
6891         * rowpainter.h:
6892         * rowpainter.C: remove paintNewline (done by inset)
6893
6894 2003-03-12  John Levon  <levon@movementarian.org>
6895
6896         * paragraph_pimpl.C: complain about bad getChar()s
6897         for a while at least
6898
6899 2003-03-12  John Levon  <levon@movementarian.org>
6900
6901         * buffer.h:
6902         * buffer.C: move paragraph read into a separate function,
6903         a little renaming to reflect that.
6904
6905         * bufferparams.h:
6906         * bufferparams.C: remove the author_ids map, not necessary now
6907
6908         * factory.h:
6909         * factory.C: moved Buffer::readInset to here
6910
6911         * paragraph_funcs.h:
6912         * paragraph_funcs.C: readParagraph free function moved from
6913         buffer.C
6914
6915         * tabular.C: name change
6916
6917 2003-03-12  John Levon  <levon@movementarian.org>
6918
6919         * buffer.C:
6920         * ParagraphParameters.C: move par params input to
6921         a read() method
6922
6923         * lyxlex_pimpl.C: make nextToken()/next() after a pushToken()
6924         behave like a normal read from the stream wrt reading
6925         a line vs. a \\token
6926
6927 2003-03-12  John Levon  <levon@movementarian.org>
6928
6929         * paragraph.C:
6930         * ParagraphParameters.h:
6931         * ParagraphParameters.C: move output code to a
6932         ::write() method
6933
6934 2003-03-12  John Levon  <levon@movementarian.org>
6935
6936         * BufferView.C (insertLyXFile):
6937         * buffer.h:
6938         * buffer.C:
6939         * tabular.C: use a parlist iterator for creating the
6940           document.
6941
6942 2003-03-12  John Levon  <levon@movementarian.org>
6943
6944         * buffer.C: make current_change static local not
6945           static file-scope
6946
6947 2003-03-12  John Levon  <levon@movementarian.org>
6948
6949         * buffer.C: fix insertStringAsLines for change tracking
6950
6951 2003-03-12  John Levon  <levon@movementarian.org>
6952
6953         * BufferView.C:
6954         * tabular.C:
6955         * buffer.h:
6956         * buffer.C:
6957         * bufferparams.h:
6958         * bufferparams.C: move author list into params. Rename some
6959           functions. Move the header reading into a separate token
6960           loop. Move the header token reading into BufferParams.
6961
6962 2003-03-12  John Levon  <levon@movementarian.org>
6963
6964         * changes.C: put debug inside lyxerr.debugging() checks
6965
6966 2003-03-11 André Pönitz <poenitz@gmx.net>
6967
6968         * factory.C: make it aware of InsetHFill
6969
6970 2003-03-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6971
6972         * buffer.C (latexParagraphs): move function from here...
6973         * paragraph_funcs.C (latexParagraphs): ...to here, and adjust
6974         args.
6975
6976 2003-03-10  Angus Leeming  <leeming@lyx.org>
6977
6978         * LyXAction.C (init): fix bug in poplating array with multiple entries
6979         with the same LFUN (spotted by JMarc).
6980
6981 2003-03-10  John Levon  <levon@movementarian.org>
6982
6983         * text.C:
6984         * text2.C: move getColumnNearX() near its
6985         only call site
6986
6987 2003-03-10  John Levon  <levon@movementarian.org>
6988
6989         * text.C: fix break before a minipage
6990
6991 2003-03-10  John Levon  <levon@movementarian.org>
6992
6993         * text.C: fix the last commit
6994
6995 2003-03-09  John Levon  <levon@movementarian.org>
6996
6997         * lyxtext.h:
6998         * text.C:
6999         * text2.C: clean up nextBreakPoint (now rowBreakPoint). Fix
7000         bug 365 (don't break before insets unless needed). Don't
7001         return a value > last under any circumstances.
7002
7003 2003-03-09  Angus Leeming  <leeming@lyx.org>
7004
7005         * BufferView_pimpl.C (trackChanges, dispatch): call
7006         Dialogs::show("changes") rather than Dialogs::showMergeChanges().
7007
7008 2003-03-09  Angus Leeming  <leeming@lyx.org>
7009
7010         * lyxfunc.C (dispatch): call Dialogs::show("about") rather
7011         than Dialogs::showAboutlyx().
7012
7013 2003-03-09  Angus Leeming  <leeming@lyx.org>
7014
7015         * factory.C (createInset): call Dialogs::show("tabularcreate") rather
7016         than Dialogs::showTabularCreate().
7017
7018 2003-03-09  John Levon  <levon@movementarian.org>
7019
7020         * lyxtext.h:
7021         * text.C:
7022         * text2.C: 3rd arg to nextBreakPoint was always the same.
7023           Use references.
7024
7025 2003-03-08  John Levon  <levon@movementarian.org>
7026
7027         * lyxrow.C:
7028         * paragraph.C:
7029         * paragraph.h:
7030         * rowpainter.C:
7031         * text.C:
7032         * text2.C: Remove the "main" bit from the "main body"
7033           notion.
7034
7035 2003-03-08  John Levon  <levon@movementarian.org>
7036
7037         * text.C (leftMargin): The left margin of an empty
7038         manual label paragraph should not include the label width
7039         string length.
7040
7041         * text.C (prepareToPrint): don't attempt to measure hfills
7042         for empty manual label paragraphs - the answer should be 0
7043
7044 2003-03-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
7045
7046         * CutAndPaste.C: remove commented code and reindent.
7047
7048 2003-03-08  John Levon  <levon@movementarian.org>
7049
7050         * lyxfunc.h:
7051         * lyxfunc.C: move reloadBuffer()
7052
7053         * BufferView.h:
7054         * BufferView.C: to here
7055
7056         * lyxvc.C: add comment
7057
7058         * vc-backend.h:
7059         * vc-backend.C: call bv->reload() to avoid
7060           getStatus() check on MENURELOAD
7061
7062 2003-03-07  Dekel Tsur  <dekelts@tau.ac.il>
7063
7064         * LaTeX.C (run): Fix a bug where the DVI file was not updated due
7065         to an old format .dep file.
7066
7067 2003-03-07  Angus Leeming  <leeming@lyx.org>
7068
7069         * text3.C (dispatch): remove the 'gross hack' of calling inset->edit
7070         when the LFUN_MOUSE_RELEASE should have been handled by
7071         inset->localDispatch.
7072
7073 2003-03-07  Angus Leeming  <leeming@lyx.org>
7074
7075         * BufferView_pimpl.C (dispatch):
7076         * LyXAction.C (init):
7077         * ToolbarDefaults.C (init):
7078         * commandtags.h:
7079         * lyxfunc.C (getStatus):
7080         remove LFUN_INSET_GRAPHICS.
7081
7082         * factory.C (createInset): add "graphics" to LFUN_INSET_APPLY.
7083
7084 2003-03-07  Angus Leeming  <leeming@lyx.org>
7085
7086         * commandtags.h:
7087         * LyXAction.C (init):
7088         * lyxfunc.C (getStatus): remove LFUN_REF_INSERT.
7089
7090         * lyxfunc.C (getStatus): add LFUN_DIALOG_SHOW_NEW_INSET to switch.
7091
7092         * commandtags.h:
7093         * LyXAction.C: add LFUN_INSET_DIALOG_UPDATE.
7094
7095         * lyxfunc (dispatch): on LFUN_DIALOG_UPDATE, pass the 'open' inset's
7096         localDispatch method LFUN_INSET_DIALOG_UPDATE.
7097
7098 2003-03-07  Angus Leeming  <leeming@lyx.org>
7099
7100         * lyxfunc.C (dispatch): add "include" to LFUN_SHOW_NEW_INSET and
7101         remove "ert".
7102
7103 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
7104
7105         * ParagraphList.C (front): new function
7106         (back): implement
7107
7108 2003-03-06  Alfredo Braunstein  <abraunst@libero.it>
7109
7110         * lyxtext.h (top_y): added these 2 methods, and private vars top_row_
7111         and top_row_offset_. removed var first_y.
7112         * text.C (top_y):
7113         * text2.C (LyXText, removeRow):
7114         * text3.C:
7115         * BufferView_pimpl.C:
7116         use these methods instead of using first_y
7117
7118 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
7119
7120         * text2.C (pasteSelection): adjust for checkPastePossible
7121
7122         * CutAndPaste.C: remove Paragraph * buf and replace with
7123         ParagraphList paragraphs.
7124         (DeleteBuffer): delete
7125         (cutSelection): change the tc type to textclass_type
7126         (copySelection): change the tc type to textclass_type
7127         (copySelection): adjust for ParagraphList
7128         (pasteSelection): change the tc type to textclass_type
7129         (pasteSelection): adjust for Paragraphlist
7130         (nrOfParagraphs): simplify for ParagraphList
7131         (checkPastePossible): simplify for ParagraphList
7132         (checkPastePossible): remove unused arg
7133
7134         * ParagraphList.C (insert): handle the case where there are no
7135         paragraphs yet.
7136
7137         * CutAndPaste.h: make CutAndPaste a namespace.
7138
7139         * text3.C (dispatch): adjust
7140
7141         * text.C (breakParagraph): add a ParagraphList as arg
7142
7143         * paragraph_funcs.C (breakParagraph): change to take a
7144         BufferParams and a ParagraphList as args.
7145         (breakParagraphConservative): ditto
7146         (mergeParagraph): ditto
7147         (TeXDeeper): add a ParagraphList arg
7148         (TeXEnvironment): ditto
7149         (TeXOnePar): ditto
7150
7151         * buffer.C (readLyXformat2): adjust
7152         (insertStringAsLines): adjust
7153         (latexParagraphs): adjust
7154
7155         * CutAndPaste.C (cutSelection): use 'true' not '1' as truth value.
7156         (cutSelection): adjust
7157         (pasteSelection): adjust
7158
7159         * BufferView_pimpl.C (insertInset): adjust
7160
7161 2003-03-05  Angus Leeming  <leeming@lyx.org>
7162
7163         * commandtags.h:
7164         * LyXAction.C (init):
7165         * BufferView_pimpl.C (dispatch):
7166         * lyxfunc.C (getStatus):
7167         remove LFUN_CHILD_INSERT.
7168
7169         * factory.C (createInset): add "include" to LFUN_INSET_APPLY.
7170
7171 2003-03-05  Angus Leeming  <leeming@lyx.org>
7172
7173         * commandtags.h:
7174         * LyXAction.C (init):
7175         * src/factory.C (createInset):
7176         * lyxfunc.C (getStatus):
7177         * text3.C (dispatch):
7178         remove LFUN_INSET_EXTERNAL and LFUN_INSERT_URL
7179
7180         * factory.C (createInset): add "external" to LFUN_INSET_APPLY.
7181
7182 2003-03-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
7183
7184         * ParagraphList.C (insert): handle insert right before end()
7185         (erase): fix cases where it can be first or last paragraph.
7186
7187 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
7188
7189         * paragraph_funcs.C (TeXEnvironment): remove all usage of
7190         Paragraph::next and Paragraph::previous
7191         (TeXOnePar): ditto
7192
7193         * text.C (breakParagraph): adjust
7194
7195         * paragraph_funcs.C (breakParagraph): take a Buffer* instead of a
7196         BufferParams& as arg.
7197         (breakParagraph): use ParagraphList::insert
7198         (breakParagraphConservative): take a Buffer* instead of a
7199         BufferParams& as arg.
7200         (breakParagraphConservative): use ParagraphList::insert.
7201
7202         * buffer.C (insertStringAsLines): un-const it
7203         (insertStringAsLines): adjust
7204
7205         * ParagraphList.C (insert): new function
7206
7207         * CutAndPaste.C (pasteSelection): adjust
7208
7209         * text.C (backspace): adjust
7210
7211         * tabular.C (SetMultiColumn): adjust
7212
7213         * CutAndPaste.C (cutSelection): adjust
7214         (pasteSelection): adjust
7215
7216         * tabular.C (SetMultiColumn): make it take a Buffer* instead of a
7217         Buffer const * as arg
7218
7219         * ParagraphList.C (erase): new function
7220         * paragraph_funcs.C (mergeParagraph): use it
7221         (mergeParagraph): make it take a Buffer* instead of a
7222         BufferParams* as arg
7223
7224         * paragraph_funcs.C (breakParagraph): take ParagraphList::iterator
7225         as arg
7226         (breakParagraphConservative): ditto
7227
7228         * paragraph.h: remove the breakParagraph friend
7229
7230         * paragraph.C (eraseIntern): new function
7231         (setChange): new function
7232
7233         * paragraph_funcs.C (mergeParagraph): make it take a
7234         ParagraphList::iterator instead of a Paragraph *, adjust
7235         accordingly.
7236
7237         * paragraph.h: move an #endif so that the change tracking stuff
7238         also works in the NO_NEXT case.
7239
7240 2003-03-04  Angus Leeming  <leeming@lyx.org>
7241
7242         * commandtags.h:
7243         * LyXAction.C: new LFUN_INSET_MODIFY.
7244
7245         * BufferView_pimpl.C (dispatch): if an inset is found to be open
7246         on LFUN_INSET_APPLY, pass LFUN_INSET_MODIFY to its localDispatch.
7247
7248 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
7249
7250         * several files: ws changes only
7251
7252         * paragraph_funcs.C (TeXOnePar): take ParagraphList::iterator as args
7253         (TeXEnvironment): ditto
7254         (TeXDeeper): ditto
7255
7256         * buffer.C (makeLaTeXFile): adjust
7257         (latexParagraphs): make it take ParagraphList::iterator as args
7258
7259 2003-03-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
7260
7261         * buffer.C (latexParagraphs): adjust
7262
7263         * paragraph.C (TeXOnePar): move function...
7264         (optArgInset): move function...
7265         (TeXEnvironment): move function...
7266         * paragraph_pimpl.C (TeXDeeper): move function...
7267         * paragraph_funcs.C: ...here
7268
7269         * tabular.C (UseParbox): rewrite to use ParagraphList iterators.
7270
7271 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
7272
7273         * buffer.C (readInset): remove compability code for old Figure and
7274         InsetInfo insets
7275
7276 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
7277
7278         * buffer.C: ws changes
7279         (readInset):
7280
7281         * BufferView_pimpl.C: ditto
7282         * author.C: ditto
7283         * buffer.h: ditto
7284         * bufferlist.h: ditto
7285         * changes.h: ditto
7286         * lyxfunc.C: ditto
7287
7288 2003-02-28  Alfredo Braunstein <abraunst@libero.it>
7289
7290         * converter.[Ch]: split into itself +
7291         * graph.[Ch]
7292         * format.[Ch]
7293         * Makefile.am: += graph.[Ch] + format.[Ch]
7294         * MenuBackend.C
7295         * buffer.C
7296         * exporter.C
7297         * importer.C
7298         * lyx_main.C
7299         * lyxfunc.C
7300         * lyxrc.C: added #include "format.h"
7301
7302 2003-02-27  Angus Leeming  <leeming@lyx.org>
7303
7304         * BufferView_pimpl.C (dispatch): call a real, LyX dialog to insert
7305           a label.
7306
7307         * factory.C (createInset): add "label" to the factory.
7308
7309         * lyx_cb.[Ch] (getPossibleLabel): rewrite MenuInsertLabel to return the
7310           string and do no more.
7311
7312 2003-02-27  Angus Leeming  <leeming@lyx.org>
7313
7314         * commandtags.h:
7315         * LyXAction.C (init):
7316         * factory.C (createInset):
7317         * BufferView_pimpl.C (dispatch):
7318           collapse LFUN_XYZ_APPLY to LFUN_INSET_APPLY.
7319
7320         * lyxfunc.C (getStatus): remove LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY.
7321
7322         * lyxfunc.C (dispatch):
7323         * text3.C (dispatch): pass name to params2string.
7324
7325 2003-02-26  Angus Leeming  <leeming@lyx.org>
7326
7327         * BufferView_pimpl.C (dispatch): collapse the various LFUN_XYZ_APPLY
7328           blocks together.
7329           Rearrange the ~includes. Strip out the unnecessary ones.
7330
7331         * factory.C (createInset): reformat.
7332           create new insets for the various LFUN_XYZ_APPLY lfuns.
7333
7334 2003-02-26  John Levon  <levon@movementarian.org>
7335
7336         * lyxrow.h:
7337         * lyxrow.C: add isParStart,isParEnd helpers
7338
7339         * paragraph.h: make isInserted/DeletedText take refs
7340
7341         * paragraph_funcs.h:
7342         * paragraph_funcs.C: remove #if 0'd code
7343
7344         * lyxtext.h:
7345         * text3.C:
7346         * text2.C:
7347         * text.C: use lyxrow helpers above.
7348           Move draw and paint routines to RowPainter.
7349           Make several methods use refs not pointers.
7350           Make backgroundColor() const.
7351           Add markChangeInDraw(), isInInset().
7352           Merge changeRegionCase into changeCase.
7353           Make workWidth() shouldn't-happen code into an Assert.
7354
7355         * rowpainter.h:
7356         * rowpainter.C: new class for painting a row.
7357
7358         * vspace.h:
7359         * vspace.C: make inPixels take a ref
7360
7361 2003-02-26  Angus Leeming  <leeming@lyx.org>
7362
7363         * BufferView_pimpl.C (dispatch): use InsetCommand::localDispatch for
7364         LFUN_REF_APPLY.
7365
7366 2003-02-25  John Levon  <levon@movementarian.org>
7367
7368         * ispell.C: give the forked command a more accurate name
7369
7370 2003-02-22  John Levon  <levon@movementarian.org>
7371
7372         * toc.h:
7373         * toc.C: make TocItem store an id not a Paragraph *
7374           (bug #913)
7375
7376 2003-02-21  Angus Leeming  <leeming@lyx.org>
7377
7378         * commandtags.h: Retire LFUN_CITATION_INSERT, LFUN_CITATION_CREATE,
7379           LFUN_INSERT_BIBTEX, LFUN_BIBTEX_STYLE, LFUN_BIBDB_ADD, LFUN_BIBDB_DEL.
7380           Bring to life LFUN_DIALOG_SHOW_NEW_INSET, LFUN_DIALOG_SHOW_NEXT_INSET,
7381           LFUN_DIALOG_UPDATE, LFUN_DIALOG_HIDE, LFUN_DIALOG_DISCONNECT_INSET,
7382           LFUN_BIBITEM_APPLY, LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY,
7383           LFUN_INDEX_APPLY, LFUN_REF_APPLY, LFUN_TOC_APPLY, LFUN_URL_APPLY,
7384
7385         * BufferView_pimpl.C (dispatch):
7386         * LyXAction.C (init):
7387         * factory.C (createInset):
7388         * lyxfunc.C (getStatus, dispatch):
7389         * text3.C (dispatch): retire old LFUNs and bring new ones to life.
7390
7391 2003-02-21  Angus Leeming  <leeming@lyx.org>
7392
7393         * BufferView_pimpl.C (MenuInsertLyXFile):
7394         * lyx_cb.C (WriteAs, getContentsOfAsciiFile):
7395         * lyxfunc.C (menuNew, open, doImport):
7396           no longer pass a LyXView & to fileDlg.
7397
7398 2003-02-21  Angus Leeming  <leeming@lyx.org>
7399
7400         * BufferView_pimpl.C: replace insetbib.h with insetbibtex.h.
7401         * LyXAction.C: change, BIBKEY to BIBITEM.
7402         * buffer.C: replace insetbib.h with insetbibitem.h and insetbibtex.h.
7403         Change InsetBibKey to InsetBibitem.
7404         Change BIBKEY_CODE to BIBITEM_CODE.
7405         * commandtags.h: change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
7406         * factory.C: replace insetbib.h with insetbibitem.h.
7407         Change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
7408         * paragraph.C: replace insetbib.h with insetbibitem.h.
7409         * paragraph.[Ch]: change InsetBibKey to InsetBibitem.
7410         Change bibkey() to bibitem().
7411         * text.C: remove insetbib.h.
7412         * text2.C: replace insetbib.h with insetbibitem.h.
7413         change bibkey() to bibitem().
7414         * text3.C: remove insetbib.h.
7415         change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
7416
7417 2003-02-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7418
7419         * lyxrc.C (output): enclose user email in quotes (in case there are
7420         several words)
7421
7422 2003-02-18  John Levon  <levon@movementarian.org>
7423
7424         * buffer.h: add std::
7425
7426 2003-02-17  John Levon  <levon@movementarian.org>
7427
7428         * SpellBase.h:
7429         * ispell.h:
7430         * ispell.C:
7431         * pspell.h:
7432         * pspell.C: reworking. Especially in ispell, a large
7433           number of clean ups and bug fixes.
7434
7435         * lyxfunc.C: fix revert to behave sensibly
7436
7437 2003-02-17 André Pönitz <poenitz@gmx.net>
7438
7439         * LyXAction.C:
7440         * commandtags.h: new LFUN_INSERT_BIBKEY
7441
7442         * layout.h:
7443         * lyxlayout.C:
7444         * buffer.C:
7445         * factory.C:
7446         * text.C:
7447         * text2.C:
7448         * text3.C:
7449         * paragraph.[Ch]:
7450         * paragraph_func.C: remove special bibkey handling
7451
7452 2003-02-17  John Levon  <levon@movementarian.org>
7453
7454         * text.C (Delete): fix case where delete at the end of
7455           the very first paragraph would not merge the pars
7456
7457 2003-02-17  John Levon  <levon@movementarian.org>
7458
7459         * lyxrow.C: fix lastPrintablePos()
7460
7461 2003-02-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7462
7463         * bufferparams.C (writeLaTeX): add a std:here
7464
7465         * buffer.C: and remove a using directive there
7466
7467 2003-02-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7468
7469         * buffer.C (makeLaTeXFile): move the code that generates the
7470           preamble...
7471
7472         * bufferparams.C (writeLaTeX): ... in this new method
7473
7474         * LaTeXFeatures.C (getEncodingSet): make const
7475           (getLanguages): make const
7476
7477         * MenuBackend.C (binding): returns the binding associated to this
7478           action
7479           (add): sets the status of each item by calling getStatus. Adds
7480           some intelligence.
7481           (read): add support for OptSubMenu
7482           (expand): remove extra separator at the end of expanded menu
7483
7484 2003-02-15  John Levon  <levon@movementarian.org>
7485
7486         * BufferView.C:
7487         * BufferView_pimpl.C:
7488         * bufferlist.h:
7489         * bufferlist.C: remove pointless BufferStorage bloat. Remove
7490           inset code that had no actual effect. Remove unneeded status
7491           code.
7492
7493 2003-02-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7494
7495         * buffer.C (makeLaTeXFile): fix counting of number of line feeds
7496           in preamble
7497
7498 2003-02-14  Michael Schmitt <michael.schmitt@teststep.org>
7499
7500         * text.C (drawLengthMarker): also draw an arrow marker for
7501           symbolic lengths (medskip...)
7502
7503 2003-02-14  John Levon  <levon@movementarian.org>
7504
7505         * tabular.h:
7506         * tabular.C: better method names
7507
7508 2003-02-14  John Levon  <levon@movementarian.org>
7509
7510         * BufferView_pimpl.C:
7511         * bufferlist.C:
7512         * buffer.C:
7513         * converter.C:
7514         * lyx_cb.C:
7515         * lyxfunc.C: change prohibit/allowInput to busy(bool), as
7516           it's a more accurate name. Remove some pointless uses.
7517
7518 2003-02-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7519
7520         * text2.C (LyXText): change order of initilizers to shut off
7521           warnings
7522
7523 2003-02-14  John Levon  <levon@movementarian.org>
7524
7525         * buffer.C: use ParIterator for getParFromID()
7526
7527         * paragraph.h:
7528         * paragraph.C:
7529         * paragraph_pimpl.h:
7530         * paragraph_pimpl.C: remove unused getParFromID()
7531
7532 2003-02-14  John Levon  <levon@movementarian.org>
7533
7534         * buffer.C: remove some very old #if 0'd parse code
7535
7536 2003-02-13  John Levon  <levon@movementarian.org>
7537
7538         * text.h:
7539         * text.C:
7540         * text2.C: move hfillExpansion(), numberOfSeparators(),
7541           rowLast(), rowLastPrintable(), numberofHfills(),
7542           numberOfLabelHfills() ...
7543
7544         * lyxrow.h:
7545         * lyxrow.C: ... to member functions here.
7546
7547         * paragraph.h:
7548         * paragraph.C:
7549         * lyxtext.h:
7550         * text.C: remove LyXText::beginningOfMainBody(), and call
7551           p->beginningOfMainBody() directly. Move the check for
7552           LABEL_MANUAL into the latter.
7553
7554         * text.h:
7555         * text.C:
7556         * text2.C:
7557         * vspace.C:
7558         * BufferView.h:
7559         * BufferView.C: make defaultHeight() be a free defaultRowHeight()
7560
7561         * text.h:
7562         * text.C:
7563         * text2.C:
7564         * text3.C:
7565         * frontends/screen.C: move bv_owner private, introduce isTopLevel()
7566           to make it clear we're testing for outmost-lyxtext vs. inset's lyxtext
7567
7568 2003-02-13  John Levon  <levon@movementarian.org>
7569
7570         * CutAndPaste.C: remove debug
7571
7572 2003-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7573
7574         * paragraph.C (asString): remove two unused variables
7575
7576         * lyxtextclass.C (readTitleType):
7577           (Read):
7578           (LyXTextClass): handle new members titletype_ and titlename_
7579
7580         * buffer.C (latexParagraphs): honor LyXTextClass::titletype
7581
7582 2003-02-09  John Levon  <levon@movementarian.org>
7583
7584         * buffer.h:
7585         * buffer.C: replace hand-coded list with a map for the dep clean
7586
7587 2003-02-08  John Levon  <levon@movementarian.org>
7588
7589         * LaTeX.C: consolidate code into showRunMessage() helper
7590
7591 2003-02-08  John Levon  <levon@movementarian.org>
7592
7593         * lyxfind.C:
7594         * lyxtext.h:
7595         * text2.C:
7596         * BufferView.C: change setSelectionOverString() to setSelectionRange()
7597           and pass the size in explicitly
7598
7599         * BufferView_pimpl.h:
7600         * BufferView_pimpl.C:
7601         * BufferView.h:
7602         * BufferView.C: add getCurrentChange()
7603
7604         * BufferView_pimpl.h:
7605         * BufferView_pimpl.C: handle change lfuns
7606
7607         * CutAndPaste.C: merge the cut and copy code. Rework the cut code
7608           for changes. Mark pasted paragraphs as new.
7609
7610         * support/lyxtime.h:
7611         * support/lyxtime.C:
7612         * DepTable.C: abstract time_t as lyx::time_type
7613
7614         * LColor.h:
7615         * LColor.C: add colours for new text, deleted text, changebars
7616
7617         * LaTeXFeatures.C: add dvipost as a simple feature. Make the color
7618           package use "usenames" option.
7619
7620         * commandtags.h:
7621         * lyxfunc.C:
7622         * LyXAction.C: add change lfuns
7623
7624         * Makefile.am:
7625         * author.h:
7626         * author.C: author handling
7627
7628         * buffer.h:
7629         * buffer.C: add a per-buffer author list, with first entry as
7630           current author. Handle new .lyx tokens for change tracking. Output
7631           author list to .lyx file. Output dvipost stuff to .tex preamble.
7632           Bump lyx format to 222.
7633
7634         * bufferlist.h:
7635         * bufferlist.C: add setCurrentAuthor() to reset current author details
7636           in all buffers.
7637
7638         * bufferparams.h:
7639         * bufferparams.C: add param for tracking
7640
7641         * bufferview_funcs.C: output change info in minibuffer
7642
7643         * Makefile.am:
7644         * changes.h:
7645         * changes.C: add change-tracking structure
7646
7647         * debug.h:
7648         * debug.C: add CHANGES debug flag
7649
7650         * lyxfind.h:
7651         * lyxfind.C: add code for finding the next change piece
7652
7653         * lyxrc.h:
7654         * lyxrc.C: add user_name and user_email
7655
7656         * lyxrow.h:
7657         * lyxrow.C: add a metric for the top of the text line
7658
7659         * lyxtext.h:
7660         * text.C: implement accept/rejectChange()
7661
7662         * lyxtext.h:
7663         * text.C: paint changebars. Paint new/deleted text in the chosen
7664         colours. Strike through deleted text.
7665
7666         * paragraph.h:
7667         * paragraph.C:
7668         * paragraph_pimpl.h:
7669         * paragraph_pimpl.C: output change markers in .lyx and .tex. Pass
7670           in the current change to the insert functions. Rework erase to
7671           mark text as deleted, adding an eraseIntern() and a range-based
7672           erase(). Implement per-paragraph change lookup and
7673           accept/reject.
7674
7675         * paragraph_funcs.C: Fixup paste for change tracking.
7676
7677         * tabular.C: mark added row/columns as new.
7678
7679         * text.C: fix rowLast() to never return -1. Don't allow
7680           spellchecking of deleted text. Track transpose changes. Don't
7681           allow paragraph break or merge where appropriate.
7682
7683         * text2.C: leave cursor at end of selection after a cut.
7684
7685 2003-02-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7686
7687         * text.C (getLengthMarkerHeight):
7688         (drawLengthMarker): make the `symbolic' lengths (small/med/big)
7689         visible on screen too.
7690
7691 2003-02-07  John Levon  <levon@movementarian.org>
7692
7693         * text.C: s/LYX_PAPER_MARGIN/PAPER_MARGIN/g
7694
7695 2003-02-05  Angus Leeming  <leeming@lyx.org>
7696
7697         * lyxserver.C (read_ready): revert my patch of 11 September last year
7698         as it sends PC cpu through the roof. Presumably this means that
7699         the lyxserver will no longer run on an Alpha...
7700
7701 2003-01-30  Angus Leeming  <leeming@lyx.org>
7702
7703         * factory.C (createInset): create an InsetCommandParam of type "index"
7704         and use it to 'do the right thing'.
7705
7706         * text2.C (getStringToIndex): ensure that cursor position is always
7707         reset to the reset_cursor position.
7708
7709 2003-01-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7710
7711         * lyxfunc.C (getStatus): "buffer-export custom" should never be
7712         disabled.
7713
7714 2003-01-20  Michael Schmitt <michael.schmitt@teststep.org>
7715
7716         * bufferview.C:
7717         * lyxcb.C:
7718         * lyxfunc.C: Output messages with identical spelling, punctuation,
7719         and spaces
7720
7721 2003-01-22  Michael Schmitt  <Michael.Schmitt@teststep.org>
7722
7723         * MenuBackend.C (expandFormats): List only viewable export formats
7724         in "View" menu
7725
7726         * buffer.C (parseSingleLyXformat2Token): Fix misleading error
7727         message
7728
7729         * lyxfunc.C (getStatus): Make sure that formats other than
7730         "fax" can also be disabled
7731
7732 2003-01-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7733
7734         * text3.C (dispatch): put the lfuns that insert insets in 3
7735         groups, and call doInsertInset with appropriate arguments.
7736         (doInsertInset): new function, that creates an inset and inserts
7737         it according to some boolean parameters.
7738
7739 2003-01-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
7740
7741         * buffer.C (readFile): remember to pass on 'par' when calling
7742         readFile recursively.
7743
7744 2003-01-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7745
7746         * MenuBackend.C (expandFormats): add "..." to import formats.
7747
7748 2003-01-15  Dekel Tsur  <dekelts@tau.ac.il>
7749
7750         * paragraph.C (asString): Remove XForms RTL hacks.
7751
7752 2003-01-13  Alfredo Braunstein <abraunst@libero.it>
7753         * buffer.C: fix typo
7754
7755 2003-01-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
7756
7757         * Makefile.am (LIBS): delete var
7758         (lyx_LDADD): add @LIBS@ here instead.
7759
7760 2003-01-08  Michael Schmitt <Michael.Schmitt@teststep.org>
7761
7762         * Clarify the meaning of "wheel mouse jump"
7763
7764 2003-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7765
7766         * lyxfunc.C (getStatus): fix disabling of cut/paste of cells in a
7767         tabular in a float
7768
7769 2003-01-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7770
7771         * importer.C (Loaders): do not preallocate 3 elements in the
7772         vector, since one ends up with 6 elements otherwise
7773
7774 2002-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7775
7776         * DepTable.C (write): write the file name as last element of the
7777         .dep file (because it may contain spaces)
7778         (read): read info in the right order
7779
7780 2003-01-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7781
7782         * paragraph_pimpl.C (simpleTeXBlanks):
7783         (simpleTeXSpecialChars):
7784         * paragraph.C (simpleTeXOnePar): make `column' unsigned.
7785
7786         * tabular.C (latex): add some missing case statements. Reindent.
7787
7788         * MenuBackend.C (expandToc): remove unused variable.
7789
7790 2003-01-06  Michael Schmitt <Michael.Schmitt@teststep.org>
7791
7792         * LColor.C:
7793         * LaTeX.C:
7794         * LyXAction.C:
7795         * MenuBackend.C:
7796         * buffer.C:
7797         * exporter.C:
7798         * lyxfunc.C:
7799         * lyxrc.C: fix inconsistent usage of spaces, colons, capitalization,
7800         and the like.
7801
7802 2003-01-05  John Levon  <levon@movementarian.org>
7803
7804         * BufferView.h:
7805         * BufferView.C: add getEncoding()
7806
7807         * kbsequence.h:
7808         * kbsequence.C: do not store last keypress
7809
7810         * lyxfunc.h:
7811         * lyxfunc.C: store last keypress here instead. Pass encoding
7812           to getISOEncoded()
7813
7814 2002-12-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7815
7816         * lyx_main.C (init): remove annoying error message when following
7817         symbolic links (bug #780)
7818
7819 2002-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7820
7821         * text.C (insertChar):
7822         * lyxrc.C (getDescription): remove extra spaces
7823
7824 2002-12-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7825
7826         * lyxrc.C (getDescription): remove extra spaces
7827
7828 2002-12-20  John Levon  <levon@movementarian.org>
7829
7830         * text3.C: hack fix for page up/down across tall rows
7831
7832 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7833
7834         * text2.C (pasteEnvironmentType): avoid crash if layout-copy has
7835         not been invoked
7836
7837 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7838
7839         * lyxfunc.C (getStatus): query lyx_gui::getStatus() to catter for
7840         unimplemented lfuns. Make LFUN_THESAURUS_ENTRY status unknown if
7841         thesaurus is not compiled in
7842
7843 2002-12-17  Alfredo Braunstein <abraunst@libero.it>
7844
7845         * lyxfunc.C: correct  inversion of WORDFINDBACK/FORWARD
7846
7847 2002-12-16  Angus Leeming  <leeming@lyx.org>
7848
7849         * lyxrc.[Ch]:
7850         * lyx_main.C (init): remove override_x_deadkeys stuff.
7851
7852 2002-12-12  John Levon  <levon@movementarian.org>
7853
7854         * lyxfunc.C: use LyXKeySym->isText() as last-ditch
7855           insert. Only remove shift modifier under strict
7856           circumstances.
7857
7858 2002-12-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
7859
7860         * MenuBackend.C (expandToc): fix crash.
7861
7862 2002-12-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
7863
7864         * MenuBackend.C (expandToc): gettext on float names.
7865
7866 2002-12-03  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
7867
7868         * lyxlength.[Ch]: set default unit to UNIT_NONE,
7869         implement bool empty() [bug 490]
7870
7871 2002-12-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
7872
7873         * text2.C, CutAndPaste.C: use BoostFormat.h not boost/format.hpp
7874
7875 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
7876
7877         * several files: ws changes
7878
7879 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
7880
7881         * text2.C (setCounter): clean up a bit, use boost.format.
7882         (updateCounters): initialize par upon declaration.
7883
7884         * CutAndPaste.C (SwitchLayoutsBetweenClasses): set the layout also
7885         if the layout exists. We do not just store the layout any more.
7886         (SwitchLayoutsBetweenClasses): use boost.format
7887
7888 2002-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7889
7890         * converter.C (convert): if from and to files are the same, use a
7891         temporary files as intermediary
7892
7893 2002-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7894
7895         * commandtags.h:
7896         * LyXAction.C (init): remove LFUN_VECTOR (bug 662)
7897
7898 2002-11-27  Dekel Tsur  <dekelts@tau.ac.il>
7899
7900         * lyxrc.[Ch]: Add {roman,sans,typewriter}_font_foundry variables.
7901
7902 2002-11-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
7903
7904         * tabular.C (asciiPrintCell): use string(size, char) instead of
7905         explicit loop.
7906
7907         * sgml.C (openTag): fix order of arguments to string constructor
7908         (closeTag): ditto
7909
7910         * lyxfunc.C (dispatch): use boost.format
7911
7912         * lots of files: change "c" -> 'c'
7913
7914 2002-11-25  Dekel Tsur  <dekelts@tau.ac.il>
7915
7916         * encoding.C: Patch from Isam Bayazidi: Fix Arabic shaping.
7917
7918 2002-11-25  Angus Leeming  <leeming@lyx.org>
7919
7920         * BoostFormat.h: wrap code inside #ifdef __GNUG__ block.
7921
7922         * lyx_main.C (init): compile fix.
7923
7924 2002-11-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
7925
7926         * lyx_cb.C (start): boost.formatify
7927         do not include <iostream>
7928
7929         * lengthcommon.C: ws only
7930
7931         * boost-inst.C,BoostFormat.h: add more explict instantations
7932
7933 2002-11-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
7934
7935         * lots of files: handle USE_BOOST_FORMAT
7936
7937 2002-11-21  John Levon  <levon@movementarian.org>
7938
7939         * pspell.C: fix compile
7940
7941 2002-11-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7942
7943         * lyxfunc.C (dispatch): use boost::format
7944         (open): ditto
7945         (doImport): ditto
7946
7947         * lyxfont.C (stateText): use boost::format
7948
7949         * lyx_main.C (LyX): use boost::format
7950         (init): ditto
7951         (queryUserLyXDir): ditto
7952         (readRcFile): ditto
7953         (parse_dbg): ditto
7954         (typedef boost::function): use the recommened syntax.
7955
7956         * importer.C (Import): use boost::format
7957
7958         * debug.C (showLevel): use boost::format
7959
7960         * converter.C (view): use boost::format
7961         (convert): ditto
7962         (move): ditto
7963         (scanLog): ditto
7964
7965         * bufferview_funcs.C (currentState): use boost::format
7966
7967         * bufferlist.C (emergencyWrite): use boost::format
7968
7969         * buffer.C (readLyXformat2): use boost::format
7970         (parseSingleLyXformat2Token): ditto
7971
7972         * Makefile.am (lyx_SOURCES): add BoostFormat.h and boost-inst.C
7973
7974         * LaTeX.C (run): use boost::format
7975
7976         * Chktex.C (scanLogFile): use boost::format
7977
7978         * BufferView_pimpl.C (savePosition): use boost::format
7979         (restorePosition): ditto
7980         (MenuInsertLyXFile): ditto
7981
7982         * BoostFormat.h: help file for explicit instation.
7983
7984 2002-11-21  Dekel Tsur  <dekelts@tau.ac.il>
7985
7986         * tabular.C (latex): Support for block alignment in fixed width
7987         columns.
7988
7989 2002-11-17  John Levon  <levon@movementarian.org>
7990
7991         * BufferView_pimpl.C:
7992         * lyx_cb.C:
7993         * lyxfunc.C: split filedialog into open/save
7994
7995 2002-11-08  Juergen Vigna  <jug@sad.it>
7996
7997         * undo_funcs.C (textHandleUndo): fixed problems with undo introduced
7998         by my last patch (hopefully).
7999
8000 2002-11-08  John Levon  <levon@movementarian.org>
8001
8002         * iterators.h:
8003         * iterators.C:
8004         * buffer.h:
8005         * buffer.C:
8006         * paragraph.h:
8007         * paragraph.C:
8008         * toc.h:
8009         * toc.C: ParConstIterator, and use it (from Lars)
8010
8011 2002-11-07  Ben Stanley  <bds02@uow.edu.au>
8012
8013         * lyxtextclass.[Ch]: revise and add doxygen comments
8014
8015 2002-11-07  John Levon  <levon@movementarian.org>
8016
8017         * text.C: fix progress value for spellchecker
8018
8019         * toc.C: fix navigate menu for insetwrap inside minipage
8020
8021         * paragraph_funcs.C: added FIXME for suspect code
8022
8023 2002-11-07  John Levon  <levon@movementarian.org>
8024
8025         * BufferView_pimpl.C: fix redrawing of insets
8026           on buffer switch
8027
8028 2002-11-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8029
8030         * text2.C (updateCounters): fix bug 668
8031
8032 2002-11-04  Dekel Tsur  <dekelts@tau.ac.il>
8033
8034         * text3.C (dispatch): Do not make the buffer dirty when moving the
8035         cursor.
8036
8037 2002-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
8038
8039         * vc-backend.C: STRCONV
8040         (scanMaster): ditto
8041
8042         * text2.C (setCounter): STRCONV
8043
8044         * paragraph.C (asString): STRCONV
8045
8046         * lyxlength.C (asString): STRCONV
8047         (asLatexString): ditto
8048
8049         * lyxgluelength.C (asString): STRCONV
8050         (asLatexString): ditto
8051
8052         * lyxfunc.C (dispatch): STRCONV
8053         (open): ditto
8054
8055         * lyxfont.C (stateText): STRCONV
8056
8057         * importer.C (Import): STRCONV
8058
8059         * counters.C (labelItem): STRCONV
8060         (numberLabel): ditto
8061         (numberLabel): remove unused ostringstream o
8062
8063         * chset.C: STRCONV
8064         (loadFile): ditto
8065
8066         * bufferview_funcs.C (currentState): STRCONV
8067
8068         * buffer.C (readFile): STRCONV
8069         (asciiParagraph): ditto
8070         (makeLaTeXFile): ditto
8071
8072         * Spacing.C (writeEnvirBegin): STRCONV
8073
8074         * LaTeXFeatures.C (getLanguages): STRCONV
8075         (getPackages): ditto
8076         (getMacros): ditto
8077         (getBabelOptions): ditto
8078         (getTClassPreamble): ditto
8079         (getLyXSGMLEntities): ditto
8080         (getIncludedFiles): ditto
8081
8082         * LaTeX.C: STRCONV
8083         (run): ditto
8084         (scanAuxFile): ditto
8085         (deplog): ditto
8086
8087         * LString.h: add the STRCONV macros
8088
8089         * BufferView_pimpl.C (savePosition): STRCONV
8090         (restorePosition): ditto
8091         (MenuInsertLyXFile): ditto
8092
8093         * vc-backend.C (scanMaster): change from submatch[...] to
8094         submatch.str(...)
8095
8096         * funcrequest.C: include config.h
8097
8098         * factory.C: include config.h
8099
8100         * chset.C (loadFile): change from submatch[...] to submatch.str(...)
8101
8102         * box.C: include config.h
8103
8104         * LaTeX.C (scanAuxFile): change from submatch[...] to
8105         submatch.str(...)
8106         (deplog): ditto
8107
8108 2002-10-25  Angus Leeming  <leeming@lyx.org>
8109
8110         * BufferView_pimpl.C (cursorToggle): remove reapSpellchecker hack.
8111
8112         * ispell.[Ch] (setError): new method.
8113         * ispell.C (c-tor): move out child process into new class LaunchIspell.
8114         Use setError() insetead of goto END.
8115
8116         * lyx_cb.C (AutoSave): move out child process into new class
8117         AutoSaveBuffer.
8118
8119 2002-10-30  John Levon  <levon@movementarian.org>
8120
8121         * text3.C: make start appendix undoable
8122
8123 2002-10-24  Dekel Tsur  <dekelts@tau.ac.il>
8124
8125         * lyxlength.C (inPixels): Fix returned value.
8126
8127         * paragraph.C (TeXOnePar): Fix bug with language changes in nested
8128         environment.
8129
8130 2002-10-24  Angus Leeming  <leeming@lyx.org>
8131
8132         * lyxgluelength.h: no need to forward declare BufferParams
8133         or BufferView, so don't.
8134
8135 2002-10-21  John Levon  <levon@movementarian.org>
8136
8137         * BufferView.C: menuUndo ->undo, redo
8138
8139         * BufferView.h: document, remove dead, make some methods private
8140
8141         * paragraph_funcs.h:
8142         * paragraph_funcs.C:
8143         * CutAndPaste.C: s/pasteParagraph/mergeParagraph
8144
8145         * buffer.h:
8146         * buffer.C:
8147         * sgml.h:
8148         * sgml.C: move sgml open/close tag into sgml.C
8149
8150         * bufferview_funcs.h: unused prototype
8151
8152         * lyxfunc.h:
8153         * lyxfunc.C: remove unused
8154
8155         * lyxtext.h:
8156         * text.C: remove unused
8157
8158 2002-10-21  John Levon  <levon@movementarian.org>
8159
8160         * BufferView.h:
8161         * BufferView.C:
8162         * BufferView_pimpl.h:
8163         * BufferView_pimpl.C: fix mouse wheel handling based on
8164           patch from Darren Freeman
8165
8166 2002-10-09  Dekel Tsur  <dekelts@tau.ac.il>
8167
8168         * lyx_main.C (queryUserLyXDir): Fix automatic reconfiguration.
8169
8170 2002-10-17  Dekel Tsur  <dekelts@tau.ac.il>
8171
8172         * lyxlength.C (inPixels): Fix hanfling of negative length.
8173         Fix LyXLength::MU case.
8174
8175 2002-10-16  John Levon  <levon@movementarian.org>
8176
8177         * buffer.C: remove \\protected_separator parsing done by lyx2lyx now
8178
8179 2002-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8180
8181         * converter.C (view): add support for $$i (file name) and $$p
8182         (file path) for the viewer command. If $$i is not specified, then
8183         it is appended to the command (for compatibility with old syntax)
8184
8185 2002-10-14  Juergen Vigna  <jug@sad.it>
8186
8187         * undo_funcs.C (textHandleUndo): alter the order in which the
8188         new undopar is added to the LyXText, as we have to set first
8189         the right prev/next and then add it as otherwise the rebuild of
8190         LyXText is not correct. Also reset the cursor to the right paragraph,
8191         with this IMO we could remove the hack in "redoParagraphs()".
8192
8193 2002-10-09  Angus Leeming  <leeming@lyx.org>
8194
8195         * Bufferview_pimpl.C (dispatch): call InsetCitation::setLoadingBuffer
8196         to turn off an optimisation if a new inset is to be inserted.
8197
8198 2002-10-11 André Pönitz <poenitz@gmx.net>
8199
8200         * lyxtext.h: make some functions public to allow access
8201         from inset/lyxtext for handling LFUN_PRIOR/NEXT
8202
8203 2002-10-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8204
8205         * text3.C (dispatch): when changing layout, avoid an infinite loop
8206         [bug #652]
8207
8208 2002-10-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8209
8210         * lyxrc.C (read): treat a viewer or converter command of "none" as
8211         if it were empty.
8212
8213         * MenuBackend.C (expandFormats): for an update, also allow the
8214         formats that are not viewable
8215
8216         * lyx_main.C (queryUserLyXDir): re-run automatically the configure
8217         script if it is newer than the lyxrc.defaults in user directory
8218
8219 2002-10-07 André Pönitz <poenitz@gmx.net>
8220
8221         * text.C: Vitaly Lipatov's small i18n fix
8222
8223 2002-09-25  Angus Leeming  <leeming@lyx.org>
8224
8225         * ispell.h: doxygen fix.
8226
8227 2002-09-25  Dekel Tsur  <dekelts@tau.ac.il>
8228
8229         * buffer.h (readFile): Add a new argument to the method, to allow
8230         reading of old-format templates.
8231
8232 2002-09-24  Dekel Tsur  <dekelts@tau.ac.il>
8233
8234         * toc.C (getTocList): Get TOC from InsetWrap.
8235
8236 2002-09-16  John Levon  <levon@movementarian.org>
8237
8238         * lyxfunc.C: check tabular for cut/copy too
8239
8240 2002-09-12  John Levon  <levon@movementarian.org>
8241
8242         * LyXAction.C: tidy
8243
8244         * factory.h:
8245         * factory.C: add header
8246
8247         * paragraph_funcs.h:
8248         * paragraph_funcs.C: cleanup
8249
8250 2002-09-11  John Levon  <levon@movementarian.org>
8251
8252         * PrinterParams.h: odd/even default to true
8253
8254 2002-09-12  Rob Lahaye  <lahaye@snu.ac.kr>
8255
8256         * PrinterParams.h: update printer parameters for new xforms dialog
8257
8258 2002-09-11  Angus Leeming  <leeming@lyx.org>
8259
8260         * lyxserver.C (read_ready): re-write to make it more transparent
8261         and to make it work in coherent fashion under Tru64 Unix.
8262
8263 2002-09-11  André Pönitz <poenitz@gmx.net>
8264
8265         * commandtags.h:
8266         * LyXAction.C:
8267         * text3.C: implement LFUN_WORDSEL
8268
8269 2002-09-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
8270
8271         * lyxtextclass.h: don't include FloatList.h, forward declare instead.
8272         make floatlist_ a boost::shared_ptr<FloatList>
8273
8274         * lyxtextclass.C: include FloatList.h
8275         (LyXTextClass): initialize floatlist_
8276         (TextClassTags): add TC_NOFLOAT
8277         (Read): match "nofloat" to TC_NOFLOAT and use it.
8278         (readFloat): modify call to floatlist_
8279         (floats): ditto
8280         (floats): ditto
8281
8282         * FloatList.[Ch] (FloatList): remove commented out float
8283         initialization.
8284         (erase): new function
8285
8286 2002-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8287
8288         * MenuBackend.C (expandToc): fix crash when there is no document
8289         open
8290
8291 2002-09-10  Dekel Tsur  <dekelts@tau.ac.il>
8292
8293         * many files: Add insetwrap.
8294
8295 2002-09-09  John Levon  <levon@movementarian.org>
8296
8297         * text2.C: remove confusing and awkward depth wraparound
8298
8299 2002-09-09  John Levon  <levon@movementarian.org>
8300
8301         * BufferView_pimpl.C: Don't use empty arg for LFUN_CHILD_INSERT
8302
8303         * buffer.h:
8304         * buffer.C: remove getIncludeonlyList()
8305
8306         * paragraph.C:
8307         * lyxfunc.C: remove headers
8308
8309 2002-09-09  Juergen Vigna  <jug@sad.it>
8310
8311         * text.C (getColumnNearX): fix form Michael this is most
8312         probably a cut&paste bug.
8313
8314 2002-09-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
8315
8316         * remove all INHERIT_LANG and INHERIT_LANGUAGE commented code
8317
8318         * LaTeXFeatures.C (useLayout): let tclass and lyt be a const
8319         references, ws changes.
8320
8321         * text2.C (init): update counters after init
8322         (insertParagraph): no need to set counter on idividual paragraphs.
8323         (setCounter): access the counters object in the textclass object
8324         on in the buffer object.
8325         (updateCounters): ditto
8326
8327         * lyxtextclass.C: include counters.h, add variable ctrs_ as
8328         shared_ptr<Counters> to avoid loading counters.h in all
8329         compilation units.
8330         (LyXTextClass): initialize ctrs_
8331         (TextClassTags): add TC_COUNTER, and ...
8332         (Read): use it here.
8333         (CounterTags): new tags
8334         (readCounter): new function
8335         (counters): new funtion
8336         (defaultLayoutName): return a const reference
8337
8338         * counters.C (Counters): remove contructor
8339         (newCounter): remove a couple of unneeded statements.
8340         (newCounter): simplify a bit.
8341         (numberLabel): some small formatting changes.
8342
8343         * buffer.[Ch]: remove all traces of counters, move the Counters
8344         object to the LyXTextClass.
8345
8346 2002-09-06  Alain Castera  <castera@in2p3.fr>
8347
8348         * tabular.C: uses \tabularnewline; uses >{...} construct from array
8349         package to set the horizontal alignment on fixed width columns.
8350
8351         * lyx_sty.C:
8352         * lyx_sty.h: added tabularnewline macro def.
8353
8354         * LaTeXFeatures.C: added NeedTabularnewline macro feature
8355
8356 2002-09-06  John Levon  <levon@movementarian.org>
8357
8358         * LyXAction.C: tooltips for sub/superscript
8359
8360         * MenuBackend.C: a bit more verbose
8361
8362         * lyxfunc.C: tiny clean
8363
8364         * undo_funcs.C: document undo_frozen
8365
8366 2002-09-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
8367
8368         * counters.C (Counters): add missing algorithm counter.
8369
8370         * text2.C (setCounter): lookup the counter with layouts latexname
8371         instead of by section number.
8372         (setCounter): use a hackish way to lookup the correct enum
8373         counter.
8374         a float name->type change
8375         reset enum couners with counter name directly instead of depth value.
8376
8377         * counters.C (Counters): remove the push_backs, change to use the
8378         float type not the float name.
8379         (labelItem): remove unused string, float name->type change
8380
8381         * counters.h: don't include vector, loose the enums and sects vectors
8382
8383 2002-09-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
8384
8385         * lyxtextclass.C (TextClassTags): add TC_FLOAT
8386         (Read): add float->TC_FLOAT to textclassTags
8387         (Read): and handle it in the switch
8388         (readFloat): new function
8389
8390         * FloatList.C (FloatList): comment out the hardcoded float
8391         definitions.
8392
8393         * lyxlayout.h: ws change.
8394
8395 2002-08-29  Dekel Tsur  <dekelts@tau.ac.il>
8396
8397         * buffer.C (readFile): Look for lyx2lyx in LYXDIR/lyx2lyx/
8398
8399 2002-09-03  Angus Leeming  <leeming@lyx.org>
8400
8401         * BufferView_pimpl.h: qualified name is not allowed in member
8402         declaration: WorkArea & Pimpl::workarea() const;
8403
8404         * factory.C: added using std::endl directive.
8405
8406         * text3.C: added using std::find and std::vector directives.
8407
8408 2002-08-29  André Pönitz <poenitz@gmx.net>
8409
8410         * lyxtext.h:
8411         * text2.C: remove unused member number_of_rows
8412
8413         * Makefile.am:
8414         * BufferView2.C: remove file, move contents to...
8415         * BufferView.C: ... here
8416
8417         * BufferView_pimpl.C:
8418         * factory.C: move more inset creation to factory
8419
8420         * vspace.C: avoid direct usage of LyXText, ws changes
8421
8422         * BufferView.[Ch]:
8423                 don't provide direct access to WorkArea, use two simple
8424                 acessors haveSelction() and workHeight() instead
8425
8426
8427 2002-08-29  John Levon  <levon@movementarian.org>
8428
8429         * BufferView_pimpl.C (dispatch): do not continue when
8430           no buffer
8431
8432 2002-08-28  André Pönitz <poenitz@gmx.net>
8433
8434         * commandtags.h: new LFUN_MOUSE_DOUBLE, LFUN_MOUSE_TRIPLE
8435
8436         * BufferView.h:
8437         * BufferView_pimpl.[Ch] move work area mouse event to LFUNs
8438
8439 2002-08-28  Rob Lahaye  <lahaye@snu.ac.kr>
8440
8441         * buffer.C: increment LYX_FORMAT to 221
8442
8443         * lyxrc.[Ch]: declare display_graphics as grfx::DisplayType and use
8444         grfx::displayTranslator.find(foo); include graphics/GraphicsTypes.h.
8445
8446         * lyxrc.C: use more "if (...) { } else { }" style (John's advice).
8447
8448         * lyx_main.C: call once the setDisplayTranslator(); is that okay here?
8449
8450 2002-08-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8451
8452         * factory.C (createInset): use LyXTextClass::floats
8453
8454         * MenuBackend.C (expandFloatListInsert):
8455         (expandFloatInsert):
8456         (expandToc):
8457
8458         * text2.C (setCounter):
8459
8460         * LaTeXFeatures.C (useFloat):
8461         (getFloatDefinitions):
8462
8463         * BufferView_pimpl.C (dispatch): use LyXTextClass::floats()
8464
8465         * lyxtextclass.[Ch]: rename layoutlist to layoutlist_; add
8466         floatlist_, with accessor floats().
8467
8468         * FloatList.h: remove global FloatList
8469
8470 2002-08-26  André Pönitz <poenitz@gmx.net>
8471
8472         * paragraph.[Ch]: Martin's patch for the \end_deeper bug
8473
8474         * BufferView.h:
8475         * BufferView2.C:
8476         * BufferView_pimpl.C:
8477         * text3.C: mun hanfling of LFUN_CUT/COPY/PASTE to LyXText
8478
8479 2002-08-25  John Levon  <levon@movementarian.org>
8480
8481         * LyXAction.C: fix margin note description
8482
8483 2002-08-24  John Levon  <levon@movementarian.org>
8484
8485         * buffer.C:
8486         * bufferlist.C:
8487         * bufferview_funcs.C:
8488         * lyxfont.C:
8489         * undo_funcs.C: cleanups
8490
8491         * lyxfunc.C: disable CUT/COPY when no selection
8492
8493 2002-08-23  Rob Lahaye  <lahaye@snu.ac.kr>
8494
8495         * lyxlength.[Ch]: use better (three letters) mnemonics for percentage units
8496         in "enum UNIT"; e.g. PTW for Percent of TextWidth
8497
8498         * lyxrc.C: graphics display is now monochrome|grayscale|color|none.
8499         Add backward compatibility to "mono", "gray" and "no".
8500
8501 2002-08-24  Dekel Tsur  <dekelts@tau.ac.il>
8502
8503         * buffer.C (readFile): Always run lyx2lyx if file_format < LYX_FORMAT
8504         (and file_format >= 200).
8505
8506 2002-08-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8507
8508         * lyxlayout.C (Read): treat LT_OPTARGS as an integer, not a bool
8509
8510 2002-08-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8511
8512         * lyxfunc.C (getStatus): handle LFUN_INSET_OPTARG
8513
8514 2002-08-20  Martin Vermeer  <martin.vermeer@hut.fi>
8515
8516         * BufferView_pimpl.C:
8517         * LyXAction.C:
8518         * buffer.C:
8519         * commandtags.h:
8520         * lyxfunc.C:
8521         * paragraph.[Ch]:
8522         * text2.C:
8523         * insets/insetoptarg.[Ch]: Added "optional argument" collapsible
8524         inset and code to make it  work with the paragraph code. The inset
8525         can be anywhere in the paragraph, but will only do the expected
8526         thing in LaTeX if the layout file contains the parameter line
8527                         OptionalArgs    1
8528         (or more generally, a nonzero value) for that layout.
8529
8530 2002-08-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
8531
8532         * paragraph.h: remove the declaration of undefined counters class
8533         function.
8534
8535 2002-08-22  Martin Vermeer <martin.vermeer@hut.fi>
8536
8537         * text2.C (setCounter):  fixed enumeration mis-count as reported by
8538         Dr. Richard Hawkins.
8539
8540 2002-08-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8541
8542         * paragraph_funcs.h: remove some unneeded includes
8543
8544         * text.C (backspace): pasteParagraph now in global scipe
8545
8546         * CutAndPaste.C (cutSelection): pasteParagraph now in global scope
8547         (pasteSelection): ditto
8548
8549         * paragraph.[Ch] (pasteParagraph): move function to global scope ...
8550         * paragraph_funcs.C (pasteParagraph): ... here
8551
8552 2002-08-20  André Pönitz <poenitz@gmx.net>
8553
8554         * commandtags.h: new LFUNs for swapping/copying table row/colums
8555
8556         * LyXAction.C:
8557         * lyxfunc.C: support for new lfuns
8558
8559 2002-08-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
8560
8561         * tabular.C:
8562         * buffer.[Ch]: remove NO_COMPABILITY stuff
8563
8564 2002-08-20  Lars Gullik Bjønnes  <larsbj@gullik.net>
8565
8566         * boost.C (throw_exception): new file, with helper function for
8567         boost compiled without exceptions.
8568
8569         * paragraph.h:
8570         * lyxlength.C:
8571         * buffer.C:
8572         * ParameterStruct.h:
8573         * ParagraphParameters.[Ch]: remove NO_PEXTRA_REALLY stuff
8574
8575         * bufferlist.C (emergencyWriteAll): use boost bind
8576
8577         * BufferView_pimpl.C (moveCursorUpdate): remove inline
8578
8579         * text.C: include paragraph_funcs.h
8580         (breakParagraph): breakParagraph is now in global scope
8581
8582         * paragraph_funcs.[Ch]: new files
8583
8584         * paragraph.C (breakParagraph,breakParagraphConservative): move to
8585         global scope
8586
8587         * buffer.C: include paragraph_funcs.h
8588         (insertStringAsLines): breakParagraph is now in global scope
8589
8590         * Makefile.am (lyx_SOURCES): add paragraph_funcs.h and
8591         paragraph_funcs.C
8592
8593         * CutAndPaste.C: include paragraph_funcs.h
8594         (cutSelection): breakParagraphConservative is now in global scope
8595         (pasteSelection): ditto
8596
8597         * buffer.h: declare oprator== and operator!= for
8598         Buffer::inset_iterator
8599
8600         * bufferlist.C (emergencyWrite): don't use fmt(...)
8601
8602         * text3.C: add using std::endl
8603
8604         * BufferView.C (moveCursorUpdate): remove default arg
8605
8606 2002-08-20  André Pönitz <poenitz@gmx.net>
8607
8608         * buffer.[Ch]: move inline functions to .C
8609
8610         * BufferView2.C:
8611         * BufferView_pimpl.C:
8612         * text.C:
8613         * buffer.[Ch]: use improved inset_iterator
8614
8615         * buffer.C:
8616         * paragraph.[Ch]: write one paragraph at a time
8617
8618 2002-08-20  Dekel Tsur  <dekelts@tau.ac.il>
8619
8620         * BufferView_pimpl.C (dispatch): Insert insetbibtex with "plain"
8621         style if style is not specified.
8622
8623 2002-08-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8624
8625         * text2.C (setCounter): when searching for right label for a
8626         caption, make sure to recurse to parent insets (so that a caption
8627         in a minipage in a figure float works) (bug #568)
8628
8629 2002-08-20  André Pönitz <poenitz@gmx.net>
8630
8631         * text3.C: new file for LyXText::dispatch() and helpers
8632
8633         * BufferView.[Ch]: move text related stuff to LyXText::dispatch()
8634
8635         * funcrequest.[Ch]: add message() do avoid direct access to LyXFunc
8636
8637 2002-08-19  André Pönitz <poenitz@gmx.net>
8638
8639         * lyxtext.h:
8640         * text.C: new LyXText::dispatch()
8641
8642         * BufferView_pimpl.C: move handling of LFUN_APPENDIX to LyXText
8643
8644 2002-08-18  Dekel Tsur  <dekelts@tau.ac.il>
8645
8646         * text.C (paintRowSelection): Fix code for rows with both RTL & LTR text.
8647
8648         * BufferView_pimpl.C (smartQuote): Insert typewriter quotes in
8649         Hebrew text.
8650
8651 2002-08-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8652
8653         * Makefile.am: use $(variables) instead of @substitutions@
8654
8655 2002-08-15  André Pönitz <poenitz@gmx.net>
8656
8657         * lyxfunc.C:
8658         * BufferView_pimpl.C: streamlining mathed <-> outer world
8659         interaction
8660
8661         * commandtags.h:
8662         * LyXAction.C: remove unused LFUN_MATH
8663
8664 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
8665
8666         * paragraph.[Ch]: add some NO_NEXT ifdefs.
8667
8668 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
8669
8670         * paragraph.C (Paragraph): reformat a bit
8671         (cutIntoMinibuffer): use builtin InsetList function instad of
8672         doing it manually.
8673         (getInset): ditto
8674
8675         * buffer.C: include boost/bind.hpp, add using std::for_each
8676         (writeFileAscii): use ParagraphList iterators
8677         (validate): use for_each for validate traversal of paragraphs
8678         (getBibkeyList): use ParagraphList iterators
8679         (resizeInsets): use for_each to resizeInsetsLyXText for all
8680         paragraphs.
8681         (getParFromID): use ParagraphList iterators
8682
8683         * BufferView2.C (lockInset): use paragraph list and iterators
8684
8685 2002-08-14  John Levon  <levon@movementarian.org>
8686
8687         * lyxserver.C: remove spurious xforms include
8688
8689 2002-08-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8690
8691         * lyxfunc.C (getStatus): disable math-extern outside of math mode
8692
8693 2002-08-13  André Pönitz <poenitz@gmx.net>
8694
8695         * LyXAction.[Ch]:
8696         * lyxfunc.C: further cleaning
8697
8698 2002-08-13  André Pönitz <poenitz@gmx.net>
8699
8700         * funcrequest.h: new constructor
8701
8702         * funcrequest.C: move stuff here from .h
8703
8704         * Makefile.am:
8705         * BufferView_pimpl.C:
8706         * LyXAction.C:
8707         * toc.C:
8708         * lyxfunc.C: subsequent changes
8709
8710         * lyxfunc.h: new view() member function
8711
8712         * lyxfunc.C: subsequent changes
8713
8714 2002-08-13  Angus Leeming  <leeming@lyx.org>
8715
8716         * BufferView2.C:
8717         * BufferView_pimpl.C:
8718         * buffer.C:
8719         * converter.C:
8720         * importer.C:
8721         * lyxfunc.C:
8722         * lyxvc.C:
8723         * toc.C:
8724         * vc-backend.C:
8725         changes due to the changed LyXView interface that now returns references
8726         to member variables not pointers.
8727
8728 2002-08-13  Angus Leeming  <leeming@lyx.org>
8729
8730         * WordLangTuple (word, lang_code): return references to strings,
8731         not strings.
8732
8733         * BufferView.h:
8734         * SpellBase.h:
8735         * lyxtext.h: forward-declare WordLangTuple.
8736
8737         * BufferView2.C:
8738         * ispell.C:
8739         * pspell.C:
8740         * text.C: #include "WordLangTuple.h".
8741
8742         * lyxtext.h:
8743         * text.C: (selectNextWordToSpellcheck): constify return type.
8744
8745 2002-08-12  Martin Vermeer <martin.vermeer@hut.fi>
8746
8747         * buffer.C:
8748         * buffer.h:
8749         * lyxtext.h:
8750         * paragraph.C:
8751         * paragraph_pimpl.h:
8752         * text.C:
8753         * text2.C:
8754         * undo_funcs.C: replaced per-paragraph counter logic by per-buffer, as
8755         suggested by Angus.
8756         Made updateCounter always count from start of buffer, and removed
8757         second argument (par).
8758         Reverted floats number display to '#'. Perhaps I'll try again when the
8759         code base is sanitized a bit.
8760
8761 2002-08-12  Angus Leeming  <leeming@lyx.org>
8762
8763         * buffer.[Ch] (getLabelList): constify.
8764
8765 2002-08-07  André Pönitz <poenitz@gmx.net>
8766
8767         * commandtags.h: new LFUN_MOUSE_(PRESS|MOTION|RELEASE)
8768
8769         * funcrequest.h: extension to keep mouse (x,y) position
8770
8771 2002-08-12  Juergen Vigna  <jug@sad.it>
8772
8773         * BufferView2.C (insertErrors): forbid undo when inserting error
8774         insets.
8775
8776         * CutAndPaste.C (SwitchLayoutsBetweenClasses): ditto
8777
8778 2002-08-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
8779
8780         * ParagraphList.[Ch]: new files
8781
8782         * Makefile.am (lyx_SOURCES): add ParagraphList.[Ch]
8783
8784         * BufferView2.C (lockInset): ParagraphList changes
8785         * toc.C: ditto
8786         * text2.C: ditto
8787         * bufferlist.C: ditto
8788         * buffer.h: ditto
8789         * buffer.C: ditto
8790
8791 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
8792
8793         * paragraph_pimpl.h: remove inclusion of boost/array.hpp, remove
8794         unused class variable counter_,
8795
8796         * paragraph.[Ch] (getFirstCounter): delete unused function
8797
8798         * counters.C: include LAssert.h
8799         (reset): add a new function with no arg, change other version to
8800         not have def. arg and to not allow empty arg.
8801
8802         * text2.C (setCounter): remove empty arg from call to Counters::reset
8803
8804 2002-08-11  John Levon  <levon@movementarian.org>
8805
8806         * Makefile.am: add WordLangTuple.h
8807
8808 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
8809
8810         * paragraph.C, ToolbarDefaults.h, kbsequence.h, lyx_main.C,
8811         lyxfunc.C lyxlex_pimpl.C: ws changes only.
8812
8813         * insets/insettext.C: InsetList changes
8814
8815         * graphics/GraphicsSupport.C (operator()): InsetList changes
8816
8817         * toc.C (getTocList): InsetList changes
8818
8819         * paragraph_pimpl.[Ch]: InsetList changes
8820
8821         * paragraph.[Ch]: InsetList changes
8822
8823         * buffer.C (inset_iterator): InsetList changes
8824         (setParagraph): ditto
8825         * buffer.h (inset_iterator): ditto
8826         * iterators.C (operator++): ditto
8827         * iterators.h: ditto
8828
8829         * Makefile.am (lyx_SOURCES): add InsetList.C and InsetList.h
8830
8831         * InsetList.[Ch]: new files, most InsetList handling moved out of
8832         paragraph.C.
8833
8834         * BufferView2.C (removeAutoInsets): InsetList changes
8835         (lockInset): ditto
8836         (ChangeInsets): ditto
8837
8838 2002-08-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
8839
8840         * paragraph_pimpl.h (empty): new function
8841
8842         * paragraph.[Ch] (empty): new function
8843
8844         * other files: use the new Paragraph::empty function
8845
8846 2002-08-09  John Levon  <levon@movementarian.org>
8847
8848         * lyxtext.h: remove unused refresh_height
8849
8850 2002-08-09  John Levon  <levon@movementarian.org>
8851
8852         * Makefile.am:
8853         * sgml.h:
8854         * sgml.C:
8855         * buffer.C:
8856         * paragraph.h:
8857         * paragraph.C: move sgml char escaping out of paragraph
8858
8859         * paragraph.h:
8860         * paragraph.C: remove id setter
8861
8862         * buffer.C:
8863         * paragraph.C:
8864         * paragraph_pimpl.C: remove dead tex_code_break_column
8865
8866         * bufferview_funcs.C: small cleanup
8867
8868         * lyxfunc.C: remove dead proto
8869
8870         * lyxtext.h: make some stuff private. Remove some dead stuff.
8871
8872         * lyxgluelength.C: make as[LyX]String() readable
8873
8874 2002-08-08  John Levon  <levon@movementarian.org>
8875
8876         * LyXAction.h:
8877         * LyXAction.C:
8878         * MenuBackend.C:
8879         * ToolbarDefaults.C:
8880         * lyxfunc.C:
8881         * lyxrc.C:
8882         * toc.C: lyxaction cleanup
8883
8884 2002-08-08  John Levon  <levon@movementarian.org>
8885
8886         * BufferView2.C: small cleanup
8887
8888         * lyxfind.h:
8889         * lyxfind.C: move unnecessary header into the .C
8890
8891 2002-08-08  John Levon  <levon@movementarian.org>
8892
8893         * funcrequest.h: just tedious nonsense
8894
8895         * lyx_main.h:
8896         * lyx_main.C: cleanups
8897
8898         * buffer.C:
8899         * vspace.C: remove dead header lyx_main.h
8900
8901 2002-08-07  Angus Leeming  <leeming@lyx.org>
8902
8903         * Paragraph.[Ch]:
8904         * paragraph_pimpl.h:
8905         Forward declare class Counters in paragraph.h by moving the ctrs member
8906         variable into Paragraph::Pimpl.
8907         (counters): new method, returning a reference to pimpl_->ctrs.
8908
8909         * text2.C: ensuing changes.
8910
8911 2002-08-07  John Levon  <levon@movementarian.org>
8912
8913         * BufferView_pimpl.C (resizeCurrentBuffer): update scrollbar
8914
8915         * BufferView_pimpl.C: announce X selection on double/triple
8916           click
8917
8918         * lyx_main.C: use correct bool in batch dispatch
8919
8920         * counters.h: srcdocs (from Martin Vermeer and Angus Leeming)
8921
8922 2002-08-07  André Pönitz <poenitz@gmx.net>
8923
8924         * funcrequest.h: new class to wrap a kb_action and its argument
8925
8926         * BufferView.[Ch]:
8927         * BufferView_pimpl[Ch]:
8928         * LaTeX.C:
8929         * LyXAction.[Ch]:
8930         * lyxfunc.[Ch]:
8931         * lyxrc.C: subsequent changes
8932
8933
8934 2002-08-07  John Levon  <levon@movementarian.org>
8935
8936         * BufferView_pimpl.C (redoCurrentBuffer): fix screen update when
8937           document options change.
8938
8939 2002-08-06  Martin Vermeer  <martin.vermeer@hut.fi>
8940
8941         * counters.[Ch]
8942         * text2.C
8943         * paragraph.[Ch]
8944         * makefile.am: move counters functionality over from
8945         text2.C/paragraph.[Ch] to counters.[Ch], and make proper C++.
8946
8947 2002-08-06  John Levon  <levon@movementarian.org>
8948
8949         * WordLangTuple.h: new file for word + language code tuple
8950
8951         * SpellBase.h:
8952         * pspell.h:
8953         * pspell.C:
8954         * ispell.h:
8955         * ispell.C:
8956         * lyxtext.h:
8957         * text.C:
8958         * text2.C:
8959         * BufferView.h:
8960         * BufferView2.C: use WordLangTuple
8961
8962         * layout.h:
8963         * buffer.C: remove very dead LYX_LAYOUT_DEFAULT
8964
8965 2002-08-06  John Levon  <levon@movementarian.org>
8966
8967         * lyx_main.C: fix cmdline batch handling
8968
8969 2002-08-06  André Pönitz <poenitz@gmx.net>
8970
8971         * lyxrc.C: set default for show_banner to true
8972
8973 2002-08-06  John Levon  <levon@movementarian.org>
8974
8975         * pspell.C: fix a crash, and allow new aspell to work
8976
8977 2002-08-06  John Levon  <levon@movementarian.org>
8978
8979         * lyxfunc.C:
8980         * kbmap.C: small cleanup
8981
8982         * vspace.h:
8983         * vspace.C: add const
8984
8985 2002-08-05  John Levon  <levon@movementarian.org>
8986
8987         * LyXAction.C: back to tabular-insert
8988
8989 2002-08-04  John Levon  <levon@movementarian.org>
8990
8991         * BufferView.h:
8992         * BufferView.C: cosmetic change
8993
8994         * BufferView_pimpl.C: s/IGNORE_CODE/NOTE_CODE/
8995
8996         * bufferlist.C:
8997         * buffer.h:
8998         * buffer.C:
8999         * lyxcb.h:
9000         * lyxcb.C:
9001         * lyxserver.C:
9002         * lyxvc.C:
9003         * vc-backend.C:
9004         * BufferView2.C: purge all "Lyx" not "LyX" strings
9005
9006         * lyxcursor.h:
9007         * lyxcursor.C: attempt to add some documentation
9008
9009         * lyxfunc.C:
9010         * commandtags.h:
9011         * LyXAction.C:
9012         * ToolbarDefaults.C:
9013         * BufferView_pimpl.C: remove LFUN_DIALOG_TABULAR_INSERT and
9014           merge with LFUN_TABULAR_INSERT
9015
9016         * Makefile.am:
9017         * SpellBase.h:
9018         * ispell.h:
9019         * ispell.C:
9020         * pspell.h:
9021         * pspell.C: split up i/pspell implementations into separate
9022           files, many cleanups
9023
9024         * lyxlex.C: unrevert, with a proper fix for prefix.length() == 0
9025
9026         * text2.C: some cleanup
9027
9028         * lyxfunc.C: don't check for isp_command == "none" any more, it
9029           didn't make any sense
9030
9031 2002-08-06      Martin Vermeer <martin.vermeer@hut.fi>
9032
9033         * counters.[Ch]
9034         * text2.C
9035         * paragraph.[Ch]
9036         * makefile.am: move counters functionality over
9037         from text2.C/paragraph.[Ch] to counters.[Ch], and
9038         make proper C++.
9039 2002-08-02  John Levon  <levon@movementarian.org>
9040
9041         * buffer.C: s/lyxconvert/lyx2lyx/
9042
9043 2002-08-02  Angus Leeming  <leeming@lyx.org>
9044
9045         * lyxlex.C: revert John's change as it breaks reading of the user
9046         preamble.
9047
9048 2002-08-02  Angus Leeming  <leeming@lyx.org>
9049
9050         * importer.C (Import):
9051         * lyxfunc.C (moveCursorUpdate, dispatch, view_status_message):
9052         changes due to LyXView::view() now returning a boost::shared_ptr.
9053
9054 2002-08-02  John Levon  <levon@movementarian.org>
9055
9056         * lyxlex.C: small cleanup
9057
9058 2002-08-02  John Levon  <levon@movementarian.org>
9059
9060         * text2.C (status): small cleanup, no logic change
9061
9062 2002-08-01  John Levon  <levon@movementarian.org>
9063
9064         * buffer.h:
9065         * buffer.C (writeFile): don't output alerts, caller
9066           handles this
9067
9068         * bufferlist.C:
9069         * lyx_cb.C: from above
9070
9071         * lyxfunc.C: allow to open non-existent files
9072
9073 2002-07-31  John Levon  <levon@movementarian.org>
9074
9075         * lyxserver.C: don't let incidental errors get
9076           in the way (errno)
9077
9078 2002-07-30  John Levon  <levon@movementarian.org>
9079
9080         * lyxfunc.C: disable character dialog in ERT inset (partial fix)
9081
9082 2002-07-30  John Levon  <levon@movementarian.org>
9083
9084         * lyxserver.h:
9085         * lyxserver.C: remove I/O callback too
9086
9087 2002-07-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9088
9089         * lyxfunc.C (getStatus): disable LFUN_LATEX_LOG when there is no
9090         log.
9091
9092 2002-07-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
9093
9094         * many files: strip,frontStrip -> trim,ltrim,rtrim
9095
9096 2002-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
9097
9098         * PrinterParams.h: remove extern containsOnly, and include
9099         support/lstrings.h instead.
9100
9101         * LaTeX.C (scanAuxFile): modify because of strip changes
9102         (deplog): ditto
9103         * buffer.C (makeLaTeXFile): ditto
9104         * bufferparams.C (writeFile): ditt
9105         * lyxfont.C (stateText): ditto
9106         * lyxserver.C (read_ready): ditto
9107         * vc-backend.C (scanMaster): ditto
9108
9109         * BufferView_pimpl.h: ws changes
9110
9111         * BufferView_pimpl.C: inlude boost/signals/connection.hpp
9112
9113 2002-07-26  André Pönitz <poenitz@gmx.net>
9114
9115         * kb_sequence.C: remove unnedred usings
9116
9117 2002-07-26  Juergen Vigna  <jug@sad.it>
9118
9119         * lyxfind.C (LyXReplace): we have to check better if the returned
9120         text is not of theLockingInset()->getLockingInset().
9121
9122 2002-07-25  Juergen Vigna  <jug@sad.it>
9123
9124         * lyxfind.C (LyXReplace): don't replace if we don't get the
9125         right LyXText.
9126
9127         * undo_funcs.C (createUndo): remove debugging code.
9128
9129 2002-07-25  Dekel Tsur  <dekelts@tau.ac.il>
9130
9131         * buffer.C (parseSingleLyXformat2Token): Use default placement
9132         when reading old floats.
9133
9134         * FloatList.C (FloatList): Change the default placement of figure
9135         and tables to "tbp".
9136
9137 2002-07-25  John Levon  <moz@compsoc.man.ac.uk>
9138
9139         * MenuBackend.C: using std::max
9140
9141 2002-07-25  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9142
9143         * MenuBackend.C (expandToc):
9144         (expandToc2): code moved from xforms menu frontend. It is now
9145         generic and TOCs are transparent to menu frontends.
9146
9147 2002-07-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9148
9149         * toc.C (getTocList): protect against buf=0
9150
9151         * MenuBackend.C (expand): move from Menu to MenuBackend; pass a
9152         Menu as first parameter. Now, this calls itself recursively to
9153         expand a whole tree (this will be useful for TOC handling)
9154         (expandFloatInsert): remove 'wide' version of floats
9155
9156         * MenuBackend.h (submenuname): returns the name of the submenu.
9157         (submenu): returns the submenu itself, provided it has been
9158         created by MenuBackend::expand
9159
9160 2002-07-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9161
9162         * paragraph_pimpl.C (simpleTeXSpecialChars): close fonts before
9163         insets which have noFontChange == true. (bug #172)
9164
9165 2002-07-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9166
9167         * BufferView_pimpl.C: add connection objects and use them...
9168         (Pimpl): here.
9169
9170 2002-07-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9171
9172         * MenuBackend.C (expandLastfiles):
9173         (expandDocuments):
9174         (expandFormats):
9175         (expandFloatListInsert):
9176         (expandFloatInsert):
9177         (expand): split expand in parts
9178
9179 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
9180
9181         * lyx_gui.C: use lyx_gui::exit()
9182
9183 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
9184
9185         * LyXAction.C: show the failing pseudo action
9186
9187 2002-07-22  Dekel Tsur  <dekelts@tau.ac.il>
9188
9189         * buffer.C (readFile): Run the lyxconvert script in order to read
9190         old files.
9191
9192 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
9193
9194         * LyXAction.C:
9195         * commandtags.h:
9196         * lyxfunc.C: remove LFUN_ADD_TO_TOOLBAR
9197
9198 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
9199
9200         * LyXAction.C:
9201         * commandtags.h:
9202         * lyxfunc.C: remove LFUN_TOOLBAR_PUSH
9203
9204 2002-07-22  Herbert Voss  <voss@lyx.org>
9205
9206         * lengthcommon.C:
9207         * lyxlength.[Ch]: add support for the vertical lengths
9208
9209 2002-07-21  John Levon  <moz@compsoc.man.ac.uk>
9210
9211         * toc.[Ch]: std:: fixes
9212
9213 2002-07-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9214
9215         * lyxrc.C: do not include lyx_main.h
9216
9217         * LaTeXFeatures.h: use a list<string> instead of a vector<string>
9218         for layouts
9219
9220         * lyxrc.C:
9221         * encoding.C:
9222         * bufferlist.C:
9223         * BufferView2.C: include "lyxlex.h"
9224
9225         * tabular.h:
9226         * bufferparams.h: do not #include "lyxlex.h"
9227
9228         * lyxtextclasslist.C (Add): remove method
9229         (classlist): renamed to classlist_
9230
9231         * paragraph_pimpl.C:
9232         * paragraph.C:
9233         * text2.C:
9234         * CutAndPaste.C:
9235         * bufferview_funcs.C:
9236         * bufferlist.C:
9237         * text.C:
9238         * LaTeXFeatures.C:
9239         * buffer.C:
9240         * toc.C (getTocList): use BufferParams::getLyXTextClass
9241
9242         * toc.C (getTocList): use InsetFloat::addToToc
9243
9244         * toc.[Ch]: new files, containing helper functions to handle table
9245         of contents
9246
9247         * lyxfunc.C (dispatch): no need to remove spaces around command
9248         given as a string
9249         (getStatus): handle LFUN_SEQUENCE by returning the status of the
9250         first command of the sequence; it is not very clever, but I do not
9251         have a better idea, actually
9252
9253         * LyXAction.C (LookupFunc): make sure to remove space at the
9254         beginning and end of the command
9255
9256 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9257
9258         * MenuBackend.C (getMenubar): new method: return the menubar of
9259         this menu set
9260         (read): treat differently reading of menu and menubar (in
9261         particular, the menubar has no name now)
9262         (Menu::menubar): remove
9263
9264         * lyxfunc.C (dispatch): add 'done' message to minibuffer when
9265         saving is finished
9266
9267 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
9268
9269         * BufferView_pimpl.C (workAreaButtonRelease): Fix opening of
9270         a bibitem inset in a RTL paragraph.
9271
9272 2002-07-20  John Levon  <moz@compsoc.man.ac.uk>
9273
9274         * paragraph_pimpl.C: constify
9275
9276         * BufferView_pimpl.C:
9277         * LaTeX.C:
9278         * lyxfunc.C: fix dispatch in a nicer way
9279
9280 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9281
9282         * lyxfunc.C (dispatch):
9283         * BufferView_pimpl.C:
9284         * BufferView_pimpl.h:
9285         * BufferView.C:
9286         * BufferView.h: rename Dispatch() to dispatch()
9287
9288         * LaTeXFeatures.C (useLayout): honor LyXLayout::depends_on()
9289
9290         * lyxlayout.C (Read): honor DependsOn tag
9291
9292         * lyxlayout.[Ch] (depends_on): new method
9293
9294         * version.C.in: update lyx_docversion
9295
9296         * LaTeXFeatures.C (getMacros): only define \LyX when needed
9297
9298         * paragraph.C (validate): remove from here...
9299         * paragraph_pimpl.C (validate): ... and move here
9300         (isTextAt): make it const
9301
9302         * buffer.C (getLists): ws cleanup
9303
9304 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
9305
9306         * language.C (read): Use iso8859-1 encoding in latex_lang
9307         (this prevents LyX from crashing when using iso10646-1 encoding).
9308
9309 2002-07-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9310
9311         * text2.C (toggleInset): if cursor is inside an inset, close the
9312         inset and leave cursor _after_ it
9313
9314 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
9315
9316         * lyxfunc.C: move minibuffer completion handling out of here
9317
9318 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
9319
9320         * BufferView_pimpl.C:
9321         * LaTeX.C: fix dispatch calls
9322
9323 2002-07-19  Dekel Tsur  <dekelts@tau.ac.il>
9324
9325         * text.C (drawChars): Fix Arabic text rendering.
9326
9327 2002-07-18  John Levon  <moz@compsoc.man.ac.uk>
9328
9329         * LyXAction.C:
9330         * commandtags.h:
9331         * lyxfunc.C: remove message-push/pop
9332
9333         * lyxserver.C:
9334         * lyxfunc.h:
9335         * lyxfunc.C: rationalise some code by removing verboseDispatch
9336           in favour of a bool argument to dispatch()
9337
9338 2002-07-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9339
9340         * lyx_main.C (init): make sure to read symlinks as absolute paths
9341
9342 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
9343
9344         * lyxfunc.h:
9345         * lyxfunc.C: no need for commandshortcut to be a member
9346
9347 2002-07-15  André Pönitz <poenitz@gmx.net>
9348
9349         * converter.C: add support for $$s (scripts from lib/scripts dir)
9350         * lyx_main.C: white space
9351
9352 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
9353
9354         * bufferlist.C:
9355         * lyxrc.h:
9356         * lyxrc.C: remove second exit confirmation
9357
9358 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
9359
9360         * BufferView.h:
9361         * BufferView.C:
9362         * BufferView2.C:
9363         * BufferView_pimpl.h:
9364         * BufferView_pimpl.C:
9365         * lyxfunc.C: s/setState/switchKeyMap/, s/showState/view_state_changed/
9366
9367 2002-07-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9368
9369         * MenuBackend.C (expand): add numeric shortcuts to document menu
9370
9371         * lyxrc.C (getDescription): remove RC_NEW_ASK_FILENAME
9372
9373 2002-07-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9374
9375         * lyxfont.C (setLyXFamily):
9376         (setLyXSeries):
9377         (setLyXShape):
9378         (setLyXSize):
9379         (setLyXMisc):
9380         (lyxRead):
9381         * debug.C (value):
9382         * buffer.C (asciiParagraph): use ascii_lowercase
9383
9384 2002-07-15  Mike Fabian  <mfabian@suse.de>
9385
9386         * lyxlex_pimpl.C (search_kw):
9387         * lyxlex.C (getLongString):
9388         * converter.h (operator<):
9389         * converter.C (operator<):
9390         * buffer.C (parseSingleLyXformat2Token):
9391         (asciiParagraph):
9392         * ToolbarDefaults.C (read):
9393         * MenuBackend.C (checkShortcuts):
9394         (read):
9395         * LColor.C (getFromGUIName):
9396         (getFromLyXName): use the compare_ascii_no_case instead of
9397         compare_no_case, because in turkish, 'i' is not the lowercase
9398         version of 'I', and thus turkish locale breaks parsing of tags.
9399
9400 2002-07-16  Angus Leeming  <leeming@lyx.org>
9401
9402         * BufferView_pimpl.C (buffer): Previews::generateBufferPreviews
9403         now takes a Buffer const & argument.
9404
9405 2002-07-15  John Levon  <moz@compsoc.man.ac.uk>
9406
9407         * BufferView.C (resize): check there's a buffer to resize
9408
9409 2002-07-14  John Levon  <moz@compsoc.man.ac.uk>
9410
9411         * lyxfunc.C: remove dead code
9412
9413         * lyxserver.h:
9414         * lyxserver.C: use lyx_guii::set_read_callback
9415
9416 2002-07-13  Dekel Tsur  <dekelts@tau.ac.il>
9417
9418         * lyxfunc.C (dispatch): Correct cursor behaviour when exiting
9419         an inset in a RTL paragraph.
9420
9421 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
9422
9423         * lyxfunc.C: repaint after a font size update
9424
9425 2002-07-15  André Pönitz <poenitz@gmx.net>
9426
9427         * lyxlength.C: inBP should be able to return negative values
9428
9429 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
9430
9431         * lyxfunc.C: use lyx_gui::update_fonts()
9432
9433 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
9434
9435         * lyxfunc.C: use lyx_gui::update_color()
9436
9437 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
9438
9439         * bufferlist.C:
9440         * lyxfunc.h:
9441         * lyxfunc.C:
9442         * lyxrc.h:
9443         * lyxrc.C: remove file->new asks for name option, and let
9444           buffer-new take an argument
9445
9446 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
9447
9448         * BufferView_pimpl.C: remove unneeded extra repaint()
9449
9450 2002-07-10  John Levon  <moz@compsoc.man.ac.uk>
9451
9452         * LyXAction.C: allow command-sequence with NoBuffer
9453
9454         * lyxfunc.C: don't insist on trailing ';' for command-sequence
9455
9456 2002-07-10  Angus Leeming  <leeming@lyx.org>
9457
9458         * lyxrc.[Ch]: preview_scale_factor should be a float not an int.
9459
9460 2002-07-09  Angus Leeming  <leeming@lyx.org>
9461
9462         * lyxrc.[Ch]: added preview_hashed_labels and preview_scale_factor.
9463
9464 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
9465
9466         * lengthcommon.h: whitespace
9467
9468         * lyxfunc.C: update scrollbar after goto paragraph
9469
9470         * lyxtext.h: factor out page break drawing, and fix it so
9471           page break/added space paints as selected nicely
9472
9473 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
9474
9475         * BufferView_pimpl.C: add FIXMEs, clean up a little
9476
9477 2002-07-09  André Pönitz <poenitz@gmx.net>
9478
9479         * lyxfont.[Ch]: support for wasy symbols
9480
9481 2002-07-08  André Pönitz <poenitz@gmx.net>
9482
9483         * BufferView_pimpl.C: apply John's patch for #93.
9484
9485 2002-07-05  Angus Leeming  <leeming@lyx.org>
9486
9487         * BufferView_pimpl.C (buffer): generate previews if desired.
9488
9489         * LColor.h: add "preview" to the color enum.
9490
9491         * LColor.C (LColor): add a corresponding entry to the items array.
9492
9493         * buffer.C (~Buffer): remove any previewed LaTeX snippets associated
9494         with this buffer.
9495
9496 2002-07-05  Angus Leeming  <leeming@lyx.org>
9497
9498         * buffer.[Ch] (makeLaTeXFile): create two methods where there was one.
9499         The body of the code is now in the method that is passed an ostream &
9500         rather than a file name.
9501         Pass an additional only_preamble parameter, useful for the forthcoming
9502         preview stuff.
9503
9504 2002-07-03  André Pönitz <poenitz@gmx.net>
9505
9506         * lyxfunc.C: simplify getStatus() a bit for math stuff
9507
9508 2002-07-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9509
9510         * BufferView_pimpl.C (workAreaResize): add an unconditional repaint.
9511
9512 2002-06-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9513
9514         * text.C (changeRegionCase): do not change case of all the
9515         document when region ends at paragraph end (bug #461)
9516
9517 2002-07-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9518
9519         * paragraph.C (startTeXParParams):
9520         (endTeXParParams): add \protect when necessary
9521
9522 2002-06-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9523
9524         * BufferView_pimpl.C (workAreaExpose): remove warning
9525
9526 2002-06-27  Angus Leeming  <leeming@lyx.org>
9527
9528         * Makefile.am: add lyxlayout_ptr_fwd.h.
9529
9530 2002-06-26  André Pönitz <poenitz@gmx.net>
9531
9532         * lyxrc.[Ch]: introduce \preview, revive half-dead \show_banner
9533
9534 2002-06-25  Angus Leeming  <leeming@lyx.org>
9535
9536         * lyxfunc.C (dispatch): Comment out the call to
9537         grfx::GCache::changeDisplay. The method no longer exists now that the
9538         pixmap generation part of the graphics loader has been moved into
9539         InsetGraphics.
9540
9541 2002-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9542
9543         * text2.C: layout as layout
9544
9545         * text.C: layout as layout
9546
9547         * tabular.C (OldFormatRead): layout as layout
9548
9549         * paragraph_pimpl.C (TeXDeeper): layout as layout
9550         (realizeFont): layout as layout
9551
9552         * paragraph.C (writeFile): layout as layout
9553         (validate): layout as layout
9554         (getFont): layout as layout
9555         (getLabelFont): layout as layout
9556         (getLayoutFont): layout as layout
9557         (breakParagraph): layout as layout
9558         (stripLeadingSpaces): layout as layout
9559         (getEndLabel): layout as layout
9560         (getMaxDepthAfter): layout as layout
9561         (applyLayout): layout as layout
9562         (TeXOnePar): layout as layout
9563         (simpleTeXOnePar): layout as layout
9564         (TeXEnvironment): layout as layout
9565         (layout): layout as layout
9566         (layout): layout as layout
9567
9568         * lyxtextclass.C (compare_name): new functor to work with
9569         shared_ptr, layout as layout
9570         (Read): layout as layout
9571         (hasLayout): layout as layout
9572         (operator): layout as layout
9573         (delete_layout): layout as layout
9574         (defaultLayout): layout as layout
9575
9576         * lyxlayout_ptr_fwd.h: new file
9577
9578         * lyxlayout.C (Read): layout as layout
9579
9580         * lyx_cb.C (MenuInsertLabel): layout as layout
9581
9582         * bufferlist.C (newFile): layout as layout
9583
9584         * buffer.C (readLyXformat2): layout as layout
9585         (parseSingleLyXformat2Token): layout as layout
9586         (insertStringAsLines): layout as layout
9587         (asciiParagraph): layout as layout
9588         (latexParagraphs): layout as layout
9589         (makeLinuxDocFile): layout as layout
9590         (simpleLinuxDocOnePar): layout as layout
9591         (makeDocBookFile): layout as layout
9592         (simpleDocBookOnePar): layout as layout
9593         (getLists): layout as layout
9594
9595         * LaTeXFeatures.C (getTClassPreamble): layout as layout
9596
9597         * CutAndPaste.C (cutSelection): layout as layout
9598         (pasteSelection): layout as layout
9599         (SwitchLayoutsBetweenClasses): layout as layout
9600
9601         * BufferView_pimpl.C (Dispatch): layout as layout
9602         (smartQuote): layout as layout
9603
9604         * BufferView2.C (unlockInset): layout as layout
9605
9606 2002-06-24  André Pönitz <poenitz@gmx.net>
9607
9608         * lyxfunc.C: fix #487
9609
9610 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
9611
9612         * lyxrc.h:
9613         * lyxrc.C:
9614         * lyxfunc.C: remove display_shortcuts, show_banner
9615
9616 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
9617
9618         * Buffer_pimpl.C: oops, update on resize
9619
9620 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
9621
9622         * buffer.C:
9623         * converter.C:
9624         * exporter.C:
9625         * lyxfunc.C:
9626         * BufferView.h:
9627         * BufferView.C: use repaint()
9628
9629         * BufferView_pimpl.h:
9630         * BufferView_pimpl.C: s/updateScreen()/repaint()/
9631           as it's a clearer description. Remove superfluous
9632           redraws.
9633
9634 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
9635
9636         * text.C: fix bug 488. Not ideal, but getting
9637           getWord() to work properly for the insets that
9638           matter is more difficult ...
9639
9640 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
9641
9642         * BufferView_pimpl.C:
9643         * LyXAction.C:
9644         * commandtags.h:
9645         * lyxfunc.C: remove the six million index lyxfuncs to just
9646           one, and DTRT (bug 458)
9647
9648 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
9649
9650         * BufferView.h:
9651         * BufferView.C:
9652         * BufferView_pimpl.h:
9653         * BufferView_pimpl.C: clean up resize() stuff,
9654           and unnecessary updateScreen()s
9655
9656 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
9657
9658         * BufferView.h:
9659         * BufferView.C:
9660         * BufferView_pimpl.h:
9661         * BufferView_pimpl.C:
9662         * lyxfind.h:
9663         * lyxfind.C:
9664         * minibuffer.C: remove focus management of workarea,
9665           not needed. Use screen's greyOut()
9666
9667 2002-06-17  Herbert Voss  <voss@lyx.org>
9668
9669         * converter.C: (convert) do not post a message, when converting
9670         fails, let the calling function decide what to do in this case
9671
9672 2002-06-18  John Levon  <moz@compsoc.man.ac.uk>
9673
9674         * lyxfunc.C: tidy up a little
9675
9676 2002-06-16    <alstrup@diku.dk>
9677
9678         * BufferView_pimpl.C (Pimpl): Use WorkAreaFactory.
9679         Got rid of FORMS_H_LOCATION include. Now we are
9680         GUII.
9681
9682 2002-06-15  LyX Development team  <lyx@rilke>
9683
9684         * buffer.[Ch] (sgmlOpenTag):
9685         (sgmlCloseTag): Added support for avoiding pernicious mixed
9686         content. Return number of lines written.
9687
9688         (makeLinuxDocFile):
9689         (makeDocBookFile): Fixed calls to sgml*Tag.
9690         Simple white space clean.
9691
9692         (simpleDocBookOnePar): Simple white space clean.
9693
9694         * tabular.[Ch] (docBook): Renamed to docbook and got another
9695         argument to related with the pernicious mixed content.
9696
9697         (docbookRow): Fixed calls for docbook inset method.
9698
9699 2002-06-15  Lyx Development team  <larsbj@birdstep.com>
9700
9701         * lyxfunc.[Ch]: Use LyXKeySym instead of KeySym,
9702         so it's X11 independent.
9703
9704         * kb*.[Ch]: ditto.
9705
9706         * BufferView_pimpl.[Ch] (workAreaKeyPress): ditto.
9707
9708 2002-06-15  Lyx Development team  <lyx@electronia>
9709
9710         * intl.h: Renamed getTrans to getTransManager.
9711
9712 2002-06-14  Angus Leeming  <leeming@lyx.org>
9713
9714         * Makefile.am: nuke forgotten stl_string_fwd.h.
9715
9716 2002-06-12  Angus Leeming  <leeming@lyx.org>
9717
9718         * stl_string_fwd.h: unused and non-compliant anyway. Nuked.
9719
9720 2002-06-13  Angus Leeming  <leeming@lyx.org>
9721
9722         * LaTeX.C:
9723         * vspace.C: wrap using std::sscanf inside a CXX_GLOBAL_CSTD block.
9724
9725 2002-06-12  Andrew Zabolotny  <zap@cobra.ru>
9726
9727         * kbmap.C (getiso): add support for cyrillic and greek
9728
9729 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9730
9731         * BufferView.h:
9732         * BufferView.C:
9733         * BufferView_pimpl.h:
9734         * BufferView_pimpl.C: move bogus scrolling logic
9735           to xforms
9736
9737 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9738
9739         * lyxfunc.C:
9740         * BufferView_pimpl.C: view->resize() change
9741
9742 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9743
9744         * BufferView_pimpl.C: topCursorVisible
9745           prototype change
9746
9747 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9748
9749         * Makefile.am:
9750         * lyx_gui.h:
9751         * lyx_gui.C: move to frontends/
9752
9753         * main.C:
9754         * lyx_main.h:
9755         * lyx_main.C: changes from above
9756
9757 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9758
9759         * intl.C:
9760         * intl.h:
9761         * kbmap.C:
9762         * kbsequence.C:
9763         * lyx_cb.C:
9764         * lyx_main.C: minor tidy
9765
9766 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9767
9768         * BufferView_pimpl.h:
9769         * BufferView_pimpl.C:
9770         * BufferView.h:
9771         * BufferView.C: make painter() const,
9772           remove dead code
9773
9774         * BufferView2.C: use screen() accessor
9775
9776         * lyx_main.h:
9777         * lyx_main.C: some minor cleanup
9778
9779 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9780
9781         * BufferView_pimpl.h:
9782         * BufferView_pimpl.C: remove enter/leaveView,
9783           use workHeight()
9784
9785 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9786
9787         * BufferView.h:
9788         * BufferView.C:
9789         * BufferView2.C:
9790         * BufferView_pimpl.h:
9791         * BufferView_pimpl.C: only construct screen once,
9792           rename
9793
9794         * lyxrc.C: remove pointless comment
9795
9796 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
9797
9798         * BufferView.h:
9799         * BufferView.C: remove active() and belowMouse()
9800
9801         * BufferView_pimpl.h:
9802         * BufferView_pimpl.C: use workarea() not workarea_,
9803           and make it use a scoped_ptr instead
9804
9805 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
9806
9807         * lyx_gui.C: add debug message on BadWindow
9808
9809 2002-06-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9810
9811         * sp_spell.C: fdopen is not part of the C++ standard.
9812
9813         * paragraph.C (InsetIterator): use >= instead of ==
9814
9815 2002-06-07  Angus Leeming  <leeming@lyx.org>
9816
9817         Fixes needed to compile with Compaq cxx 6.5.
9818         * BufferView_pimpl.C:
9819         * DepTable.C:
9820         * buffer.C:
9821         * converter.C:
9822         * encoding.C:
9823         * lyx_gui.C:
9824         * lyx_main.C:
9825         * lyxtextclasslist.C:
9826         * minibuffer.C:
9827         * sp_spell.C:
9828         * tabular_funcs.C:
9829         * vc-backend.C:
9830         all c-library variables have been moved into namespace std. Wrap
9831         using std::xyz declarations inside a #ifndef CXX_GLOBAL_CSTD block.
9832
9833         * lyxlength.C:
9834         * tabular-old.C:
9835         * tabular.C:
9836         Add a using std::abs declaration.
9837
9838         * kbmap.h (modifier_pair):
9839         * paragraph.h (InsetTable, InsetList):
9840         * lyxfont.h (FontBits):
9841         type definition made public.
9842
9843         * bufferlist.C (emergencyWriteAll): the compiler complains that
9844         there is more than one possible lyx::class_fun template to choose from.
9845         I re-named the void specialisation as lyx::void_class_fun.
9846
9847         * lyxfont.C (FontBits' operator==, operator!=): taken out of class.
9848
9849         * tabular_funcs.C: lstrings.h must come before tabular_funcs.h or
9850         the compiler is is unable to find tostr in write_attribute.
9851
9852 2002-06-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9853
9854         * buffer.C (sgmlError): hide #warning
9855
9856 2002-06-05  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9857
9858         * xtl/*: get rid of xtl, which is not in use anyway
9859
9860         * LyXAction.C (init):
9861         * commandtags.h: remove BUFFER_PRINT and BUFFER_PARAMS_GET, which
9862         were unimplemented xtl experimentation
9863
9864 2002-06-04  André Pönitz <poenitz@gmx.net>
9865
9866         * lyxfunc.C: disable array operation on simple formulae
9867
9868 2002-06-03  John Levon  <moz@compsoc.man.ac.uk>
9869
9870         * converter.C: constify a bit
9871
9872 2002-06-02  John Levon  <moz@compsoc.man.ac.uk>
9873
9874         * lyx_gui.C: check xforms version correctly
9875
9876 2002-04-30  Herbert Voss  <voss@lyx.org>
9877
9878         * buffer.C (parseSingleLyXformat2Token): fix bug with ignored
9879         "keep" option
9880
9881 2002-05-31  John Levon  <moz@compsoc.man.ac.uk>
9882
9883         * lyxvc.C: fix bug 416 (make sure buffer is saved before
9884           attempt to register it with a VCS)
9885
9886 2002-05-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9887
9888         * lyx_main.C (init): honor variables LYX_DIR_13x and
9889         LYX_USERDIR_13x
9890
9891 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
9892
9893         * buffer.h:
9894         * buffer.C:
9895         * lyx_main.C: fix a crash on bad command line,
9896           and give a useful exit status on error
9897
9898         * lyxfunc.C (doImport): allow -i lyx to work
9899
9900 2002-03-30  André Pönitz <poenitz@gmx.net>
9901
9902         * lyxfunc.C: mathed font changes
9903
9904 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
9905
9906         * LaTeX.C:
9907         * importer.h:
9908         * importer.C:
9909         * lyx_sty.h:
9910         * lyx_sty.C:
9911         * lyxlex.C:
9912         * lyxrow.h:
9913         * lyxtext.h:
9914         * paragraph.h:
9915         * paragraph.C:
9916         * texrow.h:
9917         * texrow.C:
9918         * text.C:
9919         * trans_mgr.h: srcdocs, and some minor cleanups
9920
9921 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9922
9923         * paragraph_pimpl.C (isTextAt): rewrite to be much faster (do not
9924         call getFont all the time)
9925
9926 2002-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9927
9928         * switch from SigC signals to boost::signals
9929
9930 2002-05-29  André Pönitz <poenitz@gmx.net>
9931
9932         * paragraph_pimpl.C (getChar): don't call size() too often...
9933
9934 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9935
9936         * paragraph_pimpl.C (insertChar): do not try to update tables when
9937         appending (pos == size())
9938
9939         * buffer.C (parseSingleLyXformat2Token): reorder a bit the tests
9940         in order to reduce drastically the number of comparisons needed to
9941         parse a large document
9942
9943 2002-05-29  André Pönitz <poenitz@gmx.net>
9944
9945         * text.C:
9946         * text2.C:
9947         * lyxtextclass.C:
9948         * sp_pspell.h:
9949         * textclasslist.[Ch]:
9950         * sp_ispell.h: whitespace change
9951
9952 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9953
9954         * lyxserver.C (callback): tentative fix of lyxserver. Does not use
9955         lyxaction directly now.
9956
9957 2002-05-27  John Levon  <moz@compsoc.man.ac.uk>
9958
9959         * trans.C:
9960         * lyxfont.C:
9961         * lyxvc.C: remove unused headers
9962
9963 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
9964
9965         * Makefile.am:
9966         * buffer.h:
9967         * undostack.h:
9968         * undostack.C:
9969         * undo_funcs.h:
9970         * undo_funcs.C: some cleanups. Use shared_ptr
9971           and a template for the undo stacks.
9972
9973 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
9974
9975         * BufferView_pimpl.h:
9976         * BufferView_pimpl.C:
9977         * kbmap.h:
9978         * kbmap.C:
9979         * kbsequence.h:
9980         * kbsequence.C:
9981         * lyxfunc.h:
9982         * lyxfunc.C:
9983         * text2.C: use key_state/mouse_state
9984
9985 2002-05-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9986
9987         * vc-backend.C (scanMaster): use boost regex and get rid of LRegex
9988         and LSubstring
9989
9990         * chset.C: change include order
9991         (loadFile): use boost regex and get rid of LRegex and LSubstring
9992
9993         * Makefile.am (BOOST_LIBS): new variable
9994         (lyx_LDADD): use it
9995
9996         * LaTeX.C: change include order.
9997         (scanAuxFile): use boost regex and get rid of LRegex and
9998         LSubstring
9999         (deplog): ditto
10000
10001 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
10002
10003         * ColorHandler.h:
10004         * ColorHandler.C:
10005         * FontInfo.h:
10006         * FontInfo.C: moved to frontends/xforms/
10007
10008         * FontLoader.h:
10009         * FontLoader.C: moved into frontends for GUIIzation
10010
10011         * Makefile.am:
10012         * lyx_gui.C:
10013         * lyxfont.C:
10014         * lyxfunc.C: changes from above
10015
10016 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
10017
10018         * LColor.C: remove spurious X include
10019
10020         * BufferView_pimpl.C:
10021         * Makefile.am:
10022         * font.h:
10023         * font.C:
10024         * text.C:
10025         * text2.C: move font metrics to frontends/
10026
10027 2002-05-24  Juergen Vigna  <jug@sad.it>
10028
10029         * undo_funcs.C (textHandleUndo): fix the cursor selection after
10030         setting the undo_cursor.
10031
10032         * ParagraphParameters.h: include local includes first.
10033
10034 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
10035
10036         * BufferView_pimpl.C:
10037         * BufferView_pimpl.h:
10038         * Makefile.am:
10039         * WorkArea.h:
10040         * WorkArea.C:
10041         * screen.C: move WorkArea into frontends/
10042
10043         * lyxscreen.h:
10044         * screen.C:
10045         * text.C:
10046         * BufferView.C:
10047         * BufferView2.C: move LyXScreen into frontends/
10048
10049         * lyxlookup.h:
10050         * lyxlookup.C:
10051         * lyx_gui.C: move lyxlookup into frontends/xforms/
10052
10053 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
10054
10055         * BufferView2.C:
10056         * BufferView_pimpl.C:
10057         * FontLoader.C:
10058         * LyXView.h:
10059         * LyXView.C:
10060         * Makefile.am:
10061         * WorkArea.C:
10062         * XFormsView.h:
10063         * XFormsView.C:
10064         * buffer.C:
10065         * bufferlist.C:
10066         * bufferview_funcs.C:
10067         * converter.C:
10068         * importer.C:
10069         * lyx_cb.C:
10070         * lyx_gui.C:
10071         * lyx_main.C:
10072         * lyx_find.C:
10073         * lyxfunc.C:
10074         * lyxvc.C:
10075         * minibuffer.C:
10076         * text.C:
10077         * text2.C:
10078         * trans.C:
10079         * vc-backend.C: move LyX/XFormsView into frontends/
10080
10081 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
10082
10083         * Makefile.am:
10084         * PainterBase.C:
10085         * PainterBase.h:
10086         * Painter.C:
10087         * Painter.h:
10088         * WorkArea.C:
10089         * WorkArea.h:
10090         * screen.C:
10091         * tabular.C:
10092         * text.C:
10093         * text2.C: move Painter to frontends/
10094
10095 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10096
10097         * buffer.C: comment out some some code that depend upon lyx_format
10098         < 220
10099
10100         * paragraph.h (NO_PEXTRA_REALLY): turn off all pextra
10101         * ParagraphParameters.h (NO_PEXTRA_REALLY): ditto
10102
10103         * buffer.h (NO_COMPABILITY): turn off compability
10104
10105         * ColorHandler.C: include scoped_array.hpp
10106
10107         * font.C: Use more specific smart_ptr header.
10108         * Painter.C: ditto
10109         * gettext.C: ditto
10110         * ShareContainer.h: ditto
10111         * lyx_main.h: ditto
10112         * kbmap.h: ditto
10113         * FontInfo.h: ditto
10114         * BufferView_pimpl.h: ditto
10115         * ColorHandler.h: ditto
10116
10117         * kbmap.C (defkey): change call to shared_ptr::reset
10118
10119 2002-05-21  Juergen Vigna  <jug@sad.it>
10120
10121         * buffer.C (insertErtContents): fix to insert ert asis if it is
10122         non empty. Skip it completely if it contains only whitespaces.
10123
10124 2002-05-15  John Levon  <moz@compsoc.man.ac.uk>
10125
10126         * BufferView_pimpl.C:
10127         * BufferView2.C: clear selection on paste (bug 393)
10128
10129 2002-05-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10130
10131         * DepTable.C: include ctime
10132
10133 2002-05-11  Dekel Tsur  <dekelts@tau.ac.il>
10134
10135         * buffer.C (latexParagraphs): Add new argument (moving_arg).
10136
10137 2002-05-14  Juergen Vigna  <jug@sad.it>
10138
10139         * text.C (breakParagraph): fixed function to honor the keepempty
10140         layout in the right maner and also to permit the right breaking
10141         algorithm on empty or non empyt keepempty paragraphs.
10142
10143         * paragraph.C (breakParagraph): we have to check also if the par
10144         is really empty (!size()) for isempty otherwise we do the wrong
10145         paragraph break.
10146
10147 2002-05-10  Juergen Vigna  <jug@sad.it>
10148
10149         * buffer.[Ch] : The following are only changes to the ert
10150         compatibility read reading old LaTeX layout and font stuff and
10151         convert it to ERTInsets.
10152
10153         * buffer.h: added isErtInset().
10154
10155         * buffer.C (struct ErtComp): add a fromlayout bool to check
10156         if we're inside a LaTeX layout.
10157         (isErtInset): new helper function.
10158         (insertErtContents): look for other ert insets before this one
10159         and insert the contents there, so that we don't have subsequent
10160         ERT insets with nothing between them. This way we create only one
10161         inset with multiple paragraphs. Also check if we don't insert only
10162         spaces ' ' as they are ignored anyway afterwards in the .tex file
10163         so if we have only spaces we will ignore this latex part in the
10164         new file.
10165         (parseSingleLyXformat2Token \\layout): better compatibility when
10166         reading layout-latex stuff.
10167         (parseSingleLyXformat2Token \\lang): put the insetERT in the right
10168         language tag.
10169         (parseSingleLyXformat2Token \\begin_inset): don't reset ert_comp
10170         stuff after reading the inset only get the information back from
10171         the stack.
10172
10173 2002-05-10  Dekel Tsur  <dekelts@tau.ac.il>
10174
10175         * buffer.C (makeLaTeXFile): Put language options after loading babel.
10176
10177         * LaTeXFeatures.C (getBabelOptions): New method.
10178
10179 2002-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10180
10181         * BufferView_pimpl.C (Dispatch): work around missing argument for
10182         'layout'
10183
10184 2002-05-08  Juergen Vigna  <jug@sad.it>
10185
10186         * text.C (leftMargin): handle paragraph leftindent.
10187
10188         * paragraph.C (writeFile): write the new \\leftindent tag.
10189         (validate): handle leftindent code.
10190         (TeXEnvironment): handle paragraphleftindent code again.
10191
10192         * lyx_sty.h: changed ParagraphIndent to ParagraphLeftIndent.
10193
10194         * buffer.C (parseSingleLyXformat2Token): added compatibility code
10195         for paragrap_extra indent code and new token \\leftindent.
10196         (latexParagraphs): handle the leftindent as environment.
10197
10198         * ParameterStruct.h: added leftindent support.
10199
10200         * ParagraphParameters.C (leftIndent): added support functions for
10201         the paragraph left indent.
10202
10203         * LaTeXFeatures.C: change paragraphindent to paragraphleftindent seems
10204         more appropriate.
10205
10206 2002-05-05  Dekel Tsur  <dekelts@tau.ac.il>
10207
10208         * paragraph.C (isRightToLeftPar): Return false for a paragraph
10209         inside insetERT.
10210
10211         * text.C (computeBidiTables): No bidi in insetERT.
10212
10213         * BufferView_pimpl.C (setState): Fix keymap handling inside insetERT
10214         in RTL documents.
10215
10216 2002-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10217
10218         * version.C.in: pre 5
10219
10220 2002-05-02  José Matos  <jamatos@fep.up.pt>
10221         * buffer.C (makeDocBookFile): white space changes, add newline to
10222         command styles.
10223         (simpleDocBookOnePar): protect <emphasis> inside a CDATA section.
10224
10225         * tabular.C (docBook): fix typo.
10226
10227 2002-05-03  Juergen Vigna  <jug@sad.it>
10228
10229         * screen.C (drawFromTo): recalculate the rowpointer if we had a
10230         change in LyXText as we can not be sure it was not freed.
10231         (drawOneRow): remove unused code.
10232
10233         * text.C (drawInset): redo the calculation of the need_break_row as
10234         it could have a row which was already freed.
10235         (draw): look at the return value of drawInset and return false if
10236         it also returned false.
10237         (paintRowText): look at the return value of draw and return false if
10238         it also returned false.
10239
10240         * lyxtext.h: added bool return type to drawInset() and draw() so that
10241         if we have a change in the row so that the rowbreak has to be redone
10242         we abort drawing as it will be called again.
10243
10244 2002-05-02  Juergen Vigna  <jug@sad.it>
10245
10246         * BufferView_pimpl.C (moveCursorUpdate): make repaint if we had
10247         a change in the maintext also if we're inside an inset.
10248         (Dispatch): set the cursor again after a break line and after the
10249         screen has been updated as it could be we're in a different row.
10250
10251         * text2.C (fixCursorAfterDelete): check to make sure we don't request
10252         to set the cursor behind the pargraph with > size().
10253         (setCursor): check also for the same paragraph when checking where
10254         to put the cursor if we have a NFR inset.
10255
10256         * buffer.C (parseSingleLyXformat2Token): move the compatibility
10257         parts of layout read further up as it still was in the wrong
10258         position.
10259
10260 2002-05-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10261
10262         * screen.C (drawFromTo): change sine fullRebreak always return
10263         true.
10264
10265         * buffer.C (parseSingleLyXformat2Token): reindent some
10266
10267         * BufferView_pimpl.C (update): change since fullRebreak always
10268         return true.
10269         (Dispatch): git rid of the last hardcoded "Standard"s.
10270
10271 2002-05-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10272
10273         * text2.[Ch] (fullRebreak): make it return void now that we always
10274         returned true.
10275
10276 2002-04-30  Juergen Vigna  <jug@sad.it>
10277
10278         * buffer.C (parseSingleLyXformat2Token): reset the font before the
10279         ert compatibility check for "latex" layout.
10280
10281 2002-04-29  Dekel Tsur  <dekelts@tau.ac.il>
10282
10283         * buffer.C (parseSingleLyXformat2Token): Fix reading of old format
10284         minipages: use col% instead of p%, and also use the current font.
10285         (makeLaTeXFile): Fix use babel condition.
10286         (parseSingleLyXformat2Token): Correct font when reading old floats.
10287
10288 2002-04-28  Dekel Tsur  <dekelts@tau.ac.il>
10289
10290         * BufferView_pimpl.C (Dispatch): Check that float type exists when
10291         inserting list of floats.
10292
10293 2002-04-25  Herbert Voss  <voss@lyx.org>
10294
10295         * MenuBackend.C (expand): don't add the graphics extensions to the
10296         export menu
10297
10298 2002-04-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10299
10300         * CutAndPaste.C (SwitchLayoutsBetweenClasses): when converting a
10301         non-existing layout, do not complain if it was the default layout
10302         of the original class (bug #342)
10303
10304 2002-04-24  Juergen Vigna  <jug@sad.it>
10305
10306         * BufferView_pimpl.C (workAreaButtonPress): fix handling of mouse-wheel
10307         (workAreaButtonRelease): don't do anything if it was a mouse-wheel
10308
10309 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
10310
10311         * buffer.C (getBibkeyList): If using \bibliography, return the
10312         option field with the reference itself. Enables us to provide natbib
10313         support when using \bibliography.
10314
10315 2002-04-23  Mike Ressler  <mike.ressler@alum.mit.edu>
10316
10317         * lyxtextclass.[Ch]: add layout keyword ProvidesNatbib.
10318
10319         * LaTeXFeatures.C: do not add \usepackage{natbib} to tex file if
10320         natbib is provided by the LaTeX class.
10321
10322 2002-04-23  Juergen Vigna  <jug@sad.it>
10323
10324         * BufferView_pimpl.[Ch]: remove use of wrong and unneeded insetSleep/
10325         Wakeup functions.
10326
10327         * BufferView.[Ch]: remove not needed insetSleep/Wakeup functions.
10328
10329 2002-04-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10330
10331         * lyxfunc.C (getStatus): LFUN_PROTECTED_SPACE is allowed in maths
10332
10333         * paragraph_pimpl.C (simpleTeXSpecialChars): remove bogus
10334         ensuremath around textordmasculine, textordfeminine and
10335         textdegree.
10336
10337 2002-04-19  Juergen Vigna  <jug@sad.it>
10338
10339         * BufferView_pimpl.C (resizeCurrentBuffer): resize the insets before
10340         reinitializing the buffer otherwise row-dimensions may be wrong.
10341         (update): reset also the selection cursors if they do exits otherwise
10342         their x/y positions may be wrong.
10343
10344         * text2.C (cursorDown): don't enter the inset if we came from a row
10345         above and are one row over the inset.
10346
10347         * lyxfunc.C (dispatch): update paragraph layout after LFUN_ESCAPE when
10348         really leaving an inset.
10349
10350 2002-04-18  Juergen Vigna  <jug@sad.it>
10351
10352         * BufferView_pimpl.C (Dispatch): fixed to change layout also if one
10353         of the selected paragraph does not have the selected layout also if
10354         the last one had!
10355
10356         * text2.C (setLayout): fixed bug which did not change last selected
10357         paragraph.
10358
10359         * tabular.C (OldFormatRead): check also for \\end_inset as Lars
10360         changed the read and substituted \\end_float with \\end_inset!
10361
10362         * BufferView_pimpl.C (cursorPrevious):
10363         (cursorNext): fixed to make it work with rows heigher than the work
10364         area without moving the cursor only the draw of the row.
10365         (workAreaMotionNotify): fix jumping over high rows.
10366
10367 2002-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10368
10369         * lyxtextclass.C (Read): fix bit adding, bug discovered by Mike
10370         Ressler.
10371
10372 2002-04-16  Juergen Vigna  <jug@sad.it>
10373
10374         * text2.C (setCursor): set also the irow().
10375         (setCursorFromCoordinates): fixed to set the (i) cursor values right!
10376         (cursorUp):
10377         (cursorDown): support for locking an inset if the x_fix value goes
10378         inside it. That way I can transverse insets too with cursor up/down.
10379
10380         * lyxrow.h: added irow helper function same as other (i) functions.
10381
10382         * BufferView_pimpl.C (cursorPrevious):
10383         (cursorNext): fixed for insets!
10384
10385 2002-04-15  Juergen Vigna  <jug@sad.it>
10386
10387         * BufferView_pimpl.C (insetDimensions): use ix/iy values for inset
10388         position otherwise it is wrong in some cases.
10389
10390         * lyxfunc.C (dispatch): fix FINISHED UP/DOWN to handle x position
10391         inside the inset before the call.
10392
10393 2002-04-16  Angus Leeming  <a.leeming@ic.ac.uk>
10394
10395         * buffer.[Ch] (getBibkeyList): make it const.
10396
10397 2002-04-12  Juergen Vigna  <jug@sad.it>
10398
10399         * BufferView_pimpl.C (workAreaMotionNotify): use new ix() cursor pos.
10400
10401         * text2.C (getCursorX): new helper function
10402         (setCursor): compute also ix_
10403         (setCursorFromCoordinates): set also ix.
10404
10405         * lyxcursor.h: added ix_ and helper functions.
10406
10407         * BufferView_pimpl.C (workAreaMotionNotify): forgot to use iy().
10408
10409         * buffer.C (insertStringAsLines): dont break paragraph if the this
10410         paragraph is inside an inset which does not permit it!
10411
10412         * text.C (breakParagraph): honor keepempty flag and break the paragraph
10413         also with no chars on this paragraph.
10414         (paintRowText): only paint stuff if it's inside the workarea!
10415
10416         * paragraph.C (breakParagraph): honor keepempty flag and break the
10417         paragraph always below not above.
10418
10419         * BufferView2.C (unlockInset): update the paragraph layout on inset
10420         unlock as we changed paragraph in such a case.
10421
10422         * lyxfind.C (LyXFind): clear the former selection if not found!
10423
10424         * text2.C (insertInset): freeze Undo after setUndo so that it is not
10425         again called in insertChar().
10426
10427         * text.C (leftMargin): return LYX_PAPER_MARGIN if this row contains
10428         an inset which uses the whole row!
10429         (rightMargin): ditto.
10430         (insertChar): force a rebreak if we inserted an inset!
10431
10432 2002-03-28  Herbert Voss  <voss@lyx.org>
10433
10434         * lyxlength.[Ch]: add inBP() to get the right PS-point
10435         units (BigPoint). With inPixels we have rounding errors
10436
10437 2002-04-11  Juergen Vigna  <jug@sad.it>
10438
10439         * text2.C (setCursorFromCoordinates): set iy to the right value.
10440         (setCursor): add check if row->previous exists!
10441
10442         * buffer.C (parseSingleLyXformat2Token): reset font after read of
10443         an old float_type as this was the case in the old code!
10444
10445         * paragraph.C (simpleTeXOnePar): fix closing of foreignlanguage tags.
10446
10447         * BufferView2.C (showLockedInsetCursor): use iy
10448         (fitLockedInsetCursor): ditto
10449
10450         * BufferView_pimpl.C (checkInset): use LyXCursor::iy for baseline of
10451         locked insets as there we have the right value now.
10452
10453         * lyxcursor.C: added iy_ variable and iy functions to set to the
10454         baseline of cursor-y of the locked inset.
10455
10456         * text2.C (setCursorFromCoordinates): set LyXCursor::iy.
10457         (setCursor): fixed for insets which need a full row.
10458
10459         * text.C (rowLastPrintable): don't ignore the last space when before
10460         an inset which needs a full row.
10461         (numberOfSeparators): use rowLastPrintable and <= last to honor a space
10462         as last character of a row when before a inset which needs a full row.
10463
10464 2002-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10465
10466         * version.C.in: update date
10467
10468         * text2.C (fullRebreak): try to always return true and see what
10469         happens...
10470
10471 2002-04-04  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10472
10473         * MenuBackend.C (expand): use Floating::listName
10474
10475         * FloatList.C (FloatList): add listName argument to the built-in
10476         floats
10477
10478         * Floating.[Ch]: add listName member, which is the 'List of XXX'
10479         text associated with the float.
10480
10481 2002-04-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10482
10483         * MenuBackend.C (expand): change label "Wide xxx" to "xxx (wide)".
10484
10485 2002-04-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10486
10487         * ShareContainer.h: add a couple of missing typenames.
10488
10489 2002-04-02  Angus Leeming  <a.leeming@ic.ac.uk>
10490
10491         * lyxrc.C (getDescription): use _() correctly rather than N_().
10492
10493 2002-03-28  Herbert Voss  <voss@lyx.org>
10494
10495         * lyxlength.C: compatibility stuff for < 1.1.6fix4 and
10496         "old" 1.2.0 files which use c%, l%, p% t% instead of text%, ...
10497
10498 2002-04-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10499
10500         * lyx_main.C (init): use environment variable LYX_DIR_12x instead
10501         of LYX_DIR_11x. Same for LYX_USERDIR_12x.
10502
10503 2002-03-29  Juergen Vigna  <jug@sad.it>
10504
10505         * lyxfunc.C (dispatch): add a missing fitCursor call.
10506
10507         * BufferView2.C (fitLockedInsetCursor): the inset needs to know if
10508         it was scrolled by a cursor move, so return the bool status.
10509
10510         * BufferView.C (fitCursor): return the bool flag also to the outside
10511         world as this is needed.
10512
10513         * screen.C (toggleToggle): don't subtract the offset if it's positive.
10514
10515         * BufferView_pimpl.C (workAreaButtonPress): just lock the inset don't
10516         call the edit() as it is not needed (and wrong) IMO.
10517         (workAreaButtonPress): set the screen_first variable before evt.
10518         unlock the inset as this may change screen_first and then we have
10519         a wrong y position for the click!
10520
10521 2002-03-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10522
10523         * MenuBackend.C (expand): another translation that I missed
10524
10525 2002-03-28  Juergen Vigna  <jug@sad.it>
10526
10527         * screen.C (toggleToggle): fix for insettexts y_offset on drawing.
10528
10529         * tabular.C (OldFormatRead): fix ert compatibility read inside cells.
10530
10531 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10532
10533         * lyxfunc.C (getStatus): return 'disabled' early for LFUN_NOACTION
10534
10535         * MenuBackend.C (expand): fix export/view/update when there is no
10536         document open.
10537
10538 2002-03-27  Herbert Voss  <voss@lyx.org>
10539
10540         * lengthcommon.C: change c%, l%, p% t% to col%, line%, page%
10541         and text%
10542
10543 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10544
10545         * bufferview_funcs.C (currentState): only show paragraph number
10546         for is DEVEL_VERSION is set.
10547
10548         * lyxfunc.C (dispatch): put warning in INFO channel
10549
10550         * MenuBackend.C (expand): translate the name of floats
10551
10552         * FloatList.C (FloatList): mark the float names for translation
10553
10554         * converter.C (convert): use LibScriptSearch
10555
10556 2002-03-26  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10557
10558         * MenuBackend.C (defaults): fix default menu (we might as well get
10559         rid of it...)
10560
10561 2002-03-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10562
10563         * lyxvc.C (registrer): register the file with CVS if it's in a CVS
10564         directory.
10565
10566 2002-03-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10567
10568         * lyxvc.C: reorder includes.
10569
10570 2002-03-25  John Levon  <moz@compsoc.man.ac.uk>
10571
10572         * BufferView_pimpl.C (updateScrollbar): update on buffer switch
10573           properly
10574
10575 2002-03-19  John Levon  <moz@compsoc.man.ac.uk>
10576
10577         * CutAndPaste.C: change layouts earlier on paste
10578           to avoid crashing when calling getFont()
10579
10580 2002-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
10581
10582         * PrinterParams.h: #include "lyxrc.h" and remove that bloody
10583         irritating #error.
10584
10585 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10586
10587         * WorkArea.C: remove 'Pending' debug message.
10588
10589         * most files: ws cleanup
10590
10591         * buffer.[Ch]: ws changes
10592
10593         * Makefile.am (LYX_CONV_LIBS): remove ld -r stuff.
10594
10595 2002-03-21  Juergen Vigna  <jug@sad.it>
10596
10597         * tabular.C (SetMultiColumn): collapse also the contents of the
10598         cells and set the last border right. Added a Buffer const * param.
10599
10600 2002-03-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10601
10602         * Makefile.am (LYX_CONV_LIBS): select libs depending on partial
10603         linking or not.
10604
10605 2002-03-19  Juergen Vigna  <jug@sad.it>
10606
10607         * text2.C (clearSelection): reset also xsel_cache.
10608
10609         * BufferView_pimpl.C (Dispatch): call WorkArea::haveSelection(false)
10610         where it needs to be called (John tells us to do so too :)
10611         (selectionLost): reset sel_cache.
10612
10613         * WorkArea.C (event_cb): leave ret to 0 (John tells us to do so :)
10614
10615 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10616
10617         * text2.C (setCursorIntern): put debuging code in INSETS channel
10618
10619 2002-03-19  André Pönitz <poenitz@gmx.net>
10620
10621         * lyxfunc.C: tiny whitespace change
10622
10623 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10624
10625         * ToolbarDefaults.C (init):
10626         * LyXAction.C (init):
10627         * commandtags.h:
10628         * BufferView_pimpl.C (Dispatch):
10629         * lyxfunc.C (dispatch): remove LFUN_DEPTH
10630
10631 2002-03-19  Allan Rae  <rae@lyx.org>
10632
10633         * exporter.C (Export): removeAutoInsets before doing anything else.
10634         While I've just introduced a dependency on BufferView this really is
10635         the best place to clean the buffer otherwise you need to cleanup in
10636         a dozen places before calling export or cleanup in a dozen functions
10637         that export calls.
10638
10639         * converter.C (runLaTeX):
10640         (scanLog): Better handling of removeAutoInsets and screen updates.
10641
10642         * lyxfunc.C (dispatch): small whitespace changes
10643
10644 2002-03-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10645
10646         * WorkArea.C (C_WorkAreaEvent): return a value.
10647         (event_cb): return 1 if we handled the event, 0 otherwise.
10648
10649         * lyx_gui.C (LyX_XErrHandler): don't abort on BadWindow
10650
10651 2002-03-18  Juergen Vigna  <jug@sad.it>
10652
10653         * tabular.C (LeftAlreadyDrawed): fixed for multicolumn borders.
10654         (GetAdditionalWidth): ditto.
10655         (RightLine): ditto.
10656         (LeftLine): ditto.
10657
10658         * BufferView2.C (copy): use getLyXText() so that we do it inside an
10659         inset if we're there actually (probably not used right now but this
10660         is the direction to go for unifying code).
10661         (paste): disable code to clear the selection.
10662
10663         * BufferView_pimpl.C (workAreaButtonPress): check also for a selection
10664         inside an InsetText and move the check further up as it is in the
10665         wrong place.
10666
10667         * text2.C (pasteSelection): set a selection over the pasted text.
10668
10669 2002-03-14  Kayvan A. Sylvan  <kayvan@sylvan.com>
10670
10671         * Makefile.am (lyx_DEPENDENCIES): Swap the order of libfrontend
10672         and libgraphics to build on Cygwin.
10673
10674 2002-03-15  Juergen Vigna  <jug@sad.it>
10675
10676         * CutAndPaste.C (SwitchLayoutsBetweenClasses): fix the wrong use of
10677         inserting an Inset into the paragraph. I know this is not the best
10678         fix but we already use current_view in CutAndPaste so we will remove
10679         all of it's using at the same time.
10680
10681         * buffer.C (sgmlError): deactivated function till it is rewritten in
10682         the right mode, now it can create problems.
10683
10684         * paragraph.C (isLineSeparator): check if getInset returns != 0,
10685         before accessing it.
10686
10687 2002-03-14  Juergen Vigna  <jug@sad.it>
10688
10689         * undo_funcs.C (textHandleUndo): do the right thing when updating
10690         the inset after the undo/redo.
10691
10692         * text2.C (setCursor): just some testcode for #44 not ready yet.
10693
10694         * undo_funcs.C (textHandleUndo): set the next() and previous()
10695         pointers of the paragraph to 0 before deleting otherwise we have
10696         problems with the Paragraph::[destructor].
10697
10698         * text.C (breakParagraph): IMO we should ALWAYS force a real undo
10699         on a paragraph insertion.
10700
10701 2002-03-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10702
10703         * buffer.C (asciiParagraph): use += operator for char append to
10704         string.
10705
10706         * paragraph.C (getFontSettings): compare >= not just >
10707         (highestFontInRange): ditto
10708         (setFont): ditto
10709
10710 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10711
10712         * paragraph.C: change several algorithm to be more appripriate for
10713         the problem domain. This is lookip in FontList and in the InsetList.
10714
10715 2002-03-13  André Pönitz <poenitz@gmx.net>
10716
10717         * commandtags.h:
10718         * LyXAction.C: remove unused LFUN_MATH_MACROARG
10719
10720 2002-03-06  John Levon  <moz@compsoc.man.ac.uk>
10721
10722         * commandtags.h:
10723         * LyXAction.C:
10724         * lyxfunc.C:
10725         * BufferView_pimpl.C: remove unused LFUN_CORE, LFUN_TEXT_INSET
10726
10727 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10728
10729         * Painter.C (display): anon helper function, adjust code for this
10730         change.
10731         (pixmap): remove function.
10732
10733         * Painter.h: remove private display variable.
10734
10735         * PainterBase.[Ch]: remove dummy[123] cruft, ws changes
10736
10737 2002-03-13  Angus Leeming  <a.leeming@ic.ac.uk>
10738
10739         * WorkArea.[Ch]: remove figinset_canvas cruft.
10740
10741 2002-03-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10742
10743         * lyxtextclass.C (operator): add one item cache optimization.
10744
10745         * bufferlist.h: doxy changes
10746
10747         * bufferlist.C: ws changes
10748
10749         * DepTable.[Ch] (ext_exist): place const in the right spot.
10750
10751         * BufferView_pimpl.C (resizeCurrentBuffer): further refine when to
10752         call resizeInsets.
10753         (workAreaExpose): call resizeInsets when the with BufferView changes.
10754         (Dispatch): adjust for protectedBlank removal
10755         (specialChar): call updateInset if the insert went ok.
10756
10757         * BufferView_pimpl.[Ch] (protectedBlank): remove func, use
10758         specialChar instead.
10759
10760         * BufferView2.C (ChangeInsets): remove warning add FIXME comment
10761
10762         * BufferView.h: doxy change
10763
10764         * Makefile.am (INCLUDES): remove @FRONTEND_INCLUDES@
10765
10766         * lyxtextclass.C (operator[]): remove non-const version
10767         (defaultLayout): remove non-const version
10768
10769 2002-03-12  Juergen Vigna  <jug@sad.it>
10770
10771         * BufferView_pimpl.C (resizeCurrentBuffer): only resize insets if we
10772         did resize the LyXText too.
10773
10774         * buffer.C (readLyXformat2): set layout information on newly allocated
10775         paragraphs.
10776
10777         * tabular.C (OldFormatRead): set layout information on the paragraph.
10778
10779 2002-03-12  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
10780
10781         * buffer.C (simpleDocBookOnePar): fix empty definition case for now.
10782
10783 2002-03-11  Juergen Vigna  <jug@sad.it>
10784
10785         * BufferView_pimpl.C (cursorPrevious): remove old cruft which is
10786         plainly wrong.
10787         (resizeCurrentBuffer): force also the insets to resize themselfes.
10788         (moveCursorUpdate): fixed up for InsetText.
10789
10790 2002-03-08  Angus Leeming  <a.leeming@ic.ac.uk>
10791
10792         * commandtags.h:
10793         * LyXAction.C: add LFUN_TOOLTIPS_TOGGLE, "toggle-tooltips"
10794         * lyxfunc.C (getStatus(LFUN_TOOLTIPS_TOGGLE)): set flag based on
10795         value of Dialogs::tooltipsEnabled().
10796         (dispatch(LFUN_TOOLTIPS_TOGGLE)): emit signal Dialogs::toggleTooltips.
10797
10798 2002-03-08  Juergen Vigna  <jug@sad.it>
10799
10800         * BufferView_pimpl.C (updateInset): update inset inside inset also
10801         if it isn't inside theLockingInset().
10802
10803 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10804
10805         * buffer.C (asciiParagraph): redo some of the word and line length
10806         handling.
10807         (getLists): look for Caption instead of caption.
10808
10809 2002-03-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10810
10811         * buffer.C (Buffer): initialize niceFile to true
10812         (makeLaTeXFile):
10813         (makeLinuxDocFile):
10814         (makeDocBookFile): make sure niceFile is true on exit
10815
10816 2002-03-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10817
10818         * buffer.C (makeLaTeXFile): escape ~ in \input@path
10819
10820 2002-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
10821
10822         * LyXSendto.C: remove.
10823         * LyXView.C (c-tor): clean-up Jürgen's #if 0 correctly.
10824         * lyx_gui.C: remove now-redundant comment.
10825         * ColorHandler.h: remove forward declaration of class WorkArea.
10826         * lyxfunc.C: remove #include "WorkArea.h".
10827
10828 2002-03-07  Juergen Vigna  <jug@sad.it>
10829
10830         * undo_funcs.C (textHandleUndo): fix problems when the paragraph
10831         got moved away with the DEPM and also set the inset_owner always
10832         right which before could have been omitted.
10833
10834 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10835
10836         * buffer.C (parseSingleLyXformat2Token): use default layout is the
10837         wanted layout is not found.
10838
10839 2002-03-07  Juergen Vigna  <jug@sad.it>
10840
10841         * CutAndPaste.C (cutSelection): another layout settings forgotten.
10842
10843 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10844
10845         * paragraph.C (breakParagraph): use default layout not layout of
10846         prev paragraph.
10847         (Paragraph): clear ParagraphParameters.
10848
10849 2002-03-06  Juergen Vigna  <jug@sad.it>
10850
10851         * buffer.C (parseSingleLyXformat2Token): changed "%" to "p%" as
10852         otherwise it would not be a valid lenght. Fixed a special case in
10853         the minipage compatibility read where we end the document with a
10854         minipage.
10855
10856         * text2.C (deleteEmptyParagraphMechanism): check if old_cursor.par()
10857         was set as it could be 0 for InsetTexts first entry.
10858
10859 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10860
10861         * paragraph.C (writeFile): if layout is empty write out
10862         defaultLayoutName().
10863
10864         * buffer.C (parseSingleLyXformat2Token): if we have a buggy .lyx
10865         file without named layout we set layout to defaultLayoutName().
10866
10867 2002-03-06  Juergen Vigna  <jug@sad.it>
10868
10869         * CutAndPaste.C (copySelection): set layout for new paragraph.
10870
10871         * text.C (prepareToPrint): leave ERT inset left aligned
10872         (leftMargin): don't indent paragraphs inside ERT insets
10873
10874 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10875
10876         * paragraph.C (breakParagraph): dont call clear do the work manually
10877
10878         * paragraph.[Ch] (clear): remove function
10879
10880 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10881
10882         * paragraph.C (Paragraph): dont call clear, the work has already
10883         been done.
10884
10885         * lyxtextclass.C (operator): assert if n is empty
10886
10887         * CutAndPaste.C (cutSelection): dont call Paragraph::clear, do the
10888         work manually instead.
10889
10890 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
10891
10892         * BufferView_pimpl.C: protect selectionLost against text == 0
10893
10894 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10895
10896         * text.C (breakParagraph): fix a setting layout to '0' problem.
10897
10898 2002-03-05  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
10899
10900         * buffer.C (makeLinuxDocFile, makeDocBookFile): take in account the
10901         final location of file, for the included files, and graphics.
10902
10903 2002-03-05  Juergen Vigna  <jug@sad.it>
10904
10905         * CutAndPaste.C (pasteSelection): fix the depth level on paste.
10906
10907 2002-03-04  Juergen Vigna  <jug@sad.it>
10908
10909         * lyx_cb.C (getContentsOfAsciiFile): new helper function.
10910
10911         * tabular.C (calculate_width_of_column_NMC): fixed to use also the
10912         last column of multicolumn cells.
10913         (SetWidthOfMulticolCell): recalculate NMC and real columns.
10914
10915 2002-03-04  Jose Abilio Oliveira Matos  <jamatos@novalis.fc.up.pt>
10916
10917         * exporter.C (Export): for linuxdoc and docbook the buffer is a nice
10918         file if it doesn't go to a temporary file.
10919
10920         * buffer.C (sgmlOpenTag):
10921         (sgmlCloseTag):  remove extra newline insertion.
10922
10923 2002-03-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10924
10925         * text.C (getRowNearY): comment out debug msg
10926
10927 2002-03-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10928
10929         * text2.C: first -> first_y
10930
10931         * text.C (getRowNearY): add some attemts at a possible
10932         optimization, not working.
10933
10934         * tabular.[Ch]: add BufferParams to several function so that newly
10935         created paragraph can be initialized to he default layotu for the
10936         buffers textclass.
10937
10938         * tabular-old.C (ReadOld): add buf->params to call of Init
10939
10940         * screen.C: rename text->first to text->first_y
10941
10942         * paragraph.C (breakParagraph): always set layout in the broken
10943         paragraph
10944
10945         * lyxtextclass.C (Read): remove lowercase
10946         (hasLayout): ditto
10947         (operator): ditto
10948         (delete_layout): ditto
10949
10950         * lyxtext.h: rename first -> first_y
10951
10952         * lyxlayout.C (Read): remove lowercase
10953         (name): ditto
10954         (setName): ditto
10955         (obsoleted_by): ditto
10956
10957         * bufferlist.C (newFile): set layout on first paragrpah of new buffers.
10958
10959         * buffer.C (insertErtContents): add params are to InsetERT
10960         (parseSingleLyXformat2Token): add code to check if a paragraphs
10961         layout really exist.
10962         (parseSingleLyXformat2Token): add params to several inset
10963         constructors
10964         (asciiParagraph): remove lowercase, do the layout comparisons with
10965         no_case
10966
10967         * BufferView_pimpl.C (cursorNext): first -> first_y
10968         (resizeCurrentBuffer): first -> first_y
10969         (updateScrollbar): first -> first_y
10970         (scrollCB): first -> first_y
10971         (workAreaMotionNotify): first -> first_y
10972         (workAreaButtonPress): first -> first_y
10973         (checkInsetHit): first -> first_y
10974         (cursorPrevious): first -> first_y
10975         (cursorNext): first -> first_y
10976         (Dispatch): add buffer_->params to severl inset contructors
10977
10978 2002-03-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10979
10980         * lyxlayout.C (Read): remove some debug info that I forgot.
10981
10982         * buffer.C (makeLaTeXFile): fix calling of LaTeXFeatures, and
10983         clean up the code slightly.
10984         (makeLinuxDocFile): ditto
10985         (makeDocBookFile): ditto
10986
10987         * text2.C: layout as string
10988
10989         * text.C: layout as string
10990
10991         * paragraph_pimpl.C: layout as string
10992
10993         * paragraph.[Ch]: layout as string
10994
10995         * lyxtextclasslist.[Ch]: layout as string
10996
10997         * lyxtextclass.[Ch]: layout as string
10998
10999         * lyxtext.h: layout as string
11000
11001         * lyxlayout.[Ch]: layout as string
11002
11003         * lyx_cb.C: layout as string
11004
11005         * bufferview_funcs.C: layout as string
11006
11007         * bufferparams.C: layout as string
11008
11009         * buffer.C: layout as string
11010
11011         * LyXView.[Ch]: layout as string
11012
11013         * LaTeXFeatures.[Ch]: layout as string
11014
11015         * CutAndPaste.C (SwitchLayoutsBetweenClasses): layout as string
11016
11017         * BufferView_pimpl.C: change current_layout to string, remove
11018         lyx::layout_type.
11019         (Dispatch):
11020         (smartQuote):
11021         (insertInset):
11022         (workAreaButtonRelease): layout as string
11023
11024         * BufferView2.C (unlockInset): adjust
11025
11026         * vspace.C (asLatexCommand): use an explict temp variable.
11027
11028 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
11029
11030         * Makefile.am: use FRONTEND_*
11031
11032 2002-03-01  Juergen Vigna  <jug@sad.it>
11033
11034         * tabular.C (SetWidthOfMulticolCell): changed to something better
11035         I hope but still work in progress.
11036         (recalculateMulticolumnsOfColumn): renamed function from
11037         recalculateMulticolCells as it is more appropriate now.
11038         (SetWidthOfCell): calculate multicols better.
11039
11040 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11041
11042         * minibuffer.C (MiniBuffer): reset timout to 6000, as it was before.
11043
11044         * lyxfunc.C (processKeySym): print sequence also if it is
11045         `deleted' (complete)
11046
11047         * kbsequence.C (print): print sequence even if it is deleted
11048         (complete would be a better word, actually).
11049
11050         * lyxfunc.C (dispatch): print complete options after a prefix key
11051
11052         * vspace.C (asLatexCommand): rewrite in a slightly different form.
11053
11054 2002-03-01  Martin Vermeer  <martin.vermeer@hut.fi>
11055
11056         * text2.C (setCharFont): eliminate setCharFont code duplication.
11057
11058 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11059
11060         * BufferView_pimpl.C (Dispatch): remove bogus handling of
11061         LFUN_TABULAR_FEATURE (bug #177)
11062
11063 2002-02-29 ;-)  Angus Leeming  <a.leeming@ic.ac.uk>
11064
11065         * Makefile.am: remove figure.h
11066
11067 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
11068
11069         * Bufferview_pimpl.C:
11070         * CutAndPasteC:
11071         * LaTeX.C:
11072         * LyXSendto.C:
11073         * buffer.C:
11074         * bufferlist.C:
11075         * converter.C:
11076         * language.C:
11077         * lyxfunc.C:
11078         * lyxvc.C:
11079         * paragraph.C:
11080         * text.C:
11081         * text2.C: remove #include "lyx_gui_misc.h".
11082
11083         * LaTeX.C: added #include <cstdio>
11084
11085 2002-02-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11086
11087         * paragraph.C (getMaxDepthAfter): new method. The maximal depth
11088         that the paragraph following this one can have.
11089
11090         * text2.C (incDepth): use Paragraph::getMaxDepthAfter
11091
11092         * vspace.C (asLatexCommand): fix bogus gcc warning
11093
11094         * Makefile.am (lyx_SOURCES): remove vms_defines.h
11095
11096 2002-02-27  Martin Vermeer  <martin.vermeer@hut.fi>
11097
11098         * text2.C (setLayout): get rid of redundant code
11099
11100 2002-02-26  Martin Vermeer  <martin.vermeer@hut.fi>
11101
11102         * text2.C (incDepth): make sure depth cannot be increased beyond
11103         reasonable values.
11104
11105 2002-02-20  Angus Leeming  <a.leeming@ic.ac.uk>
11106
11107         * lyxfunc.C (dispatch): act on LFUN_FORKS_SHOW and LFUN_FORKS_KILL.
11108         also call grfx::GCache::changeDisplay if the graphicsbg color changes.
11109
11110         * PainterBase.h (image):
11111         * Painter.[Ch] (image): now accepts a grfx::GImage const & rather than
11112         a LyXImage const *.
11113
11114 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
11115
11116         * BufferView.C:
11117         * BufferView.h:
11118         * BufferView_pimpl.C:
11119         * BufferView_pimpl.h:
11120         * LaTeXFeatures.C:
11121         * LyXAction.C:
11122         * LyXView.C:
11123         * Makefile.am:
11124         * UpdateList.h:
11125         * UpdateList.C:
11126         * buffer.C:
11127         * figure.h:
11128         * figureForm.C:
11129         * figureForm.h:
11130         * figure_form.C:
11131         * figure_form.h:
11132         * lyx_cb.C:
11133         * lyx_gui.C:
11134         * lyx_gui_misc.C:
11135         * lyxfunc.C:
11136         * sp_base.h:
11137         * sp_ispell.h:
11138         * sp_pspell.h:
11139         * sp_spell.C: remove fig inset, and the crap house of
11140           cards that follows it
11141
11142 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
11143
11144         * Makefile.am:
11145         * lyxserver.C:
11146         * os2_defines.h:
11147         * os2_errortable.h:
11148         * nt_defines.h: move .h into support/
11149
11150         * vms_defines.h: remove
11151
11152         * WorkArea.C: add space in debug output
11153
11154         * text2.C:
11155         * paragraph.C:
11156         * buffer.C: add WITH_WARNINGS
11157
11158         * vc-backend.h:
11159         * vc-backend.C:
11160         * bufferlist.C: s/retrive/retrieve/, add docs
11161
11162         * vspace.h:
11163         * vspace.C:
11164         * kbmap.h:
11165         * lyxlength.h:
11166         * lyxgluelength.h:
11167         * length_common.h:
11168         * chset.h:
11169         * chset.C: add docs
11170
11171         * lyxgui.C: add ID to X error handler
11172
11173         * lyxtestclass.c: fix typo
11174
11175 2002-02-26  Juergen Vigna  <jug@sad.it>
11176
11177         * tabular_funcs.C (write_attribute): changed so that some default
11178         attributes are not written at all.
11179         (getTokenValue): set default values before trying to read the
11180         value so we have the return value always set as default if we don't
11181         find the token we search for.
11182
11183         * tabular.C (Write): write bools as bools not as strings!
11184
11185 2002-02-22  Juergen Vigna  <jug@sad.it>
11186
11187         * BufferView_pimpl.C (workAreaButtonPress): call edit() before calling
11188         insetButtonPress for HIGHLY_EDITABLE_INSETS seems saner (fix #250).
11189
11190         * text.C (leftMargin): don't add an indent for paragraphs inside
11191         tabular cells (fix #208).
11192
11193 2002-02-21  José Matos  <jamatos@fep.up.pt>
11194
11195         * tabular.C (docBook): fixed support for long tables.
11196
11197 2002-02-20  Juergen Vigna  <jug@sad.it>
11198
11199         * text2.C (getFont): get the drawing font of the Inset if this
11200         paragraph is inside an inset (only important for InsetERT for now).
11201
11202         * buffer.C (insertErtContents): use new lanugage params in ERT
11203         constructor.
11204
11205         * CutAndPaste.C: commenting out seemingly uneeded code.
11206
11207 2002-02-19  Allan Rae  <rae@lyx.org>
11208
11209         * BufferView2.C (removeAutoInsets): fix remaining freed memory read.
11210         Iterators might be simple to use but they also get invalidated.
11211         (removeAutoInsets): renamed saved cursor tracking variables and added
11212         some comments to clarify what everything does.
11213
11214 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
11215
11216         * Chktex.C:
11217         * LaTeX.C:
11218         * LyXSendto.C:
11219         * converter.C:
11220         * lyx_cb.C:
11221         * vc-backend.C: Changes due to the renaming of support/syscall.[Ch] as
11222         support/systemcall.[Ch] and of class Systemcalls as class SystemCall.
11223
11224         * lyxfunc.C:
11225         * vc-backend.h: remove #include "support/syscall.h"
11226
11227         * LaTeX.C:
11228         * LyXSendto.C:
11229         * converter.C: rearrange #includes in Lars' approved fashion.
11230
11231         * LyXView.[Ch]: make autosave_timeout a pointer to Timeout. Can thus
11232         forward declare class Timeout in the header file.
11233
11234         * XFormsView.C: changes due to the above.
11235
11236         * minibuffer.[Ch]: make timer and stored_timer pointers to Timeout,
11237         similar to LyXView.
11238
11239         * commandtags.h: add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to the enum.
11240         * LyXAction.C (init): add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to items[]
11241
11242 2002-02-18  José Matos  <jamatos@fep.up.pt>
11243
11244         * buffer.C (simpleDocBookOnePar): if paragraph style is CDATA escapes
11245         insets contents.
11246
11247 2002-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
11248
11249         * a lot of small ws changes
11250         * add a lot of using std::XXX
11251         * use std construcs some places where approp.
11252         * use some exisint stuff from lyxfunctional where approp.
11253         * Make file changes to use partial linking (lets test this now...)
11254
11255 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
11256
11257         * Chktex.C:
11258         * buffer.C:
11259         remove #include "support/syscontr.h" as it's redundant. Always has been.
11260
11261         * Chktex.C:
11262         * LaTeX.C:
11263         * LyXSendto.C:
11264         * converter.C:
11265         * lyx_cb.C:
11266         * vc-backend.C:
11267         change Systemcalls::System to Systemcalls::Wait and
11268         change Systemcalls::SystemDontWait to Systemcalls::DontWait.
11269         No change of functionality, just reflects the stripped down Systemcalls
11270         class.
11271
11272 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
11273
11274         * debug.[Ch]: add a GRAPHICS type to the enum.
11275
11276 2002-02-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11277
11278         * text.C (nextBreakPoint): use Paragraph::isLineSeparator
11279
11280         * paragraph.C (isLineSeparator): call Inset::isLineSeparator if
11281         there is an inset.
11282
11283 2002-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11284
11285         * lyxfunc.C (getStatus): change the rules for LFUN_INSET_TOGGLE to
11286         match the changes below.
11287
11288         * text2.C (toggleInset): if there is not editable inset at cursor
11289         position, try to see if cursor is _inside_ a collapsable inset
11290         and close it.
11291
11292 2002-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11293
11294         * lyxfunc.C (getStatus): handle LFUN_SWITCHBUFFER so that the
11295         document menu has a nice checkbox
11296
11297 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11298
11299         * lyxlength.C (asLatexString): change PW to output as percent of
11300         \textwidth.
11301
11302         * lengthcommon.C: change '%' to 't%'
11303
11304         * lyxfunc.C (dispatch): a few comments from Martin
11305
11306 2002-02-06  John Levon  <moz@compsoc.man.ac.uk>
11307
11308         * WorkArea.h:
11309         * WorkArea.C:
11310         * BufferView_pimpl.h:
11311         * BufferView_pimpl.C: clear our selection when X tells us we've lost
11312           the X selection.
11313
11314 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11315
11316         * vspace.C (inPixels): fix compiler warning
11317
11318 2002-02-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11319
11320         * lyxfunc.C (getStatus): fix status message for disabled commands.
11321
11322 2002-02-01  John Levon  <moz@compsoc.man.ac.uk>
11323
11324         * BufferView_pimpl.C: fix crash on close buffer
11325         during selection (#227)
11326
11327 2002-01-27  Herbert Voss  <voss@lyx.org>
11328
11329         * buffer.C: link old Figure to new graphic inset
11330
11331 2002-01-26  Dekel Tsur  <dekelts@tau.ac.il>
11332
11333         * FontLoader.C (getFontinfo): Change the latex font names in order
11334         to match the names of type1inst.
11335
11336 2002-01-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11337
11338         * WorkArea.C (WorkArea): initialize the scrollbar bounds.
11339
11340         * DepTable.C (sumchange): do not evaluate end() on every iteratrion.
11341         (extchanged): ditto
11342         (ext_exist): ditto
11343         (remove_files_with_extension): ditto
11344         (remove_file): ditto
11345         (write): ditto
11346
11347         * BufferView_pimpl.C (updateScrollbar): do the right thing if the
11348         document is smaller than the work area height. Do not initialize
11349         static variables to 0.
11350
11351 2002-01-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11352
11353         * lyx_gui.C (init): give the toolbar tooltips a normal font.
11354
11355         * lyxfunc.C (getStatus): handle LFUN_LAYOUT like
11356         LFUN_LAYOUT_PARAGRAPHS.
11357
11358         * tabular.C (GetCellFromInset): new method. Finds an inset in a
11359         tabular. It is possible to provide a possible cell, which will
11360         typically be the actcell from the corresponding insettabular
11361
11362         * lyxfunc.C (getStatus): small cleanup; disable
11363         LFUN_LAYOUT_PARAGRAPHS in insets where forceDefaultParagraphs is
11364         true
11365
11366 2002-01-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11367
11368         * tabular.C (Validate): remove broken optimization (fixes bug #201)
11369
11370         * paragraph.C (startTeXParParams):
11371         (endTeXParParams): new methods. The LaTeX code to
11372         start/end paragraph formatting
11373         (simpleTeXOnePar): call startTeXParParams also when paragraph is
11374         empty (fixes bug #200)
11375
11376         * vspace.C (inPixels): adapt to the change below
11377         (inPixels): [later] more cleanups (remove unused variables)
11378
11379         * lyxlength.C (inPixels): change to use a width and a height as
11380         parameter.
11381
11382 2002-01-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11383
11384         * lyxlength.C (asLatexString): \pagewidth is not a LaTeX macro.
11385         Replaced with \paperwidth
11386
11387         * DepTable.C (insert): add std:: qualifier
11388
11389 2002-01-18  Allan Rae  <rae@lyx.org>
11390
11391         * text2.C (removeRow): add comment.  Should other refresh_?? vars be
11392         updated also?
11393
11394         * text.C (drawInset): Turned out I didn't know enough about how
11395         rebreaking worked.  This fixes most of the redraw problems.  I see
11396         an occasional cursor trail when a line is broken now and the cursor
11397         placement can seem out by a few pixels also after a rebreak.
11398
11399 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11400
11401         * buffer.C (parseSingleLyXformat2Token): update because minipage
11402         width is now a LyXLength
11403
11404         * lyxlength.C (inPixels): new method, extracted from VSpace::inPixels
11405
11406         * BufferView_pimpl.C (smartQuote): fix insertion of quote inset in
11407         math insets
11408
11409 2002-01-17  Juergen Vigna  <jug@sad.it>
11410
11411         * lyxfunc.C (dispatch): fixed PARAGRAPH_GOTO
11412
11413         * BufferView2.C (lockInset): call edit() so that theLockingInset()
11414         is set correctly and the inset is updated correctly.
11415
11416 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11417
11418         * CutAndPaste.C (pasteSelection): move the setInsetOwner call at
11419         the beginning of the loop.
11420
11421 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
11422
11423         * lyxrc.C: improve help for use_scalable_fonts
11424
11425 2002-01-17  Allan Rae  <rae@lyx.org>
11426
11427         * lyx_cb.C (ShowMessage): make sure we have a user and an owner.
11428
11429 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11430
11431         * CutAndPaste.C (pasteSelection): when pasting multiple paragraph,
11432         make sure to set their inset_owner to the right value (bug #171)
11433
11434 2001-12-12  Ben Stanley  <bds02@uow.edu.au>
11435
11436         * DepTable.h
11437         * DepTable.C: Implement mtime checking to reduce time spent doing
11438         CRCs.
11439
11440 2002-01-16  Juergen Vigna  <jug@sad.it>
11441
11442         * tabular.C (GetAdditionalHeight): one of error fixed.
11443
11444         * lyxrc.C (output): small fix in writing use_pspell.
11445
11446 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
11447
11448         * sp_base.h: #include LString.h
11449
11450 2002-01-16  Allan Rae  <rae@lyx.org>
11451
11452         * text2.C (removeRow): refresh_row needs a valid row.  Or does it?
11453         Can someone check this please?
11454
11455         * text.C (drawInset): It was possible that p.row would be removed by
11456         breakAgainOneRow upsetting a few other settings.  There may be another
11457         small tweak possible by setting need_break_row = 0 when p.row has been
11458         removed but I don't know enough about the logic here.
11459
11460 2002-01-15  Allan Rae  <rae@lyx.org>
11461
11462         * text.C (insertChar): removed conditional truism.
11463
11464         * BufferView2.C (removeAutoInsets): More tweaks.
11465         cur_par_prev could be a stray pointer.  Check for trailing empty line
11466         in case last line was cur_par and only had an error inset on it.
11467
11468 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11469
11470         * lyx_cb.C (MenuWrite): buffer->fileName is guaranteed to be
11471         absolute
11472
11473         * vc-backend.C (most methods):
11474         * exporter.C (Export):
11475         * converter.C (convert):
11476         (runLaTeX):
11477         * LyXSendto.C (SendtoApplyCB):
11478         * lyxfunc.C (dispatch):
11479         (menuNew):
11480         (open):
11481         (doImport):
11482         * lyx_cb.C (AutoSave):
11483         (InsertAsciiFile):
11484         * BufferView_pimpl.C (MenuInsertLyXFile):
11485         * buffer.C (runChktex): use Buffer::filePath().
11486
11487         * buffer.h: rename filename to filename_; rename filepath to
11488         filepath_ and make it private
11489         (filePath): new method
11490
11491         * buffer.C (writeFile): use fileName()
11492         (getLatexName):
11493
11494         * lyx_main.C (init): fix starting  of LyX when the binary is a
11495         link from so,ewhere else.
11496
11497         * minibuffer.C: include <cctype> for isprint
11498
11499 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
11500
11501         * buffer.C (parseSingleLyXformat2Token): changes associated with the
11502         change of InsetMinipage::width to InsetMinipage::pageWidth to avoid the
11503         name clash with InsetCollapsable's width function.
11504
11505 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11506
11507         * lastfiles.C: include <iterator>
11508
11509 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
11510
11511         * BufferView2.C (ChangeRefsIfUnique): use lyx::count rather than
11512         std::count.
11513
11514         * buffer.C (makeLaTeXFile): ditto.
11515         Also make loop operation more transparent.
11516
11517 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
11518
11519         * ToolbarDefaults.C: remove trailing comma closing namespace.
11520
11521         * WorkArea.h: remove WorkArea:: from declaration of event_cb.
11522
11523         * lyxfunc.[Ch]: clean-up declaration of verboseDispatch functions
11524         as in WorkArea.
11525
11526         * trans.C (Load): comment out unused variable, allowed.
11527
11528 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
11529
11530         * minibuffer.[Ch] (append_char): new method to recieve input from the
11531         drop-down completion browser. If a key was pressed, then recieve this
11532         char and append it to the existing string.
11533         (peek_event): modify the positioning data passed to the completion
11534         browser so that it can be placed above the minibuffer rather than below.
11535 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11536
11537         * LyXAction.C (init): alloe error-next for readonly documents.
11538
11539         * BufferView2.C (ChangeRefsIfUnique): use standard version of
11540         count.
11541
11542 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11543
11544         * bufferlist.C (readFile): create the buffer _after_ checking that
11545         the file exists.
11546
11547         * lyxfunc.C (verboseDispatch): fix handling of arguments
11548
11549         * lyxrc.C (setDefaults): do not initialize document_path to $HOME.
11550
11551         * lyxrc.C: use string::erase() instead of initializing to "".
11552
11553
11554 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
11555
11556         * BufferView_pimpl.h:
11557         * BufferView_pimpl.C:
11558         * WorkArea.h:
11559         * WorkArea.C:
11560         * text2.C: tell X when we have made a selection for copying
11561
11562 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11563
11564         * BufferView_pimpl.C (MenuInsertLyXFile):
11565         * lyxfunc.C (menuNew):
11566         (open):
11567         (doImport): add shortcuts to directory buttons
11568
11569         * BufferView_pimpl.C (workAreaButtonRelease): remove dead code (to
11570         open a float)
11571
11572         * lyxfunc.C (setStatusMessage):
11573         (getStatusMessage): new methods
11574         (getStatus):use setStatusMessage instead of setErrorMessage
11575         (dispatch): when function is disabled, set error message here
11576         [instead of in getStatus previously]
11577
11578         * BufferView_pimpl.C (workAreaButtonRelease): update
11579         toolbar/menubar here too.
11580
11581 2002-01-13  Allan Rae  <rae@lyx.org>
11582
11583         * BufferView2.C (removeAutoInsets): finished off earlier fix.
11584         Now seems indestructible.  Remaining task is to audit all other
11585         code affected by deleteEmptyParagraphMechanism.  One small quirk
11586         left is that an empty document with an error in the preamble can
11587         be made to report an error but no error box appears.  I don't know
11588         where it goes.
11589         (removeAutoInsets): Improved comments.
11590
11591 2002-01-13  John Levon  <moz@compsoc.man.ac.uk>
11592
11593         * Thesaurus.h:
11594         * Thesaurus.C: update for Aiksaurus 0.14
11595
11596 2002-01-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11597
11598         * text2.C (firstParagraph): removed member function, all uses
11599         replaces with ownerParagraph
11600         (redoParagraphs): here
11601         (updateInset): here
11602         (toggleAppendix): here
11603         * BufferView2.C (insertErrors): here
11604         (setCursorFromRow): here
11605
11606 2002-01-13  Allan Rae  <rae@lyx.org>
11607
11608         * BufferView2.C (removeAutoInsets): ensure we have a valid cursor if
11609         the old cursor is now invalid due to deleteEmptyParagraphMechanism.
11610         There is still a way to segfault this although you may have to do this
11611         multiple times: Have an InsetERT with an unknown command in it.
11612         View->DVI, move cursor between Error box and InsetERT and hit <Enter>,
11613         <down-arrow>, <Enter> again, View->DVI, BANG!
11614
11615         * text2.C (setCursor):
11616         (deleteEmptyParagraphMechanism):
11617         * lyxtext.h (setCursor):
11618         (deleteEmptyParagraphMechanism): return true if the paragraph was deleted.
11619         Making use of the return value may help fix other bugs.
11620
11621 2002-01-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11622
11623         * lyxfunc.C (dispatch): update toolbar/menubar after dispatching.
11624
11625         * LyXView.C (updateMenubar): call MenuBar::update here
11626         (updateToolbar): but not here
11627         (showState): do not update toolbar/menubar
11628
11629         * LyXAction.[Ch]: move isPseudoAction to the C file, since nobody
11630         should need to care about that.
11631
11632         * lyxfunc.C (verboseDispatch): simplify a bit
11633         (getStatus): have a version which takes a pseudoaction, and
11634         another which requires a (kb_action,string).
11635
11636         * LyXAction.C (retrieveActionArg): make it work also when action
11637         is not a pseudo-action.
11638         (getActionName): simplify a bit
11639         (helpText):
11640
11641 2002-01-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11642
11643         * lyxfunc.C (verboseDispatch): new families of methods with
11644         several ways to specify a command and a bool to indicate whether
11645         the command name and shortcut should be displayed in minibuffer
11646         (eventually, we could extend that to a finer bitmask like
11647         SHORTCUT|CMDNAME|CMDRESULT, or whatever).
11648         (dispatch): the pristine dispatch command which just, well,
11649         dispatchs! Note it still sets its result to minibuffer; I'm not
11650         sure we want that.
11651
11652         * lyxfunc.h: remove setHintMessage
11653
11654         * vc-backend.C: use LFUN_MENURELOAD instead of "buffer-reload"
11655
11656 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11657
11658         * BufferView_pimpl.C (specialChar): delete new inset if we have
11659         not been able to insert it.
11660
11661         * kbmap.C: revert to using int instead of kb_action, since all we
11662         are dealing with is pseudo-actions.
11663
11664         * LyXAction.C (searchActionArg): change to return int instead of
11665         kb_action, since the result is a pseudoaction.
11666
11667 2002-01-12  Dekel Tsur  <dekelts@tau.ac.il>
11668
11669         * buffer.C (insertErtContents): Fix (partially) the font bug.
11670
11671 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
11672
11673         * BufferView2.C (ChangeRefsIfUnique): use the HP version of std::count
11674         as the other one is broken on my machine!
11675
11676 2002-01-10  Martin Vermeer  <martin.vermeer@hut.fi>
11677
11678         * commandtags.h:
11679         * LyXAction.C: two new LFUNS, LFUN_FRAK and LFUN_ITAL.
11680
11681 2002-01-10  Angus Leeming  <a.leeming@ic.ac.uk>
11682
11683         * lyxrc.[Ch]: change names and descriptions of popup font variables to
11684         reflect their actual use. Provide compatibility code for older lyxrc
11685         files.
11686
11687         * lyx_gui.C (init): revoke change of 2002-01-07 of popup font style to
11688         FL_NORMAL_STYLE.
11689         change names of popup font variables in line with the changes to lyxrc.C
11690
11691 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11692
11693         * buffer.C (asciiParagraph): avoid outputing a word twice after
11694         an inset.
11695
11696         * lyxrc.C (getDescription): document that document_path and
11697         template_path can be empty.
11698
11699 2002-01-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11700
11701         * LaTeXFeatures.C (getMacros):
11702         * buffer.C (validate): rename feature "amsstyle" to "amsmath"
11703
11704         * buffer.C (makeLaTeXFile): remove test for "amsstyle" from here.
11705
11706         * LaTeXFeatures.C (useFloat): require "float" here instead of in
11707         getPackages.
11708         (getPackages): rename feature "floats" to "float". Use an array to
11709         iterate over 'simple' features (i.e. just a \usepackage). Add
11710         handling of "amsmath" (renamed from "amsstyle").
11711
11712 2001-12-29  Michael A. Koziarski  <michael@koziarski.org>
11713
11714         * LaTeXFeatures.C (require): Prevent duplicate entries in the
11715         features list.
11716
11717 2002-01-08  Angus Leeming  <a.leeming@ic.ac.uk>
11718
11719         * FuncStatus.C: small compile fix for DEC cxx. Doesn't like
11720         FuncStaus::FuncStatus & FuncStaus::some_method().
11721
11722 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
11723
11724         * FuncStatus.[Ch]: new files. This is a rewrite as a proper class
11725         of the func_satus stuff. Edited and massaged in various ways by
11726         JMarc.
11727
11728         * lyxfunc.C (getStatus): use FuncStatus
11729
11730 2002-01-08  Juergen Vigna  <jug@sad.it>
11731
11732         * text.C (nextBreakPoint): use function Inset::isChar().
11733
11734         * paragraph.C (TeXOnePar): use function
11735         Inset::forceDefaultParagraphs.
11736
11737         * buffer.C (latexParagraphs): use function
11738         Inset::forceDefaultParagraphs.
11739
11740 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
11741
11742         * lyx_gui.C (init): set the style of the menu popups to
11743         FL_BOLD_STYLE, thereby fixing bugzilla bug #32.
11744
11745 2002-01-07  Juergen Vigna  <jug@sad.it>
11746
11747         * text.C (setHeightOfRow): small fix
11748         (prepareToPrint): don't look at alignment if we don't have the place
11749         for doing it.
11750
11751 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
11752
11753         * box.C: New file. Move the Box methods and functions out of box.h,
11754         following Lars' suggestion.
11755
11756 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
11757
11758         * box.h: #include "support/LOstream.h", needed for inlined function.
11759
11760         * lyxtextclass.C:
11761         * lyxtextclasslist.C: added some using std declarations.
11762
11763 2002-01-06  John Levon  <moz@compsoc.man.ac.uk>
11764
11765         * box.h: make signed dimensions to allow insets wider than
11766           the screen (bug #162)
11767
11768         * BufferView_pimpl.C: add some insetHit debug
11769
11770 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
11771
11772         * vc-backend.C: add FIXME
11773
11774 2002-01-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11775
11776         * lyxfunc.C (getStatus): enable code for showing math font status
11777         in toolbar/menu.
11778
11779 2002-01-07  Juergen Vigna  <jug@sad.it>
11780
11781         * text.C (nextBreakPoint): removed debug output not needed anymore.
11782
11783 2002-01-06  Juergen Vigna  <jug@sad.it>
11784
11785         * text.C (nextBreakPoint): fixed up this function we had this bug
11786         since ever but now hopefully we break row better.
11787         (insertChar): we have to check if an inset is the next char as it
11788         could now happen that a large inset is causing a break.
11789
11790 2002-01-05  Juergen Vigna  <jug@sad.it>
11791
11792         * BufferView2.C (showLockedInsetCursor): don't draw the inset cursor
11793         if it doesn't like to be drawed.
11794
11795 2002-01-04  Juergen Vigna  <jug@sad.it>
11796
11797         * BufferView2.C (lockInset): forgot to set a cursor.
11798
11799         * lyxfunc.C (dispatch): add a finishUndo() in LFUN_ESCAPE.
11800
11801 2002-01-03  Martin Vermeer  <martin.vermeer@hut.fi>
11802
11803         * FormMathsPanel.C:
11804         * FormMathsPanel.h
11805         * MathsSymbols.C:
11806         * form_maths_panel.C:
11807         * form_maths_panel.h:
11808         * form_maths_panel.fd: implemented sub- and super- buttons in math
11809         panel.
11810
11811         * lyx_main.C: Revised hardwired bindings to allow original _ and ^
11812         (or ^ space) to be used as in TeX (req'd by André).
11813
11814         * lyxfunc.C: Allow ^ and _ again to be used both as
11815         super/subscript (mathed) and as themselves (in text).
11816
11817 2002-01-03  Allan Rae  <rae@lyx.org>
11818
11819         * LyXView.C (updateWindowTitle): Setup a short icon title of either
11820         "LyX" or the filename of the current buffer if it has one.  This is a
11821         modified form of John Levon's patch.
11822
11823         * XFormsView.C (setWindowTitle): also set icon title.
11824
11825         * LyXView.h (setWindowTitle): signature changed.
11826         * XFormsView.h (setWindowTitle): ditto.
11827
11828 2002-01-02  Juergen Vigna  <jug@sad.it>
11829
11830         * tabular.C (AppendColumn): hopefully fixed this memory access problem.
11831
11832 2001-12-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11833
11834         * screen.C (topCursorVisible): introduce a temp var for
11835         text->cursor.row(), handle the case where this row is null. (kindo
11836         hachish)
11837
11838         * text2.C (setCursor): add a couple of asserts.
11839
11840         * paragraph.h (inset_iterator): add -> operator
11841
11842         * paragraph.[Ch] (autoDeleteInsets): remove member function
11843
11844         * BufferView2.C (removeAutoInsets): rewrite to handle the old
11845         cursor pos correctly and handle inset deletion by itself.
11846         (insertErrors): move iterator declaration out of for expression
11847
11848         * lyxtextclass.C: add <algorithm>
11849
11850         * Makefile.am: added the new files to sources, removed layout.C
11851
11852         * layout.C: removed file
11853
11854         * layout.h: remove LYX_DUMMY_LAYOUT
11855
11856         * lyxtextclasslist.C (NumberOfLayout): do not special case dummy
11857         layout.
11858
11859         * lyxlayout.[Ch]:
11860         * lyxtextclass.[Ch]:
11861         * lyxtextclasslist.[Ch]: new files
11862
11863         * include order changes to a lot of files, also changes because of
11864         the six new files.
11865
11866 2001-12-27  Juergen Vigna  <jug@sad.it>
11867
11868         * buffer.C (asciiParagraph): more fixes.
11869
11870         * tabular.C (ascii): make ascii export support export of only the
11871         data separated by a column-delimiter.
11872         (ascii): better support for ascii export.
11873
11874         * buffer.C (asciiParagraph): rewrote to hopefully work as expected!
11875
11876 2001-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11877
11878         * tabular_funcs.C: use a "using std::getline" instead of the
11879         previous fix from Angus (necessary for cxx + lyxstring)
11880
11881 2001-12-24  Juergen Vigna  <jug@sad.it>
11882
11883         * BufferView_pimpl.C (tripleClick): fixed for InsetText.
11884
11885         * buffer.C (parseSingleLyXformat2Token): fixed 2 compatibility read
11886         problems. First check a minipage also if we have some ert-contents
11887         (not only on par->size(), second set the right depth of the paragraph
11888         on the relink to the root-paragraph-list!
11889
11890         * undo_funcs.C (textHandleUndo): fixed a stupid earlier wrong fix
11891         which then did not anymore update the main paragraphs on undo/redo!
11892
11893 2001-12-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11894
11895         * lyxfunc.C (getStatus): use func_status::toggle to simplify the
11896         code. Support all font-changing funcs (even those which are not in
11897         menu currently). Support for reporting font settings in
11898         mathed (disabled until Andre provides a function on mathed's side).
11899
11900         * func_status.h (toggle): small helper function to set toggle
11901         state on a flag.
11902
11903 2001-12-21  Angus Leeming  <a.leeming@ic.ac.uk>
11904
11905         * tabular_funcs.C: getline -> std::getline
11906
11907 2001-12-21  Juergen Vigna  <jug@sad.it>
11908
11909         * undo_funcs.C (textHandleUndo): fixed a case where tmppar3 is
11910         accessed and could be 0 (I couldn't generate this but it seems
11911         Michael could!).
11912
11913 2001-12-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11914
11915         * tabular_funcs.C: add LIstream.h, move write_attribute to..
11916         * tabular_funcs.h: here and include iosfwd
11917
11918 2001-12-20  Juergen Vigna  <jug@sad.it>
11919
11920         * undo_funcs.C (textHandleUndo): fixed crash when undo_cursor not
11921         inside inset but undo_par was.
11922
11923 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11924
11925         * Thesaurus.C: always include <config.h> in sources.
11926
11927         * Painter.h:
11928         * lyxlookup.h:
11929         * box.h: do not include <config.h> in header files
11930
11931         * text.C (paintLastRow): remove unused variable
11932
11933         * text.C (transformChar):
11934         (insertChar):
11935         * tabular-old.C (getTokenValue): use IsDigit instead of isdigit.
11936
11937         * Painter.C (text):
11938         * font.C (width): rewrite to use uppercase() instead of
11939         islower/toupper.
11940
11941         * lyxfind.C (IsStringInText): use uppercase instead of toupper.
11942
11943 2001-12-12  John Levon  <moz@compsoc.man.ac.uk>
11944
11945         * lyxfind.C: clean up of find failure position change
11946
11947 2001-12-20  Juergen Vigna  <jug@sad.it>
11948
11949         * Makefile.am (lyx_SOURCES): added tabular_funcs.[hC].
11950
11951         * tabular.C (isValidRow): added to check if we're in a LT-h/f row.
11952         (TeXRow): added to LaTeX a single tabular row.
11953         (TeXLongtableHeaderFooter): added to output LT-h/f data.
11954         (Latex): simplified and finally good LT-h/f support.
11955         (various_functions): just small adaptions for LT-h/f support.
11956
11957         * tabular_funcs.[hC]: added and moved here all not classfunctions
11958         of LyXTabular.
11959
11960 2001-12-19  Juergen Vigna  <jug@sad.it>
11961
11962         * tabular.[Ch]: better support for longtabular options (not finished
11963         yet!)
11964
11965 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11966
11967         * text.C (paintLastRow): use the label font instead of the font of
11968         the last character to compute the size of *_BOX. This makes more
11969         sense and avoids a crash with empty paragraphs.
11970         Use Painter::rectangle to draw EMPTY_BOX.
11971
11972 2001-12-19  Juergen Vigna  <jug@sad.it>
11973
11974         * undo_funcs.C (textHandleUndo): fixed setting of inset_owner of
11975         the paragraphs if the replaced paragraph is not the first one!
11976         Tried to delete not used paragraphs but does not work yet so for
11977         now it's inside #ifdef's and by default off!
11978
11979 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11980
11981         * MenuBackend.C: include "lyx_main.h" instead of declaring
11982         lastfiles (actually was declared as LastFiles* instead of a
11983         scoped_ptr).
11984
11985 2001-12-17  Juergen Vigna  <jug@sad.it>
11986
11987         * tabular.C (AppendColumn): applied John's fix
11988
11989 2001-12-15  John Levon  <moz@compsoc.man.ac.uk>
11990
11991         * BufferView.h:
11992         * BufferView.C:
11993         * BufferView_pimpl.h:
11994         * BufferView_pimpl.C: cleanup and fix of checkInsetHit().
11995
11996         * Makefile.am:
11997         * box.h: new start of class for above
11998
11999         * lyxfunc.C: ignore space-only minibuffer dispatches.
12000           Show the command name when it doesn't exist
12001
12002         * minibuffer.C: don't add empty lines to the history
12003
12004         * minibuffer.C: add a space on dropdown completion
12005
12006 2001-12-14  John Levon  <moz@compsoc.man.ac.uk>
12007
12008         * text.C: fix line above/below drawing in insets
12009
12010 2001-12-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12011
12012         * lyxlength.C (LyXLength): Initialize private variables.
12013
12014 2001-12-15  Dekel Tsur  <dekelts@tau.ac.il>
12015
12016         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Use buffer language
12017         when inserting error insets.
12018
12019 2001-12-13  Juergen Vigna  <jug@sad.it>
12020
12021         * undo_funcs.C (textRedo/Undo): fixed as the first paragraph was
12022         actually sometimes the before-paragraph.
12023         (setUndo): don't clear the redostack if we're not actually undoing!
12024
12025 2001-12-06  Juergen Vigna  <jug@sad.it>
12026
12027         * undo_funcs.C (textHandleUndo): well after John's hint I got here
12028         and fixed redoing of main paragraph, so we can use it now ;)
12029
12030         * text2.C (redoParagraphs): fixed a crash when having only 1 row!
12031
12032 2001-12-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12033
12034         * undo_funcs.C (textHandleUndo): undo undo leak fix below, as per
12035         Juergen's request
12036
12037 2001-12-13  André Pönitz <poenitz@gmx.net>
12038
12039         * undostack.[Ch]:
12040         * undo_func.C: minor cleanup
12041
12042 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12043
12044         * FontLoader.C (getFontinfo): only use symbol fonts with encoding
12045         -adobe-fontspecific. At least Mandrake and Redhat have a symbol
12046         font in urw-fonts package which is marked as -urw-fontspecific and
12047         does not work (incidentally, changing the encoding in the
12048         fonts.dir of this package to -adobe-fontspecific fixes the
12049         problem).
12050
12051         * undo_funcs.C (textHandleUndo): fix leak in undo, but now there
12052         is a crash when undoing first paragraph (Juergen, please take a
12053         look). THis does not mean the undo fix is wrong, just that it
12054         uncovers problems.
12055
12056         * text2.C (ownerParagraph): let the (int,Paragraph*) version call
12057         the (Paragraph*) version when needed instead of duplicating the
12058         code.
12059
12060         * text.C (workWidth): use Inset::parOwner to find out where the
12061         inset has been inserted. This is a huge performance gain for large
12062         documents with lots of insets. If Inset::parOwner is not set, fall
12063         back on the brute force method
12064
12065         * paragraph_pimpl.C (insertInset):
12066         * paragraph.C (Paragraph):
12067         (cutIntoMinibuffer): set parOwner of insets when
12068         inserting/removing them
12069
12070         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
12071
12072 2001-12-12  Martin Vermeer  <martin.vermeer@hut.fi>
12073
12074         * commandtags.h:
12075         * LyXAction.C:
12076         * lyx_main.C:
12077         * lyxfunc.C:
12078         * mathed/formulabase.C:
12079         * mathed/math_cursor.[Ch]:
12080         make sub/superscript into functions LFUN_SUB/SUPERSCRIPT.
12081
12082
12083 2001-12-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12084
12085         * lyxlength.[Ch] (operator!=): new function
12086
12087 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12088
12089         * text.C (workWidth): use Inset::parOwner to find out where the
12090         inset has been inserted. This is a huge performance gain for large
12091         documents with lots of insets. If Inset::parOwner is not set, fall
12092         back on the brute force method
12093
12094         * paragraph_pimpl.C (insertInset):
12095         * paragraph.C (Paragraph):
12096         (cutIntoMinibuffer): set parOwner of insets when
12097         inserting/removing them
12098
12099         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
12100
12101 2001-12-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12102
12103         * tabular-old.C (getTokenValue):
12104         * tabular.C (getTokenValue):
12105         (write_attribute): new versions for LyXLength
12106         (everywhere): adjust the use of widths
12107
12108         * tabular.h: change the type of widths from string to LyXLength
12109
12110 2001-12-11  Ben Stanley <bds02@uow.edu.au>
12111
12112         * paragraph.C: fixed missing line number count when exporting
12113         Environments to LaTeX file
12114
12115         * buffer.C: added informational message for checking line numbers.
12116
12117 2001-12-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12118
12119         * text2.C (deleteEmptyParagraphMechanism): if there is only one
12120         paragraph, do the 'double space' part, but not the 'empty
12121         paragraph' one.
12122
12123         * text.C (workWidth): small optimization
12124         (getLengthMarkerHeight): use minimal size for negative lengths.
12125
12126 2001-12-11  Dekel Tsur  <dekelts@tau.ac.il>
12127
12128         * lyxfont.C (GUIFamilyNames): Fix GUIFamilyNames array
12129
12130         * FontLoader.C (getFontinfo): Use "*-eufrak-medium"
12131
12132 2001-12-11  André Pönitz <poenitz@gmx.net>
12133
12134         * FontLoader.C:
12135         * lyxfont.[Ch]: support for fraktur font used by \mathfrak
12136
12137 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
12138
12139         * text2.C: keep selection on a setFont()
12140
12141 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
12142
12143         * lyx_cb.C: another bv->text misuse, from insert label
12144
12145 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
12146
12147         * kbsequence.h:
12148         * kbsequence.C: re-instate nmodifier mask
12149
12150 2001-12-12  Angus Leeming  <a.leeming@ic.ac.uk>
12151
12152         * lyx_main.h: make lyxGUI private.
12153
12154 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
12155
12156         * lyxfind.C: place the cursor correctly on failed search
12157
12158 2001-12-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12159
12160         * text.C (getLengthMarkerHeight): for small heights, the arrows
12161         are not always on top/bottom of the text
12162         (drawLengthMarker): smaller arrows; take the left margin in
12163         account; draw also vfills.
12164         (paintFirstRow):
12165         (paintLastRow): remove special code for vfill and standard spaces,
12166         since everything is handled in drawLengthMarker now.
12167
12168 2001-12-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12169
12170         * buffer.C (insertErtContents): try to handle font and language
12171         interaction a bit better.g
12172
12173         * ColorHandler.C (updateColor): change the hash to cover the whole
12174         LColor enum, ws cleanup
12175         (getGCLinepars): ditto
12176         (getGCLinepars): only lookup in the linecache once.
12177
12178 2001-12-07  Dekel Tsur  <dekelts@tau.ac.il>
12179
12180         * iterators.C (operator++): Make the iterator more robust
12181
12182         * BufferView2.C (removeAutoInsets): Use paragraph iterators
12183         (John's patch)
12184         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Ditto
12185
12186 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12187
12188         * lyxtext.h:
12189         * text.C: better added space drawing
12190
12191 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12192
12193         * LyXView.C:
12194         * BufferView2.C: fix layout combo update on inset unlock
12195
12196 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12197
12198         * Makefile.am: don't compile unused files
12199
12200 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12201
12202         * lyxfunc.C:
12203         * commandtags.h:
12204         * LyXAction.C: remove old LFUN_LAYOUTNO
12205
12206 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12207
12208         * paragraph_pimpl.h:
12209         * paragraph_pimpl.C: isTextAt() doesn't need font param
12210
12211 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12212
12213         * lyxlex.h:
12214         * lyxlex.C: little cleanup
12215
12216 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12217
12218         * BufferView_pimpl.C: fix insertAscii for insets
12219
12220 2001-12-05  Juergen Vigna  <jug@sad.it>
12221
12222         * CutAndPaste.C (pasteSelection): remove not allowed insets/chars and
12223         set the right font on the "multi" paragraph paste!
12224
12225 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12226
12227         * trans_decl.h:
12228         * trans_mgr.[Ch]:
12229         * trans.[Ch]:
12230         * lyxgluelength.C:
12231         * lyxlength.C: remove out-commented code.
12232
12233         * BufferView_pimpl:
12234         * CutAndPaste.C:
12235         * DepTable.C:
12236         * buffer.C:
12237         * chset.C:
12238         * lastfiles.C:
12239         * lyxlex.C:
12240         * lyxlex_pimpl.C:
12241         * lyxserver.C:
12242         * screen.C:
12243         * tabular-old.C:
12244         * tabular.C:
12245         * text.C:
12246         * trans_mgr.C:
12247         * vc-backend.C: change "while(" to "while ("
12248
12249         * lyxlength.[Ch]: add zero function to check if length is zero or
12250         not
12251         * lyxgluelength.C: use it
12252
12253 2001-12-05  Allan Rae  <rae@lyx.org>
12254
12255         * lyxlength.C: Attempted a fix for the abs(int) header selection.
12256         Works for 2.95.3, from what I understand of Garst's reports this should
12257         work for other g++ versions.  We're screwed if the abs(int) definition
12258         changed between bugfix releases of gcc.
12259
12260 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
12261
12262         * text.C: fix chapter label offset !
12263
12264 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
12265
12266         * lyxtext.h:
12267         * text.C: fix hfill at end of line, clean up
12268
12269 2001-12-04  Juergen Vigna  <jug@sad.it>
12270
12271         * undo_funcs.C (textHandleUndo): added a call to inset->update() so
12272         that we force an update of the inset and it's owners if neccessary.
12273
12274 2001-12-03  Juergen Vigna  <jug@sad.it>
12275
12276         * text.C (rowLast): simplified code
12277
12278 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
12279
12280         * lyxfunc.C: fix show options on timeout
12281
12282 2001-12-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12283
12284         * screen.C (topCursorVisible): scroll half a page when the cursor
12285         reached top of bottom of screen
12286
12287 2001-12-02  John Levon  <moz@compsoc.man.ac.uk>
12288
12289         * minibuffer.C: deactivate on loss of focus
12290
12291 2001-12-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12292
12293         * vspace.[Ch] (operator!=): add operator.
12294
12295 2001-12-01  John Levon  <moz@compsoc.man.ac.uk>
12296
12297         * BufferView_pimpl.C: refuse to open an inset when
12298         there's a selection.
12299
12300 2001-11-30  John Levon  <moz@compsoc.man.ac.uk>
12301
12302         * BufferView_pimpl.C: allow to click on RHS of full row insets
12303
12304 2001-11-30  Juergen Vigna  <jug@sad.it>
12305
12306         * tabular.C (LyXTabular): add a same_id to set the same id's in the
12307         insets for undo reasons.
12308
12309 2001-11-28  André Pönitz <poenitz@gmx.net>
12310
12311         * vspace.[Ch]: cosmetical changes
12312
12313 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
12314
12315         * LyXAction.h:
12316         * LyXAction.C:
12317         * lyxfunc.h:
12318         * lyxfunc.C:
12319         * kbmap.h:
12320         * kbmap.C:
12321         * lyxrc.C:
12322         * kbsequence.h:
12323         * kbsequence.C: part re-write of old kb code
12324
12325         * Painter.C:
12326         * WorkArea.C: remove Lgb_bug_find_hack
12327
12328 2001-11-30  José Matos <jamatos@fep.up.pt>
12329
12330         * buffer.C (makeDocBookFile): add a comment to point a hack.
12331         (simpleDocBookOnePar): changed a PAR::META_INSET to isInset().
12332         Fixed a double write of labels.
12333
12334 2001-11-29 Ben Stanley <bds02@uow.edu.au>
12335
12336         * LaTeX.C:
12337         * LaTeX.h Fixed bug in LaTeX class where it would not
12338         re-run latex if no depfiles were changed, but the .dvi was removed.
12339
12340 2001-11-28  André Pönitz <poenitz@gmx.net>
12341
12342         * all the files from the change on 2001/11/26:
12343         use lyx::layout_type instead of LyXTextClass::size_type
12344         use lyx::textclass_type instead of LyXTextClassList::size_type
12345
12346 2001-11-29  Juergen Vigna  <jug@sad.it>
12347
12348         * text.C: added support for paragraph::isFreeSpacing()
12349
12350         * buffer.C: same as above
12351
12352         * paragraph.h: inserted isFreeSpacing() function to enable
12353         FreeSpacing inside InsetERT.
12354
12355         * CutAndPaste.C (cutSelection/copySelection): set the inset_owner
12356         of the paragraph's in the cut/copy buffer to 0!
12357
12358         * text2.C (removeRow): remove the assert as it can!
12359
12360         * lyxtext.h: added helper function firstRow returning firstrow and
12361         made firstrow private again.
12362
12363         * BufferView2.C (lockInset): don't relock if we're already locked!
12364
12365         * text2.C (deleteEmptyParagraphMechanism): don't do anything if it's
12366         the only paragraph.
12367         (removeRow): added Assert::(firstrow)
12368
12369         * debug.C: forgot to add INSETTEXT here.
12370
12371 2001-11-28  Juergen Vigna  <jug@sad.it>
12372
12373         * sp_spell.C (initialize): changed error text to more general
12374         spellchecker command use (not only ispell!)
12375
12376         * bufferlist.C (qwriteAll): fixed "Cancel" button handling!
12377
12378         * debug.h: inserted one for debugging INSETTEXT (and InsetTabular)!
12379
12380 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
12381
12382         * vspace.C: initialise lyxgluelength on failure
12383
12384 2001-11-28  Allan Rae  <rae@lyx.org>
12385
12386         * text.C (paintLastRow): g++-2.95.3 and others don't like variable
12387         declaration & definition that looks like a function declaration.
12388
12389 2001-11-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12390
12391         * BufferView2.C (copy):
12392         (copyEnvironment): do not clear the selection when doing a copy.
12393
12394         * text.C (paintFirstRow): compilation fix
12395
12396 2001-11-27  Ben Stanley  <bds02@uow.edu.au>
12397
12398         * tabular.C (Latex): correct line count when writing latex.
12399
12400 2001-11-27  John Levon  <moz@compsoc.man.ac.uk>
12401
12402         * paragraph_pimpl.h:
12403         * paragraph_pimpl.C: tidy, and fix font-change in "LaTeX"
12404           bug a bit
12405
12406 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
12407
12408         * text.C:
12409         * LColor.h:
12410         * LColor.C: change vfillline->added_space
12411
12412         * text.C: add markers and text for added space
12413
12414         * vspace.C: fix comment
12415
12416 2001-11-28  André Pönitz <poenitz@gmx.net>
12417
12418         * paragraph.C: whitespace changes
12419         * all the other files from the change on 2001/11/26:
12420         change *::pos_type into lyx::pos_type
12421
12422 2001-11-27  Dekel Tsur  <dekelts@tau.ac.il>
12423
12424         * buffer.C (parseSingleLyXformat2Token): Set the language to the
12425         language of the document when inserting error insets.
12426
12427 2001-11-26  André Pönitz <poenitz@gmx.net>
12428
12429         * BufferView_pimpl.[Ch]:
12430         *       CutAndPaste.C:
12431         * buffer.[Ch]:
12432         * lyxcursor.[Ch]:
12433         * lyxfind.C:
12434         * lyxfunc.C:
12435         * lyxrow.[Ch]:
12436         * paragraph.[Ch]:
12437         * paragraph_pimpl.[Ch]:
12438         * sp_spell.C:
12439         * text.C:
12440         * text2.C: reduce header dependencies, introduce type for positions
12441
12442 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
12443
12444         * <various>: change to use Alert.h
12445
12446 2001-11-25  Dekel Tsur  <dekelts@tau.ac.il>
12447
12448         * buffer.C (parseSingleLyXformat2Token): Insert an error inset
12449         when encountering an unknown token.
12450         (readLyXformat2): Show an error message if there were unknown tokens.
12451
12452 2001-11-22  John Levon  <moz@compsoc.man.ac.uk>
12453
12454         * BufferView2.C:
12455         * BufferView_pimpl.C:
12456         * buffer.C:
12457         * paragraph.h:
12458         * text.C:
12459         * text2.C: use par->isInset()
12460
12461 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
12462
12463         * paragraph_pimpl.h:
12464         * paragraph_pimpl.C: cleanup
12465
12466 2001-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12467
12468         * text2.C (removeRow):
12469         * text.C (setHeightOfRow): remove useless (and costly) call to
12470         getRow.
12471
12472 2001-11-20  Allan Rae  <rae@lyx.org>
12473
12474         * paragraph.C (insertFromMinibuffer): Fix for inset related crashes.
12475         Now need Inset*::checkInsertChar() to return true for appropriate
12476         cases so that the characters in the minibuffer will actually be
12477         inserted.
12478
12479 2001-11-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12480
12481         * text.C: change the order of the includes.
12482         (workWidth): initialize it at once.
12483         (workWidth): make maxw unsigned
12484         (setHeightOfRow): remove unused variable (inset)
12485         (selectSelectedWord): remove unused variable (inset)
12486         (paintRowText): fix drawing of hfill characters, and clean up a bit.
12487
12488 2001-11-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12489
12490         * lyxserver.C (emergencyCleanup): do not try to close pipes if
12491         server is not running.
12492         (openConnection):
12493         (closeConnection): add debug info when server is disabled.
12494
12495         * ColorHandler.C (getGCForeground): send debug message to GUI
12496         channel.
12497
12498         * lyxrc.C: do not include lyxserver.h and tex-strings.h.
12499
12500         * kbmap.C (bind): modify because return conventions of
12501         kb_sequence::parse have changed.
12502
12503         * kbsequence.C (parse): only ignore spaces and not any stupid
12504         control character. This avoids tests like s[i] <= ' ', which are
12505         guaranteed to fail with 8bit characters and signed chars.
12506         Change return code to string::npos when there have been no error
12507         (0 was a bad idea when error is at first character)
12508
12509 2001-11-14  José Matos  <jamatos@fep.up.pt>
12510
12511         * buffer.h:
12512         * buffer.C (simpleDocBookOnePar): removed unused argument.
12513
12514 2001-11-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12515
12516         * text.C (selectNextWordToSpellcheck): do not test explicitely for
12517         insets which are part of a word. Paragraph::isLetter takes care of
12518         that now. Use Paragraph::isInset to identify insets.
12519         (selectSelectedWord): do not test for hyphenation break.
12520
12521         * BufferView_pimpl.C (smartQuote): use Inset::isSpace, so
12522         that protected spaces are considered as spaces.
12523
12524         * paragraph.C (isLetter): cleanup the code for ispell extras; use
12525         Inset::isLetter.
12526
12527 2001-11-12  John Levon  <moz@compsoc.man.ac.uk>
12528
12529         * lyxserver.h:
12530         * lyxserver.C: fix it. and small cleanup.
12531
12532 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
12533
12534         * BufferView_pimpl.C: use inline helpers
12535
12536         * LaTeXFeatures.h:
12537         * LaTeXFeatures.C: fix typos
12538
12539         * Spacing.h:
12540         * Spacing.C: move spacing_string into class
12541
12542         * ToolbarDefaults.C: move stuff into namespace anon
12543
12544         * layout.h: update enum
12545
12546         * lyxfunc.C: use better debug
12547
12548         * minibuffer.h: fix typo
12549
12550         * debug.h:
12551         * debug.C:
12552         * WorkArea.C: add and use Debug::WORKAREA
12553
12554         * lyxtext.h:
12555         * text.C:
12556         * text2.C: code re-organisation, inline helpers
12557
12558 2001-11-09  Michael A. Koziarski <michael@koziarski.org>
12559
12560         * Layout.C: replaced a few cases of std::vector.size() == 0 with
12561         std::vector.empty().
12562
12563 2001-11-09  Allan Rae  <rae@lyx.org>
12564
12565         * paragraph.C (TeXOnePar): remove old, now-irrelevent comments about
12566         '\n's after tables.  Tabular and ERT inset work now makes this no
12567         longer necessary.
12568
12569 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
12570
12571         * minibuffer.h:
12572         * minibuffer.C: fix crash, improve drop-down completion
12573
12574 2001-11-06  John Levon  <moz@compsoc.man.ac.uk>
12575
12576         * lyxserver.h:
12577         * lyxserver.C: invalidate fd's when doing endPipe()
12578
12579 2001-11-08  José Matos  <jamatos@fep.up.pt>
12580
12581         * buffer.C (sgmlLineBreak): renamed from linux_doc_line_break.
12582         (simpleDocBookOnePar): removed code made obsolete by the new inset code.
12583
12584         * paragraph.h:
12585         * paragraph.C (sgmlConvertChar): renamed from linuxDocConvertChar.
12586
12587 2001-11-07  José Matos  <jamatos@fep.up.pt>
12588
12589         * buffer.h:
12590         * buffer.C (sgmlError): linuxDocError renamed, and made public, added
12591         const qualifier.
12592
12593         * buffer.C (sgmlOpenTag):
12594         * buffer.C (sgmlCloseTag): removed debug info.
12595
12596         * buffer.h (sgmlOpenTag):
12597         * buffer.h (sgmlCloseTag): made public.
12598
12599 2001-11-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12600
12601         * buffer.C (saveParamsAsDefaults):
12602         * lyx_cb.C (MenuLayoutSave): remove
12603
12604         * LyXAction.C (init):
12605         * commandtags.h:
12606         * lyxfunc.C (dispatch): remove LFUN_LAYOUT_SAVE_DEFAULT.
12607
12608 2001-11-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12609
12610         * buffer.C (setPaperStuff): removed from here...
12611
12612         * bufferparams.C (setPaperStuff): ... and moved there.
12613
12614 2001-11-03  John Levon  <moz@compsoc.man.ac.uk>
12615
12616         * minibuffer.h:
12617         * minibuffer.C:
12618         * XFormsView.C: add support for drop-down completion
12619
12620 2001-11-03  Dekel Tsur  <dekelts@tau.ac.il>
12621
12622         * paragraph.C (TeXOnePar): Correct placement of \selectlanguage
12623         commands.
12624
12625 2001-10-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12626
12627         * gettext.C (locale_init): set LC_NUMERIC to "C" even if nls is
12628         disabled.
12629
12630 2001-10-30  John Levon  <moz@compsoc.man.ac.uk>
12631
12632         * lyx_main.C: change ref to known bugs
12633
12634 2001-10-30  Kayvan A. Sylvan  <kayvan@sylvan.com>
12635
12636         * LaTeXFeatures.C (getPackages): Use lyxskak.sty now instead
12637         to work around older babel problems.
12638
12639 2001-10-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
12640
12641         * LaTeXFeatures.[hC]: Now uses skak.sty for chess material.
12642
12643 2001-10-24  Juergen Vigna  <jug@sad.it>
12644
12645         * tabular-old.C (ReadOld): below variable changes reflected.
12646
12647         * tabular.[Ch]: added ltType struct for longtable header/footer
12648         defines and changed all instances where they are used. Added
12649         future support for double top/bottom rows.
12650
12651 2001-10-24  José Matos  <jamatos@fep.up.pt>
12652
12653         * buffer.h (docbookHandleCaption):
12654         * buffer.C (docbookHandleCaption): removed unused function.
12655         (makeDocBookFile): moved docbook supported version to v4.1.
12656
12657 2001-10-24  José Matos  <jamatos@fep.up.pt>
12658
12659         * tabular.h:
12660         * tabular.C (docbookRow): new function to export docbook code of a row.
12661         (DocBook): now honors the longtable flags.
12662
12663 2001-10-23  José Matos  <jamatos@fep.up.pt>
12664
12665         * LaTeXFeatures.h:
12666         * LaTeXFeatures.C (getLyXSGMLEntities): new function to get the name
12667         of the lyx defined sgml entities used in a docbook/linuxdoc document.
12668
12669         * buffer.C (makeLinuxDocFile):
12670         (makeDocBookFile): reworked the preamble, more clean, and with
12671         support for lyx defined entities. Changed the document declaration
12672         to be more XML friendly.
12673
12674         * tabular.C (DocBook): removed / terminator to be more SGML friendly,
12675         if we need to output XML that should be done with a filter.
12676
12677 2001-10-22  Juergen Vigna  <jug@sad.it>
12678
12679         * sp_pspell.h (class PSpell): add alive function needed in the
12680         controller to see if the spellchecker could be started.
12681
12682 2001-10-22  Juergen Vigna  <jug@sad.it>
12683
12684         * buffer.C (insertStringAsLines): modify the font for inserting
12685         chars in certain conditions by calling checkInsertChar(font).
12686
12687 2001-10-19  Juergen Vigna  <jug@sad.it>
12688
12689         * text.C (workWidth): use getRow instead of wrong algorithm.
12690         (setHeightOfRow): fix for MARGIN_RIGHT_ADDRESS_BOX
12691
12692 2001-10-19  John Levon  <moz@compsoc.man.ac.uk>
12693
12694         * lyxserver.h:
12695         * lyxserver.C:
12696         * lyx_main.h:
12697         * lyx_main.C: add emergencyCleanup (remove pipes on crash)
12698
12699 2001-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12700
12701         * text.C (workWidth): do not search for the exact row when
12702         margintype is not MARGIN_RIGHT_ADDRESS_BOX. This is an
12703         optimization for big documents.
12704
12705 2001-10-18  Juergen Vigna  <jug@sad.it>
12706
12707         * text.C (workWidth): new function with added Inset * parameter.
12708
12709 2001-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12710
12711         * text2.C (setCursorFromCoordinates): use Paragraph::size_type
12712
12713         * lyxtext.h: change type of refresh_pos to Paragraph::size_type;
12714         change return type of getColumnNearX.
12715
12716
12717         * text.C (changeRegionCase): use uppercase/lowercase instead of
12718         toupper/tolower.
12719         (leftMargin):
12720         (rightMargin): simplify code by factoring out the uses of
12721         textclasslist.
12722         (labelFill):
12723         (numberOfHfills):
12724         (setHeightOfRow):
12725         (appendParagraph): use Paragraph::size_type
12726
12727 2001-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12728
12729         * vspace.C (asLatexString): add a missing break
12730
12731 2001-10-15  Herbert Voss  <voss@perce.de>
12732
12733         * vspace.C (asLatexString): fix bug in output of string for l% and p%.
12734
12735 2001-10-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12736
12737         * lyxfunc.C (getStatus): disable thesaurus when aiksaurus library
12738         is not available.
12739
12740 2001-10-10  André Pönitz <poenitz@gmx.net>
12741
12742         * lyxfunc.C: removed greek_kb_flag.
12743
12744 2001-10-10  Herbert Voss  <voss@perce.de>
12745
12746         * lyx_main.C: delete global string help_lyxdir.
12747
12748 2001-10-09  Herbert Voss  <voss@perce.de>
12749
12750         * commandtags.h (kb_action): added LFUN_HELP_TEXINFO.
12751
12752         * LyXAction.C (init): added LFUN_HELP_TEXINFO to items array.
12753
12754         * lyx_main.C: added global string help_lyxdir.
12755
12756         * lyxfunc.C (dispatch): added LFUN_HELP_TEXINFO to switch.
12757
12758 2001-10-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
12759
12760         * lyxrc.C (set_font_norm_type): support iso8859-4
12761
12762 2001-07-02  Claus Hentschel  <claus.hentschel@mbau.fh-hannover.de>
12763
12764         * LaTeX.C (deplog): add another regex for MikTeX
12765
12766 2001-10-05  Adrien Rebollo  <adrien.rebollo@gmx.fr>
12767
12768         * lyxrc.C (set_font_norm_type): support iso8859-3
12769
12770 2001-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12771
12772         * BufferView_pimpl.C (tripleClick): fix stupid logic error.
12773
12774         * LaTeXFeatures.C: remove special case of french and index
12775
12776         * buffer.C (makeLaTeXFile): _really_ load babel late (i.e. just
12777         before \begin{document}). This solves several incompatibilities.
12778
12779 2001-10-03  Garst Reese  <reese@isn.net>
12780
12781         * lyx_cb.C: change CheckTex error msg.
12782
12783 2001-10-03  José Matos  <jamatos@fep.up.pt>
12784
12785         * buffer.C (simpleDocBookOnePar): add support for pass_thru.
12786
12787 2001-10-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12788
12789         * .cvsignore: update
12790
12791         * lyx_main.C (commandLineVersionInfo): use new style version info.
12792
12793         * buffer.C (writeFile):
12794         (makeLaTeXFile):
12795         (makeLinuxDocFile):
12796         (makeDocBookFile): use lyx_docversion instead of LYX_DOCVERSION.
12797
12798         * WorkArea.C (WorkArea): use lyx_version instead of LYX_VERSION.
12799
12800         * version.h: update to use stuff in version.C
12801
12802         * version.C.in: new file. Contains version information determined
12803         at compile time. This is a merging of version.h and
12804         version_info.h.in.
12805
12806 2001-10-03  Juergen Vigna  <jug@sad.it>
12807
12808         * BufferView_pimpl.C (update): don't change "dirty" status in
12809         updateInset call.
12810
12811 2001-10-03  Angus Leeming  <a.leeming@ic.ac.uk>
12812
12813         * WorkArea.C (c-tor): re-position version string slightly.
12814
12815 2001-10-02  Angus Leeming  <a.leeming@ic.ac.uk>
12816
12817         * BufferView_pimpl.C (buffer): remove call to WorkArea::show() and
12818         revert to previous code.
12819
12820         WorkArea.[Ch]: (show, destroySplash): methods removed.
12821
12822         WorkArea.C: rework code so that it's an amalgam of the codes before and
12823         after the splash screen was moved to WorkArea.
12824
12825 2001-10-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12826
12827         * lyxrc.C (read):
12828         * vspace.C (inPixels):
12829         (lyx_advance):
12830         * kbmap.C (bind):
12831         * buffer.C (insertStringAsLines):
12832         (asciiParagraph): fix types to be large enough
12833
12834         * lyxlex_pimpl.h: change member status from short to int
12835
12836         * layout.h: fix type of endlabeltype
12837
12838         * kbmap.C (bind):
12839         * kbsequence.C (parse): change return type to string::size_type
12840
12841         * LaTeX.C (updateBibtexDependencies): comment out unneeded
12842         variable
12843
12844         * Bullet.C (bulletSize):
12845         (bulletEntry): do not use short ints as parameters
12846
12847         * BufferView2.C (insertLyXFile): change a char to an int.
12848
12849         * WorkArea.C (WorkArea): remove unneeded floats in computation
12850
12851 2001-10-01  Dekel Tsur  <dekelts@tau.ac.il>
12852
12853         * buffer.C (asciiParagraph): Treat '\\' as other chars.
12854
12855         * paragraph.C (asString): Do not ignore newline/hfill chars when
12856         copying to the clipboard.
12857
12858 2001-09-29  Dekel Tsur  <dekelts@tau.ac.il>
12859
12860         * paragraph_pimpl.C (simpleTeXSpecialChars): Call to textrow.start
12861         after a multi-line inset.
12862
12863 2001-09-28  Dekel Tsur  <dekelts@tau.ac.il>
12864
12865         * paragraph.C (validate): Set NeedLyXFootnoteCode
12866
12867 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
12868
12869         * lyxfont.C (LyXSizeNames): changed increase-error to increase
12870         and decrease-error to decrease.
12871
12872 2001-09-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12873
12874         * text2.C (deleteEmptyParagraphMechanism): reformat a bit to make
12875         it more readable (should be equivalent)
12876
12877 2001-09-27  Adrien Rebollo  <adrien.rebollo@gmx.fr>
12878
12879         * paragraph_pimpl.C (simpleTeXSpecialChars): handle latin9 too.
12880
12881 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12882
12883         * text2.C (fixCursorAfterDelete): new method. Fixes the parameters
12884         of a cursor (row, etc.) after a character has been deleted
12885         (deleteEmptyParagraphMechanism): call the method above on _all_
12886         cursors held by the LyXText when a double space has been
12887         detected/deleted.
12888
12889 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
12890
12891         * BufferView_pimpl.C (buffer): call WorkArea::show to pop-up the
12892         pixmap.
12893         (resizeCurrentBuff): remove code to destroy the old splash dialog.
12894
12895         * WorkArea.[Ch]: add the "LyX" pixmap and version string to the
12896         background. Use greyOut() and the new show() methods to toggle between
12897         the foreground and background. Add code to remove the splash after
12898         its initial showing.
12899
12900         * lyx_gui.C: Remove dependency on frontends/Dialogs.h.
12901         (create_forms): no longer call Dialogs::showSplash.
12902
12903 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12904
12905         * .cvsignore: add version_info.h
12906
12907 2001-09-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12908
12909         * version_info.h.in: new file
12910
12911         * Makefile.am: add version_info.h.in
12912
12913         * lyx_main.C (commandLineVersionInfo): use version_info defined in
12914         version_info.h instead of VERSION_INFO
12915
12916 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
12917
12918         * text.C (selectNextWordToSpellcheck): reverted change to if-block.
12919         The ERT inset now returns string().
12920
12921 2001-09-21  Angus Leeming  <a.leeming@ic.ac.uk>
12922
12923         * lyxtext.h, text.C (selectNextWord): renamed as
12924         selectNextWordToSpellcheck.
12925
12926         * text.C (selectNextWordToSpellcheck): Modified to not select
12927         words inside an ERT inset.
12928
12929 2001-09-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12930
12931         * lyx_cb.C (MenuLayoutSave): change a bit the question
12932
12933         * sp_base.h: include <sys/types.h>
12934
12935 2001-09-18  Angus Leeming  <a.leeming@ic.ac.uk>
12936
12937         * LColor.[Ch]: added graphicsbg to color enum and to ColorEntry.
12938
12939 2001-09-20  Michael Schmitt  <Michael.Schmitt@teststep.org>
12940
12941         * several files: fix typos in user-visible strings
12942
12943 2001-09-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12944
12945         * text2.C (pasteSelection): do not set the selection, since it
12946         will be cleared later. Actually, the intent was to fix the way the
12947         selection was set, but I figured rmoving the code was just as good.
12948
12949 2001-09-19  Dekel Tsur  <dekelts@tau.ac.il>
12950
12951         * FontLoader.C (available): Check if font is available without
12952         loading the font.
12953
12954 2001-09-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
12955
12956         * lyxrc.[Ch]: added auto_reset_options variable and associated code.
12957
12958 2001-09-13  Angus Leeming  <a.leeming@ic.ac.uk>
12959
12960         * lyxrc.[Ch]: added display_graphics variable and associated code.
12961
12962 2001-09-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12963
12964         * bufferparams.C (hasClassDefaults): new method. Returns true if
12965         the buffer parameters correspond to known class defaults
12966
12967 2001-09-17  Angus Leeming  <a.leeming@ic.ac.uk>
12968
12969         * XFormsView.C (show): set minimum size to the main window.
12970
12971 2001-09-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12972
12973         * text2.C (copySelection):
12974         (cutSelection):
12975         * lyxfind.C (LyXReplace):
12976         * BufferView_pimpl.C (Dispatch): pass the correct flag to
12977         LyXText::selectionAsString.
12978
12979         * paragraph.C (asString): add "label" argument to the second form
12980
12981         * text2.C (selectionAsString): add "label" argument and pass it to
12982         Paragraph::asString.
12983
12984 2001-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12985
12986         * lyx_main.C (commandLineHelp): remove version information
12987
12988 2001-09-08  Rob Lahaye  <lahaye@users.sourceforge.net>
12989
12990         * lyx_main.C: add -version commandline option
12991
12992 2001-09-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12993
12994         * paragraph.h: make the optional constructor arg required instead.
12995         some modifications to other files because of this.
12996
12997         * minibuffer.C (C_MiniBuffer_peek_event): make it static
12998
12999         * lyxserver.C (C_LyXComm_callback): make it static
13000
13001         * lyx_main.C (error_handler): make it static
13002
13003         * lyx_gui.C (LyX_XErrHandler): make it static
13004
13005         * XFormsView.C (C_XFormsView_atCloseMainFormCB): make it static
13006
13007         * WorkArea.C: make the extern "C" methods static.
13008
13009         * Makefile.am (lyx_LDADD): simplify
13010
13011 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
13012
13013         * commandtags.h: removed redundant LFUNs, LFUN_HELP_COPYRIGHT,
13014         LFUN_HELP_CREDITS, LFUN_HELP_VERSION.
13015
13016         * LyXAction.C (init):
13017         * lyxfunc.C (dispatch): associated code removal.
13018
13019 2001-09-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13020
13021         * lyxfont.h (isSymbolFont): shut off warning
13022
13023         * text.C (setHeightOfRow):
13024         (getVisibleRow): fix crash with empty paragraphs which have a
13025         bottom line
13026
13027 2001-09-07  Rob Lahaye  <lahaye@users.sourceforge.net>
13028
13029         * lyxrc.[Ch]: added dialogs_iconify_with_main variable and associated
13030         code.
13031
13032 2001-09-04  José Matos  <jamatos@fep.up.pt>
13033         * buffer.C
13034         * buffer.h
13035         * tabular.C (docbook): rename docBook method to docbook.
13036
13037 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
13038
13039         * Makefile.am: add dependencies to main.o.
13040
13041 2001-09-03  Dekel Tsur  <dekelts@tau.ac.il>
13042
13043         * FontLoader.C (available): Return false if !lyxrc.use_gui
13044
13045 2001-09-03  Michael Schmitt <schmitt@itm.mu-luebeck.de>
13046
13047         * FontInfo.C (query):
13048         * converter.C (view):
13049         * importer.C (Import):
13050         * exporter.C (Export): Can not -> cannot.
13051
13052 2001-09-02  John Levon  <moz@compsoc.man.ac.uk>
13053
13054         * BufferView_pimpl.C: allow to create index inset even if
13055           string is empty
13056
13057 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
13058
13059         * buffer.C (getLists): replace boost::tie code with an explicit pair
13060         as boost::tie can break some compilers.
13061
13062         * iterators.h: Added a std:: declaration to the return type of
13063         ParIterator::size.
13064
13065 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
13066
13067         * lyxrc.C: add help for view_dvi_paper_option, default to safe
13068           case.
13069
13070 2001-09-02  Dekel Tsur  <dekelts@tau.ac.il>
13071
13072         * iterators.[Ch]: New files. Provide paragraph iterators.
13073
13074         * buffer.C (changeLanguage): Use paragraph iterators.
13075         (isMultiLingual): ditto
13076
13077         * BufferView2.C (ChangeInsets): Use paragraph iterators.
13078
13079 2001-09-01  Dekel Tsur  <dekelts@tau.ac.il>
13080
13081         * FontLoader.C: Support for cmr font.
13082
13083 2001-08-31  Dekel Tsur  <dekelts@tau.ac.il>
13084
13085         * FontLoader.C (getFontinfo): Handle latex symbol fonts.
13086         (available): New method.
13087
13088         * FontInfo.C (getFontname): Use scalable fonts even when
13089         lyxrc.use_scalable_fonts is false, if no non-scalable fonts was
13090         found.
13091
13092 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
13093
13094         * converter.C (Formats::view): reverted! Incorrect fix.
13095
13096 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
13097
13098         * converter.C (Formats::view): only output the -paper option
13099         if the dvi viewer is xdvi, thereby fixing bug #233429.
13100
13101 2001-08-23  Herbert Voss  <voss@perce>
13102
13103         * BufferView_pimpl.C: small fix for LFUN_INSERT_BIBTEX
13104
13105 2001-08-20  Dekel Tsur  <dekelts@tau.ac.il>
13106
13107         * Spacing.h (Spacing): Set space to Default on in the default
13108         constructor.
13109
13110 2001-08-19  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13111
13112         * vc-backend.h (RCS::versionString): add RCS to version
13113         (CVS::versionString): add CVS to version
13114
13115         * vc-backend.C (scanMaster): do not add CVS to version.
13116         (scanMaster): do not add RCS to version
13117
13118         * lyxvc.C (versionString): new method
13119
13120         * lyxfunc.C (initMiniBuffer): use LyXVC::versionString
13121
13122 2001-08-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13123
13124         * Spacing.C (set): initialize fval
13125
13126 2001-08-15  Dekel Tsur  <dekelts@tau.ac.il>
13127
13128         * lyxlex_pimpl.C (next): Treat \ as normal char if not followed by
13129         " or \.
13130
13131 2001-08-16  Juergen Vigna  <jug@sad.it>
13132
13133         * lyxfunc.C (dispatch): implemented the new FINISHED states.
13134
13135 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
13136
13137         * BufferView_pimpl.C:
13138         * figureForm.C:
13139         * lyxtext.h:
13140         * text2.C: setParagraph takes linespacing now
13141
13142 2001-08-15  John Levon  <moz@compsoc.man.ac.uk>
13143
13144         * LyxAction.C: add internal LFUN_CITATION_INSERT
13145
13146         * LyXView.C: actually apply fix
13147
13148         * bufferlist.C: fix open non-existent file
13149
13150         * lyxfind.C: fix indentation
13151
13152         * lyxfunc.C: remove unneeded assert, fix typo
13153
13154 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
13155
13156         * MenuBackend.C: use "Floatname List"
13157
13158 2001-08-14  Dekel Tsur  <dekelts@tau.ac.il>
13159
13160         * buffer.C (parseSingleLyXformat2Token): Do not generate errors
13161         when converting LaTeX layout to insetERT.
13162         Generate a non-collapsed float when reading old float
13163
13164 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
13165
13166         * BufferView2.C (showLockedInsetCursor): Use normal cursor shape in
13167         ERT insets.
13168
13169 2001-08-13  Juergen Vigna  <jug@sad.it>
13170
13171         * text.C (fill): return 0 instead of 20 as this seems to be the more
13172         correct value.
13173
13174 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
13175
13176         * encoding.C (TransformChar): Use lyxrc.font_norm_type instead of
13177         lyxrc.font_norm.
13178
13179 2001-08-13  Juergen Vigna  <jug@sad.it>
13180
13181         * lyxfind.C (LyXReplace): fixed not single-replacing characters with
13182         casesensitive off.
13183         (SearchBackward): comment out the unlocking of the inset_owner this
13184         should not be needed!
13185
13186 2001-08-11  Dekel Tsur  <dekelts@tau.ac.il>
13187
13188         * Many files: Remove inherit_language, and add latex_language
13189
13190         * BufferView2.C (showLockedInsetCursor): Fix cursor shape in
13191         collapsible insets.
13192
13193 2001-08-10  Juergen Vigna  <jug@sad.it>
13194
13195         * text.C (prepareToPrint): fixed hfill-width in draw!
13196
13197         * BufferView2.C (selectLastWord): save the selection cursor as this
13198         now is cleared in the function LyXText::clearSelection!
13199
13200 2001-08-08  Juergen Vigna  <jug@sad.it>
13201
13202         * BufferView_pimpl.C (Dispatch): use a non-cut-buffer cut on DELTE
13203         BACKSPACE type functions.
13204
13205         * CutAndPaste.C (cutSelection): added a bool so that the stuff actually
13206         is only cutted from the document but not put in the cut-buffer, where
13207         still the old stuff should be.
13208
13209         * text2.C (cutSelection): added bool to pass to CutAndPaste::cutSelection.
13210
13211         * BufferView2.C (cut): added a bool to pass to LyXText::cutSelection.
13212
13213         * tabular.C (SetWidthOfCell): fixed special case where the width
13214         was not updated!
13215         (LeftLine): handle '|' in align_special.
13216         (RightLine): ditto
13217         (LeftAlreadyDrawed): ditto
13218         (SetWidthOfCell): ditto
13219
13220 2001-08-07  Juergen Vigna  <jug@sad.it>
13221
13222         * lyx_main.C (readUIFile): fixed some forgotten lowercase!
13223
13224 2001-08-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13225
13226         * lyxlex_pimpl.[Ch]: converto to lowercase funcs
13227         * lyxlex.[hC]: ditto
13228
13229 2001-08-06  Juergen Vigna  <jug@sad.it>
13230
13231         * text.C (getVisibleRow): fix up row clearing a bit.
13232
13233 2001-08-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13234
13235         * minibuffer.C: make sure the X server sees the changes in the input.
13236
13237 2001-08-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13238
13239         * paragraph.C (getFont): split into...
13240         (getLabelFont): this
13241         (getLayoutFont): and this
13242         * paragraph_pimpl.C (realizeFont): calling this
13243
13244         * text2.C (getFont): split into...
13245         (getLayoutFont): this
13246         (getLabelFont): and this
13247         (realizeFont): all three calling this
13248
13249         * lyxfont.h: remove all NO_LATEX macros and code... adjust all
13250         files where used.
13251
13252 2001-08-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13253
13254         * lyxfunc.C (getStatus): add checkbox support for LFUN_APPENDIX
13255
13256 2001-08-02  Kayvan A. Sylvan  <kayvan@sylvan.com>
13257
13258         * BufferView_pimpl.C (smartQuote): Added code to exempt pass_thru
13259         layouts from the Quote inset insertion.
13260
13261 2001-08-03  Juergen Vigna  <jug@sad.it>
13262
13263         * BufferView_pimpl.C (update): do the fitCursor only at the end!
13264
13265         * screen.C (drawFromTo): don't call fitcursor here and do the loop
13266         only if status not is already CHANGED_IN_DRAW (second level).
13267
13268         * text.C (draw): don't set the need_break_row when inside an
13269         InsetText LyXText.
13270
13271 2001-08-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13272
13273         * buffer.C (parseSingleLyXformat2Token): handle more latex
13274         conversion cases.
13275
13276         * bufferview_funcs.[hC]: change function names to
13277         begin with small char, adjust other files.
13278
13279 2001-08-02  André Pönitz <poenitz@gmx.net>
13280
13281         * lyxfunc.C:
13282         BufferView_pimpl.C: remove broken special code for math-greek
13283
13284 2001-08-02  Juergen Vigna  <jug@sad.it>
13285
13286         * BufferView_pimpl.C (update): redone this function so that we
13287         update the text again if there was a CHANGE_IN_DRAW.
13288
13289         * screen.C (cursorToggle): removed LyXText parameter and recoded.
13290         (drawFromTo): added a new internal bool which is used by draw() and
13291         redraw() function.
13292         (general): some cursor drawing problems fixed.
13293
13294 2001-08-01  Juergen Vigna  <jug@sad.it>
13295
13296         * lyxfind.C (LyXFind): fixed
13297         (SearchForward): ditto
13298         (SearchBackward): ditto
13299
13300         * BufferView_pimpl.C (workAreaMotionNotify): hopefully fixed the
13301         spurius drawing of the cursor in the main area.
13302
13303         * text2.C (status): small fix which could lead to a segfault!
13304         (clearSelection): remove unneeded BufferView param.
13305
13306 2001-08-01  André Pönitz <poenitz@gmx.net>
13307
13308         * lyxfunc.C: small change due to changed mathed interface
13309
13310 2001-08-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13311
13312         * bufferlist.C (loadLyXFile): add .lyx to file name if necessary
13313
13314 2001-08-01  John Levon  <moz@compsoc.man.ac.uk>
13315
13316         * lyxfunc.c: fail gracefully if file doesn't exist
13317
13318         * LyXSendto.C:
13319         * buffer.C:
13320         * lyxfunc.C:
13321         * BufferView_pimpl.C: IsDirWriteable() proto changed
13322
13323         * LyXView.C: fix updateWindowTitle() to store the last title
13324
13325 2001-07-31  Juergen Vigna  <jug@sad.it>
13326
13327         * text.C (setHeightOfRow): fixed setting of ascent/descent based on
13328         the font (wrong since using of Paragraph::highestFontInRange).
13329
13330         * paragraph.C (highestFontInRange): added a default_size parameter.
13331
13332         * text.C (getVisibleRow): minor clear row changes (still not perfect).
13333         (setHeightOfRow): reformat
13334
13335 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13336
13337         * converter.[hC] + affected files: move to (inital-char)lowercase
13338         function names.
13339
13340         * ParagraphParameters.C (ParagraphParameters): remove commented code
13341
13342         * PainterBase.[Ch]: remove commented code
13343
13344         * LaTeXFeatures.h: add "bool floats" for float.sty
13345
13346         * LaTeXFeatures.C (LaTeXFeatures): init floats
13347         (require): handle float
13348         (getPackages): do it with floats
13349
13350 2001-07-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13351
13352         * BufferView_pimpl.C (Dispatch): improve handling of
13353         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE
13354
13355         * commandtags.h: #include lyxfont.h here temporarily to avoid
13356         keybinding bug.
13357
13358         * bufferlist.h: include LString.h here.
13359
13360 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13361
13362         * text2.C (getStringToIndex): new method.
13363
13364 2001-07-29  Asger Alstrup Nielsen  <alstrup@alstrup>
13365
13366         * *: Reduced header file dependencies all over.
13367
13368 2001-07-30  Baruch Even  <baruch@lyx.org>
13369
13370         * buffer.C (readInset): Stop auto-converting InsetFig to InsetGraphics.
13371
13372 2001-07-29  Baruch Even  <baruch@lyx.org>
13373
13374         * buffer.C (readInset): Changed GRAPHICS to Graphics.
13375
13376 2001-07-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13377
13378         * ParameterStruct.h (endif): add a default constructor to make
13379         sure that all variables is initialized.
13380
13381         * ParagraphParameters.C (ParagraphParameters): adjust
13382
13383 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13384
13385         * BufferView_pimpl.C (Dispatch): use WHOLE_WORD selection for
13386         index; also, check that there is something to index, and that it
13387         does not span over several paragraphs.
13388         (doubleClick): use WHOLE_WORD_STRICT for double click.
13389
13390         * text.C (getWord): handle new WHOLE_WORD_STRICT word_location value.
13391
13392         * text2.C (toggleFree): do selection with WHOLE_WORD_STRICT
13393         scheme.
13394
13395 2001-07-26  Baruch Even  <baruch@lyx.org>
13396
13397         * buffer.C (readInset): Changed to call up InsetGraphics when reading
13398         an InsetFig figure, backwards compatible reading of old figure code.
13399
13400 2001-07-27  Juergen Vigna  <jug@sad.it>
13401
13402         * text2.C: font.realize function adaption.
13403
13404         * text.C (draw): add a warnings lyxerr text if needed.
13405
13406         * layout.C: font.realize function adaption.
13407
13408         * language.C: add inherit_language and implement it's handlings
13409
13410         * bufferview_funcs.C (StyleReset): remove language parameter from
13411         font creation (should be language_inherit now).
13412
13413         * bufferparams.C (writeFile): handle ignore_language.
13414
13415         * paragraph.C (getFontSettings): the language has to be resolved
13416         otherwise we have problems in LyXFont!
13417
13418         * lyxfont.C (lyxWriteChanges): added document_language parameter
13419         (update): removed unneeded language parameter
13420
13421         * paragraph.C (validate): fixed wrong output of color-package when
13422         using interface colors for certain fonts in certain environments,
13423         which should not seen as that on the final output.
13424
13425 2001-07-26  John Levon  <moz@compsoc.man.ac.uk>
13426
13427         * BufferView_pimpl.C:
13428         * Thesaurus.h:
13429         * Thesaurus.C:
13430         * Makefile.am:
13431         * commandtags.h:
13432         * LyXAction.C: add thesaurus support
13433
13434         * lyxfind.h:
13435         * lyxfind.C: add "once" parameter, for thesaurus, to not
13436           move to the next match
13437
13438 2001-07-26  Juergen Vigna  <jug@sad.it>
13439
13440         * lyxfont.C (realize): honor ignore_language too!
13441         (resolved): ditto.
13442
13443         * paragraph.C (TeXOnePar): handle ignore language right (hopefully).
13444
13445         * text.C (draw): one place more for ignore_language to not draw
13446         itself!
13447
13448 2001-07-25  Angus Leeming  <a.leeming@ic.ac.uk>
13449
13450         * LaTeXFeatures.C (getPackages): clean-up a little of the natbib code.
13451
13452 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13453
13454         * buffer.C (parseSingleLyXformat2Token): a more general fix for
13455         the minipage conversion problem.
13456
13457 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13458
13459         * buffer.C (parseSingleLyXformat2Token): check minipage if we
13460         insert an inset.
13461
13462 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13463
13464         * BufferView.h: don't forward declare WorkArea
13465
13466         * BufferView.C: don't include WorkArea.h
13467
13468 2001-07-25  André Pönitz <poenitz@gmx.net>
13469
13470         * commandtags.h:
13471         * LyXAction.C:
13472         * lyxfunc.C:  new LFUN 'math-space'
13473
13474         * BufferView.[Ch]: remove unneeded reference to 'WorkArea'
13475
13476 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13477
13478         * text2.C (toggleInset): call open/close
13479
13480 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13481
13482         * lyxfunc.C (dispatch): add debug for the disabled case
13483
13484         * font.C (buttonText): make similar to rectText
13485
13486         * buffer.C (readInset): comment out parsing of insetlist and
13487         insttheorem
13488
13489         * PainterBase.C (rectText): small correction
13490
13491         * BufferView_pimpl.C: comment out insettheorem and insetlist
13492         * LyXAction.C: ditto
13493         * commandtags.h: ditto
13494
13495 2001-07-24  Juergen Vigna  <jug@sad.it>
13496
13497         * text.C (draw): honor the ignore_language.
13498
13499         * lyxfont.C (LyXFont): set language to ignore_language in FONT_INIT1.
13500
13501 2001-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13502
13503         * lyxfunc.C (getStatus): BREAKLINE does _not_ insert a special
13504         char inset.
13505
13506 2001-07-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13507
13508         * lyxtext.h: remove unused (and unimplemented) methods
13509
13510 2001-07-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13511
13512         * text.C (getVisibleRow): honor background color
13513
13514         * PainterBase.h:
13515         * Painter.h: remove default color argument for fillRectangle
13516
13517         * text.C (backgroundColor): new method
13518
13519 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13520
13521         * text.C (getVisibleRow): adjust
13522
13523         * font.[Ch] (rectText): new method, metrics
13524         (buttonText): new method, metrics
13525
13526         * PainterBase.[hC]: make rectText and buttonText always draw and take
13527         fewer paramteres.
13528
13529 2001-07-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13530
13531         * ToolbarDefaults.C (read):
13532         * MenuBackend.C (read): allow escaping in all strings
13533
13534         * BufferView_pimpl.C (insertAndEditInset): new method.
13535         (Dispatch): use insertAndEditInset whenever appropriate.
13536
13537         * BufferView_pimpl.C (insertNote): removed
13538
13539         * BufferView_pimpl.C (smartQuote): new method, moved from
13540         BufferView; if an insetquote cannot be inserted, insert a '"'
13541         character instead.
13542
13543         * BufferView2.C: remove insertCorrectQuote();
13544
13545         * lyxfunc.C (getStatus): Add support for all remaingin
13546         inset-insert lfuns.
13547
13548         * trans_mgr.C (insertVerbatim): do not treat '"' specially.
13549
13550         * lyxrc.C (read): in RC_BIND, allow escaped sequences in the
13551         command (necessary to pass " as parameter of self-insert.
13552
13553         * text.C (selectWordWhenUnderCursor):
13554         (selectWord): add word_location parameter
13555         (selectWordWhenUnderCursor): same + remove special code for word
13556         boundary.
13557         (selectNextWord): use kind() to guess type of insetspecialchar,
13558         not latex().
13559
13560         * buffer.C (insertStringAsLines): new method, extracted from LyXText.
13561         (insertErtContents): create ert insets as collapsed.
13562         (readInset): better compatibility code for Info inset.
13563
13564 2001-07-20  Juergen Vigna  <jug@sad.it>
13565
13566         * lyxfunc.C (dispatch): use always LyXFind now!
13567
13568         * text2.C (init): add a reinit flag so that the LyXText can be
13569         reinited instead of deleted and reallocated (used in InsetText).
13570
13571         * BufferView_pimpl.C: use the new Inset::edit(BV, bool) where needed.
13572
13573         * text.C: ditto
13574
13575         * text2.C: ditto
13576
13577 2001-07-18  Juergen Vigna  <jug@sad.it>
13578
13579         * text.C (selectNextWord): handle insets inside inset by calling
13580         always the bv->text functions so that we can go up the_locking_inset!
13581
13582         * BufferView_pimpl.C (show/hideCursor): fixed cursor showing up
13583         in strange locations when inside an inset!
13584
13585         * lyxfind.[Ch]: give all functions a LyXText * parameter and implement
13586         handling to include insets.
13587
13588         * lyxfunc.C (dispatch): changes to calls SearchBackward/Forward.
13589
13590 2001-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13591
13592         * LyXAction.C (init):
13593         * commandtags.h:
13594         * BufferView_pimpl.C (Dispatch): change HYPHENATION_BREAK to
13595         LIGATURE_BREAK, since the name is so stupid.
13596
13597 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
13598
13599         * buffer.C (readInset): enable reading of new InsetNotes as well as old
13600         InsetInfos.
13601
13602         * FontLoader.C: remove FORMS_H_LOCATION cruft.
13603
13604         * sp_form.[Ch]: remove.
13605
13606         * src/LColor.[Ch]: remove noteframe. Change note to "yellow".
13607
13608         * src/BufferView_pimpl.C (insertNote): use InsetNote in place of
13609         InsetInfo.
13610
13611         * src/buffer.C (readInset): ditto.
13612
13613 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13614
13615         * BufferView_pimpl.C (specialChar): new method. Obsoletes
13616         menuSeparator(), endOfSentenceDot(), ldots() and
13617         hyphenationPoint(), which are therefore removed.
13618         (Dispatch): handle LFUN_HYPHENATION_BREAK.
13619
13620         * LyXAction.C (init):
13621         * commandtags.h: add LFUN_HYPHENATION_BREAK.
13622
13623         * paragraph.C (getWord): removed.
13624
13625         * BufferView_pimpl.C (Dispatch): use last word or selection for
13626         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE.
13627
13628         * lyx_main.C (queryUserLyXDir): do not ask before creating
13629         user_dir, except if it has been named explicitely.
13630
13631 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
13632
13633         * BufferView_pimpl.C (updateScrollbar): Fix crash when reading in
13634         a document of zero size.
13635
13636 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
13637
13638         * LaTeXFeatures.[Ch]: add variable "bool natbib" and set it
13639         approriately in the c-tor and in require().
13640         (getPackages): output the appropriate LaTeX for natbib support.
13641
13642         * buffer.C (parseSingleLyXformat2Token): set the new bufferparams
13643         variables "use_natbib" and "use_numerical_citations" when reading the
13644         LyX file.
13645         (readInset): read the various natbib cite commands.
13646         (validate): white-space change.
13647
13648         * bufferparams.[Ch]: new variables "bool use_natbib" and
13649         "bool use_numerical_citations".
13650         (writeFile): output them in the LyX file.
13651
13652 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13653
13654         * lyxfunc.C (getStatus): add support for all the inset insertion
13655         commands.
13656
13657         * text2.C (insertInset):
13658         * paragraph.C (insetAllowed):
13659         * BufferView_pimpl.C (insertInset): update to take in account the
13660         renaming of insertInsetAllowed
13661
13662         * lyxfunc.C (getStatus): add support for LFUN_INSET_TOGGLE.
13663
13664         * text2.C (getInset): new method. returns inset at cursor position.
13665
13666         * BufferView_pimpl.C (Dispatch): changes because of this.
13667
13668         * LyXAction.C (init): rename open-stuff to inset-toggle.
13669
13670         * commandtags.h: rename LFUN_OPENSTUFF to LFUN_INSET_TOGGLE.
13671
13672         * text2.C (toggleInset): renamed from openStuff; use
13673         Inset::open().
13674
13675 2001-07-13  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
13676
13677         * lyxrc.C (set_font_norm_type): recognise ISO_8859_15.
13678
13679         * lyxrc.h: added ISO_8859_15 to enum FontEncoding.
13680
13681 2001-07-18  Dekel Tsur  <dekelts@tau.ac.il>
13682
13683         * buffer.C (readLyXformat2): Add filename to the error dialog
13684
13685 2001-07-18  Juergen Vigna  <jug@sad.it>
13686
13687         * tabular.C (GetCellNumber): put an assert here instead of the check!
13688
13689 2001-07-17  Juergen Vigna  <jug@sad.it>
13690
13691         * BufferView_pimpl.C (toggleSelection): adapted too.
13692
13693         * text.C (selectNextWord): adapted for use with insets.
13694         (selectSelectedWord): ditto
13695
13696 2001-07-17  Juergen Vigna  <jug@sad.it>
13697
13698         * sp_spell.C (PSpell): fix initialitation order.
13699
13700 2001-07-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13701
13702         * paragraph.C: spacing
13703
13704 2001-07-17  Edwin Leuven  <leuven@fee.uva.nl>
13705
13706         * sp_spell.C: repair language selection for pspell
13707
13708 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13709
13710         * lyxfunc.h: change more methods to begin with lower char.
13711
13712 2001-07-16  Dekel Tsur  <dekelts@tau.ac.il>
13713
13714         * buffer.C (parseSingleLyXformat2Token): Generate error insets
13715         for unknown layouts.
13716
13717 2001-07-13  Dekel Tsur  <dekelts@tau.ac.il>
13718
13719         * buffer.C (readLyXformat2): Generate an error dialog if there are
13720         unknown layouts.
13721
13722 2001-07-16  Juergen Vigna  <jug@sad.it>
13723
13724         * sp_spell.C: always compile ISpell part.
13725
13726         * lyxrc.C: added use_pspell entry and it's handling.
13727
13728 2001-07-13  Juergen Vigna  <jug@sad.it>
13729
13730         * sp_spell.C: removed double includes.
13731
13732 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
13733
13734         Consistent use of Lsstream.h:
13735         * Lsstream.h: added using std::stringstream for consistencies sake.
13736
13737         * buffer.C: removed using std::stringstream
13738
13739         * lyxfont.C (stateText):
13740         * paragraph.C (asString):
13741         * text.C (selectNextWord, selectSelectedWord):
13742         * text2.C (setCounter):
13743         * vspace.C (asString, asLatexString):
13744         std::ostringstream -> ostringstream.
13745
13746 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
13747
13748         * LyXAction.C: add LFUN_HELP_ABOUTLYX
13749         * commandtags.h: add LFUN_HELP_ABOUTLYX
13750         * lyxfunc.C: add about lyx remove credits/copyright/version stuff
13751
13752 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
13753
13754         * BufferView_pimpl.C: sigchldchecker instead of sigchldhandeler in
13755         cursorToggle()
13756         * lyx_gui_misc.C: remove spellchecker
13757         * lyxfunc.C: showSpellchecker
13758         * sp_base.h: added
13759         * sp_ispell.h: added
13760         * sp_pspell.h: added
13761         * sp_spell.C: added
13762         * sp_form.[Ch]: removed
13763         * spellchecker.[Ch]: removed
13764
13765 2001-07-12  Kayvan A. Sylvan  <kayvan@sylvan.com>
13766
13767         * paragraph_pimpl.C (simpleTeXBlanks): Simply return if pass_thru
13768         is set.
13769         (simpleTeXSpecialChars): Simply print the input character without
13770         any special translation if pass_thru is set.
13771
13772         * layout.h: Added bool pass_thru to layout class for being able to
13773         implement pass through of a paragraph for Literate Programming.
13774
13775         * layout.C: add LT_PASS_THRU to LayoutTags enum.
13776         * layout.C (LyXLayout): set pass_thru to flase in constructor.
13777         * layout.C (Read): add "passthru" to list of layout tags and add
13778         code to set the pass_thru boolean when it is read.
13779
13780 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13781
13782         * trans_decl.h: remove allowed from KmodInfo
13783
13784         * trans.[Ch] (AddDeakkey): change prototype to not have allowd.
13785         remove allowed code
13786         (Load): adjust
13787
13788         * paragraph_pimpl.C (erase): use boost::prior
13789
13790         * Painter.C (text): use data() instead of c_str() when length is
13791         also provided.
13792         * WorkArea.C (putClipboard): ditto
13793         * font.h (width): ditto
13794
13795         * BufferView2.C: use it-> instead of (*it). for iterators
13796         * texrow.C: ditto
13797         * paragraph_pimpl.C: ditto
13798         * paragraph.C: ditto
13799         * minibuffer.C: ditto
13800         * language.C: ditto
13801         * kbmap.C: ditto
13802         * encoding.C: ditto
13803         * counters.C: ditto
13804         * converter.C: ditto
13805         * chset.C: ditto
13806         * Variables.C: ditto
13807         * TextCache.C: ditto
13808         * MenuBackend.C: ditto
13809         * LyXAction.C: ditto
13810         * LColor.C: ditto
13811         * FloatList.C: ditto
13812         * DepTable.C: ditto
13813         * ColorHandler.C (LyXColorHandler): ditto
13814
13815 2001-07-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13816
13817         * BufferView_pimpl.C (Dispatch): handle LFUN_OPENSTUFF.
13818
13819         * text2.C (openStuff): reintroduce this method (which had been
13820         nuked in NEW_INSETS frenzy).
13821
13822         * lyxfunc.C (Dispatch): when an action has not been handled, use
13823         its name in the error message, not its number.
13824
13825         * paragraph.C (inInset): change method name to begin with lowercase.
13826
13827         * undo_funcs.C:
13828         * text2.C: updates because of this.
13829
13830 2001-07-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13831
13832         * ToolbarDefaults.C (add): add spaces in error message
13833
13834 2001-07-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13835
13836         * buffer.C (readLyXformat2): initialize the ert comp. variables.
13837         (readLyXformat2): rename return_par to first_par, use lyxlex's
13838         pushToken and remove the manual push handling.
13839         (parseSingleLyXformat2Token): add another ert comp. variable:
13840         in_tabular, rename return_par to first_par. handle newlines better
13841
13842 2001-07-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13843
13844         * kbsequence.C (getiso): redirect debug info to Debug::KBMAP.
13845
13846 2001-07-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13847
13848         * text2.C (getParFromID): removed
13849
13850         * buffer.C (getParFromID): new method moved form lyxtext.
13851         * BufferView2.C (insertErrors): adjust
13852         (setCursorFromRow): adjust
13853         * BufferView_pimpl.C (restorePosition): adjust
13854         * lyxfunc.C (Dispatch): adjust
13855         * undo_funcs.C (textUndo): adjust
13856         (textRedo): adjust
13857         (textHandleUndo): adjust
13858         (textHandleUndo): adjust
13859
13860 2001-07-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13861
13862         * buffer.C: up' the LYX_FORMAT
13863
13864         * lyxfont.h: turn NO_LATEX on as default
13865
13866         * buffer.C (insertErtContents): new methods of tex style compability.
13867         (parseSingleLyXformat2Token): use it several places.
13868         * tabular.C (OldFormatRead): and here
13869
13870 2001-07-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13871
13872         * text2.C: remove some commented code.
13873         reindent file.
13874
13875         * trans_mgr.[Ch]: simplify normalkey to only take a char as arg.
13876         * trans.C: changes because of the above.
13877
13878 2001-07-07  Dekel Tsur  <dekelts@tau.ac.il>
13879
13880         * text2.C (setCounter): Fix counters bug with bibliography layout.
13881
13882 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13883
13884         * paragraph_pimpl.C (simpleTeXBlanks): don't go through owner_ for
13885         own member functions
13886         (simpleTeXSpecialChars): ditto
13887
13888 2001-07-06  Juergen Vigna  <jug@sad.it>
13889
13890         * a lot of files: changed the access to LyXText::status and the
13891         call of undo-functions.
13892
13893         * undo.[Ch]: added a inset_id to the undo informations.
13894
13895         * undo_funcs.[Ch]: added and moved here all undo functions.
13896
13897         * lyxtext.h: give the status enum a weight, made status_ a private
13898         variable and made accessor functions for it, removed the whole bunch
13899         of undo-functions as they are now in their own file, make some
13900         functions publically available. Added function ownerParagraph with
13901         int parameter.
13902
13903         * paragraph.[Ch]: added "bool same_ids" to the constructor,
13904         made InInset() a const function, added getParFromID() function.
13905
13906         * buffer.[Ch]: added const version for inset_iterator functions,
13907         added getInsetFromID() function.
13908
13909         * BufferView2.C, BufferView_pimpl.C, text.C, text2.C, lyxfunc.C:
13910         changed undo functions for new version.
13911
13912 2001-07-05  Juergen Vigna  <jug@sad.it>
13913
13914         * paragraph_pimpl.C (Pimpl): set id_ also here (this is because some
13915         unknow mechanism does not call the proper constructor but only this
13916         one also if I request the other!?
13917
13918 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13919
13920         * BufferView_pimpl.C (resizeCurrentBuffer): init the new LyXText
13921
13922         * text2.C (LyXText): use initialization lists.
13923
13924         * lyxtext.h (Selection): initialize set_ and mark_
13925         (init): remove method
13926
13927 2001-07-05  Dekel Tsur  <dekelts@tau.ac.il>
13928
13929         * LaTeX.C (scanLogFile): Parse rerun messages from latex packages.
13930
13931 2001-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13932
13933         * screen.[Ch]: change method names to begin with lowercase
13934
13935         * BufferView_pimpl.C (updateScrollbar): simplify further and
13936         hopefully make it a bit faster.
13937
13938 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13939
13940         * ColorHandler.C (LyXColorHandler): use GUIRunTime instead of
13941         calling directly xforms functions.
13942
13943         * Painter.C (Painter):
13944         * lyx_cb.C (MenuWrite):
13945         * FontInfo.C (query): use GUIRunTime::x11Display() instead of
13946         fl_display.
13947
13948         * lyx_gui.C: remove bogus guiruntime extern declaration.
13949
13950 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13951
13952         * text2.C (redoHeightOfParagraph): comment out stuff we don't need
13953         in NEW_INSETS
13954         (redoDrawingOfParagraph): ditto
13955         (redoParagraphs): ditto
13956         (cutSelection): don't create a object for CutAndPaste use the
13957         static method directly
13958         (pasteSelection): ditto
13959
13960         * bufferview_funcs.[Ch]: move ProhibitInput and AllowInput to
13961         LyXview (+ rename)
13962
13963 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13964
13965         * modifications to some other files because of this.
13966
13967         * Makefile.am (lyx_SOURCES): add XFormsView
13968
13969         * XFormsView.[Ch]: new files
13970
13971         * LyXView.[Ch]: make LyXView a base class for the gui handling for
13972         the main window. Move the gui dependent stuff to XFormsView
13973
13974 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13975
13976         * tabular.C (GetCellInset): update cur_cell also in the row/col
13977         version of this function.
13978
13979         * lyxfunc.C: no need to include figure_form.h here.
13980
13981         * FontLoader.h:
13982         * lyxfunc.h:
13983         * lyxscreen.h:
13984         * text2.C:
13985         * lyxvc.C: no need to include forms.h here.
13986
13987 2001-06-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13988
13989         * lyxrc.C (read): change debugging channel for RC_BIND to lyxrc.
13990
13991         * lyxfunc.C (Dispatch):
13992         * Spacing.C (set):
13993         * BufferView_pimpl.C (Dispatch): use .c_str() on istringstream
13994         constructor argument.
13995
13996 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13997
13998         * paragraph.C (Paragraph): dont't clear, and just set layout.
13999         (makeSameLayout): use params's copy contructor.
14000
14001         * ParagraphParameters.[Ch] (makeSame): delete method
14002
14003 2001-06-29  John Levon  <moz@compsoc.man.ac.uk>
14004
14005         * Variables.[Ch]: fix indentation, rename set to isSet
14006
14007 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14008
14009         * lyxfunc.C (Dispatch): fix typo
14010
14011 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14012
14013         * paragraph_pimpl.C: add std:: qualifier to lower_bound and
14014         upper_bound.
14015
14016         * bufferlist.C: include assert.h for emergencyWrite().
14017
14018 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
14019
14020         * lyx_main.C: if we can't even find a readable LYX_DIR directory,
14021           give up at last (bug #425202) !
14022
14023 2001-06-27  John Levon  <moz@compsoc.man.ac.uk>
14024
14025         * lyx_gui_misc.C:
14026         * sp_form.h:
14027         * sp_form.C:
14028         * spellchecker.h:
14029         * spellchecker.C: strip spellchecker options and bring up
14030           preferences tab instead
14031
14032 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14033
14034         * BufferView_pimpl.C (Dispatch): add .c_str() to the argument of
14035         the istringstream constructor
14036
14037 2001-06-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14038
14039         * paragraph.C (getLayout): fix return value
14040
14041         * paragraph.h: do not declare getLayout as inline.
14042
14043         * lyxtext.h: remove LyXText:: qualifier to changeRegionCase
14044
14045 2001-06-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14046
14047         * lyxcursor.h (operator<): new func
14048         (operator>): new func
14049         (operator>=): new func
14050         (operator<=): new func
14051
14052         * text.C (changeCase): use selection.start and selection.end
14053         (changeRegionCase): require from to be <= to. Require par to be a
14054         valid paragraph.
14055
14056         * LaTeXFeatures.C (getFloatDefinitions): std:: qualify ostream
14057
14058 2001-06-27  Juergen Vigna  <jug@sad.it>
14059
14060         * text.C (cursorLeftOneWord): changed to return the cursor and added
14061         overlay with BufferView * parameter which calls this one.
14062         (getWord): added
14063         (selectWord): use new getWord function.
14064         (changeCase): renamed from changeWordCase as and extended to work
14065         also on selections.
14066
14067         * lyxtext.h: added enum word_location
14068
14069         * BufferView_pimpl.C (Dispatch): change function changeWordCase to
14070         changeCase as this operates now also on selections.
14071
14072 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
14073
14074         * lyxfunc.C (getStatus): support LFUN_MATH_MUTATE
14075
14076         * many files: send debug output to Debug::INFO instead of
14077         Debug::ANY.
14078
14079         * converter.C (View):
14080         (Convert):
14081         (Move): send debug output to Debug::FILES instead of console.
14082
14083 2001-06-26  The LyX Project  <lyx@rose.home.sad.it>
14084
14085         * lyxfunc.C (getStatus): use func_status
14086
14087         * func_status.h: new header, describing the results of
14088         LyXFunc::getStatus;
14089
14090         * lyxfunc.C (getStatus): add support for LFUN_MATH_VALIGN and
14091         LFUN_MATH_HALIGN.
14092
14093 2001-06-25  The LyX Project  <jug@sad.it>
14094
14095         * buffer.C (sgmlOpenTag):
14096         (sgmlCloseTag):
14097         (SimpleDocBookOnePar):  disable the depth spaces, for the moment.
14098
14099 2001-06-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14100
14101         * text2.C: remove some dead code
14102
14103         * tabular.C (GetCellInset): store the last cell checked (gotten)
14104
14105         * tabular.h: add the helper for the speedup
14106
14107         * lyxtext.h: remove some dead code
14108
14109 2001-06-26  The LyX Project  <Asger>
14110
14111         * paragraph.C: Change export to LaTeX of alignment to
14112         \begin{center} and family for better roundtrip work with reLyX.
14113
14114         * Tune the math drawing a bit.
14115
14116 2001-06-25  The LyX Project  <Asger>
14117
14118         * LColor.C (LColor): New color for math background. New color
14119         for buttons.
14120
14121 2001-06-25  The LyX Project  <jug@sad.it>
14122
14123         * lyxfunc.C (MenuNew): remove extra check for .lyx file
14124
14125         * lyxfunc.C (Open):
14126         * bufferlist.C (newFile): do not restrict to files ending with
14127         .lyx
14128
14129         * BufferView_pimpl.C (MenuInsertLyXFile):
14130
14131 2001-06-24  The LyX Project  <jug@sad.it>
14132
14133         * lyxlex_pimpl.C (compare_tags): use compare_ascii_no_case instead
14134         of compare_no_case
14135
14136 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14137
14138         * lyxtext.h: rename most methods to begin with a small char.
14139         Lots of changes because of this.
14140
14141         * paragraph.C (Paragraph): do not call fitToSize
14142         (erase): call Pimpl::erase
14143         (insertChar): call Pimpl::insertChar
14144         (insertInset): call Pipl::insertInset
14145         (breakParagraph): do not call fitToSize
14146         (breakParagraphConservative): do not call fitToSize
14147         (fitToSize): remove method
14148
14149         * buffer.C (parseSingleLyXformat2Token): do not call fitToSize
14150
14151 2001-06-24  The LyX Project  <Asger>
14152
14153         * Fix Qt compilation^2
14154
14155 2001-06-24  The LyX Project  <jug@sad.it>
14156
14157         * paragraph.[Ch] (outerHook): new method. mostly equivalent to
14158         depthHook(getDepth()-1).
14159
14160         * paragraph.h:
14161         * ParagraphParameters.h:
14162         * ParameterStruct.h: change type of depth to unsigned int ==
14163         depth_type. Many adaptations to other files before of that.
14164
14165 2001-06-24  The LyX Project  <Asger>
14166
14167         * Fix Qt compilation.
14168
14169 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14170
14171         * paragraph.h: renamed several methods to begin with small letter.
14172         several changes to many parts of the code because of this.
14173
14174 2001-06-23  The LyX Project  <jug@sad.it>
14175
14176         * text2.C (InsertStringAsLines): renamed from InsertStringA;
14177         rewritten to discard all double spaces when KeepEmpty is off
14178         (InsertStringAsParagraphs): renamed from InsertStringB; rewritten
14179         to only handle newlines but not fiddle with spaces and friends.
14180
14181         * lyxfunc.C (MenuNew): when doing 'new from template', use
14182         template_path as default directory
14183
14184 2001-06-23  The LyX Project  <Asger>
14185
14186         * Clean-up of header file includes all over
14187         * paragraph.h: Move some of the stuff into paragraph_pimpl.h
14188
14189 2001-06-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14190
14191         * paragraph.h: renamed from lyxparagraph.h
14192
14193 2001-06-23  Asger  <lyx@violet.home.sad.it>
14194
14195         * Buffer.h: Removed Buffer::resize
14196         * BufferList.h: Removed BufferList::resize
14197         * LyXView.h: Added LyXView::resize. This way, we will only reflow
14198         the document lazily when we change the width, or the font settings.
14199
14200 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
14201
14202         * lyxfunc.C: silently ignore empty dispatches from the minibuffer
14203
14204 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
14205
14206         * buffer.h: remove out of date comment
14207
14208 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
14209
14210         * lyxscreen.h:
14211         * screen.C: fix "theoretical" GC leak
14212
14213 2001-06-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14214
14215         * LaTeX.C (scanAuxFile):
14216         (deplog): remove trailing \r when reading stream (useful under
14217         win32)
14218
14219 2001-06-15  Angus Leeming  <a.leeming@ic.ac.uk>
14220
14221         * BufferView_pimpl.C (fitCursor): emit a signal updateParagraph.
14222         (resizeCurrentBuffer): have functions BufferView::theLockingInset()
14223         and BufferView::theLockingInset(Inset*), so should use them and not
14224         access bv_->text->the_locking_inset directly.
14225
14226         * lyxfunc.C (Dispatch): cosmetic name change of three signals.
14227
14228 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
14229
14230         * Makefile.am:
14231         * tex-defs.h: remove old unused file
14232
14233 2001-06-15  John Levon  <moz@compsoc.man.ac.uk>
14234
14235         * BufferView_pimpl.C: fix typo, remove minibuffer message
14236           when buffer has loaded
14237
14238 2001-06-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14239
14240         * lyxfunc.C (Dispatch): use stringstream
14241         (MenuNew): use stringstream
14242         (Open): use stringstream
14243
14244         * importer.C (Import): use stringstream
14245
14246         * bufferview_funcs.C (CurrentState): use stringstream
14247
14248         * LaTeX.C (run): use stringstream
14249
14250         * BufferView_pimpl.C (savePosition): use stringstream
14251         (restorePosition): use stringstream
14252         (MenuInsertLyXFile): use stringstream
14253
14254 2001-06-14  Angus Leeming  <a.leeming@ic.ac.uk>
14255
14256         * BufferView.C:
14257         * Bullet.C:
14258         * ColorHandler.C:
14259         * FontInfo.C:
14260         * FontLoader.C:
14261         * LColor.C:
14262         * LaTeXFeatures.C:
14263         * Painter.C:
14264         * gettext.C:
14265         * lyx_gui_misc.C:
14266         * lyxserver.C:
14267         * vspace.C: removed // -*- C++ -*- as first line.
14268
14269         * lyxfind.h:
14270         * version.h: added // -*- C++ -*- as first line.
14271
14272 2001-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14273
14274         * lyxfunc.C (getStatus): support LFUN_READ_ONLY_TOGGLE
14275
14276         * text2.C (SetSelectionOverString): do not test str[i]==0 for end
14277         of string
14278
14279 2001-06-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14280
14281         * buffer.C (parseSingleLyXformat2Token): fix compatability reading
14282         of floats.
14283
14284 2001-06-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14285
14286         * gettext.C: include LString.h even when --disable-nls is on.
14287
14288 2001-06-12  Angus Leeming  <a.leeming@ic.ac.uk>
14289
14290         * converter.h (Get): changed argument type from int to
14291         FormatList::size_type to avoid unnecessary conversion.
14292
14293         * bufferview_funcs.C (ToggleAndShow): check state of LyXText pointer
14294         before using it.
14295
14296 2001-06-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14297
14298         * gettext.h: include LString.h even when --disable-nls is on.
14299
14300 2001-06-07  Juergen Vigna  <jug@sad.it>
14301
14302         * text.C (BreakAgain): subst spaces with tabs.
14303
14304         * paragraph.C (deleteInsetsLyXText): set recursive on deleteLyXText.
14305         (resizeInsetsLyXText): set force on resizeLyXText.
14306
14307 2001-06-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14308
14309         * gettext.h (gettext_init):
14310         (locale_init): use a real definition instead of a macro
14311
14312 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
14313
14314         * Bufferview_pimpl.C:
14315         * LColor.h:
14316         * LColor.C: further lcolor tidies
14317
14318 2001-06-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14319
14320         * BufferView_pimpl.C (updateScrollbar): simplify.
14321
14322         * BufferView2.C: don't include insets/insetinfo.h, change
14323         prototype for insertInset and call the Pimpl version. let
14324         updateInset call Pimpl version.
14325
14326         * BufferView.h: move inset_slept to BufferView::Pimpl, move
14327         gotoInset to BufferView::Pimpl
14328
14329 2001-06-01  Juergen Vigna  <jug@sad.it>
14330
14331         * lyxfunc.C (Dispatch): LFUN_PREFIX don't call the update if we're
14332         inside a LockingInset (is the update needed at all?).
14333
14334 2001-05-31  Juergen Vigna  <jug@sad.it>
14335
14336         * BufferView_pimpl.C (Dispatch): we need a new instanze of cursor
14337         here not the old one otherwise how should we compare it afterwards
14338         if it's the same!
14339
14340 2001-06-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14341
14342         * lyxfont.C:
14343         * tabular.C:
14344         * tabular-old.C:
14345         * FontInfo.C: bring C functions into global namespace when
14346         necessary
14347
14348 2001-05-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14349
14350         * LString.h: make sure config.h has been loaded before LString.h.
14351
14352         * lyxlex_pimpl.C (EatLine): comment out annoying debug messages
14353         (one for each char read by EatLine!).
14354
14355         * lyx_main.C (init): constify lyxdir. Lowercase the name of some
14356         variables.
14357
14358 2001-06-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14359
14360         * paragraph.C (BreakParagraph): set the inset_owner in the new par
14361         to the same as the par we break from
14362
14363 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14364
14365         * commandtags.h: add LFUN_INSET_WIDE_FLOAT
14366
14367         * MenuBackend.C (expand): also create menu entries for wide
14368         versions of the floats.
14369
14370         * LyXAction.C (init): add entry for LFUN_INSET_WIDE_FLOAT
14371
14372         * BufferView_pimpl.C (Dispatch): implement LFUN_INSET_WIDE_FLOAT
14373
14374         * Makefile.am (lyx_DEPENDENCIES): adjust for change in
14375         frontends/Makefile.am
14376
14377         * text2.C: adjust
14378         * text.C: adjust
14379
14380
14381         * tabular.C (getTokenValue): add std::
14382
14383         * tabular-old.C (getTokenValue): add std::
14384         (getTokenValue): ditto
14385         (getTokenValue): ditto
14386
14387         * screen.C (ToggleSelection): adjust
14388
14389         * lyxtext.h: put selection cursors inside a Selection struct.
14390
14391         * lyxfunc.C (moveCursorUpdate): adjust
14392
14393         * lyxfont.C (latexWriteStartChanges): add std::
14394
14395         * lyxfind.C: adjust
14396
14397         * font.h: delete with(char const *, LyXFont const &)
14398
14399         * buffer.C (parseSingleLyXformat2Token): use contains instead of strstr
14400
14401         * FontInfo.C (getFontname): add std::
14402
14403         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
14404         (workAreaButtonPress): adjust
14405         (tripleClick): adjust
14406         (update): adjust
14407         (moveCursorUpdate): adjust
14408         (Dispatch): adjust
14409
14410         * BufferView2.C (gotoInset): adjust
14411
14412 2001-05-30  Juergen Vigna  <jug@sad.it>
14413
14414         * spellchecker.C (USE_ORIGINAL_MANAGER_FUNCS): as it seems only I use
14415         to check pspell I add this as default as I now have new pspell
14416         libraries and they seem to use this.
14417
14418 2001-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14419
14420         * text2.C (CutSelection): make the cursor valid before the call to
14421         ClearSelection.
14422
14423 2001-05-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14424
14425         * kbsequence.C (parse): de-uglify a bit the parsing code, which
14426         relied on 0 terminated strings and other horrors. Bug found due to
14427         the new assert in lyxstring!
14428
14429         * lyx_main.C (defaultKeyBindings): add bindings the cursor-related
14430         KP_ keys.
14431
14432 2001-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14433
14434         * lyx_main.C (defaultKeyBindings): move self-insert KP_ bindings
14435         to latinkeys.bind.
14436
14437         * lyxfunc.C (processKeySym): change method of getting to the
14438         self-insert char.
14439
14440         * BufferView(2).[Ch]: move hfill, protectedBlank, newline,
14441         menuSeparator, endOfSentenceDot, ldots, hypenationPoint and menuUndo
14442         * BufferView_pimpl.[Ch]: here as private methods.
14443
14444 2001-05-28  Juergen Vigna  <jug@sad.it>
14445
14446         * text.C (SetHeightOfRow): added the update() call again as it is
14447         needed to initialize inset dimensions!
14448
14449 2001-05-16  Juergen Vigna  <jug@sad.it>
14450
14451         * text2.C (SetCharFont): Add new function with BufferView * and
14452         bool toggleall parameters for setting insets internal fonts.
14453         (SetFont): Freeze the undo as we may change fonts in Insets and
14454         all this change should be inside only one Undo!
14455
14456         * bufferview_funcs.C (ToggleAndShow): fixed this functions for
14457         setting font's in insets as for them we have the SetFont function!
14458
14459 2001-05-15  Juergen Vigna  <jug@sad.it>
14460
14461         * text2.C (ClearSelection): to be sure we REALLY don't have any
14462         selection anymore!
14463
14464         * tabular.C (TeXCellPreamble): fixed the left border problem for
14465         multicolumn cells.
14466
14467 2001-05-27  Dekel Tsur  <dekelts@tau.ac.il>
14468
14469         * LaTeX.C (deplog): Make sure that the main .tex file is in the
14470         dependancy file
14471
14472 2001-05-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14473
14474         * lyx_main.C (defaultKeyBindings): set KP_enter to point at
14475         LFUN_BREAKPARAGRAPH.
14476
14477         * LyXAction.C (init): remove external name for LFUN_LAYOUTNO, set
14478         help test to "internal only", similar for LFUN_INSERT_URL
14479
14480         * BufferView_pimpl.C (Dispatch::LFUN_QUOTE): change it to to the insertcorrectQuote.
14481         (Dispatch::LFUN_SELFINSERT): fix to handle math greek,
14482         auto_region_delete and deadkeys.
14483
14484 2001-05-22  John Levon  <moz@compsoc.man.ac.uk>
14485
14486         * LColor.h:
14487         * LColor.C: remove some dead entries, tidy a little
14488
14489 2001-05-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14490
14491         * lyxfunc.C (processKeySym): comment the Escape handling, remove
14492         commented code.
14493         (Dispatch): implement LFUN_ESCAPE
14494
14495         * commandtags.h: add LFUN_ESCAPE
14496
14497         * LyXAction.C (init): add entry for LFUN_ESCAPE
14498
14499         * BufferView_pimpl.C (Dispatch): adjust for open_new_inset move.
14500         Remove commented code.
14501         (insertNote): moved here
14502         (open_new_inset): moved here
14503
14504         * BufferView[2].[Ch]: move insertNote and open_new_inset to
14505         BufferView_pimpl
14506
14507 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14508
14509         * kbmap.C (findbinding): clean it up and make it work correctly.
14510
14511         * lyx_main.C (init): do not pass argc and argv as parameters
14512
14513 2001-05-16  Ruurd Reitsma  <r.a.reitsma@wbmt.tudelft.nl>
14514
14515         * buffer.C: fix path for OS/2 & Win32
14516
14517         * lyx_gui.C:
14518         * lyx_main:
14519         * lyx_main.C: Added os:: class.
14520
14521         * os2_defines.h: update
14522
14523 2001-05-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14524
14525         * lyxfunc.[Ch] (processKeySym): return void. Handle unknown actions
14526         better by trying again with reduced state.
14527
14528 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14529
14530         * lyxrc.C (read): print error about invalid key sequence only when
14531         debugging (because not all latinX keysyms are known to some X
14532         servers)
14533
14534         * kbsequence.C (getiso): add a few std:: qualifiers
14535         (getiso): comment out extra return statement.
14536
14537 2001-05-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14538
14539         * BufferView_pimpl.C (Dispatch): comment out the old "default" key
14540         handling.
14541         (Dispatch): enhance the accent inset a bit. (not perfect)
14542
14543 2001-05-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14544
14545         * buffer.C (makeLaTeXFile): use stringstream on language_optons.
14546
14547 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14548
14549         * bufferlist.C (emergencyWrite): fix assert() call
14550
14551 2001-05-04  Kayvan A. Sylvan  <kayvan@sylvan.com>
14552
14553         * text.C (InsertChar): Added trivial patch to only send the "you
14554         can not do multiple spaces this way" message once during a
14555         session.
14556
14557 2001-05-08  Baruch Even  <baruch@lyx.org>
14558
14559         * Makefile.am: Changed order of libraries to get LyX to link properly
14560         with the gnome frontend.
14561
14562 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14563
14564         * LaTeXFeatures.h: add a std:: qualifier
14565
14566 2001-05-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14567
14568         * paragraph.C (String): use stringstream
14569
14570 2001-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14571
14572         * paragraph.C (writeFile): remove footflag arg
14573
14574         * buffer.C (makeLaTeXFile): use stringstream
14575         (latexParagraphs): remove footnot gurba
14576
14577         * LaTeXFeatures.C (getPackages): use stringstream
14578         (getMacros): likewise
14579         (getTClassPreamble): likewise
14580         (getFloatDefinitions): new method
14581
14582         * paragraph.C (writeFile): reindent
14583         (Erase): reindent
14584
14585         * WorkArea.h: revert the xpos + etc changes.
14586
14587         * CutAndPaste.C (SwitchLayoutsBetweenClasses): constify name and s
14588
14589         * lyxparagraph.[Ch]: add copy constructor, remove Clone
14590
14591         * CutAndPaste.C (copySelection): use LyXParagraph copy constructor
14592         (pasteSelection): likewise
14593         * text2.C (CreateUndo): likewise
14594
14595 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14596
14597         * minibuffer.C (peek_event): temporarily reduce the functionality
14598         of the minibuffer (to allow args on lfuns)
14599
14600         * commandtags.h: remove LFUN_LOA_INSERT, LFUN_LOF_INSERT,
14601         LFUN_LOT_INSERT. add LFUN_FLOAT_LIST
14602
14603         * buffer.C (readInset): add compability reading of old float
14604         lists, add reading of new style float list.
14605         (readInset): avoid reevaluation of inscmd.getCmdName()
14606         (getLists): reindent
14607
14608         * MenuBackend.C (MenuItem): implement parsing of
14609         md_floatlistinsert and md_floatinsert.
14610         (expand::LastFiles): move initalizaton of iterators out of loop,
14611         avoid reevaluation.
14612         (expand::Documents): introduce typdedef vector<string> Strings,
14613         and use it.
14614         (expand::ExportFormats): introduce typedef vector<Format const *>
14615         Formats, and use it.
14616         (expand): implement FloatListInsert and FloatInsert.
14617
14618         * LyXAction.C (init): remove entries for LFUN_LOA_INSERT,
14619         LFUN_LOA_VIEW, LFUN_LOF_INSERT, LFUN_LOFVIEW, LFUN_LOT_INSERT,
14620         LFUN_LOTVIEW. Add entry for LFUN_FLOAT_LIST
14621
14622         * BufferView_pimpl.C (Dispatch::LFUN_TOC_INSERT): remvoe the float
14623         handling.
14624         (Dispatch::LFUN_FLOAT_LIST): implement
14625
14626 2001-04-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
14627
14628         * LaTeX.C (run): Fix problem with --export code.
14629
14630 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
14631
14632         * BufferView.[Ch] (workarea): removed.
14633         (getClipboard) new method; wrapper for workarea()->getClipboard()
14634
14635         * ToolbarDefaults.C (read): removed final lex.next() command; it's a
14636         bug.
14637
14638         * WorkArea.h (width, height, xpos, ypos): These methods all
14639         returned the dimensions of the work_area sub-area of WorkArea,
14640         resulting in a position error if the WorkArea were resized. Now
14641         return the dimensions of the entire WorkArea.
14642
14643         * lyx_main.C (ReadUIFile): don't print out spurious warnings.
14644
14645 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14646
14647         * LaTeX.C (deplog): correct the syntax of regex reg1
14648
14649 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14650
14651         * undo.C: remove !NEW_INSETS cruft
14652
14653 2001-04-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14654
14655         * text2.C: remove !NEW_INSETS cruft
14656
14657         * text.C: remove !NEW_INSETS cruft
14658
14659         * tabular.C: remove !NEW_INSETS cruft
14660
14661         * spellchecker.C: remove !NEW_INSETS cruft
14662
14663         * lyxtext.h: remove !NEW_INSETS cruft
14664
14665         * lyxlex_pimpl.C: remove !NEW_INSETS cruft
14666
14667         * lyxfunc.C: remove !NEW_INSETS cruft
14668
14669         * lyxfind.C: remove !NEW_INSETS cruft
14670
14671         * lyx_cb.C: remove !NEW_INSETS cruft
14672
14673         * figureForm.C: remove  !NEW_INSETS cruft
14674
14675         * bufferview_funcs.[Ch]: remove !NEW_INSETS cruft
14676
14677         * buffer.[Ch]: remove !NEW_INSETS cruft
14678
14679         * ToolbarDefaults.C: remove !NEW_INSETS cruft
14680
14681         * CutAndPaste.C: remove !NEW_INSETS cruft
14682
14683         * BufferView_pimpl.C: remove !NEW_INSETS cruft
14684
14685         * BufferView2.C: remove !NEW_INSETS cruft
14686
14687         * BufferView.h: remove !NEW_INSETS cruft
14688
14689 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14690
14691         * Lsstream.h: include LString.h before the sstream headers to
14692         fix problem with gcc 2.95.3 and lyxstring
14693
14694 2001-05-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14695
14696         * lyx_main.C: add using directives when needed for C functions
14697         declared in std:: namespace.
14698
14699 2001-04-27  Juergen Vigna  <jug@sad.it>
14700
14701         * text.C (Fill): return 20 instead of 0 if paper_width < 0 (endless)
14702         (SetHeightOfRow): comment out the update call should not be needed!
14703
14704 2001-04-13  Juergen Vigna  <jug@sad.it>
14705
14706         * tabular.C (GetAdditionalHeight): changed parameter from cell to row.
14707         (LyXTabular): tried to minimize operator= operations (and realized
14708         hopfully Lars wish).
14709
14710 2001-04-27  Juergen Vigna  <jug@sad.it>
14711
14712         * spellchecker.C (sc_check_word): fixed Assert to lyx::Assert.
14713
14714 2001-04-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14715
14716         * lyxfunc.C (Dispatch): hack to make listof algorithm work
14717
14718         * buffer.C (readInset): hack to make listof algorithm work
14719
14720         * BufferView_pimpl.C: hack to make listof algorithm work
14721
14722 2001-04-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14723
14724         * LyXAction.C: removed all !NEW_INSETS cruft
14725         (init): moved lfun_item in method
14726
14727         * lyxparagraph.[Ch]: removed all !NEW_INSETS cruft
14728
14729 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
14730
14731         * BufferView2.C (theLockingInset): white space.
14732
14733 2001-04-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14734
14735         * minibuffer.C: include <iostream>
14736
14737         * BufferView_pimpl.C: implement LFUN_TRANSPOSE_CHARS
14738
14739         * LyXAction.C (init): add LFUN_TRANSPOSE_CHARS
14740
14741         * commandtags.h: add LFUN_TRANSPOSE_CHARS
14742
14743         * text.[Ch] (TransposeChars): new method
14744
14745 2001-04-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14746
14747         * call message directly through LyXView instead of through LyXFunc
14748         * BufferView2.C: adjust
14749         * BufferView_pimpl.C: adjust
14750         * FontLoader.C: adjust
14751         * buffer.C: adjust
14752         * bufferview_funcs.C: adjust
14753         * converter.C: adjust
14754         * figureForm.C: adjust
14755         * importer.C: adjust
14756         * lyx_cb.C: adjust
14757         * lyx_gui_misc.C: adjust
14758         * lyxfunc.C: adjust
14759         * lyxvc.C: adjust
14760         * text2.C: adjust
14761         + more files in subdirs
14762
14763         * lyxparagraph.h (size): move up int file
14764         (GetLayout): ditto
14765
14766         * adjust all uses of Assert to lyx::Assert.
14767
14768         * BufferView2.C (ChangeCitationsIfUnique): adjust for
14769         lyxfunctional in namespace lyx
14770         * layout.C (hasLayout): ditto
14771         (GetLayout): ditto
14772         (GetLayout): ditto
14773         (delete_layout): ditto
14774         (NumberOfClass): ditto
14775         * converter.C (GetFormat): ditto
14776         (GetNumber): ditto
14777         (Add): ditto
14778         (Delete): ditto
14779         (SetViewer): ditto
14780         * bufferlist.C (getFileNames): ditto
14781         (emergencyWriteAll): ditto
14782         (exists): ditto
14783         (getBuffer): ditto
14784         * MenuBackend.C (hasSubmenu): ditto
14785         (hasMenu): ditto
14786         (getMenu): ditto
14787         * BufferView_pimpl.C (getInsetByCode): ditto
14788
14789 2001-04-18  Juergen Vigna  <jug@sad.it>
14790
14791         * vspace.C (asLatexString): fixed the 100% problem.
14792
14793 2001-04-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14794
14795         * lyxfunc.C (Dispatch):
14796         * minibuffer.C:
14797         * minibuffer.h: add a few std:: qualifiers
14798
14799 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14800
14801         * minibuffer.[Ch]: reimplement so that commands is initiated and
14802         run from lyxfunc, simplified som handling, and made the completion
14803         and history code for complete. wip.
14804
14805         * lyxfunc.C (processKeySym): call message
14806         (miniDispatch): new temporary method
14807         (LFUN_EXEC_COMMAND): reimplement for new minibuffer
14808         (LFUN_MESSAGE): implement
14809         (LFUN_MESSAGE_PUSH): implement
14810         (LFUN_MESSAGE_POP): implement
14811         (initMiniBuffer): the initial/defualt minibuffer message.
14812
14813         * lyxfont.[Ch]: inline some more getters
14814
14815         * lyx_gui_misc.C (WriteAlert): use LFUN_MESSAGE
14816
14817         * lyx_gui_misc.[Ch] (WriteStatus): remove method
14818
14819         * lyx_cb.[Ch] (ShowMessage): remove delay arg, use LFUN_MESSAGE
14820         (AutoSave): use LFUN_MESSAGE
14821         (Reconfigure): ditto
14822
14823         * importer.C (Import): constify som local vars, use LFUN_MESSAGE
14824
14825         * figureForm.C: use LFUN_MESSAGE
14826
14827         * converter.C (runLaTeX): use LFUN_MESSAGE
14828
14829         * bufferview_funcs.C: use LFUN_MESSAGE
14830         (Melt): ditto
14831         (changeDepth): ditto
14832
14833         * bufferparams.h: use boost::
14834
14835         * bufferlist.h: inherit privately from noncopyable
14836
14837         * bufferlist.C (loadLyXFile): remove some commented code.
14838
14839         * buffer.C (runChktex): use LFUN_MESSAGE
14840
14841         * ShareContainer.h: inherit privately from noncopyable
14842
14843         * ParagraphParameters.[hC] (depth): inline it.
14844
14845         * LyXView.[Ch] (LyXView): connect the minibuffer signals to lyxfunc
14846         methods.
14847         (message): new method
14848         (messagePush): ditto
14849         (messagePop): ditto
14850         (show): init minibuffer
14851         (showState): direct call
14852
14853         * LaTeX.[Ch]: inherit privately from noncopyable
14854         (run): change second arg to LyXFunc*, use LFUN_MESSAGE
14855         instead of WriteStatus.
14856
14857         * FontLoader.C (doLoad): use LFUN_MESSAGE_PUSH and LFUN_MESSAGE_POP
14858
14859         * BufferView_pimpl.C (buffer): don't init minibuffer
14860         (workAreaButtonPress): use LFUN_MESSAGE
14861         (workAreaButtonRelease): ditto
14862         (savePosition): ditto
14863         (restorePosition): ditto
14864         (MenuInsertLyXFile): ditto
14865         (workAreaExpose): don't init minibuffer
14866         (update): remove commented code, simplify
14867
14868         * BufferView2.C (openStuff): use LFUN_MESSAGE
14869         (toggleFloat): ditto
14870         (menuUndo): ditto
14871         (menuRedo): ditto
14872         (copyEnvironment): ditto
14873         (pasteEnvironment): ditto
14874         (copy): ditto
14875         (cut): ditto
14876         (paste): ditto
14877         (gotoInset): ditto
14878         (updateInset): remove some commented code
14879
14880         * lastfiles.h: inherit privately from noncopyable
14881         * layout.h: ditto
14882         * lyx_gui.h: ditto
14883         * lyx_main.h: ditto
14884         * lyxlex.h: ditto
14885         * lyxlex_pimpl.h: ditto
14886
14887         * commandtags.h: comment out LFUN_FOOTMELT, LFUN_MARGINMELT,
14888         LFUN_FLOATSOPERATE, LFUN_MELT, add LFUN_MESSAGE,
14889         LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
14890
14891         * LyXAction.h: inherit privately from noncopyable, add methods
14892         func_begin, func_end, returning iterators to the func map.
14893
14894         * LyXAction.C (init): comment out LFUN_FLOATSOPERATE, LFUN_MELT,
14895         add entries for LFUN_MESSAGE, LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
14896         (func_begin): new method
14897         (func_end): new method
14898
14899         * CutAndPaste.C (cutSelection): split into two versons (NEW_INSETS
14900         and not)
14901         (copySelection): ditto
14902         (pasteSelection): ditto
14903
14904         * BufferView.C: whitespace change
14905         * BufferView.h: inherit privately from noncopyable
14906
14907 2001-04-16  Allan Rae  <rae@lyx.org>
14908
14909         * tabular-old.C (l_getline):
14910         * spellchecker.C (sc_check_word):
14911         * lyxfunc.C (Dispatch): #warning triggers an error on Sun CC 6.0 as
14912         an unrecognised preprocessor directive.  So ensure they're wrapped.
14913
14914 2001-04-14  Dekel Tsur  <dekelts@tau.ac.il>
14915
14916         * src/exporter.C (Export): Give an error message when path to file
14917         contains spaces.
14918
14919 2001-04-12  Dekel Tsur  <dekelts@tau.ac.il>
14920
14921         * LaTeX.C (deplog): Always check that foundfile exists.
14922
14923 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14924
14925         * lyx_main.h:
14926         * lyx_main.C (ReadLanguagesFile): fix weird typo in method name
14927
14928 2001-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14929
14930         * tabular.[Ch] (getLabelList): implement new method
14931
14932         * minibuffer.h: comment ouf setTiimer
14933
14934         * minibuffer.C (ExecutingCB): constify res
14935         (peek_event): constify s
14936         (Set): constify ntext
14937         (Init): constify nicename
14938
14939         * BufferView2.C (updateInset): comment out Minibuffer::setTimer
14940
14941         * BufferView_pimpl.C (update): comment out Minibuffer::setTimer
14942         (savePosition): use two params to Minibuffer::Set
14943         (restorePosition): ditto
14944
14945 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14946
14947         * lyx_main.C: include language.h
14948
14949         * Makefile.am (lyx_main.o): add language.h
14950
14951 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14952
14953         * exporter.C:
14954         * paragraph.C:
14955         * screen.C:
14956         * tabular.C:
14957         * CutAndPaste.C: include gettext.h
14958
14959         * lyxfont.h: remove old hack with ON and OFF.
14960
14961         * lyxparagraph.h:
14962         * lyxfont.h: do not include language.h...
14963
14964         * BufferView2.C:
14965         * LaTeXFeatures.C:
14966         * Painter.C:
14967         * bufferview_funcs.C:
14968         * font.C:
14969         * lyxfont.C:
14970         * text.C:
14971         * text2.C:
14972         * trans_mgr.C:
14973         * paragraph.C: ... but do it here instead
14974
14975 2001-04-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14976
14977         * text2.C (SetLayout): split in NEW_INSETS and non NEW_INSETS version
14978
14979         * tabular.C: small reformat
14980
14981         * paragraph.C (GetFontSettings): split in NEW_INSETS and non
14982         NEW_INSETS version
14983         (GetChar): ditto
14984         (BreakParagraph): ditto
14985         (SetOnlyLayout): ditto
14986         (SetLayout): ditto
14987
14988         * lyxparagraph.h: add definitions for SetLayout and SetOnlyLayout
14989         with one arg less.
14990
14991         * lastfiles.C: removed most using decl, add std:: where needed
14992
14993         * buffer.C: ws changes
14994
14995         * MenuBackend.C (class compare_format): put into anon namespace
14996         (expand): constify label, names, action, action2
14997         (expand):
14998
14999         * text.C (SingleWidth): constify font
15000         (IsBoundary): constify rtl2
15001         (GetVisibleRow): constify ww
15002
15003         * LaTeX.C (deplog): constify logfile
15004
15005         * BufferView_pimpl.C (checkInsetHit): constify width, inset_x,
15006         start_x, end_x
15007         (workAreaExpose): constify widthChange, heightChange
15008
15009         * lyxrow.C (par): moved
15010         (height): moved
15011         (next): moved
15012         * lyxrow.h: as inlines here
15013
15014         * lyxfont.h (shape): moved from lyxfont.C
15015         (emph): moved from lyxfont.C
15016
15017         * lyxfont.C (LyXFont): use initialization list for all
15018         constructors
15019         (shape): move to lyxfont.h as inline
15020         (emph): move to lyxfont.h as inline
15021
15022
15023 2001-04-04  Juergen Vigna  <jug@sad.it>
15024
15025         * vspace.C: had to include stdio.h for use of sscanf
15026
15027 2001-04-03  Angus Leeming  <a.leeming@ic.ac.uk>
15028
15029         * BufferView.h:
15030         * BufferView_pimpl.h: remove xforms cruft. Both classes are
15031         independent of xforms.
15032
15033 2001-04-02  Juergen Vigna  <jug@sad.it>
15034
15035         * spellchecker.C: fixed namespace placing!
15036
15037 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
15038
15039         * lyxfunc.C (Dispatch): prevent crash in LFUN_GOTO_PARAGRAPH when
15040         the LyXParagraph * is 0.
15041
15042 2001-03-29  Juergen Vigna  <jug@sad.it>
15043
15044         * vspace.C: added support for %, c%, p%, l%.
15045         (stringFromUnit): added helper function.
15046         (asLatexString): changed to give right results for the %-values.
15047
15048         * buffer.C: convert the widthp in a width%.
15049
15050 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
15051
15052         * Makefile.am: removed form1.[Ch], lyx.[Ch] and added figure_form.[Ch],
15053         figureForm.[Ch].
15054
15055         * figureForm.[Ch]: stripped the FD_from_figure manipulation
15056         code out of lux_cb.[Ch], ready for its (imminent?) removal.
15057
15058         * lyx_cb.[Ch]: see above.
15059
15060         * figure_form.[Ch]: fdesign generated code, combining lyx.[Ch] and
15061         form1.[Ch].
15062
15063         * form1.[Ch]:
15064         * lyx.[Ch]: replaced by figure_form.[Ch].
15065
15066         * lyx_gui.C:
15067         * lyx_gui_misc.C:
15068         * lyxfunc.C: changed headers associated with above changes.
15069
15070 2001-03-27  Juergen Vigna  <jug@sad.it>
15071
15072         * BufferView_pimpl.C: set the temporary cursor right!
15073
15074 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
15075
15076         * BufferView_pimpl.C (Dispatch): corrected spelling givven -> given.
15077
15078 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
15079
15080         * LString.h: removed "using std::getline"!
15081
15082         * BufferView_pimpl.C (Dispatch): changes due to changes in
15083         InsetInclude::Params.
15084
15085         * buffer.C (tag_name): removed redundant break statements as they were
15086         producing lots of warnings with my compiler.
15087
15088 2001-03-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15089
15090         * LString.h: add "using std::getline" when using the real <string>.
15091
15092 2001-03-23  José Abílio Matos  <jamatos@fep.up.pt>
15093
15094         * buffer.C: removed bitset usage.
15095         PAR_TAG moved to an anonymous name space.
15096         (tag_name): new funtion, also in the anonymous namespace.
15097         (SimpleLinuxDocOnePar): replaced all the references to bitset by PAR_TAG.
15098         (makeDocBookFile): clean code. Completed transition from string arrays
15099         to string vectors.
15100         (SimpleDocBookOnePar): code clean.
15101
15102 2001-03-23  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15103
15104         * tabular.C: add some comments.
15105
15106 2001-03-22  Juergen Vigna  <jug@sad.it>
15107
15108         * buffer.C (parseSingleLyXformat2Token): redone the minipage
15109         compatibility read a bit and fixed bug with minipage in different
15110         depth.
15111
15112 2001-03-21  José Abílio Matos  <jamatos@fep.up.pt>
15113
15114         * buffer.C (pop_tag): removed.
15115         (push_tag): removed.
15116         (makeLinuxDocFile): cleaner C++ code, declarations near usage point,
15117         array replaced with vector. Added support for CDATA sections.
15118         (SimpleLinuxDocOnePar): ditto. Paragraph tags are correctly handled,
15119         at any nest level.
15120         (makeDocBookFile): XML conformant declaration of CDATA section,
15121         fixed bug related to <emphasis> in the first paragraph char.
15122         (sgmlOpenTag): exclude empty tags.
15123         (sgmlCloseTag): ditto.
15124
15125         * buffer.h (pop_tag): removed.
15126         (push_tag): removed.
15127
15128 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
15129
15130         * language.h (Languages): added size_type and size().
15131
15132 2001-03-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15133
15134         * buffer.C (parseSingleLyXformat2Token): Try to give a bit better
15135         response on compability reading of minipages. One probliem is that
15136         the old usage of minipages was «flertydig»
15137
15138         * several files here and in subdirs: don't use static at file
15139         scope use anon namespaces instead.
15140
15141 2001-03-19  Kayvan A. Sylvan <kayvan@sylvan.com>
15142
15143         * paragraph.C (TeXEnvironment): Added \n to \end{environment}
15144         LaTeX output. This is necessary for Literate document
15145         processing.
15146
15147 2001-03-17  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15148
15149         * buffer.C: insert hfill when needed.
15150
15151         * tabular.C (l_getline): use string::erase, small whitespace change.
15152
15153         * BufferView_pimpl.C: try the anon namespace.
15154         * WorkArea.C: ditto
15155
15156 2001-03-16  Juergen Vigna  <jug@sad.it>
15157
15158         * BufferView_pimpl.C (workAreaButtonRelease): return only on button==2
15159         otherwise it won't open options-dialogs.
15160
15161         * buffer.C: honor pextraWidth(p) on converting minipages.
15162
15163         * tabular.C (l_getline): changed the functions to strip trailing \r.
15164
15165 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
15166
15167         * BufferView_pimpl.C:
15168         * minibuffer..C: added "using SigC::slot" declaration.
15169
15170 2001-03-16  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15171
15172         * lyxlex_pimpl.h: noncopyable is in namespace boost.
15173
15174         * text2.C: ditto
15175
15176         * text.C: ditto
15177
15178         * paragraph.C: ditto
15179
15180         * lyxtext.h: NO_PEXTRA
15181
15182         * buffer.C: NO_PEXTRA_REALLY, NO_PEXTRA
15183
15184         * ParagraphParameters.C (clear): NO_PEXTRA_REALLY
15185         * ParameterStruct.h: ditto
15186         * ParagraphParameters.h: ditto
15187         * lyxparagraph.h: ditto
15188
15189 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15190
15191         * buffer.C: add compability for minipage alignment.
15192         (latexParagraphs): remove unwanted pextra check.
15193
15194         * several files: remove CXX_WORKING_NAMESPACES
15195
15196         * buffer.C (pop_tag): tie is in namespace boost
15197
15198         * BufferView.h: noncopyable is in namespace boost
15199         * lyxlex.h: ditto
15200         * lyx_main.h: ditto
15201         * lyx_gui.h: ditto
15202         * layout.h: ditto
15203         * lastfiles.h: ditto
15204         * bufferlist.h: ditto
15205         * ShareContainer.h: ditto
15206         * LyXView.h: ditto
15207         * LyXAction.h: ditto
15208         * LaTeX.h: ditto
15209
15210 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
15211
15212         * Merging changes from BRANCH_MVC back into HEAD.
15213
15214         * Makefile.am: added controllers/libcontrollers.la to lyx_DEPENDENCIES
15215
15216 2001-03-15  John Levon  <moz@compsoc.man.ac.uk>
15217
15218         * BufferView_pimpl.C: change from intl.C
15219
15220         * combox.h:
15221         * combox.C:
15222         * Makefile.am: move combox.*
15223
15224         * form1.h:
15225         * form1.C:
15226         * lyx_gui.C:
15227         * intl.h:
15228         * intl.C: remove dialog (covered by prefs)
15229
15230 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
15231
15232         * lyxfunc.C (Dispatch): removed redundant break statement.
15233
15234 2001-03-14  Juergen Vigna  <jug@sad.it>
15235
15236         * tabular.C (l_getline): pay attention on \r\n (from Windows-files)
15237
15238 2001-03-14  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15239
15240         * buffer.C: add hack to fix compability reading of minipages.
15241
15242 2001-03-13  Dekel Tsur  <dekelts@tau.ac.il>
15243
15244         * buffer.C (getLists): Cleanup.
15245
15246 2001-03-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15247
15248         * lyxfont.C (update): don't honor toggleall on font size.
15249
15250 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
15251
15252         * bmtable.c:
15253         * bmtable.h:
15254         * Makefile.am: moved to frontends/xforms/
15255
15256         * lyx_gui_misc.C:
15257         * lyxfunc.C:
15258         * BufferView_pimpl.C: changes for moved mathpanel
15259
15260 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
15261
15262         * gettext.h: fix gettext_init() in --disable-nls
15263
15264 2001-03-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15265
15266         * LaTeXFeatures.C (getMacros): add a .c_str() when using sstream.
15267
15268 2001-03-09  John Levon  <moz@compsoc.man.ac.uk>
15269
15270         * lyx.C:
15271         * lyx.h: strip external form
15272
15273 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
15274
15275         * BufferView_pimpl.C: add comment, destroySplash()
15276
15277 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
15278
15279         * BufferView_pimpl.C:
15280         * LyXAction.C:
15281         * buffer.C:
15282         * commandtags.h:
15283         * lyxfunc.C: use re-worked insetinclude
15284
15285 2001-03-12  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15286
15287         * buffer.C: add using std::stringstream.
15288
15289         * lyx_cb.C: readd using std::ios.
15290
15291         * buffer.C: add using std::map.
15292
15293         * BufferView_pimpl.C: add using std::vector.
15294
15295         * ShareContainer.h: add std:: to swap.
15296
15297         * buffer.h: add some typedefs
15298         * buffer.C (getLists): use them
15299         (getLists): renamed from getTocList.
15300         add a counter for the different float types and use it in the
15301         generated string.
15302         (getLists): use the same counter for the NEW_INSETS and the "non"
15303         NEW_INSETS
15304
15305         * lyx_cb.h: remove unused items, includes, using etc.
15306
15307         * ShareContainer.h: remove some commented code, add more comments
15308         and "documentation".
15309
15310 2001-03-11  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15311
15312         * buffer.C (getTocList): make the list also when NEW_INSETS is
15313         defined.
15314
15315         * buffer.h: remove TocType
15316
15317         * buffer.C (getTocList): change to return a map<string,
15318         vector<TocItem> >, implement for dynamic number of list.
15319
15320         * CutAndPaste.[Ch] (checkPastePossible): remove unused arg
15321         * text2.C (PasteSelection): adjust
15322         * CutAndPaste.C (pasteSelection): adjust
15323
15324         * FloatList.C (FloatList): update from the new_insets branch.
15325         * Floating.[Ch]: ditto
15326         * LaTeXFeatures.C: ditto
15327         * buffer.C: ditto
15328         * lyxlex_pimpl.C: ditto
15329
15330         * paragraph.C (Last): remove when NEW_INSETS is defined.
15331
15332         * other file: changes because of the above.
15333
15334 2001-03-09  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15335
15336         * lyxparagraph.h: rename next to next_, previous to previous_,
15337         make them private for NEW_INSETS. Rename Next() to next(),
15338         Previous() to previous().
15339
15340         * other files: changes because of the above.
15341
15342 2001-03-08  Dekel Tsur  <dekelts@tau.ac.il>
15343
15344         * BufferView.h:
15345         * lyxparagraph.h: Add '#include "LString.h"' to fix compilation
15346         problem.
15347
15348 2001-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15349
15350         * main.C (main): pass lyx_localedir to gettext_init().
15351
15352         * gettext.h: remove locale_init and gettext_init macros
15353
15354         * gettext.C (locale_init): new function
15355         (gettext_init): new function
15356
15357         * lyx_gui.C (LyXGUI): use locale_init() instead of explicit
15358         setlocale().
15359
15360 2001-03-07  Edwin Leuven  <leuven@fee.uva.nl>
15361
15362         * Moved credits to frontends:
15363         * credits.[Ch]: removed
15364         * credits_form.[Ch]: removed
15365         * lyx_gui_misc.C: remove credits stuff
15366         * Makefile.am:
15367
15368 2001-03-07  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15369
15370         * lyx_main.C: make toplevel_keymap a boost::scoped_ptr.
15371
15372         * kbmap.[Ch]: make kb_key::table a boost::shared_ptr, remove
15373         unneeded destructor.
15374
15375         * intl.[Ch] (Intl): free the fd_form_keymap, make the fd_form_keymap
15376         a standalone pointer again.
15377
15378         * ColorHandler.[Ch]: make lyxColorHandler a boost::scoped_ptr
15379
15380 2001-03-06  John Levon  <moz@compsoc.man.ac.uk>
15381
15382         * Makefile.am:
15383         * filedlg.h:
15384         * filedlg.C:
15385         * LyXAction.C:
15386         * ToolbarDefaults.C:
15387         * bufferlist.C:
15388         * commandtags.h:
15389         * form1.C:
15390         * form1.h:
15391         * lyx_cb.C:
15392         * lyx_cb.h:
15393         * lyxfunc.h:
15394         * lyxfunc.C:
15395         * BufferView_pimpl.C: use new file dialog in GUII
15396
15397         * lyx_cb.h:
15398         * lyx_cb.C: remove LayoutsCB to Toolbar
15399
15400 2001-03-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15401
15402         * ShareContainer.h (get): add std:: qualifier
15403
15404 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15405
15406         * ShareContainer.h: define a proper ShareContainer::value_type
15407         type (and use typename to please compaq cxx)
15408
15409 2001-03-06  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15410
15411         * lyxparagraph.h: move serveral local vars to
15412         ParameterStruct/ParagraphParameters., use ShareContainer in
15413         FontTable., make vars in FontTable private and add getter and
15414         setter.
15415
15416         * paragraph.C: changes because of the above.
15417
15418         * lyxfont.h: remove copy constructor and copy assignment. (the
15419         default ones is ok), move number inside FontBits. move inlines to
15420         lyxfont.C
15421
15422         * lyxfont.C: add number to initializaton of statics, move several
15423         inlines here. constify several local vars. some whitespace
15424         cleanup. Dont hide outerscope variables.
15425
15426         * Spacing.h: add two new constructors to match the set methods.
15427
15428         * ShareContainer.h: new file, will perhaps be moved to support
15429
15430         * ParameterStruct.h: new file
15431
15432         * ParagraphParameters.h: new file
15433
15434         * ParagraphParameters.C: new file
15435
15436         * Makefile.am (lyx_SOURCES): add ParagraphParameters.C,
15437         ParagraphParameters.h, ParameterStruct.h and ShareContainer.h
15438
15439         * BufferView_pimpl.C: ParagraphParameter changes.
15440         * buffer.C: Likewise.
15441         * bufferview_funcs.C: Likewise.
15442         * text.C: Likewise.
15443         * text2.C: Likewise.
15444
15445 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15446
15447         * lyxfind.C (LyXReplace): do not redefine default argument in
15448         implementation.
15449         (IsStringInText): ditto
15450         (SearchForward): ditto
15451         (SearchBackward): ditto
15452
15453 2001-03-06  Juergen Vigna  <jug@sad.it>
15454
15455         * lyxfind.C (IsStringInText): put parentes around expressions.
15456
15457 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
15458
15459         * lyxfind.[Ch]: find stuff moved out of text2.C/lyxtext.h
15460
15461 2001-02-23  John Levon  <moz@compsoc.man.ac.uk>
15462
15463         * lyx_main.C: add ISO_Left_Tab as bind synonym for Tab
15464
15465         * stl_string_fwd.h: add comment
15466
15467         * lyx_gui_misc.C: killed ALWAYS_CLOSE_MATH_PANELS
15468
15469         * tabular.h:
15470         * tabular.C: remove unused DocBook methods
15471
15472         * intl.C:
15473         * language.C:
15474         * paragraph.C:
15475         * buffer.C:
15476         killed DO_USE_DEFAULT_LANGUAGE
15477
15478 2001-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15479
15480         * lyx_gui.C: do not include language.h.
15481
15482         * bufferview_funcs.C (ToggleAndShow): do not provide optional
15483         arguments in function implementation.
15484
15485 2001-02-28  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15486
15487         * BufferView_pimpl.C: add <ctime>
15488
15489 2001-02-27  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15490
15491         * BufferView_pimpl.C: add using std::find_if
15492
15493 2001-02-27  José Matos  <jamatos@fep.up.pt>
15494
15495         * LaTeXFeatures.C (getIncludedFiles): call to BasePath replaced
15496         by OnlyPath.
15497
15498 2001-02-11  José Matos  <jamatos@fep.up.pt>
15499
15500         * buffer.C (makeDocBookFile): command styles now have a parameter as
15501         "title" by default.
15502
15503 2001-02-23  Edwin Leuven <leuven@fee.uva.nl>
15504
15505         * layout_forms.[Ch]: removed
15506         * lyx_cb.[Ch]: out character
15507         * lyx_gui.C: out character
15508         * lyx_gui_misc.C: out character
15509         * bufferview_funcs.C: : out character,
15510         added toggleall as parameter in ToggleAndShow
15511
15512 2001-02-26  Dekel Tsur  <dekelts@tau.ac.il>
15513
15514         * lyxfunc.C (getStatus): Fix the LFUN_EXPORT case.
15515
15516         * text2.C (SetCurrentFont): Disable number property at boundary.
15517
15518 2001-02-26  Juergen Vigna  <jug@sad.it>
15519
15520         * lyxfunc.C (getStatus): added a string argument override function so
15521         that this is correctly called from LyXFunc::Dispatch if it contains a
15522         do_not_use_argument which is used!
15523         (Dispatch): added check for "custom" export and call appropriate func.
15524
15525 2001-02-23  Dekel Tsur  <dekelts@tau.ac.il>
15526
15527         * lyxrc.C: Add language_command_local, language_use_babel and
15528         language_global_options.
15529
15530         * lyxfont.C (latexWriteStartChanges): Use language_command_local.
15531
15532         * buffer.C (makeLaTeXFile): Use language_use_babel and
15533         language_global_options.
15534
15535 2001-02-23  Juergen Vigna  <jug@sad.it>
15536
15537         * lyxfunc.C (Dispatch): removed the whole part of the switch statement
15538         which works with LyXText and putted it inside BufferView. Here now we
15539         only call for that part the BufferView::Dispatch() function.
15540
15541         * BufferView.C (Dispatch): added.
15542
15543         * BufferView_pimpl.C (Dispatch): added! Here are now all dispatch
15544         functions which needs to use a LyXText over from LyXFunc.
15545         (MenuInsertLyXFile): added
15546         (getInsetByCode): added
15547         (moveCursorUpdate): added
15548         (static TEXT): added
15549
15550 2001-02-22  Juergen Vigna  <jug@sad.it>
15551
15552         * BufferView_pimpl.C (update): call a status update to see if LyXText
15553         needs it.
15554
15555 2001-02-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15556
15557         * vc-backend.C (revert): implement for CVS
15558         (getLog): implement for CVS
15559
15560 2001-02-20  Juergen Vigna  <jug@sad.it>
15561
15562         * text2.C (ClearSelection): added BufferView param for inset_owner call
15563
15564         * lyxfunc.C (TEXT): added this function and use it instead of
15565         directly owner->view()-text of getLyXText().
15566
15567 2001-02-20  Edwin Leuven <leuven@fee.uva.nl>
15568
15569         * src/layout_forms.C: out preamble
15570         * src/layout_forms.h: out preamble
15571         * src/lyx_cb.C: out preamble
15572         * src/lyx_cb.h: out preamble
15573         * src/lyx_gui.C: out preamble
15574         * src/lyx_gui_misc.C: out preamble
15575         * src/lyxfunc.C: connect with guii preamble
15576
15577 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
15578
15579         * src/buffer.h: tiny clean-ups to allow compilation with DEC cxx.
15580
15581 2001-02-17  Dekel Tsur  <dekelts@tau.ac.il>
15582
15583         * LaTeX.C (run): Do not use 'scanres & RERUN' when deciding
15584         whether to run bibtex.
15585
15586 2001-02-16  Dekel Tsur  <dekelts@tau.ac.il>
15587
15588         * Makefile.am (lyx_SOURCES): Remove BackStack.h
15589
15590 2001-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
15591
15592         * Makefile.am (lyx_SOURCES): removed bibforms.h
15593
15594         * vspace.h: doxygen
15595
15596         * text.C (GetVisibleRow): make several local vars const
15597
15598         * tabular.C: small cleanup.
15599
15600         * lyxserver.C (callback): use compare instead of strncmp
15601
15602         * lyxparagraph.h: remove all code dep. on HAVE_ROPE, move inclass
15603         inlines to after class or to paragraph.C
15604
15605         * lyxfont.h: remove friend operator!=
15606
15607         * converter.h: move friend bool operator< to non friend and after
15608         class def.
15609
15610         * combox.h: small cleanup
15611
15612         * buffer.h: doxygen, remove unused constructor, move inclas inlies
15613         to inlines after class def.
15614
15615         * buffer.C (pop_tag): use string operations instead of strcmp
15616
15617         * bmtable.c: doxygen, small cleanup
15618
15619         * LaTeX.h: remove friend operator==
15620
15621 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
15622
15623         * screen.C:
15624         * lyxrc.[Ch]:
15625         * lyxfunc.C:
15626         * lyxfont.[Ch]:
15627         * lyx_cb.C:
15628         * intl.[Ch]:
15629         * commandtags.h:
15630         * buffer.C:
15631         * WorkArea.[Ch]:
15632         * LyXAction.C:
15633         * BufferView_pimpl.C:
15634         * BufferView.[Ch]: remove cruft
15635
15636 2001-02-14  Juergen Vigna  <jug@sad.it>
15637
15638         * lyxfunc.C: removed #if 0 unused code
15639
15640         * lyxfunc.C (Dispatch): make LFUN_QUOTE work for InsetText.
15641
15642         * BufferView_pimpl.C (update): set updatestatus of inset if needed.
15643
15644         * text2.C (SetSelection): added a BufferView * parameter
15645
15646 2001-02-13  Juergen Vigna  <jug@sad.it>
15647
15648         * lyxfunc.C (Dispatch): fixed protected blank problem.
15649         * BufferView2.C (protectedBlank): added LyxText * parameter.
15650
15651         * tabular.C (AppendRow): forgot to set row_info of newly added row.
15652         (AppendColumn): same as above for column_info.
15653
15654         * lyxfunc.C (Dispatch): supported some more functions in InsetText.
15655         (moveCursorUpdate): use a LyXText param for support of InsetText.
15656
15657         * BufferView_pimpl.C (doubleClick): added support for InsetText.
15658         (tripleClick): ditto
15659
15660         * lyxfunc.C (LFUN_APPENDIX): changed to use "text" pointer.
15661
15662         * BufferView_pimpl.C (update): added LyXText param to honor insets.
15663
15664         * bufferview_funcs.C (ToggleAndShow): fixed for text in insets.
15665
15666         * text2.C (SetSelection): set correct update status if inset_owner
15667         (ToggleFree): ditto
15668
15669 2001-02-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
15670
15671         * tabular.C: remove some commented code.
15672
15673 2001-02-12  John Levon  <moz@compsoc.man.ac.uk>
15674
15675         * BufferView_pimpl.C: call hideSplash()
15676
15677         * LyXAction.C: make buffer-child-insert use LFUN_CHILD_CREATE
15678
15679         * include_form.h:
15680         * bibforms.h: remove
15681
15682         * lyxfunc.C:
15683         * src/commandtags.h: LFUN_CHILDINSERT -> LFUN_CHILD_INSERT,
15684           add LFUN_CHILD_CREATE
15685
15686         * counters.h: fix tiny typo
15687
15688         * lyx_cb.C:
15689         * lyx.h:
15690         * lyx_gui.C:
15691         * lyx.C: move splash to frontends/xforms/
15692
15693         * lyx_gui_misc.C: move Include and Bibform to frontends
15694
15695         * lyxvc.h: clarify comment
15696
15697         * vspace.C: tiny housekeeping
15698
15699 2001-02-10  Dekel Tsur  <dekelts@tau.ac.il>
15700
15701         * text.C (PrepareToPrint): RTL Fix.
15702
15703         * paragraph.C (GetUChar): New method.
15704         (String):  Use GetUChar.
15705
15706         * buffer.C (asciiParagraph): Use GetUChar.
15707
15708 2001-02-09  Dekel Tsur  <dekelts@tau.ac.il>
15709
15710         * text.C (GetVisibleRow): Fix selection drawing for RTL text in tables.
15711
15712 2001-02-09  John Levon  <moz@compsoc.man.ac.uk>
15713
15714         * buffer.h:
15715         * buffer.C: rename to getLogName(), handle
15716           build log / latex log nicely
15717
15718 2001-02-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15719
15720         * MenuBackend.C:
15721         * MenuBackend.h: remove support for reference menuitem type.
15722
15723 2001-02-07  John Levon  <moz@compsoc.man.ac.uk>
15724
15725         * BufferView_pimpl.C: housekeeping
15726         * BufferView_pimpl.h:
15727         * LyXView.h:
15728         * Makefile.am:
15729         * Timeout.C:
15730         * Timeout.h:
15731         * minibuffer.h: move Timeout GUI-I
15732
15733 2001-02-07  Dekel Tsur  <dekelts@tau.ac.il>
15734
15735         * lyxrc.C (read): Update converters data-structures.
15736
15737 2001-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
15738
15739         * LaTeX.h (operator!=): add operator != for Aux_Info
15740
15741 2001-02-06  John Levon  <moz@compsoc.man.ac.uk>
15742
15743         * Makefile.am: remove LaTeXLog.C, log_form.[Ch]
15744
15745         * LaTeXLog.C: deleted, useful code moved to Buffer
15746
15747         * buffer.h:
15748         * buffer.C: new function getLatexLogName()
15749
15750         * lyx_gui_misc.C:
15751         * lyx_gui.C:
15752         * lyxvc.C:
15753         * lyxvc.h:
15754         * lyxfunc.C: use frontends for LaTeX and VC logs
15755
15756 2001-02-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15757
15758         * LaTeX.h: yet another std:: that Allan forgot.
15759
15760         * Variables.C (set): renamed from isset(), because this clashes
15761         with some HP-UX macros (grr).
15762
15763 2001-02-06  Allan Rae  <rae@lyx.org>
15764
15765         * LaTeX.h: Another bug fix.  Missing std:: this time.
15766
15767 2001-02-04  Allan Rae  <rae@lyx.org>
15768
15769         * paragraph.C (TeXOnePar): Partial fix for the '\n' generation in
15770         floats problem. I've left it commented out because it's not quite
15771         correct.  It should also test that the current object is a table or
15772         figure inset.  But I haven't gotten around to figuring out how to do
15773         that.  I *think* it'll be something like: "table" == inset.type()
15774
15775         * LaTeX.h (operator==): Aux_Info should have a friend that returns a
15776         bool.
15777
15778 2001-02-02  Dekel Tsur  <dekelts@tau.ac.il>
15779
15780         * LaTeX.C (scanAuxFile): A rewrite of this method. It now returns
15781         all the citation/databases/styles in the auxilary file.
15782         (run): Rerun latex if there was a babel language error.
15783
15784 2001-02-01  Dekel Tsur  <dekelts@tau.ac.il>
15785
15786         * text.C (Backspace): Preserve the font when changing newline char
15787         with a space.
15788         (BreakParagraph): If the cursor is before a space, delete the space.
15789
15790         * lyx_cb.C (QuitLyX): Do not save files when running with no gui.
15791
15792 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
15793
15794         * BufferView2.C (ChangeInsets): Renamed from ChangeRefs. Accept a
15795         new argument (code).
15796         (ChangeCitationsIfUnique): New method.
15797
15798         * paragraph.C (GetPositionOfInset): Handle bibkey.
15799
15800 2001-01-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15801
15802         * BufferView_pimpl.h: change type of Position::par_pos to
15803         LyXParagraph::size_type.
15804
15805 2001-01-29  Dekel Tsur  <dekelts@tau.ac.il>
15806
15807         * BufferView_pimpl.C (savePosition, restorePosition): Write
15808         messages to minibuffer.
15809
15810 2001-01-28  José Matos  <jamatos@fep.up.pt>
15811
15812         * buffer.C (makeDocBookFile): adds support for document language.
15813         A silly restriction on the name of LatexCommand types where removed.
15814         Added support for CDATA sections, allows to chars unescaped, used
15815         among others in code, to avoid escape < and >.
15816
15817 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
15818
15819         * BufferView_pimpl.C (savePosition, restorePosition): Use a vector of
15820         saved positions instrad of a stack. Furthermore, a position is
15821         stored using paragraph id/paragraph position.
15822
15823         * commandtags.h: Add LFUN_BOOKMARK_SAVE and LFUN_BOOKMARK_GOTO.
15824         Remove LFUN_REF_BACK.
15825
15826 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
15827
15828         * converter.C (dvipdfm_options): New method.
15829
15830 2001-01-26  Dekel Tsur  <dekelts@tau.ac.il>
15831
15832         * vspace.C (isValidLength): Fix for empty input string.
15833
15834 2001-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15835
15836         * LyXAction.C (init): change description of LFUN_FIGURE to
15837         "Insert Graphics"
15838
15839 2001-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15840
15841         * LaTeX.C: add using directive
15842
15843 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
15844
15845         * MenuBackend.C (expand): Fix the sorting of the formats.
15846
15847 2001-01-24  John Levon  <moz@compsoc.man.ac.uk>
15848
15849         * lyx_main.C: tiny error message fix
15850
15851 2001-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15852
15853         * lyx_gui.C (LyXGUI): force the LC_NUMERIC locale to "C" after
15854         calling fl_initialize(). This fixes the problem with ',' as
15855         decimal separator in text files.
15856
15857 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
15858
15859         * trans.C (process): Fix the keymap bug.
15860
15861 2001-01-23  Dekel Tsur  <dekelts@tau.ac.il>
15862
15863         * LaTeX.C (scanAuxFiles): New method. Provides support for
15864         multiple bibliographies (when using the bibtopic/bibunits pacakges).
15865         (scanLogFile) Scan for "run BibTeX" messages.
15866
15867         * buffer.C (makeLaTeXFile): Do not load the ae package when using
15868         OT1 font encoding. Also, load the aecompl package if the ae
15869         package is loaded.
15870
15871         * tex-strings.C: Add "ae" to tex_fonts[] (from Matej Cepl).
15872
15873 2001-01-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15874
15875         * texrow.C (increasePos): turn two error messages into debug
15876         messages.
15877
15878 2001-01-20  Dekel Tsur  <dekelts@tau.ac.il>
15879
15880         * LaTeX.C (scanAux): Handle the \@input macro.
15881         (runBibTeX): Use scanAux().
15882
15883         * language.C (latex_options_): New field.
15884
15885         * LaTeXFeatures.C (getMacros): Add language macros.
15886
15887         * buffer.C (makeLaTeXFile): Small fix.
15888
15889 2001-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15890
15891         * lyxfunc.C: fix the name of the inset for LFUN_CHILDINSERT
15892
15893         * text2.C: add a using directive.
15894
15895 2000-01-17  John Levon  <moz@compsoc.man.ac.uk>
15896
15897         * BufferView2.C:
15898         * lyx_gui_misc.h:
15899         * lyxfr1.C:
15900         * lyxfunc.C: kill LyXBell.
15901
15902 2001-01-17  Dekel Tsur  <dekelts@tau.ac.il>
15903
15904         * text.C (IsBoundary): Remove the error message
15905
15906         * WorkArea.C (work_area_handler): Decrease keyboard purge threshold.
15907
15908         * lyxrc.C (setDefaults): Correct initialization value for
15909         font_norm_type.
15910
15911 2001-01-15  Dekel Tsur  <dekelts@tau.ac.il>
15912
15913         * BufferView2.C (gotoInset): New method. Replaces gotoNote() and
15914         gotoError().
15915
15916         * text2.C (GotoNextInset): New method. Replaces GotoNextError()
15917         and GotoNextNote().
15918
15919         * src/LyXAction.C: Added reference-next.
15920
15921         * text.C (InsertChar): Use contains instead of strchr.
15922
15923         * lyx_cb.C (MenuInsertLabel): Enable default value code.
15924
15925 2001-01-13  Dekel Tsur  <dekelts@tau.ac.il>
15926
15927         * paragraph.C (SimpleTeXOnePar) Put \protect before paragraph
15928         alignment commands (when needed).
15929
15930         * text.C (InsertChar): Add ':' to number separator chars.