]> git.lyx.org Git - lyx.git/blob - src/ChangeLog
38b193773b0a0591bab3bbea81901ffea3274a89
[lyx.git] / src / ChangeLog
1 2004-08-14  André Pönitz  <poenitz@gmx.net>
2         
3         * text.C:
4         * text2.C:
5         * rowpainter.C:
6         * lyxtext.h (several functions): use a Paragraph & argument 
7         instead of par_type
8
9 2004-08-15  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10
11         * metricsinfo.h: add a new field ltr_pos to PainterInfo
12
13         * rowpainter.C (paintInset): initialize PainterInfo::ltr_pos
14
15         * text.C (singleWidth): remove useless test
16
17 2004-08-14  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
18
19         * tabular.h: remove bogus comments
20
21         * tabular.C (getDescentOfRow): 
22         (isPartOfMultiColumn): add assertions
23
24         * lyxlength.C (inPixels): remove #warning
25
26 2004-08-14  André Pönitz  <poenitz@gmx.net>
27
28         * paragraph.h: inline getChar()
29         
30         * BufferView.h: remove unused declarations
31
32 2004-08-14  José Matos  <jamatos@lyx.org>
33
34         * Buffer.[Ch] (readDocument): new name for old readBody.
35         * Buffer.C: new file format, new keywords: \begin_document,
36         \begin_header, \begin_body, \end_body.
37
38         * bufferparams.C (readToken): replace all calls to lex.nextToken
39         by lex.next(). Do the same to eatLine except where really needed.
40
41         * lyxfont.C (lyxWriteChanges): remove whitespaces in the end of
42         line when writing to the lyx file.
43
44         * output_plaintext.C (asciiParagraph): fix Bibliography style
45         handling.
46
47         * text.C (read): fix end of file handling.
48
49 2004-08-14  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
50
51         * MenuBackend.C (Menu::operator[]): new method to access
52         individual menu items
53         (Menu::hasFunc): new method. search for an item that corresponds
54         to a given func
55         (MenuBackend::specialMenu): new method
56         (MenuBackend::expand): if a special menu has been set, skip
57         entries whose func() appears in this menu
58
59 2004-08-14  Lars Gullik Bjonnes  <larsbj@lyx.org>
60
61         * text3.C: use Debug::DEBUG a bit more
62
63         * text.C (leftMargin): try to simplify a tiny bit change var x to
64         l_margin. Dont output the wide margins always.
65         (rightMargin): no margin in inner texts
66
67         * rowpainter.h (nestMargin): new func
68         (changebarMargin): new func
69         (rightMargin): new func
70
71         * rowpainter.C (paintDepthBar): changebarMargin and nestMargin is
72         now functions.
73         (paintLast): ditto
74
75         * factory.C (createInset): modify setDrawFrame
76
77         * cursor.C: use Debug::DEBUG a bit more
78
79 2004-08-14  André Pönitz  <poenitz@gmx.net>
80
81         * coordcache.[Ch]:
82         * Makefile.am: new files to accomodate an 'external' (x,y)-position
83         cache for all insets in (at least partially) visible (top-level)
84         paragraphs.
85         
86         * BufferView_pimpl.C: reset external coord cache before every update.
87         This means the coord cache only contains valid entries.
88
89 2004-08-14  Lars Gullik Bjonnes  <larsbj@lyx.org>
90
91         bug 1096
92         * BufferView_pimpl.C (getInsetByCode): move function out of class
93         and change in to a template in anon namespace. Also fix to do what
94         suits us better.
95
96 2004-08-13  Lars Gullik Bjonnes  <larsbj@lyx.org>
97
98         bug 1305
99         * paragraph_funcs.C (moveItem): use Paragraph::value_type instead
100         of char
101         (breakParagraph): rename par to par_offset and use a local
102         reference. Add code to keep the language over a rebreak.
103         (breakParagraphConservative): rename par to par_offset, use a
104         local reference
105         (mergeParagraph): ditto
106         (outerHook): ditto
107         (isFirstInSequence): ditto
108         (outerFont): rename pit to par_offset
109
110         * paragraph.C: ws change
111         * paragraph.h: ditto
112         * text3.C: ditto
113         * text.C: ditto
114
115 2004-08-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
116
117         * paragraph_pimpl.C (simpleTeXSpecialChars): remove special
118         treatment for ']'
119
120         * paragraph.C (simpleTeXOnePar): when we have a \item with
121         optional argument, enclose the argument with curly brackets (in
122         case it contains a closing square bracket)
123
124         * text2.C (editXY):
125         * text2.C (editXY):
126         * text3.C (checkInsetHit): constify
127
128 2004-08-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
129
130         * LyXAction.C (init): mark LFUN_WORD_FIND as working in read-only
131         documents (bug 1629)
132
133 2004-08-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
134
135         Fix toggling of collapsable insets with the mouse (bug 1558)
136
137         * lyxfunc.C (dispatch): adapt to LCursor changes
138
139         * BufferView_pimpl.C (workAreaDispatch): adapt to LCursor changes;
140         make sure that dispatch is not invoked twice
141
142         * cursor.C (needsUpdate): new method
143         (dispatch): return void
144         (result): new method, to access the DispatchResult of the cursor.
145
146 2004-08-13  José Matos  <jamatos@lyx.org>
147
148         * tabular.C (docbook): close empty tags in XML. Fix bug 1147.
149
150 2004-08-13  André Pönitz  <poenitz@gmx.net>
151
152         * cursor.C (macroModeClose): use plainInsert instead of niceInsert.
153
154         * CutAndPaste.C (eraseSelection): fix cursor position after erasing
155           multiple cells
156
157 2004-08-12  André Pönitz  <poenitz@gmx.net>
158
159         * text3.C: take out the 'cursor right' form insertInset and only
160         do it in those places when it is really needed. Fixes crash on
161         C-m...
162
163 2004-08-08  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
164
165         * lyxfunc.C (dispatch): implement LFUN_SAVE_AS_DEFAULT
166
167         * BufferView_pimpl.C (setBuffer): initialize the current font of
168         the underlying LyXText
169
170 2004-08-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
171
172         * kbsequence.C (print): use UI native formatting for menu
173         shortcuts
174
175         * text.C (insertChar): call Paragraph::insertChar with a font
176         argument (cosmetic)
177
178         * paragraph.C (insertInset, insertChar): the version that takes a
179         LyXFont argument is now a wrapper around the other one (the
180         opposite used to be true).
181
182         * paragraph_pimpl.C (insertInset, insertChar): remove the LyXFont
183         argument. Font setting is done in Paragraph now.
184
185 2004-08-04  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
186
187         * outputparams.h: add new members intitle and lang.
188
189         * paragraph.C (simpleTeXOnePar): initialize rp.lang and
190         rp.intitle. Actually use rp in call to simpleTeXSpecialChars
191
192 2004-08-01  Lars Gullik Bjonnes  <larsbj@gullik.net>
193
194         * text3.C (dispatch): remove special handling of button 4 and 5,
195         it is now taken care of in the frontend code.
196
197 2004-07-25  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
198
199         * Spacing.h: add <string> (STLPort compile fix)
200
201 2004-08-02  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
202
203         * LaTeXFeatures.C: (jurabib) \RequirePackage -> \usepackage
204
205 2004-07-25  Lars Gullik Bjonnes  <larsbj@gullik.net>
206
207         * lyxlex_pimpl.C (compare_tags): chagne return type of operator()
208         to bool.
209
210         * converter.C (showMessage): inherit from unary_function, make
211         operator() const.
212
213         * buffer.C (writeFile): initialize retval
214
215         * InsetList.h: rename private variable list to list_
216         * InsetList.[Ch]: adjust accordingly.
217
218 2004-07-24  Lars Gullik Bjonnes  <larsbj@gullik.net>
219
220         * text3.C, text2.C, text.C, tabular.C, paragraph_funcs.C, paragraph.C:
221         * lyxlength.C, lyxgluelength.C, lyxfunc.C, lyxfont.C, lyxfind.C:
222         * kbmap.C, funcrequest.C, factory.C, cursor.C, counters.C:
223         * bufferview_funcs.C, bufferparams.C, buffer.C, Spacing.C:
224         * ParagraphParameters.C, LaTeXFeatures.C: replace
225         "support/std_sstream.h" with <sstream>
226
227 2004-07-23  Lars Gullik Bjonnes  <larsbj@gullik.net>
228
229         * lyxserver.C (startPipe): use this (pointer) not *this (reference)
230         * lyxsocket.C (LyXServerSocket): ditto
231         (serverCallback): ditto
232
233 2004-07-23  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
234
235         * LaTeXFeatures.C: check release date when loading jurabib.
236
237 2004-07-22  Lars Gullik Bjonnes  <larsbj@gullik.net>
238
239         * lyxserver.C (startPipe): call register_socket_callback
240         (endPipe): call unregister_socket_callback
241
242 2004-07-21  Lars Gullik Bjonnes  <larsbj@gullik.net>
243
244         * lyxsocket.C (LyXServerSocket): reduce max outstanding clients to 3
245         (LyXServerSocket): register the callback
246         (LyXServerSocket): unregister the callback
247         (fd): delete function
248         (serverCallback): improve error checking and setup the callbacks.
249         (dataCallback): change arg to fd.
250         (writeln): new func (copied fro the client socket) used for server
251         write to client.
252         (LyXDataSocket): simplify
253         (~LyXDataSocket): close ann unregiser callback
254         (server): delete function
255         (fd): delete function
256         (readln): small changes, improve some std::string usage
257         (writeln): constify a bit
258
259 2004-06-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
260
261         * kbmap.C (find1keybinding): new method, only used by LyX/Mac with
262         Qt frontend
263
264 2004-07-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
265
266         * BufferView_pimpl.C (setBuffer): set the layout combox value only
267         after it has been populated
268
269 2004-06-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
270
271         * text2.C (insertInset): move cursor when inserting inset.
272
273 2004-06-30  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
274
275         * kbmap.C (findbindings): a couple of new methods. returns a
276         container of kb_sequence objects. The real work is done by the
277         private recursive version
278         (printbindings): uses findbindings to print out a bracketed list
279         of bindings (renamed from findbinding).
280
281         * MenuBackend.C (binding): use kb_keymap::findbindings
282
283         * lyxfunc.C (sendDispatchMessage): use use kb_keymap::printbindings.
284
285 2004-07-01  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
286
287         * buffer.C: up LYX_FORMAT to 235 (needed for the paperpackage fix)
288
289 2004-06-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
290
291         * paragraph.C (isWord): return true on insets that report
292         isLetter().
293
294         * text.C (getWord): use Paragraph::isWord to decide what is in a
295         word and what is not; fix bug 1609.
296
297 2004-06-27  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
298
299         * tex-strings.C: add "none" to string_paperpackages[], fixes
300         off-by-one-error in the paperpackage selection.
301
302         * lyxlex.[Ch]:
303         * tex-strings.[Ch]: char const * string[n]
304         -> char const * const string[]
305
306 2004-06-10  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
307
308         * lyxfunc.C (getStatus): if lyx_gui::getStatus disables the
309         command, return early.
310
311 2004-06-18  Lars Gullik Bjonnes  <larsbj@gullik.net>
312
313         * debug.h: add DEBUG to enum and fix size of ANY.
314
315         * debug.C: add support for Debug::DEBUG
316         (showTags): cast errorTags.level to unsigned int
317
318         * BufferView_pimpl.C (fitCursor): use Debug::DEBUG
319         (redoCurrentBuffer): ditto
320         (updateScrollbar): ditto
321         * cursor.C (dispatch): ditto
322         * text2.C (setLayout): ditto
323         (setFont): ditto
324         (updateCounters): ditto
325         (editXY): ditto
326         (deleteEmptyParagraphMechanism): ditto
327
328 2004-06-09  Lars Gullik Bjonnes  <larsbj@gullik.net>
329
330         * Makefile.am (dist_noinst_DATA): use the dist_ and noinst_
331         annotations to cleanup the Makefile slightly.
332
333 2004-05-10  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
334
335         * lyxrc.C: do not set user_email to a default value but use empty
336         instead. The entry used to be translated, which does not work
337         since at the point where lyxrc is constructed there is no
338         translation service available
339
340         * messages.C (getLocaleDir): remove and use directly
341         lyx_localedir() instead
342
343 2004-06-02  Angus Leeming  <leeming@lyx.org>
344
345         Fix crash caused by dereferencing null pointer 'exportdata' in
346         OutputParams by creating a new ExportData variable on the heap,
347         storing it in a boost::shared_ptr.
348         The crash was triggered when generating an Instant Preview
349         of an external inset.
350
351         * Makefile.am: add outputparams.C
352
353         * outputparams.[Ch]: store exportdata as a shared_ptr<Exportdata>.
354         (c-tor): allocate memory to it.
355
356         * exporter.C (c-tor): associated changes.
357
358 2004-06-01  Angus Leeming  <leeming@lyx.org>
359
360         * output_linuxdoc.C (linuxdocParagraphs): Check that the paragraph
361         contains data before calling isInset(0). (Bug 1513.)
362
363 2004-06-01  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
364
365         * exporter.C (checkOverwrite): new method
366         * exporter.C (copyFile): new method
367         * exporter.C (Export): copy referenced files to the document dir
368         * exporter.[Ch]: new class ExportedFile
369         * exporter.[Ch]: new class ExportData. Contains currently the
370         names of referenced external files
371         * outputparams.h: add exportdata member.
372
373 2004-05-28  Lars Gullik Bjonnes  <larsbj@gullik.net>
374
375         * Makefile.am (DISTCLEANFILES): add version.C, stamp-version and
376         version.C-tmp
377
378 2004-05-19  Angus Leeming  <leeming@lyx.org>
379
380         * LaTeXFeatures.C:
381         * ToolbarBackend.C:
382         * bufferparams.C:
383         * lyxfunc.C: small changes due to the introduction of namespace
384         lyx::frontend and the moving of namespace biblio to lyx::biblio.
385
386 2004-05-18  Alfredo Braunstein  <abraunst@lyx.org>
387
388         * text3.C (dispatch): supress update when only moving the cursor
389         * cursor.C (selHandle): remove commented code
390
391 2004-05-17  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
392
393         * paragraph.C (startTeXParParams): correct column count
394         * CutAndPaste.C (pasteSelection): remove const_cast
395         * output_docbook.C (docbookParagraphs): remove const_cast
396         * output_latex.C (TeXEnvironment, TeXOnePar, TeXDeeper): remove
397         const_cast and return ParagraphList::const_iterator
398         * output_linuxdoc.C (linuxdocParagraphs): remove const_cast
399         * output_plaintext.C (writeFileAscii): remove const_cast
400         * paragraph.[Ch] (simpleTeXOnePar): make const
401         * paragraph_funcs.C (outerPar): use const iterators
402         * paragraph_pimpl.C (validate): use const iterators
403         * text.C (setHeightOfRow): use const iterators
404
405 2004-05-17  Angus Leeming  <leeming@lyx.org>
406
407         * lfuns.h:
408         * LyXAction.C (init): new LFUN_INSET_REFRESH.
409
410         * lyxfunc.C (dispatch): in the LFUN_BUFFERPARAMS_APPLY block loop
411         over all insets and dispatch LFUN_INSET_REFRESH to any citation insets
412         if the citation engine has changed.
413
414 2004-05-14  José Matos  <jamatos@lyx.org>
415
416         * buffer.C (makeDocBookFile): add a default Formal Public Identifier
417         if the textclass does not provide it. Have it different for sgml and
418         xml.
419         support the language of document.
420         * output_docbook.C (docbookParagraphs):
421         * paragraph.[Ch] (getDocbookId): new function that gets the id of the
422         first anchor as the id of the paragraph, remove special case code.
423         * sgml.C (escapeChar): escape only < & >.
424
425 2004-05-14  Angus Leeming  <leeming@lyx.org>
426
427         * bufferparams.h: move biblio::CiteEngine enum here to minimize
428         dependencies on src/frontends/controllers/biblio.h. Define a
429         CiteEngine_enum wrapper class to enable the enum to be forward
430         declared.
431
432 2004-05-12  Angus Leeming  <leeming@lyx.org>
433
434         * buffer.C: up LYX_FORMAT to 234.
435         * bufferparams.[Ch]: replace the three bools, use_natbib, use_jurabib,
436         use_numerical_citations with a single biblio::CiteEngine cite_engine
437         variable.
438         * LaTeXFeatures.C (getPackages): use BufferParams::cite_engine.
439
440 2004-05-13  José Matos  <jamatos@lyx.org>
441
442         * converter.h:
443         * converter.C (Converter, readFlags): add xml member.
444         * outputparams.h: add XML flavor.
445         * buffer.C (makeDocBookFile): add support for the sgml/xml distinction.
446
447 2004-05-03  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
448
449         * lyxfunc.C (dispatch):
450         (getStatus): fix handling of LFUN_SEQUENCE
451
452 2004-04-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
453
454         * debug.C (showLevel): do not forget the end-of-line marker
455
456 2004-04-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
457
458         * kbmap.C (read): do not stop parsing a bind file when an error
459         occurs (bug 1575)
460
461 2004-04-29  Angus Leeming  <leeming@lyx.org>
462
463         * cursor.C:
464         * factory.C:
465         * pariterator.C:
466         * text2.C: wrap a bunch of #warning statements
467         inside #ifdef WITH_WARNINGS blocks.
468
469 2004-04-29  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
470
471         * buffer.C: increment format to 233.
472
473 2004-04-28  Angus Leeming  <leeming@lyx.org>
474
475         * BufferView_pimpl.C:
476         * lyxfunc.C:
477         * text3.C:
478         s/updateToolbar()/updateToolbars()/
479         s/Toolbar.h/Toolbars.h/
480
481 2004-04-28  Angus Leeming  <leeming@lyx.org>
482
483         * BufferView.[Ch] (c-tor):
484         * BufferView_pimpl.[Ch] (c-tor): no longer receives x,y position.
485         No longer passes these data to the WorkArea generator.
486
487 2004-04-28  Angus Leeming  <leeming@lyx.org>
488
489         * BufferView_pimpl.C (c-tor): pass LyXView & to WorkArea generator.
490
491 2004-04-26  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
492
493         * LaTeXFeatures.C, lyx_sty.[Ch]: add \lyxdot macro
494
495 2003-09-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
496
497         * output_latex.C (TeXEnvironment): make sure that there is a line
498         break before \end{foo} for the last paragraph of a document
499         (TeXOnePar): if the paragraph is at the end of the document (or
500         inset) and the language has to be reset, then make sure that the
501         line break is _before_ the language command, not after (fixes bug
502         1225); also make sure that the language reset command is the first
503         thing after the paragraph (to ensure proper nesting of
504         environments and thus fix bug 1404)
505
506 2004-04-21  John Levon  <levon@movementarian.org>
507
508         * ToolbarBackend.h:
509         * ToolbarBackend.C: make "name" be a programmatic name
510         and a gui_name field.
511
512         * lyxfunc.C: display the minibuffer on M-x
513
514 2004-04-18  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
515
516         * LaTeX.C (runMakeIndex, runBibTeX): quote correctly file name
517         (bug 1526)
518
519 2004-04-19  Angus Leeming  <leeming@lyx.org>
520
521         * BufferView_pimpl.C (setBuffer): changed preview interface.
522
523         * lyxrc.[Ch] (preview): no longer a bool. Now an enum with three
524         possible values.
525
526 2004-04-19  John Levon  <levon@movementarian.org>
527
528         * BufferView_pimpl.C:
529         * text3.C: fix bug 1569 (insert->label doesn't give suggestion)
530
531 2004-04-05  Angus Leeming  <leeming@lyx.org>
532
533         * text.C (redoParagraphs): add call to updateCounters(), thereby
534         fixing the missing "Figure #:" label from the caption of a
535         figure float.
536
537 2004-04-13  Angus Leeming  <leeming@lyx.org>
538
539         * text3.C (dispatch): call Inset::.notifyCursorLeaves when the
540         cursor is clicked out of an inset.
541
542 2004-04-13  Angus Leeming  <leeming@lyx.org>
543
544         * lyx_main.[Ch] (updateInset): pass it an InsetBase pointer rather
545         than an InsetOld one.
546
547 2004-04-12  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
548
549         * format.[Ch]: add editor to Format
550         * lyxrc.[Ch]: merge RC_FORMAT and RC_VIEWER. Add editor to Format
551         * LyXAction.C, lfuns.h, lyxfunc.C: add lfun LFUN_GRAPHICS_EDIT
552
553 2004-04-08  André Pönitz  <poenitz@gmx.net>
554
555         * metricsinfo.h: remove PainterInfo::width member
556
557 2004-04-08  Angus Leeming  <leeming@lyx.org>
558
559         * lyx_sty.C (boldsymbol_def): modify so that it outputs
560         "\providecommand" rather than "\newcommand", thereby preventing
561         clashes with packages that define "\boldsymbol" themselves.
562         Eg, beamer.
563
564 2004-04-08  Angus Leeming  <leeming@lyx.org>
565
566         * lyxrc.C (read): don't try to set the color of none, inherit, ignore
567         thereby squashing an unnecessary warning.
568
569 2004-04-01  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
570
571         * LaTeXFeatures.[Ch]: change buffer_ to a pointer and add accessor
572         setBuffer()
573
574 2004-04-07  Alfredo Braunstein  <abraunst@lyx.org>
575
576         * BufferView.C (setCursor): call redoParagraph (some insets could
577         have been opened)
578         (putSelectionAt): remove the 'double update' trick
579
580         * BufferView_pimpl.C (fitCursor): call refreshPar
581         (workAreaDispatch): remove an uneeded update call
582         (dispatch): remove some manual update calls
583
584         * cursor.[Ch]: remove cached_y_, updatePos
585         (selHandle): set noUpdate when appropriate
586
587         * lyxfunc.C (dispatch): track if we need an update
588
589         * metricsinfo.[Ch]: PainterInfo receive a Painter & on construction
590
591         * rowpainter.[Ch] (RowPainter): remove superfluous xo_ parameter
592         (paintSelection): cheap optimization, do not call cursorX when not
593         needed
594         (paintPars): change signature
595         (refreshPar): add
596         (paintText): adjust
597         (paintTextInset): adjust
598
599         * text.C: adjust
600
601 2004-04-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
602
603         * lengthcommon.C: compilation fix: remove explicit array size from
604         unit_name[] and friends
605
606 2004-04-05  Angus Leeming  <leeming@lyx.org>
607
608         * LyXAction.C (init): set LFUN_DIALOG_UPDATE's atrib flag to NoBuffer.
609
610         * lyxfunc.C (getStatus): enable LFUN_DIALOG_UPDATE if no buffer is
611         present only for the preferences dialog.
612         (dispatch): handle LFUN_DIALOG_UPDATE for the preferences dialog.
613
614 2004-04-05  Angus Leeming  <leeming@lyx.org>
615
616         * lyxrc.[Ch] (write): now takes a 'bool ignore_system_lyxrc' arg
617         to enable the frontends to export changes to lyxrc correctly.
618
619         * lyxfunc.C (dispatch): output lyxrc.write("preferences", false).
620
621 2004-04-07  André Pönitz  <poenitz@gmx.net>
622
623         * cursor.[Ch] (selClear, adjust): remove math
624
625         * cursor_slice.C: more agressive assert
626
627         * lyxfunc.C:
628         * BufferView_pimpl.C: rework mouse event dispatch
629
630         * dociterator.C:
631         * paragraph.C:
632         * text2.C:
633         * text3.C: adjust
634
635 2004-04-05  André Pönitz  <poenitz@gmx.net>
636
637         * cursor.[Ch] (valign, halign...): remove unneeded functions
638
639 2004-04-05  Angus Leeming  <leeming@lyx.org>
640
641         * lyxlength.[Ch] (unit_name et al.): const-correct.
642
643 2004-04-05  Angus Leeming  <leeming@lyx.org>
644
645         * BufferView_pimpl.C:
646         * buffer.C:
647         * counters.C:
648         * cursor.C:
649         * lyxfunc.C
650         * paragraph.C:
651         * pariterator.C:
652         * text.C:
653         * text2.C:
654         * text3.C: wrap #warning calls inside #ifdef WITH_WARNINGS blocks.
655
656 2004-04-01  Alfredo Braunstein  <abraunst@lyx.org>
657
658         * text3.C (getStatus): add LFUN_BEGINNINGBUF
659
660 2004-04-01  Alfredo Braunstein  <abraunst@lyx.org>
661
662         * lyxfind.C: add a couple of inTexted() tests + other small fixes
663         * BufferView_pimpl.[Ch] (getStatus)
664         * BufferView.[Ch] (getStatus): add
665         * lyxfunc.C (getStatus): move lfuns handled in
666         BufferView::dispatch to te function above
667         * Cursor.C (setSelection): set selection() = true
668
669 2004-04-01  Alfredo Braunstein  <abraunst@lyx.org>
670
671         * lyxfunc.C (getStatus): enable LFUN_WORD_{FIND,REPLACE}
672
673 2004-03-31  Angus Leeming  <leeming@lyx.org>
674
675         * lyxfunc.C (dispatch): Fall through to the generic
676         Dialogs::show("preamble").
677
678 2004-03-31  Angus Leeming  <leeming@lyx.org>
679
680         * lyxfunc.C (dispatch): Fall through to the generic
681         Dialogs::show("spellchecker").
682
683 2004-03-31  Angus Leeming  <leeming@lyx.org>
684
685         * lyxfunc.C (getStatus, dispatch): changed invocation of the
686         preferences dialog.
687
688 2004-03-31  Alfredo Braunstein  <abraunst@lyx.org>
689
690         * BufferView.C
691         * cursor.[Ch]
692         * dociterator.[Ch]:
693         * insetiterator.[Ch]:
694         * lyxfind.C:
695         * lyxfunc.C:
696         * pariterator.[Ch]:
697         * text2.C:
698         * undo.[Ch]: s/DocumentIterator/DocIterator/g
699
700 2004-03-31  Alfredo Braunstein  <abraunst@lyx.org>
701
702         * BufferView.C (setCursor, putSelectionAt): call edit to open the
703         insets where we are putting the cursor.
704
705 2004-03-31  Angus Leeming  <leeming@lyx.org>
706
707         * lfuns.h:
708         * LyXAction.C: new lfun LFUN_LYXRC_APPLY.
709
710         * lyxrc.[Ch] (read, write): overloaded member functions taking
711         a std::[io]stream arguments.
712
713         * lyxfunc.C (getStatus, dispatch): handle LFUN_LYXRC_APPLY.
714
715 2004-03-31  Angus Leeming  <leeming@lyx.org>
716
717         * lyxfunc.C (loadTextclass): new helper function, invoked by two of
718         dispatch's case blocks, LFUN_TEXTCLASS_APPLY and LFUN_TEXTCLASS_LOAD.
719
720         * lyxtextclass.C (load): if the text class couldn't be loaded, then
721         don't overwrite 'loaded_ = false' with 'loaded_ = true' !
722
723 2004-03-31  Angus Leeming  <leeming@lyx.org>
724
725         * lyxfunc.C (dispatch): remove the cursor-manipulation code from
726         the LFUN_ALL_INSETS_TOGGLE code.
727
728 2004-03-30  Angus Leeming  <leeming@lyx.org>
729
730         * lyxfunc.C (dispatch): the specialization Dialogs::showDocument
731         has died. Fall through to the generic Dialogs::show("document").
732
733 2004-03-30  Angus Leeming  <leeming@lyx.org>
734
735         * lfuns.h:
736         * LyXAction.C: new lfuns LFUN_LANGUAGE_BUFFER, LFUN_TEXTCLASS_APPLY,
737         LFUN_TEXTCLASS_LOAD, LFUN_SAVE_AS_DEFAULT, LFUN_BUFFERPARAMS_APPLY.
738
739         * lyxfunc.C (getStatus, dispatch): define the actions for these
740         lfuns. Little more than a cut and pste job from ControlDocument.C
741
742         * lyxtextclass.[Ch] (loaded): accessor for the private bool loaded_.
743
744 2004-03-30  Angus Leeming  <leeming@lyx.org>
745
746         * lfuns.h:
747         * LyXAction.C (init): new lfuns, LFUN_KEYMAP_TOGGLE,
748         LFUN_NEXT_INSET_TOGGLE, LFUN_ALL_INSETS_TOGGLE.
749
750         * lyxfunc.C (dispatch): LFUN_ALL_INSETS_TOGGLE is used to toggle the
751         open/closed state of ollapsable insets. Usage:
752
753         all-inset-toggle <state> <name>, where
754         <state> == "open" || "closed" || "toggle" and
755         <name> is an identifier for a 'type' of inset. Eg "branch", "ert",...
756
757         * lyxtext.h, text2.C (toggleInset): removed.
758
759         * text3.C (dispatch): split the existing LFUN_INSET_TOGGLE in two,
760         LFUN_KEYMAP_TOGGLE and LFUN_NEXT_INSET_TOGGLE. LFUN_NEXT_INSET_TOGGLE
761         now passes LFUN_INSET_TOGGLE to the found inset.
762
763         * InsetList.[Ch] (insetsOpenCloseBranch): removed. Functionality
764         is now invoked as "all-insets-toggle toggle branch".
765
766 2004-03-30  Angus Leeming  <leeming@lyx.org>
767
768         * dociterator.C:
769         * insetiterator.C:
770         * pariterator.[Ch]: added/corrected header blurb.
771
772 2004-03-30  Alfredo Braunstein  <abraunst@lyx.org>
773
774         * dociterator.[Ch]: add an inset_ member
775         (backwardPos): implemented
776         (backwardPos, forwardPos): use inset_ when the stack is empty.
777         (doc_iterator_begin, doc_iterator_end): implemented
778         * pariterator.[Ch]: adjust, add begin, end
779         * insetiterator.[Ch]: adjust, add begin, end
780         * cursor.C:
781         * document.C:
782         * BufferView.C:
783         * BufferView_pimpl.C:
784         * CutAndPaste.C: adjust
785
786 2004-03-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
787
788         * buffer.C: increment file format to 232.
789         * LaTeXFeatures.C: add bibtopic package.
790         * bufferparams.[Ch]: param \use_bibtopic.
791
792         * lyxrc.[Ch]: add lyxrc bibtex_command
793         * LaTeX.C: use rc.bibtex_command instead of hardcoded string.
794
795         * buffer.C: increment file format to 231.
796
797 2004-03-28  Alfredo Braunstein  <abraunst@lyx.org>
798
799         * dociterator.C: implement forwardPar
800         * iterators.[Ch]: remove, replaced by
801         * pariterator.[Ch]: this. derive ParIterator from DocumentIterator
802         * BufferView.C:
803         * BufferView_pimpl.C:
804         * CutAndPaste.C:
805         * buffer.C:
806         * bufferview_funcs.C:
807         * cursor.C:
808         * lyxfind.C
809         * lyxfunc.C
810         * paragraph_funcs.C
811         * toc.C:
812         * Makefile.am: adjust
813
814 2004-03-28  Alfredo Braunstein  <abraunst@lyx.org>
815
816         * CutAndPaste.C (pasteSelection): fix 2 crashes
817         (eraseSelection): fix a crash
818         * paragraph_funcs.C: remove a warning
819
820 2004-03-28  Angus Leeming  <leeming@lyx.org>
821
822         * lfuns.h:
823         * LyXAction.C (init): new LFUN_PRINT.
824
825         * lyxfunc.C (getStatus, dispatch): handle LFUN_PRINT.
826
827 2004-03-27  Angus Leeming  <leeming@lyx.org>
828
829         * lfuns.h:
830         * LyXAction.C (init): new LFUN_EXPORT_CUSTOM.
831
832         * lyxfunc.C (getStatus, dispatch): handle LFUN_EXPORT_CUSTOM.
833
834 2004-03-27  Angus Leeming  <leeming@lyx.org>
835
836         * paragraph_funcs.C (moveItem): fix memory leaks, ensure that
837         insetlist always contains non-null pointers to insets.
838
839 2004-03-26  Angus Leeming  <leeming@lyx.org>
840
841         * src/BufferView_pimpl.C:
842         * src/CutAndPaste.C:
843         * src/buffer.C:
844         * src/iterators.C:
845         * src/output_plaintext.C:
846         * src/outputparams.h:
847         * src/paragraph_funcs.C:
848         * src/rowpainter.C:
849         * src/text.C:
850         * src/text2.C:
851         * src/frontends/controllers/ControlErrorList.C:
852         * src/frontends/gtk/FileDialogPrivate.C:
853         * src/frontends/gtk/GPainter.C:
854         * src/frontends/gtk/GToolbar.C:
855         * src/frontends/qt2/QRef.C:
856         * src/mathed/math_scriptinset.C: squash compiler warnings.
857
858 2004-03-26  Angus Leeming  <leeming@lyx.org>
859
860         * ispell.C (LaunchIspell::start):
861         * lyx_cb.C (AutoSaveBuffer::start):
862         invoke run(DontWait) rather than runNonBlocking().
863
864 2004-03-26  Alfredo Braunstein  <abraunst@lyx.org>
865
866         * buffer_funcs.C (readFile): add cancel button to two prompt dialogs
867
868 2004-03-26  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
869
870         * kbsequence.C (print): adjust
871
872         * kbmap.C (printKeySym): rename and change signature
873         (printKey): use LyXKeySym::print()
874
875 2004-03-26  Martin Vermeer  <martin.vermeer@hut.fi>
876
877         * undo.C: add using std::advance to compile for stlport
878
879 2004-03-24  Angus Leeming  <leeming@lyx.org>
880
881         * lyxfunc.C (dispatch): remove test code in LFUN_QUIT handler as
882         it leads to a crash when no buffer is present.
883
884 2004-03-25  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
885             Martin Vermeer  <martin.vermeer@hut.fi>
886
887         * lyxfunc.C (dispatch):
888         * bufferparams.C (readToken): use the new LColor::setColor
889
890         * LColor.[Ch] (setColor): new version that takes two strings as
891         argument and creates a new color entry if necessary
892
893 2003-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
894
895         * buffer.C (makeLaTeXFile): if the main latex file that is
896         processed is usually a subdocument of some master, then pretend
897         for a while that it is actually the master
898
899 2003-02-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
900
901         * buffer.C (getLabelList):
902         (getBibkeyList): use getMasterBuffer()
903         (getMasterBuffer): new method. Returns the main document in the
904         case where one is using included documents.
905
906 2004-03-25  André Pönitz  <poenitz@gmx.net>
907
908         * Makefile.am:
909         * iterators.[Ch]:
910         * PosIterator.[Ch]: drop PosIterator, replaced by DocumentIterator
911
912         * ParagraphList_fwd.h: change ParagraphList to a std::vector
913
914         * CutAndPaste.[Ch]: simpler interface by moving some stuff from
915         text*.C over here. Rename namespace CutAndPaste to lyx::cap
916
917         * ParameterStruct.h: merge with ParagraphParameters
918
919         * lyxtext.h: remove LyXText::parOffset() and getPar()
920
921         * text3.C: Remove all 'manual' update calls. We do now one per user
922         interaction which is completely sufficient.
923
924         * Bidi.C:
925         * BufferView.[Ch]:
926         * BufferView_pimpl.C:
927         * FontIterator.[Ch]:
928         * MenuBackend.C:
929         * ParagraphParameters.[Ch]:
930         * buffer.C:
931         * buffer.h:
932         * bufferlist.C:
933         * cursor.[Ch]:
934         * cursor_slice.[Ch]:
935         * dociterator.[Ch]:
936         * errorlist.[Ch]:
937         * factory.C:
938         * lfuns.h:
939         * lyxfind.C:
940         * lyxfunc.C:
941         * output_docbook.[Ch]:
942         * output_latex.[Ch]:
943         * output_linuxdoc.[Ch]:
944         * output_plaintext.[Ch]:
945         * paragraph.[Ch]:
946         * paragraph_funcs.[Ch]:
947         * paragraph_pimpl.[Ch]:
948         * rowpainter.C:
949         * tabular.[Ch]:
950         * text.C:
951         * text2.C:
952         * toc.C:
953         * undo.[Ch]: adjust
954
955         * frontends/controllers/ControlDocument.C:
956         * frontends/controllers/ControlErrorList.C:
957         * frontends/controllers/ControlSpellchecker.C:
958         * insets/inset.C:
959         * insets/inset.h:
960         * insets/insetbase.h:
961         * insets/insetbibitem.C:
962         * insets/insetbox.C:
963         * insets/insetbranch.C:
964         * insets/insetcaption.C:
965         * insets/insetcharstyle.C:
966         * insets/insetcharstyle.h:
967         * insets/insetcollapsable.C:
968         * insets/insetcollapsable.h:
969         * insets/insetert.C:
970         * insets/insetfloat.C:
971         * insets/insetfoot.C:
972         * insets/insetmarginal.C:
973         * insets/insetnote.C:
974         * insets/insetoptarg.C:
975         * insets/insettabular.C:
976         * insets/insettext.C:
977         * insets/insettext.h:
978         * insets/insetwrap.C:
979         * mathed/math_mboxinset.C:
980         * mathed/math_nestinset.C:
981         * mathed/math_scriptinset.C:
982         * mathed/math_scriptinset.h:
983         * support/types.h:
984
985 2004-03-24  Angus Leeming  <leeming@lyx.org>
986
987         * BufferView_pimpl.C (cursorToggle): use the cursor toggle to
988         deal with any child processes that have finished but are waiting to
989         communicate this fact to the rest of LyX.
990
991 2004-03-24  Angus Leeming  <leeming@lyx.org>
992
993         64-bit compile fixes.
994
995         * errorlist.[Ch] (pos_start, pos_end): store as lyx::pos_type.
996         (c-tor): pass lyx::pos_types rather than ints.
997
998         * paragraph.[Ch] (beginOfBody, begin_of_body_): return, store as
999         lyx::pos_type.
1000
1001         * text.C (Delete): compile fix.
1002         (getPar): ensure that function declaration is the same as that in
1003         the header file.
1004
1005 2004-03-23  Angus Leeming  <leeming@lyx.org>
1006
1007         * ispell.C (LaunchIspell):
1008         * lyx_cb.C (AutoSaveBuffer): change the signature of clone to return
1009         a boost::shred_ptr rather than a std::auto_ptr.
1010
1011 2004-03-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1012
1013         * lyxfunc.C (getStatus): handle read-only buffers correctly;
1014         handle LFUN_FILE_INSERT_*
1015
1016         * lyxrc.C (setDefaults, getDescription, output, read):
1017         * lyxrc.h: remove ps_command
1018
1019 2004-03-22  Angus Leeming  <leeming@lyx.org>
1020
1021         * lyx_main.C (error_handler, init): remove handler for SIGPIPE.
1022         Ensure that error_handler is processed once only and that all data
1023         is saved before attempting to output any warning messages.
1024
1025         * cursor.[Ch] (nopos_, noPos): remove unused member variable/function.
1026
1027 2004-03-21  Alfredo Braunstein  <abraunst@lyx.org>
1028
1029         * tabular.C (TeXRow): crash fix (from Kayvan and André)
1030
1031 2004-03-19  André Pönitz  <poenitz@gmx.net>
1032
1033         * cursor.[Ch] (reset): take main text inset as argument
1034
1035         * BufferView: adjust
1036         * BufferView_pimpl.C: adjust
1037
1038         * paragraph.[Ch]: fix completely broken operator=()
1039
1040 2004-03-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1041
1042         * LColor.C (getFromLyXName): make sure that the color name is used
1043         as lowercase.
1044
1045 2004-03-17  Angus Leeming  <leeming@lyx.org>
1046
1047         * lfuns.h:
1048         * LyXAction.C (init): remove LFUN_FORKS_KILL.
1049
1050         * lyxfunc.C (getStatus, dispatch) remove lfuns to show the forks
1051         dialog and to kill a forked process.
1052
1053 2004-03-17  Alfredo Braunstein  <abraunst@lyx.org>
1054
1055         * text2.C (setCursorFromCoordinates): fix font problem
1056
1057 2004-03-17  Alfredo Braunstein  <abraunst@lyx.org>
1058
1059         * BufferView_pimpl.C (resizeCurrentBuffer): remove unneeded and
1060         bogus "rebuild cursor" code
1061
1062 2004-03-11  André Pönitz  <poenitz@gmx.net>
1063
1064         * buffer.[Ch]: use InsetText instead of LyXText as container for
1065         the main lyx text.
1066
1067         * dociterator.[Ch]: drop the BufferView * member which is not needed
1068         anymore after the change to buffer.C
1069
1070         * paragraph_funcs.C:
1071         * text.C:
1072         * text2.C:
1073         * BufferView.[Ch]:
1074         * BufferView_pimpl.[Ch]:
1075         * cursor.[Ch]:
1076         * cursor_slice.[Ch]: adjust
1077
1078         * text3.C: fix bug in mathDispatch
1079
1080 2004-03-08  André Pönitz  <poenitz@gmx.net>
1081
1082         * undo.[Ch]: use 'StableDocumentIterator' as base for
1083         the Undo struct.
1084
1085 2004-03-07  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1086
1087         * LaTeXFeatures.C:
1088         * bufferparams.[Ch]: add jurabib support and param.
1089
1090         * LaTeX.C: add FIXME/comment.
1091
1092 2004-03-05  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1093
1094         * buffer.C: increment file format to 230.
1095
1096 2004-03-04  Alfredo Braunstein  <abraunst@lyx.org>
1097
1098         * cursor.C (dispatch): avoid infinite loops
1099
1100 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1101
1102         * rowpainter.C (paintSelection): fix x coordinates
1103
1104 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1105
1106         * text.C (rowBreakPoint): fix breaking before displayed insets
1107
1108 2004-03-01  André Pönitz  <poenitz@gmx.net>
1109
1110         * dociterator.[Ch]: new class for the 'iterator part' of LCursor.
1111
1112         * cursor.[Ch]: adjust, additioally: remove the 'current_' machinery
1113
1114         * Makefile.am:
1115         * BufferView.C:
1116         * BufferView_pimpl.C:
1117         * buffer.C:
1118         * lyxfind.C:
1119         * lyxfunc.C:
1120         * text.C:
1121         * text2.C:
1122         * text3.C: adjust
1123
1124 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1125
1126         * lyxtext.h:
1127         * text.C:
1128         * text2.C:
1129         * rowpainter.C:
1130         * BufferView_pimpl.C: rename textwidth -> maxwidth,
1131         prepareToPrint -> computeRowMetrics and remove textWidth accessor.
1132
1133 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1134
1135         * Bidi.[Ch] (computeTables): const correctness
1136         * lyxrow.[Ch]: add RowMetrics class, move there fill_separator,
1137         fill_hfill, fill_label_hfill and x from Row
1138         * lyxtext.h: prepareToPrint returns a RowMetrics
1139         * rowPainter.C: adjust
1140         * text.C (prepareToPrint): use width, not textWidth. adjust
1141         (redoParagraphInternal, cursorX): adjust
1142         * text2.C (getColumnNearX): adjust
1143         (init): put a default value to the top LyXText::width
1144
1145 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1146
1147         * FontIterator.[Ch]: move FontIterator from lyxtext.h/text.C to here
1148
1149 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1150
1151         * lyxtext.h: add FontIterator class
1152
1153         * text.C (FontIterator, operator*, operator->, operator++): add
1154         (rowBreakPoint, setRowWidth): adjust (fixing a
1155         rebreaking bug)
1156
1157 2004-02-25  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1158
1159         * BufferView_pimpl.C (workAreaDispatch): allow also
1160         LFUN_FILE_OPEN, which is used by the drag-and-drop code.
1161
1162 2004-02-27  Alfredo Braunstein  <abraunst@lyx.org>
1163
1164         * text.C (rowBreakPoint): fix a bug showing with very large insets
1165
1166 2004-02-25  André Pönitz  <poenitz@gmx.net>
1167
1168         * text3.C:
1169         * cursor.[Ch]: move some mathed specific code to mathed
1170
1171 2004-02-21  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1172
1173         * lyxrc.C, buffer.C, exporter.C: use always a temp dir, ignore
1174         use_tempdir in preferences
1175         * buffer.C (readFile), lyxvc.C (getLogFile): check success of
1176         tempfile creation
1177         * lyx_main.C: ensure that tempdir is valid
1178         * lyxlex.h: correct typo
1179         * buffer.[Ch] (isMultiLingual), (isUnnamed): make const
1180         * paragraph.[Ch] (isMultiLingual): make const
1181         * cursor.[Ch] (openable): make const
1182
1183 2004-02-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1184
1185         * text3.C: fixed LFUN_QUOTE and add lfun arguments single/double.
1186
1187 2004-02-20  André Pönitz  <poenitz@gmx.net>
1188
1189         * dispatchresult.h: rename 'FINISHED' to 'FINISHED_LEFT'
1190
1191         * cursor.[Ch]: prepare for localized getStatus()
1192
1193         * lyxtext.h:
1194         * tabular.C:
1195         * text.C:
1196         * text2.C:
1197         * text3.C:  streamlines the LyXText cursor movement handlers a bit.
1198
1199 2004-02-20  André Pönitz  <poenitz@gmx.net>
1200
1201         * lyxfunc.[Ch]: rename view_status_message() to viewStatusMessage()
1202
1203 2004-02-16  Alfredo Braunstein  <abraunst@lyx.org>
1204
1205         * text2.C (setCursorFromCoordinates): switch to absolute coords
1206         (cursorUp): adjust
1207         (cursorDown): adjust
1208         * text3.C (dispatch): adjust
1209
1210 2004-02-16  André Pönitz  <poenitz@gmx.net>
1211
1212         * cursor.[Ch]: use new '_void_ dispatch(...)' signature (see
1213           insets/ChangeLog)
1214
1215         * cursor_slice.[Ch]: remove unneeded acessor function
1216
1217         * lyxtext.h: rename rtl() to isRTL()
1218
1219         * rowpainter.C:
1220         * tabular.C:
1221         * text.C:
1222         * text2.C:
1223         * text3.C: adjust
1224
1225 2004-02-16  Alfredo Braunstein  <abraunst@lyx.org>
1226
1227         * rowpainter.C (paintSelection): coord fix
1228
1229 2004-02-15  Georg Baum <Georg.Baum@post.rwth-aachen.de>
1230
1231         * Spacing.C: compile fix
1232
1233 2004-02-13  Alfredo Braunstein  <abraunst@lyx.org>
1234
1235         * cursor.C (dispatch): restore current_ before returning
1236
1237 2004-02-13  Alfredo Braunstein  <abraunst@lyx.org>
1238
1239         * text2.C (cursorUp, cursorDown): fix coords
1240         (moveUp): fix crash
1241
1242 2004-02-12  André Pönitz  <poenitz@gmx.net>
1243
1244         * lyxtext.h:
1245         * text.C:
1246         * text2.C:
1247         * text3.C: add LCursor & parameter to most cursor movement functions
1248           remove usage of LyXText::cursorRow() and cursorPar()
1249
1250         * cursor.[Ch]: add textRow() needed members
1251
1252         * BufferView.C:
1253         * BufferView_pimpl.C:
1254         * paragraph.[Ch]:
1255         * BufferView.C:
1256         * BufferView_pimpl.C: adjust
1257
1258 2004-02-11  André Pönitz  <poenitz@gmx.net>
1259
1260         * lyxfunc.C:
1261         * BufferView.[Ch]:
1262         * BufferView_pimpl.C: shift undo/redo handling
1263
1264         * cursor.[Ch]: fix mathed crash
1265
1266         * lyxfind.C:
1267         * lyxtext.h: move selectionAsText to LCursor
1268
1269         * output_latex.C:
1270         * paragraph.C:
1271         * text.C:
1272         * text2.C:
1273         * text3.C: adjust
1274
1275         * rowpainter.C: fix excessive drawing
1276
1277 2004-02-06  André Pönitz  <poenitz@gmx.net>
1278
1279         * BufferView.[Ch]:
1280         * BufferView_pimpl.[Ch]:
1281         * text3.C: move some text specific LFUN handling
1282
1283 2004-02-06  Alfredo Braunstein  <abraunst@lyx.org>
1284
1285         * text3.C (checkInsetHit): adjust coords
1286         * text2.C (getColumnNearX): adjust coords
1287         (edit): adjust coords
1288         * text.C (getRowNearY): add two asserts
1289
1290 2004-02-06  Martin Vermeer  <martin.vermeer@hut.fi>
1291
1292         * converter.C:
1293         * format.C: add using std::distance to compile on gcc 2.95/stlport
1294
1295 2004-02-04  Martin Vermeer  <martin.vermeer@hut.fi>
1296
1297         * cursor.[Ch]: workaround gcc 2.95 pointer comparison bug
1298
1299 2004-02-04  André Pönitz  <poenitz@gmx.net>
1300
1301         * BufferView.[Ch] (insertInset):
1302         * BufferView_pimpl.[Ch] (insertInset): remove unneeded return value
1303
1304         * text2.C:
1305         * text3.C: adjust
1306
1307 2004-02-03  Alfredo Braunstein  <abraunst@lyx.org>
1308
1309         * BufferView_pimpl.C (dispatch): remove call to LCursor::dispatch
1310         on the default clause of the switch
1311         * lyxfunc.C (dispatch): call BufferView::dispatch if the event
1312         wasn't catched by LCursor::dispatch
1313
1314 2004-02-03  André Pönitz  <poenitz@gmx.net>
1315
1316         * BufferView.C:
1317         * cursor.[Ch]: some additional asserts
1318
1319         * undo.[Ch]: remove LyXText dependency in interface
1320
1321         * lyxfunc.C: adjust
1322
1323         * lyxtext.h (firstPar, lastPar): remove dead functions
1324
1325         * text.C:
1326         * text2.C:
1327         * text3.C:
1328         * paragraph.[Ch]: adjust
1329
1330 2004-02-03  Alfredo Braunstein  <abraunst@lyx.org>
1331
1332         * lyxfind.C (find): fix argument order in call to ::find
1333
1334 2004-02-02  André Pönitz  <poenitz@gmx.net>
1335
1336         * cursor.[Ch]: remove direct access to anchor
1337
1338         * text.C: remove findText() hack
1339
1340 2004-02-02  Alfredo Braunstein  <abraunst@lyx.org>
1341
1342         * iterators.[Ch] (lockPath): remove in favour of...
1343         * BufferView.[Ch] (setCursor): this addition
1344         * BufferView.C (putSelectionAt): adjust
1345         * undo.C (performUndoOrRedo): adjust
1346         * lyxfunc.C (dispatch): adjust
1347
1348 2004-02-02  Alfredo Braunstein  <abraunst@lyx.org>
1349
1350         * iterators.C (lockPath): add a missing slice
1351         * undo.C (performUndoOrRedo): remove redundant positioning code
1352
1353 2004-02-01  Lars Gullik Bjonnes  <larsbj@gullik.net>
1354
1355         * vc-backend.C (scanMaster): ";" -> ';'
1356
1357 2004-01-31  Lars Gullik Bjonnes  <larsbj@gullik.net>
1358
1359         * lyxtextclasslist.C (less_textclass_avail_desc): inherit from
1360         std::binary_function
1361
1362         * lyxtextclass.C (compare_name): rename to...
1363         (LayoutNamesEqual): ...this
1364
1365         * lyxlex_pimpl.C (compare_tags): inherit from
1366         std::binary_function, put back into anon namespace
1367
1368         * lyxfind.C (MatchString): inherig from std::binary_function
1369         (findChange): use empty() istead of !size()
1370
1371         * format.C (FormatNamesEqual): new functor
1372         (getFormat): use it
1373         (getNumber): use it
1374         (add): use it
1375         (erase): use it
1376         (setViewer): use it
1377
1378         * converter.C (compare_Converter): rename to...
1379         (ConverterEqual): ...this, and fixup a bit.
1380         (getConverter): use it, and make function const
1381         (getNumber): use it, and make function const
1382         (add): use it
1383         (erase): use it:
1384
1385         * bufferlist.C: add using boost::bind
1386
1387         * MenuBackend.C (MenuNamesEqual): new functor
1388         (hasMenu): use it, and make function const
1389         (hasSubmenu): use nested bind to get rid of compare_memfun.
1390
1391 2004-01-30  André Pönitz  <poenitz@gmx.net>
1392
1393         * BufferView_pimpl.C:
1394         * cursor.C:
1395         * cursor.h:
1396         * cursor_slice.[Ch]:
1397         * lyxfunc.C:
1398         * lyxtext.h:
1399         * paragraph_funcs.C:
1400         * paragraph_funcs.h:
1401         * rowpainter.C:
1402         * text.C:
1403         * text2.C:
1404         * text3.C: move some of the edit(x,y) handling to the insets
1405         some coordinate changes.
1406
1407 2004-01-28  Lars Gullik Bjonnes  <larsbj@gullik.net>
1408
1409         * text.C: add using statements for std::advance and std::distance
1410
1411         * paragraph.C: add using statement for std::distance
1412
1413         * lyxfind.C: add using statement for std::advance
1414
1415         * cursor.C (region): remove std:: from swap
1416         (openable): use nucleus in stead of operator->
1417
1418         * BufferView.C: add using statements for std::distance and std::swap
1419
1420 2004-01-27  Lars Gullik Bjonnes  <larsbj@gullik.net>
1421
1422         * iterators.C: Remove the pimple, move the needed structures to
1423         the header file. Create accessor for the positions stack.
1424         (asPosIterator): remove function
1425
1426         * PosIterator.C (PosIterator): move constructors to top of file
1427         (PosIterator): reimplement the constructor taking a ParIterator in
1428         terms of setFrom.
1429         (setFrom): new function
1430         (operator!=): inline it
1431
1432 2004-01-26  Lars Gullik Bjonnes  <larsbj@gullik.net>
1433
1434         * lyxfind.C (replaceAll): use std::advance
1435
1436         * iterators.h: inherit from std::iterator.
1437
1438         * PosIterator.C (advance, distance): remove
1439         * PosIterator.h: interit from std::iterator.
1440
1441 2004-01-26  André Pönitz  <poenitz@gmx.net>
1442
1443         * BufferView.[Ch]:
1444         * BufferView_pimpl.[Ch]:
1445         * InsetList.[Ch]:
1446         * PosIterator.[Ch]:
1447         * buffer.h:
1448         * bufferview_funcs.C:
1449         * cursor.[Ch]:
1450         * cursor_slice.h:
1451         * factory.[Ch]:
1452         * iterators.[Ch]:
1453         * lyxfind.C:
1454         * lyxfunc.C:
1455         * lyxtext.h:
1456         * output_docbook.C:
1457         * output_latex.C:
1458         * output_linuxdoc.C:
1459         * output_plaintext.C:
1460         * paragraph.[Ch]:
1461         * paragraph_funcs.[Ch]:
1462         * paragraph_pimpl.[Ch]:
1463         * rowpainter.C:
1464         * tabular.C:
1465         * tabular.h:
1466         * text.C:
1467         * text2.C:
1468         * text3.C: more IU:  dumps most of the rest of the mathcursor
1469     implementation into cursor.[Ch]; "globalize" a bit of it.
1470
1471 2004-01-25  Angus Leeming  <leeming@lyx.org>
1472
1473         * lyxfunc.C (dispatch): Dialogs::showSearch is no more.
1474
1475 2004-01-19  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1476
1477         * LaTeXFeatures.h: add nice_ and nice() const
1478         * buffer.[Ch]: remove niceFile(), use LaTeXFeatures::nice() instead
1479
1480 2004-01-20  André Pönitz  <poenitz@gmx.net>
1481
1482         * BufferView.[Ch]:
1483         * BufferView_pimpl.C:
1484         * PosIterator.C:
1485         * bufferview_funcs.C:
1486         * cursor.[Ch]:
1487         * cursor_slice.[Ch]:
1488         * factory.C:
1489         * iterators.C:
1490         * lyx_cb.C:
1491         * lyxfind.C:
1492         * lyxfunc.C:
1493         * lyxtext.h:
1494         * rowpainter.C:
1495         * text.C:
1496         * text2.C:
1497         * text3.C:
1498         * undo.[Ch]: lots of IU. Shift selection stuff from the BufferView to
1499           LCursor and mathcursor parts to LCursor and InsetBase.
1500
1501 2004-01-15  André Pönitz  <poenitz@gmx.net>
1502
1503         * cursor_slice.[Ch]: add a few covienience functions
1504
1505         * funcrequest.[Ch]: remove BufferView * member
1506
1507         * BufferView_pimpl.C:
1508         * cursor.C:
1509         * factory.[Ch]:
1510         * lyxfind.[Ch]:
1511         * lyxfunc.C:
1512         * lyxtext.h:
1513         * text3.C:
1514         * undo.[Ch]: adjust to this and changed signature of Inset::priv_dispatch()
1515
1516 2004-01-14  Alfredo Braunstein  <abraunst@lyx.org>
1517
1518         * text.C (getWord): fix getWord (and thus LFUN_WORDSEL)
1519         * text3.C (dispatch): fix LFUN_WORD{RIGHT,LEFT}SEL
1520
1521 2004-01-13  André Pönitz  <poenitz@gmx.net>
1522
1523         * textcursor.[Ch]:
1524         * lyxtext.h: hide cursor and selection anchor behind accessor function
1525
1526         * BufferView.C:
1527         * BufferView_pimpl.[Ch]:
1528         * PosIterator.C:
1529         * bufferview_funcs.C:
1530         * cursor.h:
1531         * lyxfind.C:
1532         * lyxfunc.C:
1533         * text.C:
1534         * text2.C:
1535         * text3.C:
1536         * undo.C: adjust
1537
1538         * cursor.h:
1539         * cursor_slice.[Ch]: some integer type changes for inset unification
1540
1541         * lyxcursor.[hC]: remove, it's CursorSlice now.
1542
1543         * Makefile.am:
1544         * BufferView_pimpl.[Ch]:
1545         * bufferview_funcs.C:
1546         * cursor_slice.C:
1547         * lyxtext.h:
1548         * text.C:
1549         * text2.C:
1550         * text3.C:
1551         * textcursor.[Ch]: adjust
1552
1553 2004-01-08  Alfredo Braunstein  <abraunst@lyx.org>
1554
1555         * text2.C (undoSpan): add and use
1556         * text.C (breakParagraph): use undoSpan (fix bug 578)
1557         * lyxtext.h: adjust
1558
1559 2004-01-08  Angus Leeming  <leeming@lyx.org>
1560
1561         * BufferView_pimpl.C (MenuInsertLyXFile):
1562         * lyx_cb.C (WriteAs, getContentsOfAsciiFile):
1563         * lyxfunc.C (menuNew, open, doImport):
1564         FileFilterList change to the FileDialog open and save functions.
1565
1566 2004-01-07  Lars Gullik Bjonnes  <larsbj@gullik.net>
1567
1568         * ShareContainer.h: make isEqual and isUnique adaptable
1569
1570         * CutAndPaste.C: make resetOwnerAndChanges adaptable
1571
1572 2004-01-07  Angus Leeming  <leeming@lyx.org>
1573
1574         * LyXAction.C:
1575         * lfuns.h: add LFUN_WORD_FIND and LFUN_WORD_REPLACE.
1576
1577         * BufferView_pimpl.C (dispatch): act on these LFUNs.
1578
1579         * lyxfind.[Ch] (find2string, replace2string, find, replace): new
1580         functions replacing find, replace and replaceAll.
1581
1582         * lyxfunc.C (dispatch): invoke LFUN_WORD_FIND from a call to
1583         LFUN_WORDFIND(FORWARD|BACKWARD).
1584
1585 2004-01-07  Alfredo Braunstein  <abraunst@lyx.org>
1586
1587         * text.C (breakParagraph): remove an outdated #warning
1588
1589 2004-01-07  André Pönitz  <poenitz@gmx.net>
1590
1591         * lyxfind.C: somewhat clearer logic
1592
1593         * text.C: prevent crash in cursorX on unitialized row cache
1594
1595 2004-01-07  Alfredo Braunstein  <abraunst@lyx.org>
1596
1597         * lyxcursor.[Ch] (operator>): add
1598         * textcursor.C (selStart, selEnd): use std::min and std::max
1599
1600 2004-01-06  Lars Gullik Bjonnes  <larsbj@gullik.net>
1601
1602         * Chktex.C: include boost/format.hpp
1603
1604 2004-01-05  Lars Gullik Bjonnes  <larsbj@gullik.net>
1605
1606         * InsetList.C: replace functor MathcIt with adaptable functor
1607         InsetTablePosLess
1608         (insetIterator): modify accordingly
1609
1610         * BranchList.h: move the BranchNamesEqual functor here from...
1611         * BranchList.C: ... to here
1612
1613         * BranchList.C: new BranchListEqual fuctor, use it. Remove
1614         SameName and match.
1615         (add): replace a finding loop with std::find_if.
1616
1617 2003-12-31  Martin Vermeer  <martin.vermeer@hut.fi>
1618
1619         * output_docbook.C: moving LatexParam functionality into
1620         .layout files
1621
1622 2003-12-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1623
1624         * buffer.C: increment format to 229.
1625
1626 2003-12-28  Michael Schmitt  <michael.schmitt@teststep.org>
1627
1628         * LaTeXFeatures.C:
1629         * lyx_sty.[Ch]: remove minipageindent_def
1630
1631         * LyXAction.C:
1632         * factory.C:
1633         * lfuns.h:
1634         * lyxfunc.C:
1635         * text3.C: remove LFUN_INSET_MINIPAGE
1636
1637 2003-12-28  Angus Leeming  <leeming@lyx.org>
1638
1639         * text3.C (dispatch): output useful info on receipt of LFUN_GETLAYOUT.
1640
1641 2003-12-19  Alfredo Braunstein  <abraunst@lyx.org>
1642
1643         * text2.C (setParagraph): fix off-by-one crash
1644
1645 2003-12-18  Martin Vermeer  <martin.vermeer@hut.fi>
1646
1647         * output_docbook.C: header stuff for AGU
1648
1649 2003-12-17  Alfredo Braunstein  <abraunst@lyx.org>
1650
1651         * text2.C (redoCursor): remove
1652         * text.C:
1653         * text3.C:
1654         * BufferView_pimpl.C: remove calls to redoCursor and
1655         setCursor(cursor.par(), cursor.pos()) all around
1656
1657 2003-12-15  Angus Leeming  <leeming@lyx.org>
1658
1659         * buffer.C: up the format to 228.
1660
1661 2003-12-15  André Pönitz  <poenitz@gmx.net>
1662
1663         * cursor_slice.[Ch]: new class to cover texted and mathed's cursor
1664         slices
1665
1666         * Makefile.am:
1667
1668         * BufferView_pimpl.C:
1669         * cursor.[Ch]:
1670         * lyxcursor.[Ch]:
1671         * rowpainter.[Ch]:
1672         * lyxtext.h:
1673         * text.C:
1674         * text2.C:
1675         * text3.C: adjust
1676
1677 2003-12-15  Angus Leeming  <leeming@lyx.org>
1678
1679         * metricsinfo.C (ColorChanger): use LColor::getFromLyXName rather
1680         than getFromGUIName to manipulate the color.
1681
1682 2003-12-14  Angus Leeming  <leeming@lyx.org>
1683
1684         * BranchList.[Ch]: minimize the API.
1685         (Branch::getBranch, getColor): now return a 'const &'.
1686         (Branch::setSelected) now returns a bool set to true if the
1687         selection status changes.
1688         (BranchList::clear, size, getColor, setColor, setSelected,
1689         allBranches, allSelected, separator): removed.
1690         (BranchList::find): new functions, returning the Branch with
1691         the given name.
1692         (BranchList::add, remove): return a bool indicating that
1693         the operation was successful.
1694
1695         * InsetList.C (insetsOpenCloseBranch): much simplified thanks to a
1696         new InsetBranch::isBranchSlected member function.
1697
1698         * LColor.[Ch]: mimimize the API.
1699         (fill): renamed as addColor and made private.
1700         (setColor, getGUIName, getX11Name, getLaTeXName): the overloaded
1701         versions of these functions taking a string arg have been removed.
1702
1703         * bufferparams.C (readToken):
1704         * lyxfunc.C (dispatch):
1705         * lyxrc.C (read): changes due to the altered BranchList and
1706         LColor APIs.
1707
1708         * factory.C (createInset, readInset): changes due to altered
1709         InsetBranch c-tor.
1710
1711 2003-12-14  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1712
1713         * factory.C:
1714         * lyxfunc.C: remove insetminipage. "minipage-insert"
1715         now produces a frameless minipage box inset.
1716
1717 2003-12-12  Alfredo Braunstein  <abraunst@lyx.org>
1718
1719         * textcursor.[Ch] (selStart,selEnd): add new methods
1720         remove selection::start, end, use LyXCursor::operator<
1721         * lyxcursor.[Ch] (operator<): add
1722         * BufferView_pimpl.[Ch]: add new struct xsel_cache_
1723         * BufferView.[Ch] (unsetXSel): add
1724         * text2.C (clearSelection): use unsetXSel,adjust
1725         * text.C: adjust
1726         * text3.C: adjust
1727         * rowpainter.C: adjust
1728         * bufferview_funcs.C (put_selection_at): adjust
1729
1730 2003-12-12  Alfredo Braunstein  <abraunst@lyx.org>
1731
1732         * BufferView_pimpl.C: small coord. correction
1733
1734 2003-12-12  Alfredo Braunstein  <abraunst@lyx.org>
1735
1736         * BufferView_pimpl.C (workAreaDispatch): avoid crashing when
1737         dragging over the splash screen.
1738
1739 2003-12-11  Angus Leeming  <leeming@lyx.org>
1740
1741         * BufferView_pimpl.C (dispatch): remove LFUN_INSET_APPLY code
1742         as it is now handled in LyXText::dispatch.
1743
1744         * text3.C (doInsertInset): remove a level of nesting.
1745
1746 2003-12-11  Angus Leeming  <leeming@lyx.org>
1747
1748         * factory.C (createInset): changes due to the changed interface to
1749         InsetCommandMailer::string2params.
1750
1751 2003-12-10  Angus Leeming  <leeming@lyx.org>
1752
1753         * lyxfunc.C (dispatch): enable all inset dialogs to be opened with
1754         'dialog-show-new-inset <inset name>'
1755
1756 2003-12-10  Angus Leeming  <leeming@lyx.org>
1757
1758         * buffer.C: up the format to 227.
1759
1760         * factory.C: the box inset is now identified simply by 'Box'.
1761
1762 2003-12-10  Angus Leeming  <leeming@lyx.org>
1763
1764         * buffer.C: up the format to 226.
1765
1766         * factory.C: the note inset is now identified simply by 'Note'.
1767
1768 2003-12-08  Alfredo Braunstein  <abraunst@libero.it>
1769
1770         * lyxtext.h, text2.C (setLayout): don't use cursor to iterate,
1771         when a pit is enough. Standarize a couple of loops.
1772
1773 2003-12-05  Angus Leeming  <leeming@lyx.org>
1774
1775         * lyxfunc.C (dispatch): DIALOG_SHOW now handles "latexlog" and
1776         "vclog" explicitly, passing the appropriate "<logtype> <filename>"
1777         data to the re-worked "log" dialog.
1778
1779 2003-12-03  André Pönitz  <poenitz@gmx.net>
1780
1781         * PosIterator.C:
1782         * iterators.C:
1783         * lyxtext.h:
1784         * output_latex.C:
1785         * paragraph_funcs.C:
1786         * text.C:
1787         * text2.C: use Inset::getText instead of Inset::getParagraph
1788
1789 2003-12-03  André Pönitz  <poenitz@gmx.net>
1790
1791         * buffer.[Ch]:
1792         * lyxtext.h:
1793         * paragraph_funcs.[Ch]: consolidate parts of Buffer::read() and
1794         InsetText::read() as LyXText::read()
1795
1796 2003-12-02  Angus Leeming  <leeming@lyx.org>
1797
1798         * lyxlex.[Ch] (operator void const *): add the 'const' to the return
1799         type. Add a comment in the implementation that the function uses
1800         the stream's bad() function rather than fail() as the std::streams
1801         would do.
1802
1803 2003-12-02  André Pönitz  <poenitz@gmx.net>
1804
1805         * lyxlex.[Ch]: make interface more similar to std::stream
1806
1807         * lyxlex_pimpl.[Ch]: don't use '__' in identifiers
1808
1809 2003-12-01  Martin Vermeer  <martin.vermeer@hut.fi>
1810
1811         * lyxtextclass.[Ch]: add latexparam to CharStyle inset
1812
1813 2003-12-01  Michael Schmitt  <michael.schmitt@teststep.org>
1814
1815         * vspace.[Ch]: remove VSpace::NONE
1816
1817 2003-12-01  André Pönitz  <poenitz@gmx.net>
1818
1819         * buffer.[Ch]:
1820         * lyxtext.h: move ParagraphList member to LyXText
1821         rename LyXText::ownerParagraphs to LyXText::paragraph
1822
1823         * CutAndPaste.C:
1824         * bufferview_funcs.C:
1825         * iterators.[Ch]:
1826         * lyx_cb.C:
1827         * paragraph.C:
1828         * rowpainter.C:
1829         * tabular.C:
1830         * text.C:
1831         * text2.C:
1832         * text3.C: adjust
1833
1834         * lyxfunc.C: move LFUN_INSET_TOGGLE handling to insets.
1835
1836         * undo.C: fix cursor positioning
1837
1838 2003-12-01  John Levon  <levon@movementarian.org>
1839
1840         * BufferView_pimpl.C: fix a crash on exit with
1841         a buffer open
1842
1843 2003-11-30  Martin Vermeer  <martin.vermeer@hut.fi>
1844
1845         * BranchList.C: fix setSelected() method.
1846
1847 2003-11-28  André Pönitz  <poenitz@gmx.net>
1848
1849         * ParagraphParameters.[Ch]:
1850         * ParameterStruct.h: remove space above/below from Paragraph to
1851          InsetVSpace
1852
1853         * BufferView_pimpl.C:
1854         * factory.C:
1855         * lyxfunc.C:
1856         * lyxtext.h:
1857         * output_latex.C:
1858         * paragraph.C:
1859         * paragraph_funcs.C:
1860         * rowpainter.[Ch]:
1861         * text.C:
1862         * text2.C:
1863         * text3.C: adjust
1864
1865 2003-11-28  Martin Vermeer  <martin.vermeer@hut.fi>
1866
1867         * factory.C: Syntax change for CharStyles
1868
1869 2003-11-28  André Pönitz  <poenitz@gmx.net>
1870
1871         * BufferView.[Ch]:
1872         * BufferView.[Ch]:
1873         * buffer.[Ch]:
1874         * buffer.[Ch]: move LyXText member
1875
1876 2003-11-28  André Pönitz  <poenitz@gmx.net>
1877
1878         * BufferView.[Ch]: make LyXText * text a private member
1879
1880         * BufferView_pimpl.C:
1881         * cursor.C:
1882         * iterators.C:
1883         * lyx_cb.C:
1884         * lyxfind.C:
1885         * lyxtext.h:
1886         * rowpainter.[Ch]:
1887         * text.C:
1888         * text2.C:
1889         * undo.C: adjust
1890
1891         * output_plaintext.C: cleanup
1892
1893 2003-11-27  Martin Vermeer  <martin.vermeer@hut.fi>
1894
1895         * buffer.C:
1896         * lyxtextclass.[Ch]: parametrize SGML document header
1897
1898 2003-11-27  Martin Vermeer  <martin.vermeer@hut.fi>
1899
1900         * converter.[Ch]:
1901         * exporter.C: replace bool-valued Pdflatex() by FLAVOR-valued
1902         getFlavor().
1903
1904 2003-11-27  Alfredo Braunstein  <abraunst@lyx.org>
1905
1906         * text2.C (setFont): rework using PosIterator (no more recursive)
1907         (setCharFont): no more needed
1908         (setLayout): no more selection cursors fiddling (done by redoCursor)
1909         * text.C: cursorRight(bv)->cursorRight(true) (TODO: find and
1910         destroy remaining ones)
1911
1912 2003-11-26  Alfredo Braunstein  <abraunst@lyx.org>
1913
1914         * bufferview_funcs.[Ch]: split changeDepthAllowed from changeDepth
1915         * lyxtext.h: ditto
1916         * text2.C: same thing + updateCounters fix + redoCursor also adjusts
1917         selection cursors
1918         * lyxfunc.C: adjust
1919         * text3.C: adjust + re-allow multi par depth changes
1920         * textcursor.C: simplify a bit
1921
1922 2003-11-25  Martin Vermeer  <martin.vermeer@hut.fi>
1923
1924         * src/buffer.C:
1925         * src/lyxlayout.C:
1926         * src/lyxlayout.h:
1927         * src/lyxtext.h:
1928         * src/output_docbook.C:
1929         * src/output_latex.C:
1930         * src/paragraph.C:
1931         * src/paragraph.h:
1932         * src/sgml.C:
1933         * src/sgml.h:
1934         * src/text2.C: Introducing a number of tags parametrizing various
1935         XML formats that we may want to support
1936
1937 2003-11-25  André Pönitz  <poenitz@gmx.net>
1938
1939         * InsetList.[Ch] (begein, end): inline as suggested by profiler
1940
1941         * lyxtext.h (leftMargin/rightMargin): simplify interface
1942
1943         * rowpainter.C:
1944         * text.C:
1945         * text2.C:
1946         * text3.C: adjust
1947
1948 2003-11-24  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1949
1950         * lyxfunc.C (dispatch): propogate the bibtex databases from the
1951         master file to any child files. Fixes bug 546.
1952
1953 2003-11-24  Alfredo Braunstein  <abraunst@lyx.org>
1954
1955         * lyxfind.C (findNextChange): remove unneeded bv->text->init call
1956
1957 2003-11-24  André Pönitz  <poenitz@gmx.net>
1958
1959         * rowpainter.C: simplification
1960
1961         * text2.C (updateCounters): remove call to redoParagraph on
1962         changed labels as this is far too expensive.
1963
1964 2003-11-24  Alfredo Braunstein  <abraunst@lyx.org>
1965
1966         * converter.C (convert): fix a crash: this function gets
1967         called with buffer == 0 from importer code.
1968
1969 2003-11-22  Lars Gullik Bjonnes  <larsbj@gullik.net>
1970
1971         * text3.C (cursorPrevious): make sure that we do not compare
1972         iterators form different containers.
1973         (cursorNext): ditto
1974
1975         * rowpainter.C (paintSelection): make sure that we do not compare
1976         iterators from different containers.
1977
1978         * text3.C (dispatch): [PRIOR] make sure that we do not compare
1979         iterators from different ParagraphList containers.
1980         [NEXT] ditto
1981
1982         * text2.C (LyXText): change order of initialization slightly
1983         (operator=): new function. copy all variables except cache_par_
1984         (moveUp): make sure that we do not compare iterators from
1985         different ParagraphList constainers.
1986         (moveDown): ditto
1987
1988         * text.C (firstPar): new function
1989         (lastPar): new function
1990         (endPar): new function
1991
1992         * lyxtext.h: move things around and group public functions, public
1993         variables, private functions, private variables
1994
1995 2003-11-21  Michael Schmitt  <michael.schmitt@teststep.org>
1996
1997         * factory.C: change call to InsetERT constructor to avoid
1998         additional invocation of method status
1999         * text2.C (toggleInset): remove redundant update() call
2000         * InsetList.[Ch] (insetsOpenCloseBranch): Pass Buffer reference
2001         instead of a Bufferview pointer
2002
2003 2003-11-21  André Pönitz  <poenitz@gmx.net>
2004
2005         * rowpainter.C: simplification
2006
2007 2003-11-21  Alfredo Braunstein  <abraunst@lyx.org>
2008
2009         * text3.C (dispatch): make possible to extend a word/row selection
2010         with the mouse
2011
2012 2003-11-21  Alfredo Braunstein  <abraunst@lyx.org>
2013
2014         * lyxtext.h: x0_,y0_ -> xo_,yo_
2015         * text2.C (cursorUp, cursorDown): adjust + some cursorRow use
2016         * text3.C (checkInsetHit): fix coordinates using absolute xo_,yo_
2017         * rowpainter.C (paintRows): paint full paragraphs
2018
2019 2003-11-20  Alfredo Braunstein  <abraunst@lyx.org>
2020
2021         * text2.C (cursorUp, cursorDown): small fix (insettext::edit takes
2022         screen coordinates)
2023
2024 2003-11-20  Alfredo Braunstein  <abraunst@lyx.org>
2025
2026         * lyxtext.h: add x0_, y0_
2027         * text3.C (cursorPrevious, cursorNext): rewrite (using x0_, y0_)
2028         * text2.C (cursorDown, cursorUp): rewrite (using x0_, y0_)
2029
2030 2003-11-18  Alfredo Braunstein  <abraunst@lyx.org>
2031
2032         * text2.C (setCursorIntern): move the x_target update here *
2033         * text3.C: change some bv() to true/false in calls to
2034         cursorUp/Down/Right/Left
2035         * cursor.C: use helper function.
2036
2037 2003-11-17  Alfredo Braunstein  <abraunst@lyx.org>
2038
2039         * BufferView_pimpl.C: send LFUN_MOUSE_MOTION to the cursor
2040         * paragraph_funcs.[Ch]: correct comment
2041         * rowpainter.C: do not paint selections away from bv->cursor()
2042         Fix a long standing selection painting bug.
2043         * text3.C: generalize mouse-selection code to LyXTexts other that
2044         top one
2045         * textcursor.C: do not use y coords if we can use par offsets
2046
2047 2003-11-17  Alfredo Braunstein  <abraunst@lyx.org>
2048
2049         * lyxfunc.C (dispatch): add a missing LCursor::updatePos (fix
2050         cursor position after e.g. inset insert)
2051
2052 2003-11-16  Alfredo Braunstein  <abraunst@lyx.org>
2053
2054         * lyxfind.C (replace): adjust to locking removal + some
2055         code simplification
2056
2057 2003-11-14  Alfredo Braunstein  <abraunst@lyx.org>
2058
2059         * cursor.C (dispatch): dispatch to BufferView::dispatch at the end
2060         of the path
2061
2062 2003-11-14  Martin Vermeer  <martin.vermeer@hut.fi>
2063
2064         * lyxlayout.[Ch]:
2065         * output_docbook.C: XML sanitation: new layout
2066         parameters InnerTag and CommandDepth
2067
2068 2003-11-13  Martin Vermeer  <martin.vermeer@hut.fi>
2069
2070         * BufferView_pimpl.C:
2071         * factory.C:
2072         * text3.C: Fix the insertion and modification of button-style
2073         insets
2074
2075 2003-11-13  André Pönitz  <poenitz@gmx.net>
2076
2077         * InsetList.[Ch]: remove deleteLyXText
2078
2079         * paragraph.[Ch]: cache beginOfBody position
2080
2081         * Bidi.C:
2082         * text.C:
2083         * text2.C:
2084         * text3.C: remove superfluous update() calls
2085
2086         * vspace.C: cleanup
2087
2088 2003-11-13  Alfredo Braunstein  <abraunst@lyx.org>
2089
2090         * BufferView_pimpl.C (fitCursor): call screen().fitCursor()
2091         * BufferView.C (fitLockedInsetCursor): remove
2092         * cursor.[Ch] (getDim): add
2093         * text.C (getRowNearY): add faster version
2094         * text3.C: remove some update calls
2095
2096 2003-11-12  Martin Vermeer  <martin.vermeer@hut.fi>
2097
2098         * LaTeXFeatures.C:
2099         * LyXAction.C:
2100         * MenuBackend.C:
2101         * MenuBackend.h:
2102         * dispatchresult.h:
2103         * factory.C:
2104         * lfuns.h:
2105         * lyxfunc.C:
2106         * lyxtextclass.C:
2107         * lyxtextclass.h:
2108         * text3.C: The Character Style /XML short element patch.
2109
2110 2003-11-11  Martin Vermeer  <martin.vermeer@hut.fi>
2111
2112         * text3.C:
2113         * factory.C: Small step to solving 'unable to insert some insets'
2114         problem
2115
2116 2003-11-11  Alfredo Braunstein  <abraunst@lyx.org>
2117
2118         * cursor.[Ch] (updatePos): new function for updating the y
2119         position of the tip inset
2120         * bufferview_funcs.C (put_selection_at):
2121         * BufferView_pimpl.C (workAreaDispatch): rationalise update calls
2122
2123 2003-11-11  André Pönitz  <poenitz@gmx.net>
2124
2125         * text.C: remove big comment on invalid Paragraph pointers as it is
2126         not valid anymore
2127
2128 2003-11-11  André Pönitz  <poenitz@gmx.net>
2129
2130         * text_funcs.[Ch]: merge with ...
2131
2132         * text.C: ... this
2133
2134         * lyxtext.h:
2135         * text2.C:
2136         * text3.C: adjust
2137
2138         * Makefile.am: remove text_funcs.[Ch]
2139
2140 2003-11-11  Alfredo Braunstein  <abraunst@libero.it>
2141
2142         * cursor.C (getPos): return absolute cached y coord
2143
2144         * BufferView_pimpl.C (fitCursor): new simplistic code
2145         (workAreaDispatch): add a fitCursor call
2146
2147 2003-11-10  André Pönitz  <poenitz@gmx.net>
2148
2149         * BufferView.[Ch]:
2150         * BufferView_pimpl.[Ch]: merge update() and updateInset()
2151
2152 2003-11-10  André Pönitz  <poenitz@gmx.net>
2153
2154         * lfuns.h: new LFUN_FINISHED_LEFT, LFUN_FINISHED_RIGHT,
2155         LFUN_FINISHED_UP, LFUN_FINISHED_DOWN used in dispatch to
2156         indicate that the cursor needs to leave an inset
2157
2158         * lyxtext.h: remove inset locking
2159
2160         * cursor.[Ch]: re-implement functionality provided by inset locking
2161
2162         * BufferView.[Ch]:
2163         * BufferView_pimpl.[Ch]:
2164         * LyXAction.C:
2165         * bufferview_funcs.[Ch]:
2166         * factory.C:
2167         * funcrequest.[Ch]:
2168         * iterators.C:
2169         * lyx_cb.C:
2170         * lyxfind.C:
2171         * lyxfunc.C:
2172         * text.C:
2173         * text2.C:
2174         * text3.C:
2175         * undo.C: adjust
2176
2177 2003-11-07  Alfredo Braunstein  <abraunst@libero.it>
2178
2179         * PosIterator.[Ch]: replace the stack with a vector, add inset
2180         accesor
2181         * iterators.[C]: adjust
2182
2183 2003-11-06  Alfredo Braunstein  <abraunst@libero.it>
2184
2185         * lyxfind.C (replaceAll): mark the buffer dirty if something was
2186         replaced
2187         * paragraph_funcs.C (readParToken): put the correct id in the
2188         error item, not the id of the top paragraph
2189
2190 2003-11-06  Alfredo Braunstein  <abraunst@libero.it>
2191
2192         * iterators.[Ch] (ParIterator): new PosIterator-based ctor
2193         * bufferview_funcs.C (put_selection_at): use the above
2194
2195 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
2196
2197         * text2.C (deleteEmptyParagraphMechanism): fix n-th crash
2198
2199 2003-11-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2200
2201         * output_linuxdoc.h:
2202         * output_plaintext.h:
2203         * output.h:
2204         * output_docbook.h: add #include statements
2205
2206 2003-11-05  José Matos  <jamatos@lyx.org>
2207
2208         * output_docbook.[Ch]:
2209         * output_latex.[Ch]:
2210         * output_linuxdoc.[Ch]:
2211         * output_plaintext.[Ch]: New files for output formats.
2212         * output.[Ch]: New file for helper functions.
2213
2214         * buffer.[Ch]:
2215         * paragraph_funcs.[Ch]: output functions moved to new files.
2216
2217         * outputparams.h: rename of latexrunparams.h
2218
2219         * LaTeX.[Ch]:
2220         * buffer.[Ch]:
2221         * bufferlist.[Ch]:
2222         * converter.[Ch]:
2223         * exporter.C:
2224         * paragraph.[Ch]:
2225         * paragraph_funcs.[Ch]:
2226         * paragraph_pimpl.[Ch]:
2227         * tabular.[Ch]: rename ascii to plaintext
2228         and LatexRunParams to OutputParams.
2229
2230 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
2231
2232         * iterators.[Ch] (text): require bv argument
2233         * undo.C (recordUndo):
2234         * lyxfunc.C (dispatch):
2235         * bufferview_funcs.C (put_selection_at): adjust
2236
2237 2003-11-05  João Luis M. Assirati  <assirati@fma.if.usp.br>
2238
2239         * lyxsocket.C: export variables XEDITOR and LYXSOCKET
2240
2241 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
2242
2243         * lyxfunc.C (dispatch): make LFUN_GOTO_PARAGRAPH work with deep
2244         nestings
2245
2246 2003-11-04  André Pönitz  <poenitz@gmx.net>
2247
2248         * cursor.[Ch]: restructure
2249
2250         * BufferView.[Ch]:
2251         * BufferView_pimpl.[Ch]: new LCursor cursor_ member
2252
2253         * iterators.[Ch] (asCursor): remove
2254
2255         * lfuns.h: remove LFUN_INSET_EDIT
2256
2257         * lyxfunc.C:
2258         * tabular.C:
2259         * text.C:
2260         * text2.C:
2261         * text3.C: use Inset::edit() instead of dispatch(LFUN_INSET_EDIT)
2262
2263 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
2264
2265         * lyxfind.[Ch]: complete overhaul
2266         * BufferView_pimpl.C:
2267         * lyxfunc.C: adjust
2268         * paragraph.[Ch] (insert): add
2269
2270 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
2271
2272         * BufferView.[Ch]:
2273         * lyxtext.h:
2274         * text.C: remove dead spellcheck code
2275
2276 2003-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
2277
2278         * dispatchresult.h: add a val setter
2279
2280         * cursor.C (dispatch): use a tempvar for data_[i]
2281
2282 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
2283
2284         * PosIterator.[Ch]: compile fix
2285
2286 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
2287
2288         * text.C (cursorPar): deactivate the cursor cache
2289
2290 2003-11-03  Alfredo Braunstein  <abraunst@libero.it>
2291
2292         * undo.C (performUndoOrRedo): fix cursor positioning with lockPath
2293
2294 2003-11-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
2295
2296         * text3.C (dispatch): adjust for new DisptchResult semantics.
2297
2298         * lyxfunc.C (dispatch): handle update when return from
2299         Cursor::dispatch, adjust for new DispatchResult semantics.
2300
2301         * dispatchresult.h: drop NOUPDATE from dispatch_result_t. Make
2302         DispatchResult(true) mean to not update. Add class functions for
2303         setting dispatched and update, as well as reading.
2304
2305         * cursor.C (dispatch): don't handle update here
2306
2307 2003-11-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
2308
2309         * trans_mgr.h: store t1_ and t2_ in scoped_ptr
2310         * trans_mgr.C: adjust
2311
2312         * paragraph_funcs.C (readParToken): exception safety
2313
2314         * lyxvc.h: store the vcs pointer in a scoped_ptr
2315         * lyxvc.C: adjust
2316
2317         * lyxsocket.C (serverCallback): exception safety
2318
2319         * lyx_cb.C (AutoSaveBuffer): make it return a auto_ptr
2320
2321         * ispell.C (clone): make it return a auto_ptr
2322
2323         * factory.C (createInset): exception safety
2324         (readInset): exception safety
2325
2326         * bufferlist.C (newBuffer): exception safety
2327
2328         * Thesaurus.C (Thesaurus): use initialization for aik_
2329
2330         * MenuBackend.C (expandToc): exception safety.
2331
2332 2003-11-03  André Pönitz  <poenitz@gmx.net>
2333
2334         * buffer.C:
2335         * buffer.h:
2336         * bufferview_funcs.C: remove getInsetFromId()
2337
2338         * lyxcursor.[Ch]:
2339         * BufferView.[Ch]: move x_fix from LyXCursor to BufferView
2340
2341         * lyxfunc.C:
2342         * text2.C:
2343         * text3.C: adjust
2344
2345 2003-11-03  Alfredo Braunstein  <abraunst@libero.it>
2346
2347         * PosIterator.C (distance, advance): new
2348         * bufferview_funcs.[Ch] (put_selection_at): new
2349         * iterators.[Ch] (lockPath): new
2350
2351 2003-11-02  Alfredo Braunstein  <abraunst@libero.it>
2352
2353         * iterators.[Ch] (asPosIterator): added
2354         * buffer.[Ch] (pos_iterator_begin, pos_iterator_end): added
2355         * PosIterator.[Ch]: added
2356
2357 2003-11-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2358
2359         * text3.C:
2360         * lyxfunc.C:
2361         * cursor.C (dispatch):
2362         * BufferView_pimpl.C (dispatch): adjust for DispatchResult changes
2363
2364         * dispatchresult.h: remove UNDISPATCHED, DISPATCHED and
2365         DISPATCHED_NOUPDATE from dispatch_result_t, add NONE. Add a
2366         contructor, add a class function dispatched. Remove operator>=
2367
2368 2003-11-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2369
2370         * debug.C: only use the default constructor for debugstream
2371         (lyxerr) here.
2372
2373         * main.C (main): include debug.h and setup the lyxerr streambuf
2374         here.
2375
2376 2003-10-31  José Matos  <jamatos@lyx.org>
2377
2378         * paragraph_funcs.C (addDepth, asciiParagraph): move from buffer.C
2379
2380         * buffer.[Ch] (writeFileAscii, makeLinuxDocFile, makeDocBookFile):
2381         * paragraph.[Ch] (simpleLinuxDocOnePar, simpleDocBookOnePar, asString):
2382         * paragraph_funcs.[Ch] (linuxdocParagraphs, docbookParagraphs):
2383         * paragraph_pimpl.C (simpleTeXSpecialC):
2384         * tabular.[Ch] (linuxdoc, docbookRow, docbook, ascii):
2385         add LatexRunParams argument.
2386
2387         * exporter.C (Export): change call accordingly.
2388
2389         * latexrunparams.h: add new member to take care of the other backends.
2390 2003-10-30  José Matos  <jamatos@lyx.org>
2391
2392         * buffer.C (makeLinuxDocFile, makeDocBookFile):
2393         * paragraph_funcs.[Ch] (linuxdocParagraphs, docbookParagraphs):
2394         factorise code for paragraph output.
2395         * buffer.[Ch]:
2396         * paragraph.[Ch] (simpleLinuxDocOnePar, simpleDocBookOnePar):
2397         move functions.
2398
2399 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
2400
2401         * text3.C (dispatch):
2402         * lyxfunc.C (dispatch):
2403         * cursor.C (dispatch):
2404         * BufferView_pimpl.C (dispatch): explict DispatchResult ctor fallout.
2405
2406         * dispatchresult.h: make the dispatch_result_t ctor explicit
2407
2408 2003-10-29  Martin Vermeer  <martin.vermeer@hut.fi>
2409
2410         * sgml.[Ch]:
2411         * buffer.C: small refactoring of docbook stuff
2412
2413 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
2414
2415         * dispatchresult.h: remove FINISHED_POP as FINISHED has the same
2416         meaning.
2417
2418 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
2419
2420         * dispatchresult.h: rename DISPATCHED_POP to FINISHED_POP, remove
2421         operator dispatch_result_t, and operators for == != and >=
2422
2423         * cursor.C (dispatch): adjust for operator dispatch_result_t
2424         removal. comment out call to update
2425
2426         * BufferView_pimpl.C (dispatch): dont implicit covert to bool
2427
2428 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
2429
2430         * text3.C:
2431         * text2.C:
2432         * text.C:
2433         * lyxtext.h:
2434         * lyxfunc.C:
2435         * cursor.C:
2436         * BufferView_pimpl.C: dispatch_result -> DispatchResult changes.
2437         (dispatch):
2438
2439         * dispatchresult.h: new file, DispatchResult broken out of
2440         insets/insetbase.h
2441
2442         * Makefile.am (lyx_SOURCES): add dispatchresult.h
2443
2444 2003-10-28  Alfredo Braunstein  <abraunst@libero.it>
2445
2446         * text.C (rowBreakPoint): put a hack inside #if 0
2447
2448 2003-10-28  André Pönitz  <poenitz@gmx.net>
2449
2450         * lyxtext.h:
2451         * metricsinfo.C:
2452         * paragraph_funcs.C:
2453         * rowpainter.C:
2454         * text.C:
2455         * text2.C: general cleanup (lots of small stuff)
2456
2457 2003-10-28  Alfredo Braunstein  <abraunst@libero.it>
2458
2459         * text2.C (cursorEnd): simple fix to the "end key goes to one
2460         before the end on last row" bug
2461
2462 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
2463
2464         * text.C (backspace): fix the "zombie characters"
2465
2466 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
2467
2468         * lyxfunc.C (dispatch): small fix to toc navigation inside branches
2469
2470 2003-10-27  André Pönitz  <poenitz@gmx.net>
2471
2472         * lfuns.h: new LFUN_REPEAT, LFUN_INSERT_LINE, LFUN_INSERT_PAGEBREAK
2473
2474         * factory.C: handle new InsetPagebreak, InsetLine
2475
2476         * ParagraphParameters.h: remove [line|pagebreak]_[above|below]
2477         and move handling into new InsetPagebreak, InsetLine
2478
2479         * BufferView_pimpl.C:
2480         * LyXAction.C:
2481         * ParagraphParameters.C:
2482         * ParameterStruct.h:
2483         * lyxfunc.C:
2484         * lyxtext.h:
2485         * paragraph.C:
2486         * paragraph.h:
2487         * paragraph_funcs.C:
2488         * paragraph_pimpl.C:
2489         * rowpainter.C:
2490         * text.C:
2491         * text2.C:
2492         * text3.C: adjust
2493
2494 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
2495
2496         * text.C:
2497         * lyxrow_funcs.[Ch]:
2498         * Bidi.C:
2499         * paragraph.C:
2500         * lyxtext.h:
2501         * rowpainter.C:
2502         * text2.C:
2503         * text3.C: remove lastPos uses in favour of Row::endpos
2504
2505 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
2506
2507         * undo.C (performUndoOrRedo): fix two crashes by setting a
2508         cursor by hand and reordering some calls. Use bv->lockInset instead
2509         of inset->edit because the latter loses cursor information
2510
2511 2003-10-25  Alfredo Braunstein  <abraunst@libero.it>
2512
2513         * text.C (prepareToPrint): fix linebreak rowbreaking as suggested
2514         by Martin
2515         (rowBreakPoint): fix width. change point to point + 1.
2516         Add a missing check.
2517
2518 2003-10-25  Martin Vermeer  <martin.vermeer@hut.fi>
2519
2520         * MenuBackend.C:
2521         * lyxfunc.C: fix (at least partly) the problems
2522         with the Nav menu and headers inside branch insets
2523         reported by Kayvan
2524
2525 2003-10-24  Alfredo Braunstein  <abraunst@libero.it>
2526
2527         * paragraph.C (getChar): add strong asserts
2528
2529         * lyxrow_funcs.C (lastPos): remove hideous hack
2530
2531         * text.C (addressBreakPoint, rowBreakPoint): put endpos in place
2532         (fill): adjust to that (avoid an infinite loop)
2533
2534 2003-10-23  Alfredo Braunstein  <abraunst@libero.it>
2535
2536         * text3.C (cursorPrevious, cursorNext): fix 2 "dontlikes"
2537
2538 2003-10-23  André Pönitz  <poenitz@gmx.net>
2539
2540         * RowList_fwd.h: change list<> to vector<> to gain speed
2541         after suggestion from Alfredo
2542
2543 2003-10-23  Alfredo Braunstein  <abraunst@libero.it>
2544
2545         * lyxtext.h: move the bidi stuff from here...
2546         * text.C: and here
2547         * text2.C: and here
2548         * Bidi.[Ch]: ... to here
2549
2550 2003-10-23  André Pönitz  <poenitz@gmx.net>
2551
2552         * lyxtext.h:
2553         * text.C (isLastRow, isFirstRow): new functions
2554
2555         * paragraph.h: new width cache member
2556
2557         * rowpainter.C: replace RowList::iterator with Row & where possible
2558
2559         * lyxfunc.C: replace several view()->text with a single call
2560
2561         * toc.C: fix 'unused' warning
2562
2563 2003-10-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
2564
2565         * lyxlex_pimpl.C (setFile,setStream): be sure to use correct types
2566         when woring with stream::pos_type
2567         * paragraph_pimpl.C (simpleTeXSpecialChars): ditto
2568
2569 2003-10-22  André Pönitz  <poenitz@gmx.net>
2570
2571         * lyxtext.h:
2572         * text.C: use Row & instead of RowList::iterator
2573
2574         * lyxrow.h: rename end() to endpos()
2575
2576         * rowpainter.C:
2577         * text.C:
2578         * text2.C: adjust
2579
2580 2003-10-22  Angus Leeming  <leeming@lyx.org>
2581
2582         * buffer.[Ch] (fully_loaded): new member function, returning true
2583         only when the file has been loaded fully.
2584         Used to prevent the premature generation of previews and by the
2585         citation inset to prevent computation of the natbib-style label.
2586
2587         * buffer_funcs.C (newFile): set Buffer::fully_loaded once the
2588         templates are all set up.
2589
2590         * factory.C (createInset): remove call to InsetCitation::setLoadingBuffer.
2591
2592 2003-10-22  Martin Vermeer  <martin.vermeer@hut.fi>
2593
2594         * text.C: fixed an "oops" in the "is a bit silly"
2595         bug fix
2596
2597 2003-10-21  André Pönitz  <poenitz@gmx.net>
2598
2599         * FuncStatus.[Ch]: small stuff, whitespace
2600
2601         * lyxfont.[Ch]: operator<<() for debug reasons
2602
2603         * lyxfunc.C:
2604         * lyxrow_funcs.C:
2605         * lyxtext.h: whitespace, spelling
2606
2607         * paragraph.C: naming of variables
2608
2609         * text.C:
2610         * text2.C: small stuff
2611
2612
2613 2003-10-21  Martin Vermeer  <martin.vermeer@hut.fi>
2614
2615         * text.C: (1) finish off the inset display() work;
2616         (2) fix the "is a bit silly" bug (accessing char
2617         past end of par).
2618
2619 2003-10-20  Martin Vermeer  <martin.vermeer@hut.fi>
2620
2621         * text.C: re-introduce display() for insets, fixing the
2622         various bugs (stretch of line above, math inset
2623         positioning, ...)
2624
2625 2003-10-20  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2626
2627         * text.C (rightMargin): remove spurious semicolon
2628
2629         * lengthcommon.C: add empty unit_name* entries for UNIT_NONE (bug
2630         1415)
2631
2632 2003-10-18  Martin Vermeer  <martin.vermeer@hut.fi>
2633
2634         * text3.C: fix one crash due to wrong cursor def
2635
2636 2003-10-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
2637
2638         * vc-backend.C (scanMaster): make the regex static
2639
2640         * LaTeX.C (scanAuxFile): make the regexs static
2641
2642         * text3.C (doInsertInset, dispatch, dispatch):
2643         * text2.C (cursorUp, cursorDown):
2644         * text.C (selectNextWordToSpellcheck):
2645         * BufferView_pimpl.C (dispatch):
2646         * lyxfunc.C (dispatch):  localDispatch -> dispatch
2647
2648 2003-10-14  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2649
2650         * lyxsocket.C: include <cerrno>
2651
2652 2003-10-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
2653
2654         * lyxfunc.C (dispatch): remove textcache stuff
2655
2656         * bufferlist.C (release): remove textcache stuff
2657         (closeAll): ditto
2658
2659         * TextCache.C: delete file
2660         * TextCache.h: delete file
2661
2662         * Makefile.am (lyx_SOURCES): delete TextCache.C and TextCache.h
2663
2664         * BufferView_pimpl.C (buffer): remove textcache stuff, add a
2665         delete of the bv_->text.
2666         (resizeCurrentBuffer): remove texcache stuff
2667         (workAreaResize): ditto
2668
2669 2003-10-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
2670
2671         * lyxfunc.C (getStatus): also set flag disabled if it is a unknown
2672         action.
2673
2674 2003-10-16  André Pönitz  <poenitz@gmx.net>
2675
2676         * lyxrow.[Ch]:
2677         * paragraph.h:
2678         * rowpainter.C:
2679         * text.C:
2680         * text2.C:
2681         * text3.C: speed up by storing y positions per paragraph plus per-row
2682         offset instead of having a 'full' y position in the row.
2683
2684 2003-10-15  André Pönitz  <poenitz@gmx.net>
2685
2686         * iterators.[Ch]:
2687         * iterators.[Ch]:
2688         * undo.[Ch]: make undo aware of inner insets
2689
2690 2003-10-14  Angus Leeming  <leeming@lyx.org>
2691
2692         * lyx_main.[Ch]: make LyX a singleton class, accessible though the new
2693         static member functions LyX::ref() and LyX::cref.
2694         (lastfiles): new accessor functions for the new lastfiles_ member var.
2695         (addLyXView, views_): add a new LyXView to the list of views_.
2696         (updateInset): loop over all LyXViews to call their own updateInset
2697         member function, returning a pointer to the Buffer owning the inset.
2698
2699         * BufferView_pimpl.C (loadLyXFile):
2700         * MenuBackend.C (expandLastfiles):
2701         * bufferlist.C (MenuWrite, QuitLyX):
2702         lastfiles is no longer a global variable.
2703         Access through LyX::ref().lastfiles(), LyX::cref().lastfiles().
2704
2705         * boost.C (emergencyCleanup): LyX::emergencyCleanup is no longer a
2706         static function. Access through LyX::cref().emergencyCleanup().
2707
2708 2003-10-14  André Pönitz  <poenitz@gmx.net>
2709
2710         * iterators.[Ch]: new direct access to innermost LyXText and Inset
2711
2712         * undo.[Ch]: restoring part of 'undo in insets'
2713
2714         * Makefile.am:
2715         * undo_funcs.[Ch]: merge with undo.[Ch]
2716
2717         * tabular.C: small cleansing stuff
2718
2719 2003-10-14  Alfredo Braunstein  <abraunst@libero.it>
2720
2721         * paragraph_funcs.C (readParToken): report unknown insets as error
2722         boxes. Use the outer paragraph as location (also for unknown
2723         tokens).
2724
2725         * factory.C (readInset): do not abort on reading an unknown inset.
2726         Eat it and return 0.
2727
2728 2003-10-13  Angus Leeming  <leeming@lyx.org>
2729
2730         * lyx_main.C (LyX): remove call to setDisplayTranslator().
2731
2732         * lyxrc.C: displayTranslator is now a function,
2733         declared in GraphicsTypes.h.
2734
2735 2003-10-13  Joao Luis Meloni Assirati <assirati@fma.if.usp.br>
2736
2737         * format.C: new placeholder $$a to pass the socket address.
2738
2739         * bufferlist.[Ch]: new function getBufferFromTmp.
2740
2741         * lyxfunc.C: Modification of LFUN_GOTOFILEROW so that it can handle
2742           files in the temporary dir.
2743
2744 2003-10-13  Joao Luis Meloni Assirati <assirati@fma.if.usp.br>
2745
2746         * lyxsocket.[Ch]: new files. A simple local socket interface for lyx.
2747
2748         * Makefile.am: add lyxsocket.[Ch].
2749
2750         * lyx_main.C (error_handler): handle SIGPIPE.
2751
2752 2003-10-13  André Pönitz  <poenitz@gmx.net>
2753
2754         * BufferView_pimpl.C:
2755         * lyxtext.h:
2756         * text.C:
2757         * text2.C:
2758         * text3.C:
2759         * undo_funcs.[Ch]: use paroffset_type instead of
2760           ParagraphList::iterators to prevent multiple conversion
2761           (and get a more robust interface)
2762
2763 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
2764
2765         * lyxfunc.C (dispatch): RESULT -> dispatch_result
2766         * lyxtext.h: ditto
2767         * text3.C (dispatch): ditto
2768
2769 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
2770
2771         * LaTeX.C (handleFoundFile): move the static to smaller scope,
2772         move the onlyfile, use onlyfile instead of foundfile in a couple
2773         of places.
2774
2775         * DepTable.C (update): flush the error stream a bit more
2776
2777 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
2778
2779         * lyxserver.C (callback): adjust
2780
2781         * lyxfunc.C (getStatus): add a missing brace in commented code
2782         (ensureBufferClean): reindent
2783         (dispatch): delete version taking a string
2784
2785 2003-10-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
2786
2787         * LaTeX.C (deplog): move found file handlig from here...
2788         (handleFoundFile): .. to new function here.
2789         (deplog): make sure to discover several files mentioned on the
2790         same log line.
2791
2792 2003-10-10  André Pönitz  <poenitz@gmx.net>
2793
2794         * lyxfunc.C:
2795         * lyxtext.h:
2796         * tabular.C:
2797         * text.C:
2798         * text2.C:
2799         * text3.C: fix some of the tabular crashes
2800
2801 2003-10-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
2802
2803         * MenuBackend.C (binding): put debug message into Debug::KBMAP
2804
2805         * lyxlex_pimpl.C (setFile): put debug messages into Debug::LYXLEX.
2806
2807 2003-10-09  André Pönitz  <poenitz@gmx.net>
2808
2809         * lyxcursor.h: use paroffset_type instead of ParagraphList::iterator
2810
2811         * BufferView.C:
2812         * BufferView_pimpl.C:
2813         * bufferview_funcs.C:
2814         * lyx_cb.C:
2815         * lyxcursor.C:
2816         * lyxfind.C:
2817         * lyxfunc.C:
2818         * lyxtext.h:
2819         * text.C:
2820         * text2.C:
2821         * text3.C:
2822         * text_funcs.[Ch]:
2823         * textcursor.[Ch]:
2824         * undo_funcs.C: adjust
2825
2826 2003-10-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
2827
2828         * text2.C (incrementItemDepth): new function, use a backtracking
2829         algorithm to discover the correct item depth.
2830         (resetEnumCounterIfNeeded): new function, use a backtracking
2831         algorithm to discover if counter reset is needed.
2832         (setCounter): use them. Simplify a bit. Add different labels for
2833         different item depths for itemize.
2834
2835         * paragraph.C (Paragraph): remove initialization of enumdepth
2836         (operator=): ditto
2837
2838         * paragraph.h: get rid of enumdepth, and use itemdepth both for
2839         enumerate and itemize. Change the type of itemdepth to signed char.
2840
2841 2003-10-08  André Pönitz  <poenitz@gmx.net>
2842
2843         * lyxtext.h: make the paragraphs_ a pointer instead a ref to make the
2844           thing assignable.
2845         * text.C:
2846         * text2.C: adjust
2847
2848         * tabular.[Ch]: fix crash after 'row-insert'
2849
2850 2003-10-08  Angus Leeming  <leeming@lyx.org>
2851
2852         Fix doxygen warnings.
2853
2854         * CutAndPaste.[Ch] (availableSelections). Now returns a const vector.
2855         Remove CutAndPaste:: prefix from header file declaration.
2856
2857         * LColor.h (fill): remove LColor:: prefix from declaration.
2858
2859         * buffer.C (readParagraph, simpleLinuxDocOnePar, simpleDocBookOnePar):
2860         use lyx::depth_type rather than Paragraph::depth_type so that
2861         header file and .C file match.
2862
2863         * converter.h (intToFormat): remove Converters:: prefix from declaration.
2864
2865         * Spacing.h: \file Spacing.h -> \file src/Spacing.h
2866         * aspell.C: \file aspell_local.C -> \file aspell.C
2867         * gettext.C: \file gettext.C -> \file src/gettext.C
2868         * gettext.h: \file gettext.h -> \file src/gettext.h
2869         * lyxfont.C: \file lyxfont.C -> \file src/lyxfont.C
2870         * lyxfont.h: \file lyxfont.h -> \file src/lyxfont.h
2871         * text.C: \file text.C -> \file src/text.C
2872
2873         * toc.C: move comment so that doxygen is not confused.
2874
2875 2003-10-07  Angus Leeming  <leeming@lyx.org>
2876
2877         * factory.C (createInset): InsetExternal::Params -> InsetExternalParams
2878
2879 2003-10-07  Jürgen Spitzmüller <j.spitzmueller@gmx.de>
2880
2881         * aspell.C:
2882         * aspell_local.h: add forgotten std::string's.
2883
2884 2003-10-07  Martin Vermeer <martin.vermeer@hut.fi>
2885
2886         * LaTeXFeatures.C:
2887         * LyXAction.C:
2888         * factory.C:
2889         * lfuns.h:
2890         * lyxfunc.C:
2891         * text3.C: The Box patch. Fancybox support, minipage, parbox
2892
2893 2003-10-07  Martin Vermeer <martin.vermeer@hut.fi>
2894
2895         * CutAndPaste.h:
2896         * DepTable.h:
2897         * FloatList.h:
2898         * LaTeXFeatures.h:
2899         * ParagraphParameters.h:
2900         * TextCache.h:
2901         * Thesaurus.h:
2902         * bufferlist.h:
2903         * exporter.h:
2904         * importer.h:
2905         * lastfiles.h:
2906         * lyxfind.h:
2907         * lyxfont.h:
2908         * lyxlex.h:
2909         * lyxtextclasslist.h:
2910         * messages.h:
2911         * paragraph.h:
2912         * paragraph_pimpl.C:
2913         * textcursor.h: add <string> and other small fixes to make Lars'
2914         std::string patch compile with STLport.
2915
2916 2003-10-06  Angus Leeming  <leeming@lyx.org>
2917
2918         * LColor.h: Add missing #include <string>.
2919
2920 2003-10-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
2921
2922         * All most all file in all subdirs: Make <string> be the prefered
2923         way of getting to std::string, add using declarations.
2924
2925 2003-10-06  André Pönitz  <poenitz@gmx.net>
2926
2927         * metricsinfo.C: initialize LyXFont before changing attribute.
2928         (fixes the 'math in \emph is upright' bug)
2929
2930 2003-10-06  André Pönitz  <poenitz@gmx.net>
2931
2932         * tabular.[Ch]: saner reinitialization, ret rid of LyXTabular::owner_
2933
2934 2003-10-06  Martin Vermeer  <martin.vermeer@hut.fi>
2935
2936         * graph.C:
2937         * paragraph_pimpl.C: Small fixes to build using STLport
2938
2939 2003-10-02  André Pönitz  <poenitz@gmx.net>
2940
2941         * lyxfunc.C:
2942         * text3.C: move handling of LFUN_DEPTH *; fix #1360
2943
2944 2003-10-01  André Pönitz  <poenitz@gmx.net>
2945
2946         * factory.C: assert early
2947
2948 2003-09-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
2949
2950         * lyx_main.C: remove the global debug object
2951
2952         * debug.h: adjust for new debugstream
2953
2954         * debug.C: adjust for new debugstream and keep the global debug
2955         object here.
2956
2957 2003-09-22  Angus Leeming  <leeming@lyx.org>
2958
2959         * paragraph_pimpl.h: add #include "lyxfont.h". Needed by earlier versions
2960         of g++ which otherwise complain that the scoped_ptr destructor can't delete
2961         an incomplete class LyXFont.
2962
2963 2003-09-22  Martin Vermeer  <martin.vermeer@hut.fi>
2964
2965         * factory.C: bug fix in branches
2966
2967 2003-09-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
2968
2969         * lyxfunc.C (processKeySym): adjust
2970         (dispatch): adjust
2971         (dispatch): change arg name from ev to func, adjust
2972         (sendDispatchMessage): ditto
2973
2974         * lyx_main.C (defaultKeyBindings): adjust keybindings
2975         (deadKeyBindings): ditto
2976
2977         * kbsequence.C (addkey): return a FuncRequest
2978
2979         * kbmap.h (kb_key): struct var FuncRequest instead of int action.
2980
2981         * kbmap.C (bind): take a FuncRequest as arg, adjust
2982         (read): adjust
2983         (lookup): adjust
2984         (defkey): change to take a FuncRequest as arg, adjust
2985         (findbinding): take a FuncRequest as arg, adjust.
2986
2987         * funcrequest.h (operator=): added
2988
2989         * funcrequest.C (FuncRequest): default kb_action changed from
2990         LFUN_UNKNOWN_ACTION to LFUN_NO_ACTION
2991
2992         * buffer.C (dispatch): simplify
2993         (dispatch): adjust to take a FuncRequest as arg, adjust
2994
2995         * boost.C (assertion_failed): change assertion message slightly
2996
2997         * ToolbarBackend.C (read): simplify
2998
2999         * MenuBackend.C (binding): adjust call to findbinding, add a
3000         message if no binding is found.
3001         (read): simplify
3002         (expandToc): correct by adding a empty FuncRequest
3003
3004         * LyXAction.C: include <boost/assert.hpp>
3005         (isPseudoAction): delete function
3006         (LookupFunc): change name to...
3007         (lookupFunc): this. change return type to FuncRequest.
3008         (getActionName): take kb_action as arg, simplify
3009         (funcHasFlag): add an assert, simplify.
3010
3011 2003-09-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
3012
3013         * toc.C (action): return a FuncRequest, simplify
3014
3015         * lyxfunc.C (processKeySym): adjust
3016         (getStatus): delete version that takes an int.
3017         (getStatus): adjust
3018         (dispatch): delete version that takes action as int
3019         (dispatch): adjust
3020         (sendDispatchMessage): simplify and adjust
3021
3022         * funcrequest.C (getArg): take unsigned int as arg
3023
3024         * ToolbarBackend.C (read): adjust
3025         (add): delete version that takes func as a string.
3026         (getIton): take a FuncRequest as arg
3027
3028         * MenuBackend.h (MenuItem): store a FuncRequest instead of an int
3029         action.
3030
3031         * MenuBackend.C (MenuItem): add a new construct that only takes a
3032         Kind, simplify the constructor use for submenus.
3033         (add): adjust
3034         (expandLastfiles): adjust
3035         (expandDocuments): adjust
3036         (expandFormats): adjust
3037         (expandFloatListInsert): adjust
3038         (expandFloatInsert): adjust
3039         (expandToc2,expandToc,expandPasteRecent,expandBranches): adjust
3040
3041         * LyXAction.h: remove typdefs pseudo_map, arg_item and arg_map.
3042         Remove class variables lyx_pseudo_map and lyx_arg_map
3043
3044         * LyXAction.C (searchActionArg): delete function
3045         (getPseudoAction): delete function
3046         (retrieveActionArg): delete function
3047         (LookupFunc): make it return kb_action, simplify.
3048         (getActionName): simplify
3049
3050         * factory.C (createInset): fix new bug
3051
3052 2003-09-19  Angus Leeming  <leeming@lyx.org>
3053
3054         * CutAndPaste.C (pasteSelection): remove fudge used to set the
3055         masterFilename_ parameter in the include inset.
3056
3057         * factory.C (createInset): changes due to the changes to InsetInclude.
3058
3059 2003-09-19  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
3060
3061         * paragraph.C: use appropriate alignment tags inside floats (bug 1290)
3062
3063 2003-09-18  Angus Leeming  <leeming@lyx.org>
3064
3065         * buffer.C:
3066         * BufferView.C: pass the buffer when calling Inset::getLabelList,
3067         Inset::fillWithBibKeys.
3068         * tabular.[Ch] (getLabelList): receive, pass on a Buffer const & arg.
3069
3070 2003-09-18  Angus Leeming  <leeming@lyx.org>
3071
3072         * LaTeXFeatures.[Ch]: append a '_' to the names of all private member
3073         variables.
3074         (ctor): pass and store a 'Buffer const &'
3075         (buffer): new member function.
3076
3077         * buffer.C (makeDocBookFile, makeLinuxDocFile, makeLaTeXFile): pass
3078         '*this' to the LaTeXFeatures ctor.
3079
3080 2003-09-18  Angus Leeming  <leeming@lyx.org>
3081
3082         * LColor.h:
3083         * lyxfont.C:
3084         * lyxfont.h:
3085         * lyxtext.h:
3086         * text.C: rename EnumLColor as LColor_color.
3087
3088 2003-09-18  Angus Leeming  <leeming@lyx.org>
3089
3090         * cursor.[Ch]: use the dispatch_result wrapper class DispatchResult to
3091         remove #include "insets/insetbase.h" from cursor.h.
3092
3093 2003-09-18  Angus Leeming  <leeming@lyx.org>
3094
3095         * paragraph.[Ch] (insetAllowed): use the InsetOld::Code wrapper class
3096         InsetOld_code to remove #include "inset.h".
3097
3098         * iterators.C: add #include "insets/inset.h"
3099
3100 2003-09-16  Martin Vermeer  <martin.vermeer@hut.fi>
3101
3102         * BufferView.C: remove more locking stuff that apparently doesn't
3103         do anything sensible.
3104
3105 2003-09-16  André Pönitz  <poenitz@gmx.net>
3106
3107         * paragraph.[Ch]:
3108         * paragraph_pimpl.[Ch]: un-pimpl Paragraph::(Pimpl::)text for a >10%
3109           performance boost.
3110
3111 2003-09-16  Angus Leeming  <leeming@lyx.org>
3112
3113         * lyxfont.h (LyXFont_size): a wrapper class for LyXFont::FONT_SIZE.
3114
3115         * paragraph.[Ch] (highestFontInRange): use LyXFont_size as function
3116         arg/return type.
3117
3118         * paragraph.h: remove #include "lyxfont.h". Forward declare
3119         LyXFont_size.
3120
3121 2003-09-16  Angus Leeming  <leeming@lyx.org>
3122
3123         * paragraph.C (IsInsetChar): new function in namespace anon, moved out
3124         of support/textutils.h.
3125         (isWord): move the contents of support/textutils.h's IsWordChar here.
3126
3127         * buffer.C:
3128         * lyxfind.C:
3129         * rowpainter.C:
3130         * text.C:
3131         * text2.C: add #include "paragraph.h".
3132
3133         * rowpainter.C:
3134         * text.C: replace IsInsetChar(c) with a direct test of Paragraph::META_INSET.
3135
3136 2003-09-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
3137
3138         * main.C:
3139         * lyx_main.C:
3140         * lyx_cb.C:
3141         * buffer.C:
3142         * LaTeX.C: use namespace alias for lyx::support::os
3143
3144 2003-09-16  Angus Leeming  <leeming@lyx.org>
3145
3146         * bufferparams.C:
3147         * bufferview_funcs.C:
3148         * factory.C:
3149         * lyxfunc.C:
3150         * paragraph_pimpl.C:
3151         * rowpainter.C:
3152         * text.C: add #include "LColor.h".
3153
3154 2003-09-16  Angus Leeming  <leeming@lyx.org>
3155
3156         * lyxfont.[Ch]: (setFamily, setSeries, setShape, setSize, setEmph,
3157         setUnderbar, setNoun, setNumber, setColor, setLanguage): no longer
3158         return LyXFont &.
3159         Store the FontBits::color variable as an int rather than as an
3160         LColor::colorso that we can move LColor.h out of the lyxfont.h header
3161         file.
3162
3163         * rowpainter.C (paintAppendixStart, paintPageBreak, paintLengthMarker):
3164         LyXFont::setColor, decSize no longer return a LyXFont &, so cannot
3165         string calls together.
3166
3167         * lyxrc.C: add #include "LColor.h".
3168
3169 2003-09-15  Angus Leeming  <leeming@lyx.org>
3170
3171         * bufferparams.[Ch]: store the pimpl_ as a copied_ptr, rather than as
3172         a cow_ptr.
3173
3174 2003-09-15  Angus Leeming  <leeming@lyx.org>
3175
3176         * LColor.h: add an EnumLColor wrapper for LColor::color.
3177
3178         * lyxfont.[Ch] (color, setColor, realColor):
3179         * lyxtext.h, text.C (backgroundColor):
3180         pass EnumLColor args to/from the functions, rather than LColor::color
3181         ones.
3182
3183         * lyxfont.h:
3184         * lyxtext.h: forward declare EnumLColor.
3185
3186         * lyx_main.C: add #include "LColor.h".
3187
3188 2003-09-15  Angus Leeming  <leeming@lyx.org>
3189
3190         * .cvsignore: add lyx-gtk.
3191
3192 2003-09-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
3193
3194         * Chktex.C
3195         * LaTeX.C
3196         * LaTeXFeatures.C
3197         * ParagraphParameters.C
3198         * Spacing.C
3199         * buffer.C
3200         * bufferparams.C
3201         * bufferview_funcs.C
3202         * chset.C
3203         * counters.C
3204         * funcrequest.C
3205         * lyxfont.C
3206         * lyxgluelength.C
3207         * lyxlength.C
3208         * paragraph.C
3209         * paragraph_funcs.C
3210         * text3.C
3211         * vc-backend.C: remove usage of STRCONV
3212
3213 2003-09-15  Angus Leeming  <leeming@lyx.org>
3214
3215         * rowpainter.C (paintLengthMarker, paintPageBreak, paintAppendixStart):
3216         explicitly define the color passed to the painter.
3217
3218 2003-09-15  Angus Leeming  <leeming@lyx.org>
3219
3220         * bufferparams.C (BufferParams): reorder member initializers to avoid
3221         compiler warning.
3222
3223 2003-09-15  Alfredo Braunstein  <abraunst@libero.it>
3224
3225         * CutAndPaste.C (pasteSelection): remove an outdated #warning
3226         * text.C (updateRowPositions): remove an unusual nop
3227
3228 2003-09-12  André Pönitz  <poenitz@gmx.net>
3229
3230         * BufferView_pimpl.C:
3231         * Bullet.C:
3232         * layout.h:
3233         * lyxfunc.C:
3234         * lyxlayout.[Ch]:
3235         * lyxtextclass.C:
3236         * rowpainter.C:
3237         * text.C:
3238         * text2.C:
3239         * Counters.[Ch]: finish the 'automatic counters' job
3240
3241 2003-09-12  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
3242
3243         * aspell.C: include <boost/assert.cpp> (compile fix)
3244
3245 2003-09-10  Rob Lahaye  <lahaye@snu.ac.kr>
3246
3247         * boost.C (assertion_failed): use lyx::support::abort instead of
3248         assert.
3249
3250 2003-09-10  Angus Leeming  <leeming@lyx.org>
3251
3252         * Makefile.am (lyx_SOURCES): replace ParagraphList.h and RowList.h
3253         with their _fwd progeny.
3254
3255 2003-09-09  Angus Leeming  <leeming@lyx.org>
3256
3257         134 files throughtout the source tree: replace 'using namespace abc;'
3258         directives with the appropriate 'using abc::xyz;' declarations.
3259
3260 2003-09-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
3261
3262         * boost.C (emergencyCleanup): moved here from LAssert.c
3263         (assertion_failed): new function, called by BOOST_ASSERT
3264
3265         * several files: change Assert to BOOST_ASSERT
3266
3267 2003-09-09  Angus Leeming  <leeming@lyx.org>
3268
3269         * buffer.[Ch]: Add an Impl class and move Buffer's member
3270         variables into it. As a result move several header files out of
3271         buffer.h.
3272
3273         Add header files to lots of .C files all over the tree as a result.
3274
3275 2003-09-09  Angus Leeming  <leeming@lyx.org>
3276
3277         * buffer.[Ch]: make Buffer's member variables private. Add
3278         accessor functions.
3279
3280         Lots of changes all over the tree as a result.
3281
3282 2003-09-08  Angus Leeming  <leeming@lyx.org>
3283
3284         * graph.C: #include <config.h>.
3285
3286 2003-09-08  Angus Leeming  <leeming@lyx.org>
3287
3288         * BranchList.C:
3289         * BufferView.C:
3290         * BufferView_pimpl.C:
3291         * CutAndPaste.C:
3292         * DepTable.C:
3293         * LaTeX.C:
3294         * LaTeXFeatures.C:
3295         * LyXAction.C:
3296         * MenuBackend.C:
3297         * TextCache.C:
3298         * aspell.C:
3299         * buffer.C:
3300         * bufferlist.C:
3301         * changes.C:
3302         * chset.C:
3303         * converter.C:
3304         * counters.C:
3305         * debug.C:
3306         * graph.C:
3307         * ispell.C:
3308         * lyx_cb.C:
3309         * lyxfind.C:
3310         * lyxfunc.C:
3311         * lyxlex_pimpl.C:
3312         * lyxrc.C:
3313         * lyxrow.C:
3314         * paragraph.C:
3315         * rowpainter.C:
3316         * texrow.C:
3317         * text.C:
3318         * text2.C:
3319         * toc.C: remove redundant using directives.
3320
3321 2003-09-07  Angus Leeming  <leeming@lyx.org>
3322
3323         * LaTeXFeatures.h: remove #include "support/types.h".
3324         * ToolbarBackend.h: remove #include <algorithm>.
3325         * changes.h: remove #include <ctime>.
3326         * debug.h: remove #include <iosfwd>.
3327         * graph.h: remove #include "support/std_string.h".
3328         * lyx_main.h: remove #include <csignal>.
3329         * lyxlex_pimpl.h: remove #include <fstream>.
3330         * sgml.h: remove #include <algorithm>, <utility>.
3331         * toc.h: remove #include "support/std_ostream.h".
3332         Add #include <iosfwd>.
3333
3334 2003-09-07  Angus Leeming  <leeming@lyx.org>
3335
3336         * vspace.[Ch] (length): returns a const & to a LyXGlueLength.
3337
3338         * converter.h: forward declare LatexRunParams.
3339         * encoding.h: remove #include "lyxrc.h".
3340         * lyxtext.h: remove #include "LColor.h".
3341         * lyxtextclass.h: remove #include "support/types.h".
3342         * trans.h: remove #include "tex-accent.h".
3343         * trans_mgr.h: remove #include "tex-accent.h".
3344         * insets/inset.h: remove #include "support/types.h", <vector>.
3345         * insets/insetcollapsable.h: remove #include "LColor.h".
3346         * insets/insetinclude.h: remove #include "dimension.h".
3347         * insets/insetlatexaccent.h: remove #include "dimension.h".
3348         * insets/insetoptarg.h:: remove #include "insettext.h".
3349         * insets/insettext.h: remove #include "dimension.h",
3350         <boost/shared_ptr.hpp>
3351
3352         * insets/renderers.h: add #include "dimension.h".
3353         * insets/updatableinset.h: add #include "support/types.h".
3354
3355         * many .C files: Associated changes.
3356
3357 2003-09-06  Angus Leeming  <leeming@lyx.org>
3358
3359         * Bullet.[Ch]: factorize all those #ifdef ENABLE_ASSERTIONS to just
3360         one, inside testInvariant.
3361
3362         * PrinterParams.C: new file.
3363         * PrinterParams.[Ch]: move the function bodies out of line.
3364
3365 2003-09-06  Angus Leeming  <leeming@lyx.org>
3366
3367         * ParagraphParameters.h: forward declare ParameterStruct rather than
3368         including its header file.
3369         (depth): moved out-of-line.
3370
3371 2003-09-06  Angus Leeming  <leeming@lyx.org>
3372
3373         * BufferView_pimpl.h:
3374         * kbmap.h:
3375         * kbsequence.h:
3376         * lyxfunc.h: forward declare LyXKeySym rather than
3377         #include "frontends/LyXKeySym.h".
3378
3379         * BufferView_pimpl.C:
3380         * kbmap.C:
3381         * kbsequence.C:
3382         * lyxfunc.C: associated changes.
3383
3384 2003-09-06  Angus Leeming  <leeming@lyx.org>
3385
3386         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
3387         As a result, can remove the #include "insets/inset.h" from BufferView.h
3388
3389 2003-09-06  Angus Leeming  <leeming@lyx.org>
3390
3391         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
3392         As a result, can remove the #include "insets/inset.h" from BufferView.h
3393
3394 2003-09-06  Angus Leeming  <leeming@lyx.org>
3395
3396         * buffer_funcs.C:
3397         * buffer.h:
3398         * bufferlist.C:
3399         * BufferView.C:
3400         * bufferview_funcs.C:
3401         * BufferView_pimpl.C:
3402         * CutAndPaste.C:
3403         * lyx_cb.C:
3404         * lyxfunc.C:
3405         * paragraph.h:
3406         * ParagraphParameters.C:
3407         * tabular.C:
3408         * text3.C:
3409         * toc.C:
3410         * undo_funcs.C:
3411         * frontends/controllers/ControlDocument.C:
3412         * insets/insetcaption.C: rearrange the #includes into some sort of
3413         coherent order.
3414
3415         * buffer.h: remove #includes ErrorList.h, undo.h
3416
3417 2003-09-06  Angus Leeming  <leeming@lyx.org>
3418
3419         * support/types.h: add a 'depth_type' typedef, used to store the
3420         nesting depth of a paragraph.
3421
3422         * paragraph.h:
3423         * ParameterStruct.h: use this lyx::depth_type typedef rather than
3424         defining explicitly.
3425
3426         * buffer.h:
3427         * paragraph_funcs.h:
3428         * ParagraphParameters.h:
3429         * sgml.h: use lyx::depth_type rather than Paragraph or
3430         ParameterStruct's depth_type.
3431
3432         * buffer.h
3433         * paragraph_funcs.h: no need to #include paragraph.h anymore.
3434
3435         * BufferView.C:
3436         * BufferView_pimpl.C:
3437         * CutAndPaste.C:
3438         * ParagraphParameters.C:
3439         * buffer_funcs.C:
3440         * bufferlist.C:
3441         * bufferview_funcs.C:
3442         * lyx_cb.C:
3443         * lyxfunc.C:
3444         * tabular.C:
3445         * text3.C:
3446         * toc.C:
3447         * undo_funcs.C:
3448         * frontends/LyXView.C:
3449         * frontends/controllers/ControlDocument.C:
3450         * frontends/controllers/ControlErrorList.C:
3451         * insets/insetbibitem.C:
3452         * insets/insetbranch.C:
3453         * insets/insetcaption.C:
3454         * insets/insetcollapsable.C:
3455         * insets/insetenv.C:
3456         * insets/insetert.C:
3457         * insets/insetfloat.C:
3458         * insets/insetfoot.C:
3459         * insets/insetfootlike.C:
3460         * insets/insetnewline.C:
3461         * insets/insetquotes.C:
3462         * insets/insettabular.C:
3463         * insets/insettext.C:
3464         * insets/insetwrap.C: must now explicitly #include "paragraph.h".
3465
3466         * frontends/controllers/ControlChanges.C: #include "changes.h".
3467
3468 2003-09-06  Angus Leeming  <leeming@lyx.org>
3469
3470         * ParagraphList_fwd.h: new file, forward-declaring Paragraph rather
3471         than #including paragraph.h.
3472
3473         * ParagraphList.h:
3474         * RowList.h: deleted. Superfluous.
3475
3476         * CutAndPaste.h:
3477         * iterators.h:
3478         * lyxcursor.h:
3479         * lyxtext.h:
3480         * text_funcs.h:
3481         * undo.h:
3482         * undo_funcs.h:
3483         * insets/inset.h:
3484         * insets/insettext.h: use ParagraphList_fwd.h rather than
3485         ParagraphList.h.
3486
3487         * paragraph.h: don't forward declare ParagraphList.
3488
3489         * buffer.h:
3490         * paragraph_funcs.h: #include ParagraphList_fwd.h and paragraph.h
3491         rather than ParagraphList.h. paragraph.h is still needed for the
3492         Paragraph::depth_type parameters.
3493
3494         * textcursor.h: enable it to compile stand-alone in light of the
3495         above changes.
3496
3497         * bufferview_funcs.C:
3498         * iterators.C:
3499         * lyxfunc.C:
3500         * lyxrow_funcs.C:
3501         * paragraph.C:
3502         * rowpainter.C:
3503         * text.C:
3504         * text2.C:
3505         * text3.C:
3506         * text_funcs.C:
3507         * textcursor.C:
3508         * undo.C:
3509         * frontends/controllers/ControlParagraph.C:
3510         * frontends/controllers/ControlTabular.C:
3511         * insets/insetmarginal.C:
3512         * insets/insetminipage.C:
3513         * insets/insetnote.C:
3514         * insets/insetoptarg.C: add header files needed to compile again.
3515
3516 2003-09-06  Angus Leeming  <leeming@lyx.org>
3517
3518         * RowList_fwd.h: new file, forward-declaring Row rather than
3519         #including lyxrow.h.
3520
3521         * lyxrow_funcs.h:
3522         * lyxtext.h:
3523         * paragraph.h:
3524         * insets/insettext.h: use it instead of RowList.h
3525
3526         * bufferview_funcs.C:
3527         * lyxfunc.C:
3528         * lyxrow_funcs.C:
3529         * paragraph.C:
3530         * rowpainter.C:
3531         * text.C:
3532         * text2.C:
3533         * text3.C: #include "RowList.h".
3534
3535 2003-09-05  Angus Leeming  <leeming@lyx.org>
3536
3537         * factory.C (createInset):
3538         * vspace.C (c-tor): replace sscanf call with an istringstream.
3539         * ispell.C: re-add missing HP/UX headers.
3540         * lyxserver.C: re-add missing  os2 headers.
3541
3542 2003-09-05  Martin Vermeer  <martin.vermeer@hut.fi>
3543
3544         * BranchList.C:
3545         * graph.C:
3546         * ispell.C:
3547         * lastfiles.C:
3548         * lyx_cb.C:
3549         * lyxserver.C:
3550         * texrow.C:
3551         * text3.C: re-add missing system headers, needed for 2.95.2.
3552
3553 2003-09-05  Angus Leeming  <leeming@lyx.org>
3554
3555         Changes most place everywhere due to the removal of using directives
3556         from support/std_sstream.h.
3557
3558 2003-09-05  Angus Leeming  <leeming@lyx.org>
3559
3560         Replace LString.h with support/std_string.h,
3561         Lsstream.h with support/std_sstream.h,
3562         support/LIstream.h with support/std_istream.h,
3563         support/LOstream.h with support/std_ostream.h.
3564
3565         Changes resulting throughout the tree.
3566
3567 2003-09-05  Angus Leeming  <leeming@lyx.org>
3568
3569         * sgml.h: ensure that the header file can be compiled stand-alone.
3570         * *.C: strip out redundant #includes. (320 in total.)
3571
3572 2003-09-04  Angus Leeming  <leeming@lyx.org>
3573
3574         * LaTeXFeatures.C (getMacros): move the output of the preamble_snippets
3575         here (from getPackages).
3576
3577         * debug.[Ch]: add a new EXTERNAL tag.
3578
3579 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
3580
3581         * text2.C (cursorEnd): simplify
3582         (setCursor): adjust
3583         (getColumnNearX): adjust
3584
3585         * text.C (computeBidiTables): adjust
3586         (fill): adjust
3587
3588         * rowpainter.C (paintChars): adjust
3589         (paintSelection): adjust
3590         (paintChangeBar): adjust
3591         (paintText): adjust
3592
3593         * lyxrow_funcs.C (lastPrintablePos): remove, all users now call
3594         lastPos instead.
3595         (numberOfSeparators): adjust
3596
3597 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
3598
3599         * LyXAction.C:
3600         * box.[Ch]:
3601         * lfuns.h:
3602         * lyxfunc.C:
3603         * text3.C: Restricts the mouse click functionality
3604         of insets like bibtex, include, toc and floatlist to the visible
3605         button, and allows the use of LFUN_INSET_SHOW_DIALOG to bring
3606         up the dialogs. Cursor has to be in front of the inset (i.e.
3607         start of row) for this to function.
3608
3609 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
3610
3611         * bufferview_funcs.C (currentState): output row information
3612
3613 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
3614
3615         * bufferview_funcs.C (currentState): output paragraph position
3616
3617 2003-09-04  Angus Leeming  <leeming@lyx.org>
3618
3619         * FloatList.h: move out #include "Floating.h".
3620         * LaTeX.h: move out #include "DepTable.h".
3621         * LyXAction.h: move out #include "funcrequest.h".
3622         * buffer.h: move out #include "author.h", "iterators.h".
3623         * bufferparams.h: move out #include "LaTeXFeatures.h", "texrow.h".
3624         * lyx_main.h: move out #include "errorlist.h".
3625         * lyxfunc.h: move out #include "FuncStatus.h".
3626         * lyxtext: move out #include "lyxcursor.h".
3627         * paragraph_pimpl.h: move out #include "counters.h".
3628
3629 2003-09-03  Angus Leeming  <leeming@lyx.org>
3630
3631         * LaTeXFeatures.[Ch]: replace the externalPreambles string with a
3632         preamble_snippets list, enabling us to add snippets to the preamble
3633         only if the snippet was not there already.
3634
3635 2003-09-04  Angus Leeming  <leeming@lyx.org>
3636
3637         * Chktex.C, converter.C, lyx_cb.C: add #include "support/lyxlib.h".
3638
3639 2003-09-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
3640
3641         * lyxfunc.C (dispatch): if fitCursor did something be sure to
3642         update
3643
3644 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
3645
3646         * BranchList.C: point fix, earlier forgotten
3647
3648 2003-09-02  Angus Leeming  <leeming@lyx.org>
3649
3650         * box.C (contains): renamed from 'contained' after a fantastic
3651         amount of hot air.
3652
3653 2003-09-02  John Levon  <levon@movementarian.org>
3654
3655         * BufferView.C:
3656         * lyxcursor.h:
3657         * lyxcursor.C:
3658         * lyxfunc.C:
3659         * lyxfunc.h: remove cursor.i[x]y(), it no longer differs
3660
3661 2003-09-02  John Levon  <levon@movementarian.org>
3662
3663         * text2.C: simplification of cursorEnd(), including partial
3664         fix for bug 1376
3665
3666 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
3667
3668         * buffer.C (readFile): add a space
3669
3670 2003-09-02  Alfredo Braunstein  <abraunst@libero.it>
3671
3672         * BufferView_pimpl.C (update): remove bogus fitCursor() call
3673
3674 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
3675
3676         * buffer.C (readFile): new function, take a filename and a
3677         ParagraphList::iterator
3678         (readFile): adjust
3679         (readFile): adjust, make it private. don't use setStream, make
3680         lyx2lyx use a temporary file. Some simplificaton. Make the Alerts
3681         always contain the filename.
3682
3683         * BufferView.C (insertLyXFile): simplify and make it work for
3684         gzipped files.
3685
3686 2003-08-30  John Levon  <levon@movementarian.org>
3687
3688         * Makefile.am: fix dist (from Kayvan)
3689
3690 2003-08-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
3691
3692         * most files: change to use const Buffer refs
3693
3694 2003-08-27  André Pönitz  <poenitz@gmx.net>
3695
3696         * BufferView.[Ch]: remove getParentText, implement getParentLanguage
3697         on top of ownerPar().
3698
3699 2003-08-27  John Levon  <levon@movementarian.org>
3700
3701         * funcrequest.C: properly initialise POD members
3702
3703 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
3704
3705         * lyxtext.h (top_y): move top_y from here
3706         * text.C:
3707         * text2.C:
3708         * text3.C:
3709         * BufferView.[Ch]:
3710         * BufferView_pimpl.[Ch]: to here
3711         * frontends/screen.C:
3712         * insets/insettabular.C:
3713         * insets/insettext.C: adjust
3714         * rowpainter.[Ch] (paintRows): remove LyXText & argument
3715
3716 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
3717
3718         * BufferView.[Ch]:
3719         * BufferView_pimpl.[Ch] (updateInset): add an InsetOld * argument
3720
3721 2003-08-26  André Pönitz  <poenitz@gmx.net>
3722
3723         * paragraph_func.[Ch] (outerPar): new function
3724
3725         * paragraph.C:
3726         * paragraph_funcs.C:
3727         * paragraph_funcs.h:
3728         * paragraph_pimpl.C:
3729         * text2.C: remove Inset::par_owner
3730
3731 2003-08-25  Martin Vermeer  <martin.vermeer@hut.fi>
3732
3733         * lyxrow_funcs.C:
3734         * lyxtext.h:
3735         * text.C:
3736         * text2.C: eliminates the needFullRow/display() stuff
3737         altogether, putting the logic in metrics/draw in the insets.
3738
3739 2003-08-25  Alfredo Braunstein  <abraunst@libero.it>
3740
3741         * text2.C (redoParagraphInternal, redoParagraphs):
3742         * text.C (redoParagraph): add a call to updateRowPositions at the
3743         end of each 'metrics-like' call. Remove all others.
3744         (getRow): remove the 'y-computing' version.
3745         (getRowNearY): do not compute nor return the real y. Solve the
3746         'y < 0' problem and simplify.
3747
3748 2003-08-22  Angus Leeming  <leeming@lyx.org>
3749
3750         * *.[Ch]: clean-up of licence and author blurbs.
3751         Also move config.h out of a few .h files and into a few .C files.
3752
3753 2003-08-22  André Pönitz  <poenitz@gmx.net>
3754
3755         * lyxrow.[Ch]: add x_ and *fill_ members
3756
3757         * lyxtext.h:
3758         * text.C:
3759         * rowpainter.C:
3760         * text2.C: adjust/remove prepareToPrint() calls
3761
3762 2003-08-22  André Pönitz  <poenitz@gmx.net>
3763
3764         * lyxrow.[Ch]: add  end_ member
3765
3766         * lyxrow_funcs.C: use LyXRow::end_
3767
3768         * lyxtext.h (singleWidth): add LyXFont parameter
3769
3770         * rowpainter.C:
3771         * text2.C: adjust LyXText::singleWidth() calls
3772
3773         * text.C (redoParagraph): simplify row breaking logic
3774
3775
3776 2003-08-19  André Pönitz  <poenitz@gmx.net>
3777
3778         * funcrequest.C: initialize button_ member
3779
3780         * text3.C:
3781         * rowpainter.[Ch]: interface consolidation
3782
3783 2003-08-18  André Pönitz  <poenitz@gmx.net>
3784
3785         * BufferView.C:
3786         * BufferView_pimpl.C:
3787         * lyxfind.C:
3788         * paragraph_funcs.C:
3789         * rowpainter.C:
3790         * text3.C: remove LyXScreen::draw() and fitCursor calls
3791
3792         * BranchList.h: remove spurious semicolons
3793
3794         * MenuBackend.C: fix branchlist related crash
3795
3796 2003-08-17  Martin Vermeer  <martin.vermeer@hut.fi>
3797
3798         * BranchList.[Ch]:
3799         * InsetList.[Ch]:
3800         * LColor.[Ch]:
3801         * LyXAction.C:
3802         * Makefile.am:
3803         * MenuBackend.[Ch]:
3804         * bufferparams.[Ch]:
3805         * factory.C:
3806         * lfuns.h:
3807         * lyxfunc.C:
3808         * text3.C: implements the 'branch inset'
3809         idea. This allows the output of various versions of a document
3810         from a single source version, selectively outputing or suppressing
3811         output of parts of the text.
3812         This implementation contains a 'branch list editor' in a separate
3813         tab of the document settings dialog. Branches are user definable
3814         and have a "display colour" to distinguish them on-screen.
3815
3816         ColorHandler was somewhat cleaned up.
3817         (1) make possible a dynamically growing LColor list by allowing
3818         the graphic context cache to grow along (vector);
3819         (2) eliminate an IMHO unnecessary step in colour allocation.
3820
3821 2003-08-15  Kayvan A. Sylvan <kayvan@sylvan.com>
3822
3823         * BufferView_pimpl.C: compile fix
3824
3825 2003-08-15  André Pönitz  <poenitz@gmx.net>
3826
3827         * rowpainter.C: remove extra metrics calls
3828
3829         * lyxtext.h: merge the two constructors into a single one,
3830           pass reference to owner's par list
3831
3832         * BufferView_pimpl.C:
3833         * text.C:
3834         * text2.C: adjust
3835
3836 2003-08-15  André Pönitz  <poenitz@gmx.net>
3837
3838         * lyxrow_funcs.[Ch]:
3839         * lyxtext.h:
3840         * paragraph.h:
3841         * paragraph_funcs.C:
3842         * rowpainter.C:
3843         * text.C:
3844         * text2.C:
3845         * text3.C:
3846         * text_funcs.C: split LyXText::rowlist_ into individual
3847         Paragraph::rows_ chunks
3848
3849         * BufferView.[Ch]:
3850         * BufferView_pimpl.[Ch]:
3851         * lyxfind.C:
3852         * lyxtext.h:
3853         * text3.C: remove toggleSelection()
3854
3855 2003-08-12  Michael Schmitt  <michael.schmitt@teststep.org>
3856
3857         * bufferlist.C: beautify two alerts (shorter text of buttons)
3858         * buffer.C: Remove redundant ' ' from message
3859         * tabular.h:
3860         * tabular.C: rename LYX_VALIGN_CENTER" to LYX_VALIGN_MIDDLE";
3861         rename M_VALIGN_CENTER to M_VALIGN_MIDDLE;
3862         rename VALIGN_CENTER to VALIGN_MIDDLE
3863
3864 2003-08-11  André Pönitz  <poenitz@gmx.net>
3865
3866         * lyxtext.h (getPar):
3867         * text.C: new function
3868
3869 2003-08-11  André Pönitz  <poenitz@gmx.net>
3870
3871         * Makefile.am:
3872         * tracer.[Ch]: remove unneeded files
3873
3874         * InsetList.[Ch]: remove resizeInsetsLyXText()
3875
3876         * lyxtext.h:
3877         * text.C:
3878         * text2.C:
3879         * text3.C: merge insertParagraphs() and appendParagraph()
3880         remove breakAgain(), update()
3881
3882         * BufferView_pimpl.[Ch]:
3883         * bufferview_funcs.[Ch]:
3884         * lyxfunc.C:
3885         * paragraph.[Ch]:
3886         * rowpainter.C:
3887         * tabular.C: adjust after text & InsetList changes.
3888
3889 2003-08-08  André Pönitz  <poenitz@gmx.net>
3890
3891         * text.C (insertChar, backspace): replace rowlist fiddling
3892         with rebreak of full par
3893
3894         * lyxtext.h:
3895         * text.C (breakAgainOneRow, redoHeightOfParagraph,
3896         checkParagraph, updateInset): removed
3897
3898 2003-08-07  André Pönitz  <poenitz@gmx.net>
3899
3900         * paragraph.C:
3901         * text3.C: merge some LFUN handlers, remove dead code
3902
3903 2003-08-06  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3904
3905         * .cvsignore: add lyx-xforms, lyx-qt, version.C-tmp and stamp-version
3906
3907 2003-08-05  Alfredo Braunstein  <abraunst@libero.it>
3908
3909         * text2.C (DEPM): fix part of bug 1255 and 1256
3910
3911 2003-08-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3912
3913         * BufferView_pimpl.C (workAreaDispatch): change to use
3914         LyXView::dispatch instead of BufferView::Pimpl::dispatch for lfuns
3915         that are no mouse related.
3916
3917 2003-08-05  André Pönitz  <poenitz@gmx.net>
3918
3919         * BufferView.[Ch]:
3920         * BufferView_pimpl.[Ch]:
3921         * bufferview_funcs.C:
3922         * text2.C:
3923         * text3.C: rip out "deep update"
3924
3925         * textcursor.[Ch] (last_sel_cursor): remove unused member
3926
3927 2003-08-04  André Pönitz  <poenitz@gmx.net>
3928
3929         * BufferView.[Ch]:
3930         * BufferView_pimpl.[Ch]:
3931         * ParagraphParameters.C:
3932         * bufferview_funcs.C:
3933         * lyx_cb.C:
3934         * lyxfind.C:
3935         * lyxfunc.C:
3936         * text.C:
3937         * text2.C:
3938         * text3.C: replace "complicated" BufferView::update(...) calls with
3939         simpler ones.
3940
3941         * BufferView.[Ch]: remove now unneeded BufferView::UpdateCodes
3942
3943 2003-08-02  Kayvan Sylvan  <kayvan@sylvan.com>
3944
3945         * Makefile.am (lyx_SOURCES): add paper.h
3946
3947 2003-08-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3948
3949         * Makefile.am: move things around so that both lyx-qt and
3950         lyx-xforms can be built (according to --with-frontend). Then lyx
3951         is a symbolic link to lyx-[firstfrontend]
3952
3953 2003-08-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
3954
3955         * Always use std::endl with lyxerr
3956
3957 2003-08-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
3958
3959         * BufferView_pimpl.C: _Always_ use std::endl with lyxerr
3960
3961 2003-08-01  André Pönitz  <poenitz@gmx.net>
3962
3963         * BufferView.[Ch]:
3964         * BufferView_pimpl.[Ch]:
3965         * lyxfunc.C:
3966         * text3.C: merge BufferView::repaint() and BufferView::update()
3967
3968 2003-08-01  José Matos  <jamatos@lyx.org>
3969
3970         * buffer.[Ch]: file_format is no longer a buffer data element.
3971
3972 2003-08-01  André Pönitz  <poenitz@gmx.net>
3973
3974         * BufferView.C:
3975         * lyxtext.h:
3976         * text.C:
3977         * text2.C: make redoParagraph more independent of current cursor
3978
3979         * lyxtext.h (need_update, needUpdate, postPaint, clearPaint):
3980         * text.C:
3981         * text2.C: remove unneeded members
3982
3983 2003-07-30  André Pönitz  <poenitz@gmx.net>
3984
3985         * paragraph.[Ch] (copyIntoMinibuffer): removed unused function
3986
3987         * paragraph.[Ch] (cutIntoMinibuffer, insertFromMinibuffer):
3988           create a single function...
3989
3990         * paragraph_funcs.C (moveItem): ... here.
3991
3992         * text.C:
3993           lyxtext.h (LyXText::workWidth(InsetOld*)) remove. unused.
3994
3995 2003-07-30  Martin Vermeer  <martin.vermeer@hut.fi>
3996
3997         * LColor.[Ch]: Add comment and greyedout logical colors.
3998
3999 2003-07-30  André Pönitz  <poenitz@gmx.net>
4000
4001         * tabular.C: don't use Assert too heavily. This crashes where it
4002           shouldn't
4003
4004 2003-07-30  Alfredo Braunstein  <abraunst@libero.it>
4005
4006         * lyxfunc.C (dispatch): do not mark the buffer dirty if the action
4007         is disabled (bug 1232)
4008
4009 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
4010
4011         * factory.C: limited 'arg' scope
4012
4013 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
4014
4015         * factory.C: fixed Note submenu issues
4016
4017 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
4018
4019         * factory.C: submenu for Note/Comment/Greyedout
4020
4021 2003-07-29  Alfredo Braunstein  <abraunst@libero.it>
4022
4023         * lyx_main.C (LyX):
4024         * BufferView_pimpl.C (loadLyXFile): fix to bugs 1287 and 1297 + ws
4025
4026 2003-07-29  Martin Vermeer  <martin.vermeer@hut.fi>
4027
4028         * LaTeXFeatures.C:
4029         * lyx_sty.[Ch]:h: Implement a newenvironment in preamble for
4030         greyedout. Patch provided by Jürgen Spitzmüller.
4031
4032 2003-07-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4033
4034         * kbmap.C (read): fix error message when reading bind files
4035
4036 2003-07-29  Angus Leeming  <leeming@lyx.org>
4037
4038         * BufferView.[Ch] (ChangeCitationsIfUnique): This function most
4039         certainly does not do what it purports to do. I am doing it, and
4040         us, a favour by killing it.
4041
4042 2003-07-28  José Matos  <jamatos@lyx.org>
4043
4044         * buffer.C (readBody, do_writeFile):
4045         * paragraph.C(readParagraph): \end_document replaces \the_end.
4046
4047 2003-07-29  André Pönitz  <poenitz@gmx.net>
4048
4049         * BufferView.[Ch]:
4050         * BufferView_pimpl.[Ch]:
4051         * lyxfunc.C:
4052         * text2.C:
4053         * text3.C:
4054         * textcursor.[Ch]: remove toggleToggle & Co
4055
4056 2003-07-28  José Matos  <jamatos@fep.up.pt>
4057
4058         * buffer.C (readParagraph):
4059         * params_func (readParToken, readParagraph):
4060         * paragraph.C (write): \layout -> \begin_layout.
4061
4062 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
4063
4064         * lyxlex_pimpl.C (setFile): clean up slightly.
4065
4066         * bufferparams.h: add compressed var
4067
4068         * buffer_funcs.C (readFile): adjust for LyXLex change
4069         (newFile): ditto + simplify
4070
4071         * buffer.C (writeFile): handle writing of compressed files
4072
4073         * buffer.[Ch] (readFile): begin LyXLex here, remove one argument.
4074         Check if the file is compressed and set a bufferparm if so.
4075
4076         * Makefile.am (lyx_LDADD): remove explicit -lz
4077
4078 2003-07-28  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4079
4080         * buffer.C (do_writeFile, makeLaTeXFile, makeLinuxDocFile,
4081         makeDocBookFile): put the real LyX version in the first line of
4082         the file
4083
4084         * version.h:
4085         * version.C.in: remove lyx_docversion
4086
4087         * tabular.C (write_attribute): add a template-based version to
4088         write enums properly
4089
4090 2003-07-28  André Pönitz  <poenitz@gmx.net>
4091
4092         * lyxtext.h:
4093         * text.C:
4094         * text2.C:
4095         * text3.C: use doubles again for x-coordinates. They are needed.
4096
4097 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
4098
4099         * messages.C (getLocaleDir): use lyx_localedir()
4100
4101         * lyxlex_pimpl.C (setFile): compress stuff
4102
4103         * buffer.C (writeFile): add some compression stuff
4104         (do_writeFile): new func, dont call expliti close... will this
4105         breake anything?
4106
4107         * Makefile.am (lyx_LDADD): add -lz
4108
4109 2003-07-28  José Matos  <jamatos@fep.up.pt>
4110
4111         * buffer.C: increment file format.
4112         * paragraph_funcs (readParagraph, readParToken):
4113         * paragraph.C (readParagraph): add \end_layout.
4114
4115 2003-07-27  Angus Leeming  <leeming@lyx.org>
4116
4117         * Makefile.am: remove special casing for configure-time setting of
4118         LYX_DIR, TOP_SRCDIR and LOCALEDIR.
4119
4120         * lyx_main.C (init): remove all Jean-Marc's magic setting of
4121         system_lyxdir, build_lyxdir and user_lyxdir into the support lib.
4122
4123 2003-07-26  André Pönitz  <poenitz@gmx.net>
4124
4125         * paragraph_func.[Ch]:
4126         * paragraph.C (realizeFont): inline it whereever it is used
4127
4128         * rowpainter.C:
4129         * text.C:
4130         * text2.C:
4131         * text3.C: remove Buffer * parameter from a bunch of get*Font functions
4132
4133
4134 2003-07-26  André Pönitz  <poenitz@gmx.net>
4135
4136         *       lyxtext.h:
4137         * text.C:
4138         * text2.C: get rid of LyXText::need_break_row
4139
4140 2003-07-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
4141
4142         * toc.[Ch]: put namespace toc inside namespace lyx
4143
4144         * MenuBackend.C (expandToc2): adjust for lyx::toc
4145         (expandToc): ditto
4146
4147         * lyxfunc.C (dispatch): adjust for lyx::find
4148
4149         * lyxfind.[hC]: get rid of namespace lyxfind introduce namespace
4150         lyx::find instead. Reorganize a bit.
4151         (LyXReplace): rename to replace
4152         (LyXFind): rename to find
4153
4154         * BufferView_pimpl.C (trackChanges): adjust for lyx::find
4155         (dispatch): ditto
4156
4157 2003-07-26  André Pönitz  <poenitz@gmx.net>
4158
4159         * text.C (setHeightOfRow): restrict scope of temporary variable
4160
4161         * paragraph_funcs.C (readParToken): remove USE_CAPTION  compatibility
4162           code (never has been used?)
4163
4164 2003-07-27  Asger Alstrup  <alstrup@local>
4165
4166         * text.C (fill): Optimise algorithm to exploit that we can reuse
4167         the LyXFont for many characters.
4168         (setHeightOfRow): Same thing.
4169         (rowBreakPoint): Same thing.
4170
4171 2003-07-26  Asger Alstrup  <alstrup@local>
4172
4173         * text2.C (metrics): change a brain-dead algorithm to a smarter one.
4174
4175         * text.C (singleWidth): Spurious font copying in hot-spot
4176         singleWidth avoided. Reorder tests for arabic for efficiency.
4177
4178         * text.C (fill): handle empty paragraphs better.
4179
4180 2003-07-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4181
4182         * ispell.C:
4183         * encoding.h: add includes
4184
4185         * lyxrc.C: remove reading of bind files
4186
4187         * lyx_main.C (init): setup bindings and menus only if we have a
4188         gui.
4189
4190         * kbmap.C (read): new method. Do the actual reading of bind
4191         files.
4192
4193         * converter.C (dvipdfm_options):
4194         * bufferparams.C:
4195         * lyxrc.C (read):
4196         (output): adapt PAPER_* enums.
4197
4198         * lyxrc.h: include paper.h instead of bufferparams.h (mucho lighter)
4199
4200         * bufferparams.h: remove paper-related enums from there
4201
4202         * paper.h: New file. A trivial header file to hold paper-related
4203         enums. It should later expand to contain many paper-related
4204         horrors access.
4205
4206         * lyxrc.C: declare extern displayTranslator
4207
4208 2003-07-27  José Matos  <jamatos@fep.up.pt>
4209
4210         * tabular.[Ch] (linuxdoc): add support for tables and figures
4211         (linuxdoc).
4212
4213 2003-07-27  José Matos  <jamatos@fep.up.pt>
4214
4215         * buffer.[Ch] (makeLaTeXFile): changed name of arguments for
4216         consistency in both functions.
4217         * bufferlist.C (updateIncludedTeXfiles): change client to comply.
4218
4219 2003-07-26  Asger Alstrup  <alstrup@local>
4220
4221         * rowpainter.C (paintRows): Change algorithm to work directly on
4222         the insets rather than asking every character in the document
4223         whether its an inset.
4224
4225 2003-07.26  Alfredo Braunstein  <abraunst@libero.it>
4226
4227         * buffer.C (openFileWrite): factorize some code
4228
4229 2003-07-26  Angus Leeming  <leeming@lyx.org>
4230
4231         * lyx_cb.C:
4232         * lyx_main.[Ch]: replace occurances of system_tempdir with
4233         os::getTmpDir().
4234
4235 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
4236
4237         * rename Inset to InsetOld
4238
4239 2003-07-25  Asger Alstrup  <alstrup@diku.dk>
4240
4241         * undo_funcs.h: Removed setCursorParUndo to simplify things a bit.
4242         Renamed setUndo family to recordUndo. Renamed FINISH to ATOMIC
4243         which I think is a bit clearer. EDIT is gone, since it was
4244         premature optimisation, and broken for mathed anyway.
4245         * undo_funcs.C (performUndoOrRedo): Cleaned up and made it work
4246         with cursor positioning in insets as well (math insets still do not
4247         work, but that's a different story anyway.) It mysteriously
4248         crashes sometimes with undo in the first paragraph, but I'm fairly
4249         confident that this is a compiler bug.
4250
4251 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
4252
4253         * paragraph.C (Paragraph): adjust for new clone return type
4254         (operator==): ditto
4255         (copyIntoMinibuffer): ditto
4256
4257 2003-07-25  Asger Alstrup  <alstrup@lyx.org>
4258
4259         * undo_funcs.C (textHandleUndo): Fix undo crash in first paragraph
4260         by not having a special case, and always doing a full rebreak of
4261         the document after undo.
4262
4263 2003-07-23  Angus Leeming  <leeming@lyx.org>
4264
4265         * factory.C (createInset): InsetExternal::setParams now takes a
4266         Buffer const * arg.
4267
4268 2003-07-23  Angus Leeming  <leeming@lyx.org>
4269
4270         * factory.C (createInset): changed interface to the external and
4271         graphics mailers' string2params functions.
4272
4273 2003-07-23  Angus Leeming  <leeming@lyx.org>
4274
4275         * factory.C (createInset): pass a
4276         Buffer const * parameter to InsetExternalMailer's string2params.
4277
4278 2003-07-22  John Levon  <levon@movementarian.org>
4279
4280         * Thesaurus.h: include the right aiksaurus header
4281
4282 2003-07-21  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4283
4284         * MenuBackend.C (expand): check menu shortcuts unconditionally
4285
4286 2003-07-21  Angus Leeming  <leeming@lyx.org>
4287
4288         * factory.C (createInset): pass a
4289         buffer_path parameter to InsetGraphicsMailer's string2params.
4290
4291 2003-07-21  Angus Leeming  <leeming@lyx.org>
4292
4293         * BufferView_pimpl.C (buffer):
4294         * buffer.C (d-tor):
4295         * lyx_main.C (LyX):
4296         * lyxfunc.C (dispatch):
4297         * lyxrc.C (setDefaults, read, output): use namespace lyx::graphics
4298         rather than the grfx shortcut.
4299
4300 2003-07-21  André Pönitz  <poenitz@gmx.net>
4301
4302         * rowpainter.C: remove unused variables
4303
4304         * tabular_funcs.C:
4305         * tabular_funcs.h: move to tabular.C
4306         * Makefile.am: adjust
4307
4308         * tabular.[Ch]: basic optical cleaning
4309
4310         * author.h: pass references, not values
4311
4312 2003-07-18  André Pönitz  <poenitz@gmx.net>
4313
4314         * lyxtext.h:
4315         * metricsinfo.C:
4316         * metricsinfo.h:
4317         * rowpainter.C:
4318         * text.C:
4319         * text2.C:
4320         * text3.C: two-phase drawing for InsetText and InsetTabular
4321         some float -> int changes.
4322
4323 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
4324
4325         * lyx_main.C: fix the fix
4326
4327 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
4328
4329         * lyx_main.C: fix a crash in batch mode if no files specified
4330         * converter.C: ws
4331
4332 2003-07-17  Alfredo Braunstein  <abraunst@libero.it>
4333
4334         * format.[Ch] (papersize): moved to BufferParams
4335         * converter.[Ch] (dvips_options): moved to BufferParams
4336         (dvipdfm_options): moved to anon namespace
4337         * bufferparams.[Ch]: added above functions.
4338
4339 2003-07-17  André Pönitz  <poenitz@gmx.net>
4340
4341         * lyxtext.h:
4342         * rowpainter.C:
4343         * text2.C: don't call inset->update() anymore
4344
4345         * metricsinfo.[Ch]: add convenience constructor
4346
4347 2003-07-16  André Pönitz  <poenitz@gmx.net>
4348
4349         * lyxcursor.[Ch]:
4350         * lyxfunc.[Ch]:
4351         * text.C:
4352         * text2.C: replace the LyXCursor::irow_ member with
4353          on-demand computation of the value
4354
4355 2003-07-16  John Levon  <levon@movementarian.org>
4356
4357         * lyxfunc.C: support LFUN_INSET_SETTINGS for Note
4358
4359 2003-07-15  André Pönitz  <poenitz@gmx.net>
4360
4361         * text.C:
4362         * text2.C: remove no more needed refresh_row
4363
4364 2003-07-15  André Pönitz  <poenitz@gmx.net>
4365
4366         * lyxtext.h:
4367         * rowpainter.C:
4368         * text2.C:
4369         * text3.C: refresh_status tristate -> need_update bool
4370
4371 2003-07-15  Alfredo Braunstein  <abraunst@libero.it>
4372
4373         * lyxtext.h (init): remove reinit argument (act as if always true)
4374         * text2.C: adjust to that
4375
4376 2003-07-14  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
4377
4378         * bufferview_funcs.[Ch]: introduce function replaceSelection()
4379         * text3.C: use it to delete selections in some cases
4380         (bugs 441, 673, 702, 954).
4381
4382 2003-07-14  André Pönitz  <poenitz@gmx.net>
4383
4384         * rowpainter.[Ch]: reduce interface
4385
4386 2003-07-14  André Pönitz  <poenitz@gmx.net>
4387
4388         * BufferView_pimpl.C:
4389         * text2.C: adjust after removing unused BufferView * argument
4390
4391 2003-07-14  Alfredo Braunstein  <abraunst@libero.it>
4392
4393         * text2.C (init): fix a crash fired on resize
4394
4395 2003-07-11  Alfredo Braunstein  <abraunst@libero.it>
4396
4397         * buffer.[Ch]: added new closing signal
4398         * BufferView_pimpl.[Ch]: connect/disconnect to new signal
4399         * lyxfunc.C: removed BufferView::buffer(0) call now handled in
4400         BufferView::Pimpl via the closing the signal
4401
4402 2003-07-10  Alfredo Braunstein  <abraunst@libero.it>
4403
4404         * buffer.[Ch]: take out all bv-related from buffer
4405         * BufferView.C:
4406         * BufferView_pimpl.[Ch]: connect to new signals
4407         * CutAndPaste.C: removed useless asserts
4408         * bufferview_funcs.[Ch] (resizeInsets): moved from buffer
4409         * lyxvc.[Ch]:
4410         * vc-backend.[Ch]:
4411         * lyxfunc.C: moved view-related funciontality from vc here
4412         * paragraph.C: removed outdated comments
4413         * text.C: ws
4414
4415 2003-07-10  André Pönitz  <poenitz@gmx.net>
4416
4417         * BufferView_pimpl.C:
4418         * tabular.h:
4419         * tabular_funcs.C:
4420         * text.C:
4421         * text2.C: remove InsetText::InnerCache, clean up consequences
4422
4423 2003-07-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
4424
4425         * ispell.C: fix two typos in error messages
4426
4427 2003-07-08  Martin Vermeer  <martin.vermeer@hut.fi>
4428
4429         * Extend Note inset to other forms of annotation like Comment
4430         and Greyedout. Right button click gives dialog.
4431
4432         Files modified or added (+):
4433
4434         * insetnote.[Ch]
4435         * FormNote.[Ch]      +
4436         * ControlNote.[Ch]   +
4437         * form_note.fd       +
4438         * Makefile.am in frontends/xforms, frontends/xforms/forms,
4439         frontends/controllers
4440         * xforms/Dialogs.C
4441         * factory.C
4442
4443 2003-07-01  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
4444
4445         * aspell.C: add missing namespace lyx::support
4446
4447 2003-07-07  Alfredo Braunstein  <abraunst@libero.it>
4448
4449         * BufferView.[Ch] (newFile): Add
4450         * BufferView_pimpl.[Ch] (newFile, connectBuffer, disconnectBuffer): Add
4451         * LaTeX.[Ch] (message): added this signal and use it
4452         * buffer.[Ch] (busy, message): added these signals and use them
4453         * buffer_funcs.[Ch]: rename parseErrors to bufferErrors
4454         * converter.C:
4455         * exporter.C:
4456         * format.C:
4457         * importer.C: use buffer signals instead of direct bv calling
4458         * lyx_cb.[Ch] (ShowMessage): removed
4459         * lyx_main.C:
4460         * lyxfunc.C:
4461         * paragraph_funcs.C:
4462         * text2.C: use buffer signals
4463
4464 2003-07-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
4465
4466         * introduce namespace lyx::graphics
4467
4468 2003-07-02  André Pönitz  <poenitz@gmx.net>
4469
4470         * BufferView_pimpl.C (workAreaDispatch): tell the FuncRequest who we are
4471
4472 2003-07-01  André Pönitz  <poenitz@gmx.net>
4473
4474         * text.C:
4475         * text2.C:
4476         * text3.C:
4477         * text_funcs.[Ch]:
4478         * textcursor.h:
4479         * lyxtext.h: shuffle pure paragraph/cursor related cursor movement from
4480           text*.C to text_func.C
4481
4482 2003-07-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4483
4484         * introduce namespace lyx::support
4485
4486 2003-06-30  André Pönitz  <poenitz@gmx.net>
4487
4488         * Chktex.C:
4489         * funcrequest.C:
4490         * lyxtext.h:
4491         * text.C: re-enable --with-included-string
4492
4493 2003-06-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
4494
4495         * textcursor.C: add <config.h>
4496
4497         * text.C (getWord): remove const from word_location arg
4498
4499         * lyxvc.C (getLogFile): fix const type order
4500
4501         * lyxtext.h: remove const from word_location arg, add arg name
4502
4503         * lyxlayout.h: currect type on labeltype.
4504
4505         * importer.C: correct \file
4506
4507         * converter.C (intToFormat): use std:: on ret val, ws changes
4508
4509         * bufferlist.h: correct \file
4510
4511         * buffer.C (makeLinuxDocFile): fix const type order
4512         (makeDocBookFile): ditto
4513         (fillWithBibKeys): use std:: on stdlib args.
4514
4515         * CutAndPaste.C: fix authors.
4516         (availableSelections): use std:: on return vector
4517
4518 2003-06-27  André Pönitz  <poenitz@gmx.net>
4519
4520         * BufferView_pimpl.C:
4521         * bufferview_funcs.C:
4522         * lyxcursor.C:
4523         * lyxcursor.h:
4524         * lyxfunc.C:
4525         * lyxtext.h:
4526         * rowpainter.C:
4527         * text.C:
4528         * text2.C:
4529         * text3.C: remove LyXCursor::row_ member
4530
4531         * lyxtext.h:
4532         * text.C: rename fullRebreak() to partialRebreak() and implement
4533           a fullRebreak() that really bereks fully
4534
4535         * textcursor.h: new struct for cursor-related data
4536
4537 2003-06-26  Alfredo Braunstein  <abraunst@lyx.org>
4538
4539         * lyx_main.C (LyX): get full path of document loaded on the
4540         command line
4541
4542 2003-06-26  André Pönitz  <poenitz@gmx.net>
4543
4544         * lyxcursor.[Ch]: move rarely used operator==,!= out of line
4545           remove unused/broken operator>,<,>=.
4546
4547         *       text.C: remove only use of broken operator<= in an Assert().
4548
4549 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
4550
4551         * BufferView.[Ch] (getErrorList): removed unneeded forward declare,
4552         moved errorlist_.clear to showErrorList
4553
4554 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
4555
4556         * converter.C (scanLog, runLaTeX):
4557         * buffer.C (makeLinuxDocFile, makeDocBookFile, runChkTeX):
4558         move the bv->showErrorList call to the callers
4559         * lyxfunc.C: i.e. here...
4560         * text2.C: and here
4561         * BufferView.[Ch] (setErrorList, resetErrorList): both removed
4562         * exporter.[Ch] (Backends, BufferFormat): the first was moved to anon
4563         namespace, the second to...
4564         * buffer_funcs (BufferFormat, parseErrors): added
4565         * errorlist.C (ErrorList(TeXErrors const &)): removed
4566
4567 2003-06-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4568
4569         * ToolbarBackend.C (getIcon): complain when icon cannot be found
4570
4571 2003-06-24  "Garst R. Reese" <reese@isn.net>
4572
4573         * debug.C: fix typo
4574
4575 2003-06-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4576
4577         * lyx_main.C (init): honor LYX_DIR_14x and LYX_USERDIR_14x
4578
4579         * version.C.in: change docversion to 1.4
4580
4581 2003-06-22  Alfredo Braunstein  <abraunst@libero.it>
4582
4583         * buffer.C: fix a bug just introduced
4584
4585 2003-06-21  Alfredo Braunstein  <abraunst@libero.it>
4586
4587         * buffer.[Ch]: added the parseError signal and use it, removed
4588         sgmlError
4589         * BufferView.[Ch] (addError): moved to ...
4590         * BufferView_pimpl.[Ch] (addError, loadLyXFile): ... here. Attach
4591         to the Buffer::parseError signal to catch (guess what) parse errors
4592         * lyx_main.[Ch] (printError,LyX): added gui-less parsing error feedback
4593
4594 2003-06-19  Alfredo Braunstein  <abraunst@libero.it>
4595
4596         * bufferlist.[Ch] (loadLyXFile, readFile, newFile): removed the
4597         ability to create a buffer and to return an existing one from
4598         the list. Moved these functions to...
4599         * buffer_funcs.[Ch]: added
4600         * BufferView.[Ch] (loadLyXFile): added
4601         * BufferView_pimpl.[Ch] (loadLyXFile): Added. Does the guessing
4602         job removed from bufferlist::loadLyXFile.
4603         * buffer.C (setReadOnly): make it work without view
4604         (i.e added an if (users))
4605
4606 2003-06-19  Angus Leeming  <leeming@lyx.org>
4607
4608         * lfuns.h:
4609         * LyXAction.C (init):
4610         * lyxfunc.C (getStatus, dispatch): remove 14 LFUNs, replacing them
4611         with LFUN_DIALOG_SHOW <name> <data>.
4612
4613 2003-06-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4614
4615         * CutAndPaste.C (availableSelections): small compilation fix for
4616         ancient (gcc 2.9x) compilers
4617
4618 2003-06-18  Lars Gullik Bjønnes  <larsbj@gullik.net>
4619
4620         * text3.C (cursorNext): add tmp var
4621
4622         * text2.C (updateCounters): for function calling out of for clause
4623         (replaceSelectionWithString): ditto
4624         (insertStringAsParagraphs): ditto
4625         (getColumnNearX): add tmp var
4626         (setCursorFromCoordinates): add tmp var
4627         (cursorDownParagraph): add tmp var
4628         (deleteEmptyParagraphMechanism): add tmp var
4629
4630         * text.C (insertChar): add tmp var
4631
4632         * rowpainter.C (paintDepthBar): add tmp var
4633
4634         * CutAndPaste.C (availableSelections): potentially check all
4635         paragraphs in a cut to fill the shown strings.
4636
4637 2003-06-18  André Pönitz  <poenitz@gmx.net>
4638
4639         * kbmap.[Ch]: use vector<> instead of list<>
4640
4641 2003-06-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
4642
4643         * text3.C (dispatch): handle arg to LFUN_PASTE, call
4644         pasteSelection with index
4645
4646         * text2.C (pasteSelection): modify, call pasteSelection with index
4647
4648         * paragraph.C (asString): reimplement version with no interval to
4649         call the one with interval.
4650
4651         * lyxtext.h: add index arg to pasteSelection
4652
4653         * MenuBackend.C (MenuItem): handle PasteRecent
4654         (Menu::read::Menutags): add md_pasterecent
4655         (read): handle it
4656         (expandPasteRecent): new function
4657         (expand): use it
4658
4659         * MenuBackend.h: add PasteRecent to MenuItem::Kind
4660
4661         * CutAndPaste.C: get rid of some stale comments. Add typdefe for
4662         the limited stack
4663         (availableSelections): new function
4664
4665 2003-06-17  Angus Leeming  <leeming@lyx.org>
4666
4667         * lyxfunc.C (dispatch): s/showMathPanel/show("mathpanel")/
4668
4669 2003-06-17  Angus Leeming  <leeming@lyx.org>
4670
4671         * lfuns.h:
4672         * LyXAction.C (init): new LFUN_DIALOG_SHOW.
4673
4674         * lyxfunc.C (dispatch): invoke it.
4675
4676 2003-06-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4677
4678         * iterators.C (operator++, ParPosition): reintroduce some
4679         const_cast for the benefit of older compilers.
4680
4681 2003-06-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4682
4683         * text3.C (dispatch): do not modify clipboard when doing
4684         LFUN_BACKSPACE, LFUN_BACKSPACE_SKIP, LFUN_DELETE or
4685         LFUN_DELETE_SKIP on a selection selection
4686
4687 2003-06-16  André Pönitz  <poenitz@gmx.net>
4688
4689         * BufferView.C:
4690         * buffer.C:
4691         * buffer.h:
4692         * paragraph.C:
4693         * tabular.[Ch]: IU of clone() and getLabelList();
4694
4695 2003-06-13  André Pönitz  <poenitz@gmx.net>
4696
4697         * tabular.h: compactification
4698
4699 2003-06-12  André Pönitz  <poenitz@gmx.net>
4700
4701         * tabular.C:
4702         * tabular.h:
4703         * tabular_funcs.h: some renaming plus whitespace
4704
4705 2003-06-12  André Pönitz  <poenitz@gmx.net>
4706
4707         * BufferView.C:
4708         * BufferView_pimpl.C:
4709         * CutAndPaste.C:
4710         * buffer.C:
4711         * iterators.[Ch]:
4712         * lyxfunc.C:
4713         * text.C:
4714         * toc.C: Return a Paragraph & for ParIterator::operator*()
4715
4716 2003-06-11  John Levon  <levon@movementarian.org>
4717
4718         * lyx_main.C:
4719         * ToolbarBackend.h:
4720         * ToolbarBackend.C: add "Toolbars" section and
4721         put the flags there
4722
4723 2003-06-10  Angus Leeming  <leeming@lyx.org>
4724
4725         * lfuns.h:
4726         * LyXAction.C (init): new LFUN_EXTERNAL_EDIT.
4727
4728         * lyxfunc.C (dispatch): invoke it.
4729
4730 2003-06-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
4731
4732         * main.C: protect <ios> with HAVE_IOS
4733         (main): protect sync_with_stdio with HAVE_IOS
4734
4735 2003-06-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
4736
4737         * text2.C (cutSelection): adjust
4738         (pasteSelection): adjust
4739
4740         * messages.C: handle get of empty string
4741
4742         * main.C (main): use sync_with_stdio(false)
4743
4744         * lyxfunc.C (dispatch): adjust
4745
4746         * lyx_cb.[Ch] (MenuWrite): remove unneeded BufferView arg
4747         (WriteAs): remove unneeded BufferView arg.
4748
4749         * bufferparams.h: use correct types on papersize, papersize2 and
4750         paperpackage.
4751
4752         * bufferparams.C (readToken): adjust for type
4753         (writeLaTeX): add missing cases to switch.
4754
4755         * bufferlist.C (quitWriteBuffer): adjust
4756         (close): adjust
4757
4758         * buffer.C (asciiParagraph): remove some commented code.
4759
4760         * CutAndPaste.C: remove current_view extern variable.
4761         (cutSelection): add BufferParams arg.
4762         (eraseSelection): add BufferParams arg.
4763         (pasteSelection): add Buffer const & arg
4764
4765 2003-06-07  John Levon  <levon@movementarian.org>
4766
4767         * buffer.C:
4768         * paragraph_funcs.C:
4769         * paragraph_pimpl.C:
4770         * text.C:
4771         * text2.C:
4772         * paragraph.h:
4773         * paragraph.C: allow InsetERT to freely space lines,
4774         and some consolidation of code
4775
4776 2003-06-06  José Matos  <jamatos@fep.up.pt>
4777
4778         * buffer.C (makeDocBookFile): fix bug #821
4779
4780 2003-06-06  Alfredo Braunstein  <abraunst@libero.it>
4781
4782         * BufferView_pimpl.C (dispatch): use Dialogs::visible
4783
4784 2003-06-04  Angus Leeming  <leeming@lyx.org>
4785
4786         * buffer.C: bump format to 224.
4787
4788 2003-06-05  André Pönitz  <poenitz@gmx.net>
4789
4790         * text2.C (redoParagraphs): remove two const_cast<>
4791
4792 2003-06-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
4793
4794         * ParagraphList.h: remove last remnants of NO_STD_LIST
4795
4796 2003-06-03  Angus Leeming  <leeming@lyx.org>
4797
4798         * factory.C (createInset): small change to the way InsetExternal's params
4799         are set.
4800
4801 2003-06-04  André Pönitz  <poenitz@gmx.net>
4802
4803         * buffer.h: use Undo directly instead of shared_ptr<Undo>
4804
4805         * paragraph_pimpl.h:
4806         * paragraph.[Ch]: some Inset -> UpdatableInset changes
4807
4808         * undo.[Ch]: use ParagraphList instead of vector<Paragraph>
4809
4810         * undo_funcs.C: make some simple cases of undo work again
4811
4812 2003-06-03  John Levon  <levon@movementarian.org>
4813
4814         * ispell.C: HPUX doesn't have sys/select.h
4815         (from Albert Chin)
4816
4817 2003-06-03  John Levon  <levon@movementarian.org>
4818
4819         * CutAndPaste.C: update tabular and include inset
4820         buffer references
4821
4822         * buffer.h:
4823         * paragraph.h:
4824         * paragraph.C: remove owningBuffer(), don't pass Buffer
4825         to clone()
4826
4827         * factory.C: insetGraphicsParams changed
4828
4829 2003-06-02  John Levon  <levon@movementarian.org>
4830
4831         * LyXAction.C:
4832         * factory.C:
4833         * lfuns.h:
4834         * lyxfunc.C:
4835         * text3.C: remove insetparent
4836
4837 2003-06-02  John Levon  <levon@movementarian.org>
4838
4839         * buffer.h:
4840         * buffer.C: fix inset_iterator.end(), move out of line
4841         (bug 1149)
4842
4843 2003-06-01  John Levon  <levon@movementarian.org>
4844
4845         * text3.C: use a proper cut/paste when doing inset
4846         insert (from Jürgen Spitzmüller)
4847
4848 2003-06-01  John Levon  <levon@movementarian.org>
4849
4850         * factory.C: accept "\bibtex" not "\BibTeX" (bug 1018)
4851
4852 2003-05-30  André Pönitz  <poenitz@gmx.net>
4853
4854         * rowpainter.C: unify second drawing phase
4855
4856 2003-05-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
4857
4858         * trans_mgr.C: remove one case of current_view
4859
4860         * text2.C (cursorBottom): delete NO_STD_LIST stuff
4861
4862         * paragraph_funcs.h: remove paragraph.h include
4863
4864         * paragraph.h: delete NO_STD_LIST stuff
4865
4866         * paragraph.C (Paragraph): delete NO_STD_LIST stuff
4867
4868         * buffer.h: remove paragraph.h include
4869
4870         * ParagraphList.C: delete file
4871
4872         * Makefile.am (lyx_SOURCES): remove ParagraphList.C
4873
4874         * toc.C (getTocList): adjust
4875
4876         * paragraph_pimpl.C (validate): adjust
4877
4878         * paragraph_funcs.C (optArgInset): use const_iterator, adjust
4879
4880         * paragraph.C (Paragraph): adjust
4881         (getPositionOfInset): use const_iterator, adjust
4882         (bibitem): use const_iterator, adjust
4883         (setInsetOwner): adjust
4884
4885         * iterators.C (operator++): adjust
4886
4887         * InsetList.[Ch]: Replace selfmade iterator with standard
4888         vector::iterator also introduce const_iterator. Remove getPos,
4889         getInset and setInset from InsetTable. Adjust accordingly.
4890
4891         * BufferView.C (lockInset): adjust
4892         (ChangeInsets): adjust
4893
4894         * tabular.[Ch]: delete commented same_id functions
4895
4896 2003-05-28  John Levon  <levon@movementarian.org>
4897
4898         * lyxfunc.C: fix LFUN_ESCAPE (bug 1055)
4899
4900 2003-05-28  André Pönitz  <poenitz@gmx.net>
4901
4902         * metricsinfo.[Ch]: remove 'fullredraw' member
4903
4904 2003-05-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
4905
4906         * lyxtextclass.C (operator): remove caching.
4907
4908 2003-05-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
4909
4910         * text3.C: adjust
4911
4912         * text2.C (cursorBottom): adjust
4913         (setCounter): use ParagraphList::find, adjust
4914
4915         * text.C (workWidth): use ParagraphList::find, adjust
4916
4917         * lyxcursor.C (LyXCursor): adjust
4918
4919         * buffer.C (inset_iterator): adjust
4920
4921         * ParagraphList.h: make iterator(value_type) private, make
4922         ParagraphList a friend of iterator.
4923
4924         * ParagraphList.C (find): new function
4925
4926         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
4927
4928 2003-05-27  André Pönitz  <poenitz@gmx.net>
4929
4930         * dimension.[Ch]: a -> asc, d -> des, w -> wid
4931
4932 2003-05-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4933
4934         * lyxfont.C (latexWriteStartChanges): fix character count for \noun
4935
4936 2003-05-26  John Levon  <levon@movementarian.org>
4937
4938         * LyXAction.C: LFUN_ESCAPE should be ReadOnly
4939
4940 2003-05-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
4941
4942         * remove same_id from function signatures, adjust.
4943
4944 2003-05-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
4945
4946         * undo_funcs.C (createUndo): use the id functions directly, adjust.
4947
4948         * paragraph_pimpl.C (Pimpl): get rid of same_ids parameter
4949
4950         * paragraph.C (Paragraph): get rid of same_ids parameter
4951
4952         * ParagraphList.C (insert): adjust
4953         (push_back): adjust
4954
4955 2003-05-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
4956
4957         * paragraph_funcs.C (breakParagraph): adjust
4958         (breakParagraphConservative): adjust
4959
4960         * buffer.C (readParagraph): adjust
4961
4962         * ParagraphList.C (insert): take a reference instead of a pointer
4963         (insert): adjust
4964
4965         * paragraph.[Ch] (id): new function
4966
4967         * bufferlist.C (newFile): adjust
4968
4969         * ParagraphList.C (ParagraphList): adjust
4970         (assign): adjust
4971         (push_back): take a reference instead of a pointer.
4972
4973         * paragraph.h: add NO_STD_LIST define, remove NO_NEXT define.
4974
4975         * paragraph.C: remove all NO_NEXT node add some NO_STD_LIST parts
4976         instead.
4977
4978         * ParagraphList.h: degenerate to std::list if NO_STD_LIST is not
4979         set else use old code.
4980
4981         * ParagraphList.C: remove all NO_NEXT code and only compile this
4982         code of NO_STD_LIST is set.
4983
4984 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
4985
4986         * BufferView_pimpl.C:
4987         * TextCache.C:
4988         * TextCache.h:
4989         * bufferlist.C:
4990         * errorlist.h:
4991         * format.C:
4992         * format.h:
4993         * graph.C:
4994         * lyxfunc.C:
4995         * lyxrc.C:
4996         * graphics/GraphicsConverter.C:
4997         * graphics/PreviewLoader.C: header adjustment
4998
4999 2003-05-23  Angus Leeming  <leeming@lyx.org>
5000
5001         * LaTeXFeatures.[Ch] (useBabel): new method.
5002         * bufferparams.C (writeLaTeX): use it.
5003
5004 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
5005
5006         * ParagraphList.h (set): remove unused function.
5007
5008 2003-05-23  André Pönitz  <poenitz@gmx.net>
5009
5010         * BufferView.C:
5011         * BufferView_pimpl.C:
5012         * buffer.C:
5013         * buffer.h:
5014         * lyxfunc.C:
5015         * undo_funcs.C: setUndo reworked
5016
5017         * iterators.[Ch]: add access to topmost ParagraphList
5018
5019         * lyxtext.[Ch] (workWidth): add a const
5020
5021 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
5022
5023         * texrow.[Ch] (increasePos): remove function
5024         * exporter.C (export): removed unused var and outdated comment
5025
5026 2003-05-23  Angus Leeming  <leeming@lyx.org>
5027
5028         * latexrunparams.h: rename fragile as moving_arg.
5029         * paragraph.C (simpleTeXOnePar): ditto.
5030         * paragraph_pimpl.C (simpleTeXSpecialChars): ditto.
5031
5032 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
5033
5034         * undo_funcs.C (textHandleUndo): comment out next/previous stuff
5035         (createUndo): ditto
5036         (textUndoOrRedo): comment out a currently unused var.
5037
5038         * paragraph.h (NO_NEXT): enable NO_NEXT
5039
5040         * lyxfunc.C (dispatch): remove LFUN_REMOVEERRORS
5041
5042         * lfuns.h: remove LFUN_REMOVEERRORS and adjust lfun numbers.
5043
5044         * exporter.C (Export): adjust for removeAutoInsets removal.
5045
5046         * buffer.C (runChktex): adjust for removeAutoInsets removal.
5047
5048         * LyXAction.C (init): remove LFUN_REMOVEERRORS
5049
5050         * BufferView.[Ch] (removeAutoInsets): delete function
5051
5052 2003-05-22  Angus Leeming  <leeming@lyx.org>
5053
5054         * latexrunparams.h: add a free_spacing variable.
5055
5056         * paragraph.[Ch] (simpleTeXOnePar): further fragile clean-up; no need
5057         to pass moving_arg, as the data is stored in runparams.fragile.
5058
5059         * paragraph_funcs.C (TeXOnePar): no longer pass free_spacing arg
5060         to Inset::latexOptional or to simpleTeXOnePar.
5061
5062         * paragraph_pimpl.C (simpleTeXSpecialChars): no longer pass
5063         free_spacing arg to Inset::latexOptional.
5064
5065         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
5066         free_spacing arg.
5067
5068 2003-05-22  Angus Leeming  <leeming@lyx.org>
5069
5070         * latexrunparams.h: add fragile and use_babel variables.
5071
5072         * bufferparams.[Ch] (writeLaTeX): return use_babel.
5073         * buffer.C (makeLaTeXFile): store this returned value in
5074         runparams.use_babel, thus passing it to the inset::latex methods.
5075
5076         * paragraph.C (simpleTeXOnePar): no need to pass 'moving_arg' to
5077         simpleTeXSpecialChars as it is now stored in runparams.fragile.
5078
5079         * paragraph_funcs.[Ch] (TeXOnePar, latexParagraphs): TeXOnePar no
5080         longer has a fragile arg, as it is stored in runparams.fragile.
5081
5082         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars): no longer has a
5083         moving_arg parameter as the data is stored in runparams.fragile.
5084
5085         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
5086         a fragile parameter as the data is stored in runparams.fragile.
5087
5088 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
5089
5090         * paragraph.C (Paragraph): initialize next_par_ and prev_par_
5091
5092 2003-05-22  Angus Leeming  <leeming@lyx.org>
5093
5094         * latexrunparams.h: add a 'bool nice' which defaults to false.
5095
5096         * buffer.[Ch] (makeLaTeXFile): remove the nice parameter as it is
5097         now encapsulated within runparams.
5098
5099         * bufferlist.C (updateIncludedTeXfiles):
5100         * exporter.C (Export): ensuing change to the calls to makeLaTeXFile.
5101
5102 2003-05-22  Angus Leeming  <leeming@lyx.org>
5103
5104         * latexrunparams.h: new file containing struct LatexRunParams.
5105         * Makefile.am: add new file.
5106
5107         * LaTeX.[Ch] (c-tor, run):
5108         * buffer.[Ch] (makeLaTeXFile):
5109         * bufferlist.[Ch] (updateIncludedTeXfiles):
5110         * converter.C (convert, scanLog):
5111         * converter.[Ch] (runLaTeX):
5112         * exporter.C (Export):
5113         * paragraph.[Ch] (simpleTeXOnePar):
5114         * paragraph_funcs.C (TeXEnvironment, TeXOnePar, TeXDeeper):
5115         * paragraph_funcs.[Ch] (latexParagraphs):
5116         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars):
5117         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow, latex):
5118         pass around a LatexRunParams parameter.
5119
5120 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
5121
5122         * paragraph.[Ch]: remove unused constructor
5123
5124         * ParagraphList.C (erase): new function, taking two iterators
5125
5126 2003-05-22  André Pönitz  <poenitz@gmx.net>
5127
5128         * undo_funcs.C: remove duplicated code
5129
5130         * iterator.[Ch]: operator=
5131
5132 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
5133
5134         * tabular.C (SetMultiColumn): ws changes
5135
5136         * rowpainter.C (paintFirst): get rid of a ->previous
5137
5138         * lyx_cb.C (getPossibleLabel): parlist simplification
5139
5140         * BufferView.C (ChangeInsets): simplify slightly.
5141
5142 2003-05-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
5143
5144         * LyXAction.C: new lfun space-insert, kill protected-space-insert
5145         * lfuns.h: new LFUN_SPACE
5146         * lyxfunc.C: protected space has a new lfun
5147         * paragraph_funcs.C: read new space insets
5148         * text3.C:
5149         * factory.C: handle new space insets
5150
5151 2003-05-22  André Pönitz  <poenitz@gmx.net>
5152
5153         * BufferView.C:
5154         * BufferView_pimpl.C:
5155         * buffer.[Ch]:
5156         * lyxfunc.C:
5157         * undo_funcs.C: return a ParIterator from getParFromID.
5158
5159         * iterators.[Ch]: add two const's
5160
5161 2003-05-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
5162
5163         * toc.C (getTocList): adjust
5164
5165         * iterators.[Ch]: rework for parlist
5166
5167         * buffer.C (par_iterator_begin): adjust
5168         (par_iterator_end): adjust
5169
5170         * CutAndPaste.C (SwitchLayoutsBetweenClasses): adjust
5171
5172         * BufferView.C (removeAutoInsets): adjust
5173         (ChangeInsets): adjust
5174
5175 2003-05-21  Alfredo Braunstein  <abraunst@libero.it>
5176
5177         * text.C (top_y): fix bug 1110
5178
5179 2003-05-08  Alfredo Braunstein  <abraunst@libero.it>
5180
5181         * errorlist.[Ch]: added
5182         * buffer.C:
5183         * BufferView.[Ch]:
5184         * BufferView_pimpl.C:
5185         * CutAndPaste.[Ch]: get rid of InsetError users, use ErrorList
5186         instead
5187
5188 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
5189
5190         * Makefile.am: ensure that lyx is relinked upon changes to the
5191         various "convenience" libs.
5192
5193 2003-05-20  Angus Leeming  <leeming@lyx.org>
5194
5195         * Makefile.am (lyx_SOURCES): move format.[Ch] and graph.[Ch] so that
5196         files are compiled in alphabetical order again.
5197
5198         * gettext.h: #ifndef _GETTEXT_H_ -> #ifndef GETTEXT_H.
5199
5200 2003-05-19  Angus Leeming  <leeming@lyx.org>
5201
5202         * gettext.[Ch]: remove "char const * _(char const *)".
5203
5204 2003-05-19  André Pönitz  <poenitz@gmx.net>
5205
5206         * dimension.[Ch]: promote from mathed/dimension.[Ch]
5207
5208         * Makefile.am:
5209         * BufferView.C:
5210         * DepTable.h:
5211         * LaTeXFeatures.C:
5212         * buffer.C:
5213         * lyxfont.C:
5214         * lyxlex.h:
5215         * paragraph_funcs.C: dimensions() instead of ascend/descend/width
5216
5217 2003-05-19  André Pönitz  <poenitz@gmx.net>
5218
5219         * buffer.C:
5220         * lyxlayout.[Ch]:
5221         * lyxtextclass.[Ch]:
5222         * paragraph.C:
5223         * paragraph_funcs.[Ch]:
5224         * text2.C:
5225         * text3.C: more insetenv work
5226
5227 2003-05-16  Alfredo Braunstein  <abraunst@libero.it>
5228
5229         * ParagraphParameters.C (params2string): small bug fixed
5230
5231 2003-05-16  André Pönitz  <poenitz@gmx.net>
5232
5233         * debug.C:
5234         * bufferview_funcs.C: patch from Kornel Benko to prevent
5235           crash when _(...) is called twice in a statement
5236
5237 2003-05-16  André Pönitz  <poenitz@gmx.net>
5238
5239         * BufferView.C:
5240         * lyxfunc.C:
5241         * text.C:
5242         * text2.C:
5243         * text3.C:
5244         * undo_funcs.C: edit() -> LFUN_INSET_EDIT
5245
5246 2003-05-14  Alfredo Braunstein  <abraunst@libero.it>
5247
5248         * lyx_main.C (init): remove spurious static_cast
5249
5250 2003-05-14  André Pönitz  <poenitz@gmx.net>
5251
5252         * BufferView.C: fix format string
5253
5254 2003-05-12  Alfredo Braunstein  <abraunst@libero.it>
5255
5256         * BufferView.[Ch] (insertErrors): removed
5257         * BufferView.[Ch] (showErrorList): added
5258         * buffer.C (runChkTeX):
5259         * converter.C (scanLog): call showErrorList instead of inserterrors
5260
5261 2003-05-13  André Pönitz  <poenitz@gmx.net>
5262
5263         * BufferView_pimpl.C:
5264         * buffer.C:
5265         * bufferview_func.C:
5266         * MenuBackend.C:
5267         * lyxfunc.C:
5268         * lyxrc.C:
5269         * tex-accent.C:
5270         * text3.C:
5271         * toc.C:
5272         * tabular_funcs.h: tostr() from its own header
5273
5274         * ParagraphParameters.C:
5275         * ToolbarBackend.C:
5276         * bufferparams.C:
5277         * format.C:
5278         * lyxlex_pimpl.C:
5279         * text3.C: STRCONV()
5280
5281 2003-05-12  André Pönitz  <poenitz@gmx.net>
5282
5283         * BufferView.C:
5284         * BufferView_pimpl.C:
5285         * CutAndPaste.C:
5286         * LaTeX.C:
5287         * LaTeXFeatures.C:
5288         * ParagraphParameters.C:
5289         * buffer.C:
5290         * bufferlist.C:
5291         * bufferparams.C:
5292         * bufferview_funcs.C:
5293         * converter.C:
5294         * counters.C:
5295         * debug.C:
5296         * exporter.C:
5297         * format.C:
5298         * importer.C:
5299         * lyx_cb.C:
5300         * lyx_main.C:
5301         * lyxfont.C:
5302         * lyxfunc.C:
5303         * lyxvc.C:
5304         * paragraph.C:
5305         * paragraph_funcs.C:
5306         * tabular.C:
5307         * tabular_funcs.C:
5308         * text2.C:
5309         * text3.C:  boost::format -> bformat  all over the place
5310
5311
5312 2003-05-09  André Pönitz  <poenitz@gmx.net>
5313
5314         * LColor.[Ch]: Pimpl the #include <map> away
5315
5316 2003-05-09  John Levon  <levon@movementarian.org>
5317
5318         * bufferlist.C: never remove emergency saves
5319
5320 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
5321
5322         * Makefile.am: better lib building
5323
5324 2003-05-07  Lars Gullik Bjønnes  <larsbj@gullik.net>
5325
5326         * texrow.[Ch]: remove dependency on Paragraph and just store a id
5327         instead.
5328         * paragraph_pimpl.C (simpleTeXBlanks): adjust
5329         (simpleTeXSpecialChars): adjust
5330         (simpleTeXSpecialChars): adjust
5331         * paragraph.C (simpleTeXOnePar): adjust
5332         * buffer.C (makeLaTeXFile): adjust
5333
5334         * Makefile.am (BOOST_LIBS): allow boost as system lib.
5335
5336         * text2.C (changeDepth): parlist cleanup
5337         (getColumnNearX): ditto
5338
5339         * rowpainter.C (getLabelFont): parlist cleanup
5340
5341         * bufferlist.C (newFile): parlist cleanup
5342
5343         * CutAndPaste.C (eraseSelection): parlist cleanup
5344
5345         * BufferView_pimpl.C (trackChanges): parlist cleanup
5346         (dispatch): ditto
5347
5348         * BufferView.C (lockInset): parlist cleanup.
5349         (ChangeInsets): ditto
5350
5351 2003-05-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
5352
5353         * CutAndPaste.h: Update file header.
5354
5355         * CutAndPaste.C: Update file header.
5356         Store the parts cut out of the Document in a limited_stack.
5357         (copySelection): adjust
5358         (pasteSelection): new function, takes the index in the limited stack.
5359         (nrOfParagraphs): adjust
5360         (SwitchLayoutsBetweenClasses): Change to take a ParagraphList&,
5361         simplify error inset insertion.
5362         (checkPastePossible): adjust
5363
5364 2003-05-06  John Levon  <levon@movementarian.org>
5365
5366         * text2.C: don't cast wrap inset to float
5367
5368 2003-05-05  André Pönitz  <poenitz@gmx.net>
5369
5370         * iterator.C:
5371         * undo_funcs.C: use getParagraphs() instead of getFirstParagraph()
5372
5373         * buffer.[Ch]: new function hasParWithId() to help to get rid of a
5374           few naked Paragraph *.
5375
5376 2003-05-02  Michael Schmitt  <michael.schmitt@teststep.org>
5377
5378         * bufferparams.C: Output warning if a document with missing
5379         TeX document class is loaded
5380         * exporter.C: Disable TeX exports if the document class is missing
5381         * lyxtextclass.C:
5382         * lyxtextclass.h:
5383         * lyxtextclasslist.C: Handle new textclass.lst format; new method
5384         isTeXClassAvailable()
5385
5386 2003-05-03  John Levon  <levon@movementarian.org>
5387
5388         * BufferView.h:
5389         * BufferView.C: remove showLockedInsetCursor(), showCursor(),
5390         explicit cursor show/hide
5391
5392         * BufferView_pimpl.h:
5393         * BufferView_pimpl.C: hide cursor before dispatching. Show cursor
5394         after a cursor move lfun. Simplify cursorToggle(). Remove show/hideCursor().
5395
5396         * lyxfunc.C: hide cursor before dispatching.
5397
5398         * lyx_cb.C:
5399         * lyxfind.C:
5400         * text.C:
5401         * text3.C: remove explicit cursor hides
5402
5403 2003-05-02  André Pönitz  <poenitz@gmx.net>
5404
5405         * buffer.[Ch]: two instances of Paragraph * -> ParagraphList::iterator
5406
5407         * undo_funcs.C:
5408         * undo.[Ch]: rely on std::vector<Paragraph *> instead of manually
5409           linked lists
5410
5411         * text2.C: tiny whitespace
5412
5413 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
5414
5415         * undo_funcs.C: almost only ws changes.
5416
5417         * ParagraphList.C (splice): just return if pl is empty.
5418
5419 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
5420
5421         * ParagraphList.C (splice): new function.
5422
5423         * CutAndPaste.C (pasteSelection): use it
5424
5425 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5426
5427         * CutAndPaste.C (pasteSelection): remove the last next and
5428         previous from this file.
5429
5430 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5431
5432         * CutAndPaste.C (pasteSelection): more clean up, user proper
5433         ParagraphList functions for pasteing.
5434
5435         * ParagraphList.C (insert): new function, three arg insert
5436
5437 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5438
5439         * ParagraphList.C (insert): new function, three arg insert
5440
5441         * CutAndPaste.C (pasteSelection): work on the simple_cut_clone,
5442         not on paragraphs.
5443
5444 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5445
5446         * CutAndPaste.C (pasteSelection): copy paragraphlist the nice way.
5447
5448 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5449
5450         * CutAndPaste.C (pasteSelection): remove some unneeded code.
5451
5452 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5453
5454         * CutAndPaste.C (resetOwnerAndChanges): new helper functor
5455         (copySelection): clean up a bit.
5456         (pasteSelection): use make_pair
5457
5458         * ParagraphList.C (ParagraphList): implement copy constructor
5459         (operator=): implement, base on copy constructor.
5460         (assign): new func
5461
5462         * paragraph.C (erase): return a bool
5463
5464         * paragraph_pimpl.C (erasePos): remove function, move contents...
5465         (erase): ... here. Return a bool.
5466         (erase): call erase instead of erasePos.
5467
5468 2003-04-30  Alfredo Braunstein  <abraunst@libero.it>
5469
5470         * ParagraphList.h: define PitPosPair
5471         * CutAndPaste.C (copySelection, pasteSelection): big rework, use
5472         ParagraphList, fix a bug on pasting multiple pars
5473         * text2.C: change interface to C&P
5474
5475 2003-04-30  André Pönitz  <poenitz@gmx.net>
5476
5477         * undo_func.C: revert part of yesterday's patch 2
5478
5479 2003-04-30  John Levon  <levon@movementarian.org>
5480
5481         * LColor.C: s/tabular/table/
5482
5483 2003-04-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
5484
5485         * text3.C (dispatch): do not convert iterator -> pointer
5486         * undo_funcs.C (setCursorParUndo): ditto
5487         * text_funcs.C (transposeChars): ditto
5488
5489         * text2.C (setLayout): ws changes only
5490
5491         * text.C (breakParagraph): do not convert iterator -> pointer
5492         (insertChar): ditto
5493         (acceptChange): ditto
5494         (rejectChange): ditto
5495         (changeCase): ditto
5496         (Delete): ditto
5497         (backspace): ditto
5498
5499         * BufferView.C (lockedInsetStoreUndo): do not convert iterator ->
5500         pointer
5501
5502 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
5503
5504         * text3.C (gotoInset): YABG (yet another bad getChar)
5505
5506 2003-04-29  André Pönitz  <poenitz@gmx.net>
5507
5508         * paragraph.h: make operator= private unimplemented as long as
5509           it is unusable
5510
5511         * ParagraphList.C: whitespace
5512
5513         * paragraph.[Ch]:
5514         * paragraph_pimpl.[Ch]:
5515         * paragraph_funcs.C:
5516         * CutAndPaste.C:
5517         * undo_funcs.C: whitespace + Paragraph *  -> Paragraph (const) &
5518
5519         * text2.C:
5520           undo_funcs.[Ch]: Paragraph * -> ParagraphList::iterator
5521
5522 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
5523
5524         * CutAndPaste.[Ch] (cutSelection): big rework, some bugs fixed
5525         * paragraph.[Ch] (erase):
5526         * paragraph_pimpl.[Ch] (erase): change return type and value
5527         * text2.C (cutSelection): some rework
5528
5529 2003-04-28  John Levon  <levon@movementarian.org>
5530
5531         * bufferlist.C: changes for unsaved changes dialog
5532
5533 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
5534
5535         * bufferlist.C (newFile): set language (messages_) for new
5536         documents also.
5537
5538         * buffer.C (readFile): ws changes only.
5539
5540 2003-04-28  André Pönitz  <poenitz@gmx.net>
5541
5542         * undo_funcs.C:
5543         * lyxfunc.C:
5544         * buffer.[Ch]:
5545         * BufferView_pimpl.C:
5546         * BufferView.C: getParFromID related ParagraphList::iterator changes
5547
5548 2003-04-28  André Pönitz  <poenitz@gmx.net>
5549
5550         * tabular.[Ch]: part of Lars' Paragraph * -> ParagraphList::iterator
5551           Changes
5552
5553 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
5554
5555         * messages.C: remove one more localedir class variable.
5556
5557 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
5558
5559         * messages.C (getLocaleDir): singleton generation function
5560         (Pimpl): use it.
5561         (Messages): add a default constructor.
5562
5563         * main.C (main): do not setup localedir here, do not call
5564         gettext_init.
5565
5566         * gettext.C (_): use it.
5567         (gettext_init): delete funciton
5568
5569 2003-04-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
5570
5571         * gettext.C (getLyXMessages): new singleton generating function.
5572
5573         * buffer.C (updateDocLang): adjust
5574
5575         * Makefile.am (messages.o): add target
5576         (main.o): remove target
5577
5578 2003-04-27  John Levon  <levon@movementarian.org>
5579
5580         * bufferlist.C:
5581         * lyx_cb.C:
5582         * lyxfunc.C:
5583         * lyxvc.C: specify cancel button in Alert::prompt
5584
5585 2003-04-26  John Levon  <levon@movementarian.org>
5586
5587         * text3.C:
5588         * lyxfunc.C:
5589         * lfuns.h:
5590         * LyXAction.C: add LFUN_INSET_SETTINGS
5591
5592         * lyxfunc.C: don't enable tabular-feature when there's
5593         just any locking inset
5594
5595 2003-04-26  John Levon  <levon@movementarian.org>
5596
5597         * bufferlist.C: re-add Cancel to buffer close question
5598
5599         * lyxfunc.C: fix import UI a bit
5600
5601 2003-04-25  John Levon  <levon@movementarian.org>
5602
5603         * gettext.C: remove the broken asserts for now
5604
5605 2003-04-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
5606
5607         * messages.C: make case where setlocale cannot comply work better.
5608
5609         * buffer.C (updateDocLang): new function
5610         (changeLanguage): use it
5611         (readFile): use it
5612
5613         * text2.C (setCounter): use B_ a bit.
5614
5615         * lyxlayout.C (Read): be sure to trim the label strings.
5616
5617         * messages.C (Messages): fix typo in comment
5618
5619         * buffer.C (readFile): set message_ after file is loaded.
5620         (makeDocBookFile): remove double return
5621         (changeLanguage): reset message_ upon language change.
5622         (B_): new func, use this to get translated buffer strings.
5623
5624         * main.C: add myself and Jean Marc as authors.
5625
5626 2003-04-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
5627
5628         * messages.[hC]: pimplify Messages, and three different pimpls to be
5629         used in different circumstances.
5630
5631         * gettext.[Ch]: change for use with new message code.
5632
5633 2003-04-24 André Pönitz <poenitz@gmx.net>
5634
5635         * factory.C: support for eqref
5636
5637 2003-04-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
5638
5639         * messages.[Ch]: add missing char
5640
5641         * Makefile.am (lyx_SOURCES): add messages.[Ch]
5642
5643         * messages.[Ch]: New files
5644
5645 2003-04-18  John Levon  <levon@movementarian.org>
5646
5647         * BufferView.h:
5648         * BufferView.C:
5649         * BufferView_pimpl.C:
5650         * lfuns.h:
5651         * LyXAction.C:
5652         * lyxtext.h:
5653         * text2.C: remove layout-copy/paste (bug 778)
5654
5655 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
5656
5657         * text2.C (redoParagraphs): eliminate good_prevrit, rewrite a loop
5658
5659 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
5660
5661         * bufferlist.C (quitWriteBuffer): WriteAs and MenuWrite return true
5662         if they succeed. Act accordingly.
5663
5664 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
5665
5666         * text2.C (setCharFont): adjust
5667         (setCounter): adjust
5668         (insertStringAsLines): adjust
5669
5670         * text.C (leftMargin): adjust
5671         (setHeightOfRow): adjust
5672
5673         * rowpainter.C (paintFirst): adjust
5674         (paintLast): adjust
5675
5676         * paragraph_funcs.C (depthHook): ParagraphList::iterators
5677         (outerHook): ditto
5678         (isFirstInSequence): ditto
5679         (getEndLabel): ditto
5680         (outerFont): adjust
5681
5682         * paragraph.C (getParLanguage): comment out some hard stuff.
5683
5684         * buffer.C (insertStringAsLines): take a ParagraphList as arg
5685         (sgmlError): ditto
5686         (simpleDocBookOnePar): ditto
5687         (makeDocBookFile): use ParagraphList::iterator
5688
5689         * CutAndPaste.C (pasteSelection): adjust
5690
5691 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
5692
5693         * text2.C (getFont): adjust
5694         (getLayoutFont): adjust
5695         (getLabelFont): adjust
5696
5697         * paragraph_funcs.C (TeXOnePar): adjust
5698
5699         * buffer.C (simpleLinuxDocOnePar): adjust
5700         (simpleDocBookOnePar): adjust
5701
5702         * CutAndPaste.C (pasteSelection): adjust
5703
5704         * BufferView.C (getEncoding): adjust
5705
5706         * paragraph_funcs.C (outerFont): prepare for a ParagraphList arg.
5707
5708 2003-04-16  John Levon  <levon@movementarian.org>
5709
5710         * lyxfind.C: use parlist stuff for search/changes
5711
5712 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
5713
5714         * undo_funcs.C (textHandleUndo): ajust (rather big adsjust this one)
5715
5716         * text2.C (deleteEmptyParagraphMechanism): adjust
5717
5718         * text2.[Ch] (ownerParagraph): delete func (both of them
5719
5720 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5721
5722         * text_funcs.C (transposeChars): use ParagraphList::iterator here.
5723
5724 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5725
5726         * ParagraphList.C: prepare for NO_NEXT
5727
5728 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5729
5730         * text2.C (getFont): adjust
5731         (getLayoutFont): adjust
5732         (getLabelFont): adjust
5733
5734         * paragraph.C (getFont): adjust
5735         (getLabelFont): adjust
5736         (getLayoutFont): adjust
5737
5738         * paragraph_funcs.[Ch] (realizeFont): remove unneeded arguments.
5739
5740 2003-04-15  John Levon  <levon@movementarian.org>
5741
5742         From Angus Leeming
5743
5744         * lyx_main.C: handle Include in .ui files
5745
5746 2003-04-15  John Levon  <levon@movementarian.org>
5747
5748         * MenuBackend.C: make the doc files length shorter
5749
5750         * ToolbarBackend.h:
5751         * ToolbarBackend.C: handle toolbar placement flags,
5752         Minibuffer
5753
5754 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5755
5756         * paragraph_pimpl.C (simpleTeXSpecialChars): take a outerfont arg,
5757         adjust
5758
5759         * paragraph_funcs.C (TeXOnePar): adjust
5760
5761         * paragraph.C (getLabelFont): add outerfont arg, adjust
5762         (getLayoutFont): ditto
5763         (simpleTeXOnePar): adjust
5764
5765         * paragraph_pimpl.C (realizeFont): delete func
5766
5767 2003-04-14  Alfredo Braunstein  <abraunst@libero.it>
5768
5769         * text2.C (beforeFullRowInset): added a bad getchar check, removed
5770         row argument, constify cur argument.
5771
5772 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5773
5774         * text2.C (getFont): adjust
5775         (getLayoutFont): adjust
5776         (getLabelFont): adjust
5777
5778         * paragraph_funcs.C (TeXOnePar): adjust
5779         (outerFont): new func...
5780         (realizeFont): ...moved out from here, changed this to facilitate
5781         transition
5782
5783         * paragraph.C (getFont): take outerfont as arg, adjust
5784         (simpleTeXOnePar): add outerfont arg, adjust
5785
5786         * buffer.C (simpleLinuxDocOnePar): adjust
5787         (simpleDocBookOnePar): adjust
5788
5789         * CutAndPaste.C (pasteSelection): adjust
5790
5791         * BufferView.C (getEncoding): adjust
5792
5793 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
5794
5795         * text2.C (setCharFont): adjust
5796         (setCounter): adjust
5797
5798         * text.C (leftMargin): adjust
5799         (setHeightOfRow): adjust
5800
5801         * rowpainter.C (paintFirst): adjust
5802         (paintLast): adjust
5803
5804         * paragraph_pimpl.C (realizeFont): adjust
5805
5806         * paragraph.C (isFirstInSequence): move from here...
5807         * paragraph_funcs.C (isFirstInSequence): ...to here
5808
5809         * paragraph.C (outerHook): move from here...
5810         * paragraph_funcs.C (outerHook): ...to here
5811
5812         * paragraph.C (depthHook): move from here...
5813         * paragraph_funcs.C (depthHook): ...to here
5814
5815         * paragraph.C (getEndLabel): move from here...
5816         * paragraph_funcs.C (getEndLabel): ...to here
5817
5818         * text2.C (realizeFont): move from here...
5819         * paragraph_funcs.C (realizeFont): ...to here
5820
5821 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
5822
5823         * text3.C (gotoNextInset): use separate tmp vars for par and pos.
5824
5825 2003-04-14  Angus Leeming  <leeming@lyx.org>
5826
5827         * LColor.[Ch]: scrap LColor mathcursor.
5828
5829 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
5830
5831         * lyxlex.[Ch] (text): delete function
5832         * trans.C (Load): adjust
5833         * paragraph_funcs.C (readParToken): adjust
5834
5835 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
5836
5837         * lyxlex_pimpl.h: get rid of LEX_MAX_BUFF, change buff to be a
5838         vector<char> instead of a char[].
5839
5840         * lyxlex_pimpl.C (getString): adjust
5841         (next): adjust
5842         (lex): use getString
5843         (eatLine): adjust
5844         (nextToken): adjust
5845
5846         * lyxlex.C (text): use pimpl_->getString()
5847         (getBool): ditto
5848         (findToken): ditto
5849
5850 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
5851
5852         * text2.C (getInset): temp vars for cursor.par() and cursor.pos()
5853         (makeFontEntriesLayoutSpecific): temp var for par.size()
5854         (setLayout): temp var for ownerParagraphs().end()
5855         (fullRebreak): temp var for rows().end()
5856         (selectionAsString): temp var for boost::next(startpit), realize
5857         that the while really is a regular for loop.
5858         (cursorEnd): temp vars for cursor.row(), lastPos ++, only call
5859         setCursor in one place.
5860         (setParagraph): temp vr for ownerParagraphs().end()
5861         (updateCounters): make the while loop a for loop
5862         (cutSelection): temp var for ownerParagraphs().end()
5863         (updateInset): make the do {} while() a regular for loop
5864         (getCursorX): use temp vars
5865         (setCurrentFont): use temp vars
5866         (getColumnNearX): use temp vars
5867
5868 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
5869
5870         * text.C (transformChar): use temp var for getChar
5871         (computeBidiTables): use temp var for row->par()
5872         (fill): move temp vars for row->par() and pit->layout() earlier in
5873         the function.
5874         (labelFill): use temp var for row->par()
5875         (setHeightOfRow): do not allow rit to be RowList::end, get rid of
5876         asc and desc, realize that pit never changes and that firstpit is
5877         just a duplicate and not needed. Exchange rit->par() with pit in a
5878         lot of places.
5879         (breakAgain): use a temp var for boost::next(rit)
5880         (breakAgainOneRow): ditto
5881         (breakParagraph): use a temp var for rows().begin()
5882         (prepareToPrint): move nlh into minimal scope, use temp var for rit->par()
5883         (cursorRightOneWord): use temp var for cursor.par() and
5884         cursor.pos(), remove usage of tmpcursor.
5885         (cursorLeftOneWord): use temp var for cursor.par() and
5886         cursor.pos() only set cur at end of function.
5887
5888 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
5889
5890         * text.C, text2.C: exchange all usage of Paragraph::next with
5891         boost::next(ParagraphList::iterator)
5892
5893         * CutAndPaste.C (cutSelection): change 2. arg to a Paragraph*
5894
5895         * text2.C (cursorTop): simplify implementation
5896         (cursorBottom): ditto
5897         (setParagraph): use ParagraphList::iterator
5898         (setCurrentFont): adjust
5899         (getColumnNearX): adjust
5900         (cursorRight): adjust
5901         (cursorLeft): remove usage of Paragraph::previous
5902         (cursorUpParagraph): ditto
5903         (deleteEmptyParagraphMechanism): slight cleanup
5904
5905         * text.C (isBoundary): take a Paragraph const & instead of a
5906         pointer as arg.
5907         (addressBreakPoint): ditto
5908         (leftMargin): remove usage of Paragraph::previous.
5909         (setHeightOfRow): ditto
5910         (cursorLeftOneWord): ditto
5911         (selectNextWordToSpellcheck): ditto
5912         (Delete): ditto
5913         (backspace): ditto
5914         (breakParagraph): remove one usage of Paragraph::next
5915         (redoParagraph): ditto
5916         (acceptChange): ditto
5917         (insertChar): adjust
5918         (rowBreakPoint): adjust
5919
5920         * bufferview_funcs.C (toggleAndShow): adjust
5921
5922 2003-04-11  Alfredo Braunstein  <abraunst@libero.it>
5923
5924         * lyxrow.[Ch]: add a cached y position to a Row and Row::y()
5925         methods to access it.
5926         * lyxtext.h:
5927         * text.C: Added updateRowPositions to compute all row positions.
5928         Make top_y and getRowNearY() to use the cached y position
5929
5930 2003-04-11  John Levon  <levon@movementarian.org>
5931
5932         * text.C (rowBreakPoint): reintroduce the labelEnd
5933         checks, code copied from the row fill stuff. Deep voodoo.
5934
5935         * text.C (fill): add a comment and debugging for the
5936         next poor soul.
5937
5938 2003-04-11  John Levon  <levon@movementarian.org>
5939
5940         * text.C: make sure fullrow insets get wrapped to the next line,
5941         even when they're in a manual label
5942
5943 2003-04-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
5944
5945         * text2.C (insertParagraph): make it take ParagraphList::iterator
5946         as arg.
5947         (setLayout): make it return ParagraphList::iterator
5948         (redoParagraphs): ditto
5949         (setCounter): ditto
5950         (checkParagraph): ditto
5951
5952         * text.C (getRow): make getrow take ParagraphList::iterator as arg
5953
5954         * text2.C: adjust several funcs.
5955         (realizeFont): take a ParagraphList::iterator as arg.
5956         (getLayoutFont): ditto
5957         (getLabelFont): ditto
5958         (setCharFont): ditto
5959
5960         * text.C: adjust several funcs.
5961
5962 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
5963
5964         * text.C (selectNextWordToSpellcheck): don't accidentally
5965         skip insets
5966
5967 2003-04-10  John Levon  <levon@movementarian.org>
5968
5969         * ToolbarBackend.C (getIcon): special handling for
5970         LFUN_MATH_DELIM
5971
5972 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
5973
5974         * text2.C (cursorRight): a getChar assert fixed
5975
5976 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
5977
5978         * text2.C (getFont): change to take a ParagraphList::iterator
5979         instead of Paragraph*
5980         Adjust several functions.
5981
5982         * text.C (transformChar): change to take a ParagraphList::iterator
5983         instead of Paragraph*
5984         (singleWidth): ditto
5985         Adjust several functions.
5986
5987         * rowpainter.C: adjust several functions
5988         * rowpainter.h:store a ParagraphList::iterator and not a
5989         Paragraph&.
5990
5991
5992 2003-04-09  John Levon  <levon@movementarian.org>
5993
5994         * lyxfunc.C:
5995         * lfuns.h:
5996         * LyXAction.h:
5997         * LyXAction.C: remove LFUN_APROPOS, LFUN_GETTIP,
5998         and the "help" bits as well
5999
6000 2003-04-09  John Levon  <levon@movementarian.org>
6001
6002         * ToolbarBackend.h:
6003         * ToolbarBackend.C: allow multiple toolbars
6004
6005 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
6006
6007         * undo_funcs.C (setCursorParUndo): adjust
6008
6009         * text_funcs.C (transposeChars): adjust
6010
6011         * text3.C (gotoNextInset): adjust
6012         (dispatch): adjust
6013
6014         * text2.C (setLayout): adjust
6015         (changeDepth): adjust
6016         (setFont): adjust
6017         (redoParagraphs): adjust
6018         (selectionAsString): adjust
6019         (setParagraph): adjust
6020         (insertInset): adjust
6021         (cutSelection): adjust
6022         (copySelection): adjust
6023         (pasteSelection): adjust
6024         (insertStringAsLines): adjust
6025         (updateInset): adjust
6026         (setCursor): change to take a ParagraphList::iterator parameter
6027         (setCursorIntern): change to take a ParagraphList::iterator parameter
6028         (setCurrentFont): adjust
6029         (cursorLeft): adjust
6030         (cursorRight): adjust
6031         (deleteEmptyParagraphMechanism): adjust
6032
6033         * text.C (breakParagraph): adjust
6034         (insertChar): adjust
6035         (acceptChange): adjust
6036         (rejectChange): adjust
6037         (selectNextWordToSpellcheck): adjust
6038         (changeCase): adjust
6039         (Delete): adjust
6040         (backspace): adjust
6041
6042         * lyxfind.C (SearchForward): adjust
6043         (SearchBackward): adjust
6044         (nextChange): adjust
6045
6046         * lyxcursor.C (par): adjust
6047
6048         * lyxcursor.h: store a ParagraphList::iterator instead of a
6049         Paragraph*
6050
6051         * lyx_cb.C (getPossibleLabel): adjust
6052
6053         * bufferview_funcs.C (toggleAndShow): adjust
6054
6055         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
6056         (dispatch): adjust
6057
6058         * BufferView.C (removeAutoInsets): adjust
6059         (lockedInsetStoreUndo): adjust
6060
6061 2003-04-09  John Levon  <levon@movementarian.org>
6062
6063         * ToolbarBackend.C: try icon without argument
6064         if with argument fails
6065
6066 2003-04-08  John Levon  <levon@movementarian.org>
6067
6068         * ToolbarBackend.h:
6069         * ToolbarBackend.C: add getIcon(), handle tooltip,
6070         and change from "Icon" to "Item".
6071
6072 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
6073
6074         * BufferView.C (lockInset): another bad getchar crunched
6075
6076 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
6077
6078         * text2.C (changeDepth): do not setUndo on test_only (make undo work
6079         again)
6080
6081 2003-04-05  Alfredo Braunstein  <abraunst@libero.it>
6082
6083         * lyxfind.C (searchForward, searchBackwards): bug 782
6084
6085 2003-04-07  John Levon  <levon@movementarian.org>
6086
6087         * paragraph.C: remove dead comment
6088
6089         * text.C: remove troublesome depth-fiddling code
6090         in leftMargin() and rightMargin() (bug 1017)
6091
6092         * text.C: fix breaking of rows in nested lists
6093         (bug 1004)
6094
6095         * text2.C (updateCounters): fix up depth values
6096         (bug 1013)
6097
6098 2003-04-07  John Levon  <levon@movementarian.org>
6099
6100         * BufferView_pimpl.C: clear message when doc finishes resizing,
6101         and after a mouse event
6102
6103         * lyxfunc.C: clear message after exiting inset
6104
6105 2003-04-07  John Levon  <levon@movementarian.org>
6106
6107         * bufferview_funcs.C: show math status not outside
6108         status in the statusbar
6109
6110 2003-04-07  John Levon  <levon@movementarian.org>
6111
6112         * lyxfunc.C: note status changed after a depth change
6113
6114 2003-04-04  Angus Leeming  <leeming@lyx.org>
6115
6116         * LaTeX.h: move AuxInfo operator==, != out of line.
6117         Remove LaTeX virtual destructor; nothing derives from it.
6118         Move operator()() out of public area and rename it startscript().
6119         Change protected for private.
6120
6121 2003-04-04  Angus Leeming  <leeming@lyx.org>
6122
6123         * lyxfunc.C:
6124         * text2.C: remove unneeded #includes.
6125
6126 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
6127
6128         * text2.C (dEPM): fix the heigth of the next row
6129
6130 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
6131
6132         * text.C: squashed an invalid getChar requester + some ws changes
6133
6134 2003-04-03  John Levon  <levon@movementarian.org>
6135
6136         * bufferview_funcs.h:
6137         * bufferview_funcs.C:
6138         * lyxfunc.C:
6139         * lyxtext.h:
6140         * text2.C: make getStatus work for the env depth lfuns
6141
6142 2003-04-03  John Levon  <levon@movementarian.org>
6143
6144         * bufferview_funcs.h:
6145         * bufferview_funcs.C:
6146         * lyxfunc.C:
6147         * lyxtext.h:
6148         * text2.C: parlistize decDepth(), by merging it with incDepth()
6149
6150 2003-04-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
6151
6152         * lyxrow.h: store a ParagraphList::iterator instead of a
6153         Paragraph* and adjust other class functions to suit.
6154
6155         * lyxrow_funcs.C, text.C, text2.C, text3.C: adjust because of the
6156         above.
6157
6158 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
6159
6160         * text2.C (setCursor): do not anchor to cursor row for the time being
6161
6162 2003-04-02  John Levon  <levon@movementarian.org>
6163
6164         * LyXAction.C:
6165         * lfuns.h:
6166         * lyx_main.C:
6167         * lyxtext.h:
6168         * text.C:
6169         * text3.C: rename the "tab" lfuns. Remove tab support from normal text
6170
6171 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
6172
6173         * paragraph.h: make ParagraphList and ParagraphList::iterator
6174         friends of Paragraph.
6175
6176         * buffer.C (makeLinuxDocFile): move towards ParagraphList
6177
6178         * ParagraphList.C: Use the private next_ and previous_ from
6179         Paragraph.
6180
6181 2003-04-01  John Levon  <levon@movementarian.org>
6182
6183         * ToolbarBackend.h:
6184         * ToolbarBackend.C:
6185         * Makefile.am: rename, remove defaults gunk
6186
6187         * MenuBackend.h:
6188         * MenuBackend.C: remove defaults gunk
6189
6190         * Languages.h:
6191         * Languages.C: remove defaults gunk
6192
6193         * lyx_main.h:
6194         * lyx_main.C: error out if files couldn't be found.
6195
6196 2003-04-02  John Levon  <levon@movementarian.org>
6197
6198         * text2.C: make incDepth() use parlist
6199
6200 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
6201
6202         * undo_funcs.C (firstUndoParagraph): adjust
6203
6204         * text3.C (gotoInset): adjust
6205         (dispatch): adjust, and rewrite loop.
6206
6207         * text2.C (init): adjust, and rewrite loop.
6208         (redoParagraphs): adjust
6209         (updateInset): adjust, and rewrite loop.
6210         (deleteEmptyParagraphMechanism): adjust
6211
6212         * tabular.C (LyXTabular): adjust
6213         (SetMultiColumn): adjust
6214         (TeXRow): adjust
6215
6216         * lyxtext.[Ch] (ownerParagraph): delete function
6217         (ownerParagraphs): new function returns a ParagraphList.
6218
6219         * BufferView.C (removeAutoInsets): adjust
6220         (insertErrors): adjust
6221         (setCursorFromRow): adjust
6222
6223 2003-04-01  Angus Leeming  <leeming@lyx.org>
6224
6225         * BufferView_pimpl.C (buffer): ensure that the Layout is correct
6226         in the frontends.
6227
6228 2003-04-02  John Levon  <levon@movementarian.org>
6229
6230         * lyxtext.h:
6231         * text.C:
6232         * Makefile.am:
6233         * text_funcs.h:
6234         * text_funcs.C: make transposeChars a free function
6235
6236         * lyxrow_funcs.C: remove wrong comment
6237
6238 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
6239
6240         * lyxtext.h: adjust
6241         * rowpainter.C: adjust
6242         * text.C: adjust
6243         * text2.C: adjust
6244         * text3.C: adjust
6245
6246         * lyxrow_funcs. [Ch]: new files
6247
6248         * lyxrow.[Ch]: remove next and previous pointers
6249         (next,previous): remove accessor functions
6250         (isParEnd): move to lyxrow_funcs
6251         (lastPos): move to lyxrow_funcs
6252         (nextRowIsAllInset): move to lyxrow_funcs
6253         (lastPrintablePos): move to lyxrow_funcs
6254         (numberOfSeparators): move to lyxrow_funcs
6255         (numberOfHfills): move to lyxrow_funcs
6256         (numberOfLabelHfills): move to lyxrow_funcs
6257         (hfillExpansion): move to lyxrow_funcs
6258
6259         * lyxfunc.C: adjust
6260
6261         * bufferview_funcs.C (toggleAndShow): adjust
6262
6263         * RowList.h: Remove class RowList from file leave just a
6264         std::list<Row>.
6265
6266         * RowList.C: delete file
6267
6268         * Makefile.am (lyx_SOURCES): remove RowList.C, add lyxrow_funcs.C
6269         and lyxrow_funcs.h
6270
6271 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
6272
6273         * text3.C (cursorPrevious): adjust
6274         (cursorNext): adjust
6275         (dispatch): adjust
6276
6277         * text2.C (redoHeightOfParagraph): adjust
6278         (redoDrawingOfParagraph): adjust
6279         (setCursor): adjust
6280
6281         * text.C (breakParagraph): adjust
6282         (insertChar): adjust
6283         (backspace): adjust
6284
6285         * rowpainter.C (RowPainter): adjust
6286         (leftMargin): simplify and adjust
6287         (most rowpainter functions): adjust.
6288
6289         * rowpainter.h: store the row as RowList::iterator not as Row*
6290
6291         * lyxcursor.C (row): taka RowList::iterator as arg
6292         (irow): ditto
6293
6294         * lyxcursor.h: make the LyXCursor store RowList::iterators instead
6295         of Row*.
6296
6297 2003-04-01  Angus Leeming  <leeming@lyx.org>
6298
6299         * bufferview_funcs.C (string2font): rewrite so that it no longer uses
6300         stuff like bool Bool.
6301
6302 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
6303
6304         * text2.C (redoParagraphs): fix a bug (introduced by myself) and
6305         rewrite a loop
6306
6307 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
6308
6309         * text2.C (redoParagraphs): rewrite (with help from Alfredo) for
6310         RowList::iterator.
6311
6312         * lyxtext.h (rows): drop one version and leve a const variant that
6313         returns a RowList::iterator.
6314
6315 2003-03-31  Angus Leeming  <leeming@lyx.org>
6316
6317         * text.C (fill): ensure that the signature is the same as that in the
6318         header file.
6319
6320 2003-03-31  Lars Gullik Bjønnes  <larsbj@gullik.net>
6321
6322         * text2.C (redoParagraphs): adjust
6323         (updateCounters): adjust
6324         (checkParagraph): adjust
6325         (getColumnNearX): adjust and reformat a bit.
6326
6327         * text.C (top_y): adjust
6328         (workWidth): adjust
6329         (leftMargin): adjust
6330         (prepareToPrint): adjust
6331         (getRow): adjust
6332         (getRowNearY): adjust
6333
6334         * lyxtext.h: make rowlist_ mutable.
6335
6336         * RowList.h: add const_iterator
6337         * RowList.C: adjust for RowList::const_iterator.
6338
6339         * text2.C (getCursorX): make it take a RowList::iterator as arg,
6340         adjust.
6341
6342 2003-03-31  John Levon  <levon@movementarian.org>
6343
6344         * lyxrc.h:
6345         * lyxrc.C: moved pdf_mode and use_gui to elsewhere
6346
6347         * lyx_main.C: set default fonts from using lyx_gui funcs
6348
6349         * exporter.C: pdf_mode moved from lyxrc
6350
6351         * lyx_cb.C:
6352         * lyxfunc.C: changes from above
6353
6354 2003-03-31  John Levon  <levon@movementarian.org>
6355
6356         * lyx_main.C: fix to the last fix
6357
6358 2003-03-31  John Levon  <levon@movementarian.org>
6359
6360         * bufferlist.C: "Load original" -> "Load Original"
6361
6362         * converter.C:
6363         * exporter.C:
6364         * importer.C:
6365         * lyx_main.C:
6366         * format.C: more Alert cleanups
6367
6368 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
6369
6370         * text2.C (removeParagraph): make it take a RowList::iterator as
6371         arg, adjust.
6372         (getColumnNearX): make it take a RowList::iterator as arg, adjust.
6373         (postRowPaint): make it take a RowList::iterator as arg, adjust.
6374
6375         * text.C (anchor_row): make it take a RowList::iterator as arg,
6376         adjust.
6377         (computeBidiTables): make it take a const reference to Row instead
6378         of Row pointer, adjust.
6379         (leftMargin): make it take a RowList::iterator as arg, adjust.
6380         (rowBreakPoint): adjust
6381         (breakAgainOneRow): make it take a RowList::iterator as arg,
6382         adjust.
6383         (prepareToPrint): make it take a RowList::iterator as arg, adjust.
6384
6385         * bufferview_funcs.C (toggleAndShow): adjust
6386
6387 2003-03-30  John Levon  <levon@movementarian.org>
6388
6389         * Makefile.am:
6390         * BoostFormat.h:
6391         * boost-inst.C: moved to support
6392
6393         * several files: changes as a result
6394
6395 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
6396
6397         * text2.C (LyXText): adjust.
6398         (init): adjust
6399         (removeRow): make it take a RowList::iterator as arg, adjust.
6400         (fullRebreak): adjust
6401         (deleteEmptyParagraphMechanism): adjust
6402         (clearPaint): adjust
6403         (postPaint): adjust
6404
6405         * text.C (top_y): adjust
6406         (setHeightOfRow): make it take a RowList::iterator as arg, adjust.
6407         (breakAgain): make it take a RowList::iterator as arg, adjust.
6408         (breakParagraph): adjust
6409         (insertChar): adjust
6410         (backspace): adjust
6411
6412         * lyxtext.h: make anchor_row_ be a RowList::iterator, ditto
6413         need_break_row, and refresh_row.
6414
6415         * text3.C (dispatch): adjust
6416
6417         * text2.C (checkParagraph): adjust
6418         (setCursor): adjust
6419         (setCursorFromCoordinates): adjust
6420
6421         * text.C (top_y): adjust
6422         (workWidth): adjust
6423         (getRow): make it return a RowList::iterator, adjust
6424         (getRowNearY): make it return a RowList::iterator, adjust
6425
6426         * text2.C (init): adjust
6427         (insertRow): remove function
6428         (insertParagraph): adjust
6429         (redoParagraphs): adjust
6430         (fullRebreak): adjust
6431         (updateCounters): adjust
6432
6433         * text.C (top_y): rewrite to use RowList iterators.
6434         (top_y): adjust
6435         (setHeightOfRow): rewrite to sue RowList iterators.
6436         (appendParagraph): adjust
6437         (breakAgain): adjust
6438         (breakAgainOneRow): adjust
6439         (breakParagraph): adjust
6440         (getRow): adjust
6441         (getRowNearY): adjust, and remove commented code.
6442
6443         * lyxtext.h (firstRow): delete function
6444         (lastRow): delete function
6445         (rows): new function (const and non-const versions.)
6446         (insertRow): delete function
6447
6448         * lyxrow.[Ch] (Row): new constructor taking a par and a pos
6449
6450 2003-03-29  John Levon  <levon@movementarian.org>
6451
6452         * BufferView_pimpl.C: always update scrollbar top
6453         because pasting text when we're anchored could mean we
6454         miss an update altogether
6455
6456 2003-03-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
6457
6458         * text2.C (init): use rowlist_.end() and not 0.
6459         (insertRow): change to take a RowList::iterator as arg, adjust
6460         for this.
6461         (insertParagraph): change to take a RowList::iterator as arg,
6462         adjust for this.
6463         (redoParagraphs): remove some debug msgs.
6464
6465         * text.C (appendParagraph): change to take a RowList::iterator
6466         arg, adjust for this.
6467         (breakAgain): add an assert
6468         (breakAgainOneRow): ditto
6469
6470 2003-03-29  John Levon  <levon@movementarian.org>
6471
6472         * text2.C: do not clear selection after inc/decDepth
6473         (bug 550)
6474
6475 2003-03-29  John Levon  <levon@movementarian.org>
6476
6477         * BufferView.C:
6478         * buffer.C: fix broken strerrors according to Lars
6479
6480 2003-03-29  John Levon  <levon@movementarian.org>
6481
6482         * converters.C: more Alert cleanups
6483
6484 2003-03-29  John Levon  <levon@movementarian.org>
6485
6486         * bufferview_funcs.C: remove pointless Alert
6487
6488         * buffer.C: fix confusing error message when
6489         a template is chmoded 000
6490
6491 2003-03-29  John Levon  <levon@movementarian.org>
6492
6493         * BufferView.C:
6494         * BufferView.h:
6495         * BufferView_pimpl.C: Alert fixes
6496
6497         * Makefile.am:
6498         * tabular.C:
6499         * tabular-old.C: remove unused table compat reading
6500
6501 2003-03-29  John Levon  <levon@movementarian.org>
6502
6503         * BufferView.C:
6504         * buffer.C:
6505         * lyx_cb.h:
6506         * lyx_cb.C: more Alert cleanups
6507
6508         * lyxfunc.C: don't allow chktex if not latex document
6509
6510 2003-03-29  John Levon  <levon@movementarian.org>
6511
6512         * lyx_cb.C:
6513         * BufferView.C:
6514         * buffer.C: warnings pushed down from support/,
6515         kill err_alert
6516
6517 2003-03-29  John Levon  <levon@movementarian.org>
6518
6519         * lyxfunc.C: safety check for C-r (revert)
6520
6521 2003-03-29  John Levon  <levon@movementarian.org>
6522
6523         * bufferlist.h:
6524         * bufferlist.C: several UI fixes using Alert::prompt.
6525         Fix the pointless looping quit code. Fix stupid revert
6526         behaviour (bug 938)
6527
6528         * lyxvc.h:
6529         * lyxvc.C:
6530         * lyx_cb.C: use Alert::prompt
6531
6532         * lyx_main.C: remove a silly question
6533
6534         * lyxfunc.C: remove a couple of silly questions,
6535         use Alert::prompt
6536
6537 2003-03-28  John Levon  <levon@movementarian.org>
6538
6539         * text2.C: fix bug 974 (End on empty par)
6540
6541 2003-03-28  John Levon  <levon@movementarian.org>
6542
6543         * BufferView_pimpl.C:
6544         * LyXAction.C:
6545         * lfuns.h: remove do-nothing math greek lfuns
6546
6547 2003-03-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
6548
6549         * lyxgluelength.h (isValidGlueLength): add default arg on
6550         parameter 2. Remove default arg from friend in class.
6551
6552         * lyxlength.h (isValidLength): add default arg on parameter 2.
6553         Remove default arg from friend in class.
6554
6555         * text2.C (LyXText): adjust, initialize refresh_row.
6556         (init): adjust
6557         (removeRow): adjust
6558         (insertRow): adjust
6559         (insertParagraph): adjst
6560         (redoParagraphs): adjust
6561         (fullRebreak): adjust
6562         (updateCounters): adjust
6563         (deleteEmptyParagraphMechanism): first attempt at fixing a
6564         crashing bug.
6565
6566         * text.C (top_y): adjust
6567         (setHeightOfRow): adjust
6568         (getRow): adjust
6569         (getRowNearY): adjust
6570
6571         * lyxtext.h: include RowList.h
6572         (~LyXText): not needed anymore, deleted.
6573         (firstRow): modify for RowList
6574         (lastRow): new function
6575         Delete firstrow and lastrow class variables, add a Rowlist
6576         rowlist_ class variable.
6577
6578         * lyxrow.C (lastPos): use empty() and not !size() to check if a
6579         paragraph is empty.
6580
6581         * RowList.C (insert): fix case where it == begin().
6582
6583 2003-03-26  Angus Leeming  <leeming@lyx.org>
6584
6585         * BufferView_pimpl.C (dispatch): changes to the Dialogs interface for
6586         the thesaurus dialog.
6587
6588 2003-03-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
6589
6590         * Makefile.am (lyx_SOURCES): add RowList.[Ch]
6591
6592         * RowList.[Ch]: new files
6593
6594         * ParagraphList.C (erase): handle the case where it == begin
6595         correctly.
6596
6597 2003-03-25  John Levon  <levon@movementarian.org>
6598
6599         * Makefile.am:
6600         * aspell_local.h:
6601         * aspell.C: add new aspell support
6602
6603         * lyxrc.h:
6604         * lyxrc.C: Make use_pspell be use_spell_lib. Always
6605         have it accessible.
6606
6607 2003-03-25  Angus Leeming  <leeming@lyx.org>
6608
6609         * lfuns.h:
6610         * LyXAction.C (init): new LFUN_INSET_INSERT.
6611
6612         * BufferView_pimpl.C (dispatch): split out part of the
6613         LFUN_INSET_APPLY block LFUN_INSET_INSERT.
6614
6615         * factory.C (createInset): act on LFUN_INSET_INSERT rather than
6616         LFUN_INSET_APPLY.
6617
6618 2003-03-25  Angus Leeming  <leeming@lyx.org>
6619
6620         * lyxfunc.C (dispatch): changes to the Dialogs interface.
6621
6622 2003-03-25  Alfredo Braunstein  <abraunst@libero.it>
6623
6624         * text2.C:
6625         * text3.C: remove useless row->height(0)
6626
6627 2003-03-25  John Levon  <levon@movementarian.org>
6628
6629         * lyxtext.h:
6630         * text2.C:
6631         * text3.C: rename the refreshing stuff to better names
6632
6633 2003-03-24  John Levon  <levon@movementarian.org>
6634
6635         * BufferView_pimpl.h:
6636         * BufferView_pimpl.C: update layout choice on a mouse
6637         press/release
6638
6639 2003-03-23  John Levon  <levon@movementarian.org>
6640
6641         * Makefile.am: fix commandtags.h reference
6642
6643 2003-03-22  John Levon  <levon@movementarian.org>
6644
6645         * BufferView_pimpl.C:
6646         * lyxtext.h:
6647         * rowpainter.C:
6648         * rowpainter.h:
6649         * text.C:
6650         * text2.C: remove CHANGED_IN_DRAW, it cannot happen now
6651
6652 2003-03-21  Alfredo Braunstein  <abraunst@libero.it>
6653
6654         * lyxtext.h:
6655         * text.C: take the rtl methods out of line
6656
6657 2003-03-21 André Pönitz <poenitz@gmx.net>
6658
6659         * metricsinfo.[Ch]: new files containing structures to be passed around
6660         during the two-phase-drawing...
6661
6662 2003-03-21 André Pönitz <poenitz@gmx.net>
6663
6664         * lyxtextclass.C: read 'environment' tag.
6665
6666 2003-03-20  Alfredo Braunstein  <abraunst@libero.it>
6667
6668         * text2.C (removeRow): fix bug 964
6669
6670 2003-03-20  John Levon  <levon@movementarian.org>
6671
6672         * rowpainter.C:
6673         * text.C:
6674         * text2.C: paint cleanups. Inset::update() dropped font
6675         parameter
6676
6677 2003-03-19  John Levon  <levon@movementarian.org>
6678
6679         * lyxfunc.C: only fitcursor/markDirty if available()
6680
6681 2003-03-19  John Levon  <levon@movementarian.org>
6682
6683         * commandtags.h: rename to ...
6684
6685         * lfuns.h: ... this, and renumber / cleanup
6686
6687 2003-03-19  John Levon  <levon@movementarian.org>
6688
6689         * lyxfunc.C: mark buffer dirty if we executed a "dirtying" lfun.
6690         fit the cursor after an lfun
6691
6692         * BufferView.h:
6693         * BufferView.C:
6694         * BufferView_pimpl.h:
6695         * BufferView_pimpl.C: remove BufferView::FITCUR/CHANGE
6696
6697         * LyXAction.C: layout-character should have ReadOnly
6698
6699         * ParagraphParameters.C:
6700         * buffer.C:
6701         * bufferview_funcs.C:
6702         * lyx_cb.C:
6703         * lyxfind.C:
6704         * lyxtext.h:
6705         * text.C:
6706         * text2.C:
6707         * text3.C:
6708         * undo_funcs.C: changes from above
6709
6710 2003-03-18  John Levon  <levon@movementarian.org>
6711
6712         * BufferView_pimpl.C (scrollDocView): add updateLayoutChoice(),
6713         remove it from update()
6714
6715         * lyxfunc.C: update layout choice after an lfun
6716
6717         * text3.C: remove extra updateLayoutChoice()s
6718
6719 2003-03-18  John Levon  <levon@movementarian.org>
6720
6721         * text.C: top_y change means full repaint, fix
6722         a drawing bug with cursor movement
6723
6724 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
6725
6726         * lyxtext.h:
6727         * text.C:
6728         * text2.C: anchor row on setCursor
6729
6730 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
6731
6732         * lyxtext.h: remove almost all mutable keywords
6733         * text.C:
6734         * text2.C:
6735         * text3.C: remove const keywords accordingly
6736
6737 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
6738
6739         * paragraph_funcs.C (TeXDeeper): reduce number of args, move into
6740         anon namespace
6741         (TeXEnvironment): ditto
6742         (TeXOnePar): ditto
6743
6744 2003-03-17  John Levon  <levon@movementarian.org>
6745
6746         * text.C (rowBreakPoint): remove attempt to fix displayed
6747         math insets inside a manual label
6748
6749 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
6750
6751         * lyxtext.h: remove BufferView* as first arg from almost all class
6752         functions.
6753         * other files: adjust.
6754
6755 2003-03-17  John Levon  <levon@movementarian.org>
6756
6757         * lyxtext.h:
6758         * undo_funcs.C:
6759         * text2.C: more paint cleanups
6760
6761         * BufferView_pimpl.C: screen prototype changed, use postPaint etc.
6762
6763         * rowpainter.h:
6764         * rowpainter.C: remove "smart" background painting code
6765
6766 2003-03-16  John Levon  <levon@movementarian.org>
6767
6768         * lyxtext.h:
6769         * text.C:
6770         * text2.C:
6771         * text3.C: add helper functions for setting refresh_row/y
6772
6773 2003-03-14  Kayvan Sylvan  <kayvan@sylvan.com>
6774
6775         * paragraph_pimpl.C (simpleTeXSpecialChars): Added fix for the
6776         newline inset which *can* get inserted in the pass_thru layouts.
6777         This is primarily for literate documents.
6778
6779 2003-03-14  Dekel Tsur  <dekelts@tau.ac.il>
6780
6781         * buffer.C: increment LYX_FORMAT to 223
6782
6783 2003-03-14 André Pönitz <poenitz@gmx.net>
6784
6785         * textclass.h: prepare for environment handling, ws changes
6786         * lyxlayout.C: read latexheader and latexfooter tags
6787
6788 2003-03-14  John Levon  <levon@movementarian.org>
6789
6790         * text2.C: rewrite ::status() a bit
6791
6792 2003-03-13  John Levon  <levon@movementarian.org>
6793
6794         * lyxtext.h: add some docs
6795
6796 2003-03-13  John Levon  <levon@movementarian.org>
6797
6798         * lyxtext.h:
6799         * text.C:
6800         * text2.C:
6801         * text3.C: remove pointless 2nd arg to setHeightOfParagraph()
6802
6803 2003-03-13  John Levon  <levon@movementarian.org>
6804
6805         * text3.C: fix appendix redrawing
6806
6807 2003-03-13  John Levon  <levon@movementarian.org>
6808
6809         * text.C (setHeightOfRow):
6810         * rowpainter.h:
6811         * rowpainter.C: make appendix mark have the text
6812           "Appendix" so the user knows what it is
6813
6814         * LColor.h:
6815         * LColor.C: s/appendixline/appendix/ from above
6816
6817 2003-03-13  John Levon  <levon@movementarian.org>
6818
6819         * paragraph_pimpl.C: fix Andre's backing out of the strong assertion
6820
6821         * text.C: fix a getChar(pos) bug properly
6822
6823 2003-03-13  Angus Leeming  <leeming@lyx.org>
6824
6825         * commandtags.h:
6826         * LyXAction.C (init): new LFUNs PARAGRAPH_APPLY and PARAGRAPH_UPDATE.
6827         Probably only temporary. Let's see how things pan out.
6828
6829         * BufferView.C (unlockInset):
6830         * BufferView_pimpl.C (fitCursor):
6831         replace Dialogs::updateParagraph with dispatch(LFUN_PARAGRAPH_UPDATE).
6832
6833         * BufferView_pimpl.C (dispatch): code for LFUNs LAYOUT_PARAGRAPH,
6834         PARAGRAPH_UPDATE, PARAGRAPH_APPLY.
6835
6836         * ParagraphParameters.[Ch] (setParagraphParams, params2string):
6837         new functions that convert ParagraphParameters to and from a string.
6838
6839         * lyxfunc.C (dispatch): move LFUN_LAYOUT_PARAGRAPH to
6840         BufferView::Pimpl's dispatch.
6841         In LFUN_ESCAPE, dispatch LFUN_PARAGRAPH_UPDATE.
6842
6843 2003-03-13 André Pönitz <poenitz@gmx.net>
6844
6845         * lyxfunc.C:
6846         * text3.C:
6847         * factory.C: make it aware of InsetEnv
6848
6849 2003-03-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
6850
6851         * text2.C (setCursor): never ask for one past last
6852         (setCursor): add some debugging messages.
6853
6854         * text.C (singleWidth): never ask for one past last
6855         (singleWidth): ditto
6856         (leftMargin): ditto
6857         (rightMargin): ditto
6858         (rowBreakPoint): ditto
6859         (setHeightOfRow): ditto
6860         (prepareToPrint): ditto
6861
6862         * rowpainter.C (paintBackground): never ask for one past last
6863         (paintText): never ask for one past last
6864
6865         * paragraph_pimpl.C (getChar): make the assert stricter, never
6866         allow the one past last pos to be taken
6867
6868         * paragraph.C (getChar): ws changes only
6869
6870         * lyxrow.C (nextRowIsAllInset): never ask for one past last
6871         (numberOfSeparators): ditto
6872         (numberOfHfills): ditto
6873
6874 2003-03-12  John Levon  <levon@movementarian.org>
6875
6876         * author.h:
6877         * author.C:
6878         * bufferparams.h:
6879         * bufferparams.C:
6880         * paragraph_funcs.C: fix per-buffer authorlists
6881
6882 2003-03-12  John Levon  <levon@movementarian.org>
6883
6884         * text.C: fix newline in right address
6885
6886 2003-03-12  Angus Leeming  <leeming@lyx.org>
6887
6888         * BufferView_pimpl.C (dispatch): remove LFUNs from switch as they
6889         duplicate those in LyXFunc::dispatch.
6890
6891         * commandtags.h:
6892         * LyXAction.C:
6893         * ToolbarDefaults.C:
6894         rename LFUN_FREE as LFUN_FONTFREE_APPLY.
6895         Add LFUN_FONTFREE_UPDATE.
6896
6897         * lyxfunc.C (dispatch): code for LFUN_FREEFONT_APPLY,
6898         LFUN_FREEFONT_UPDATE, LFUN_LAYOUT_CHARACTER.
6899
6900         * bufferview_func.[Ch]: several new functions to facilliate
6901         transfer of data to and from the character dialog.
6902
6903 2003-03-12  John Levon  <levon@movementarian.org>
6904
6905         * buffer.C:
6906         * paragraph.h:
6907         * paragraph.C:
6908         * paragraph_funcs.C:
6909         * paragraph_pimpl.C:
6910         * sgml.C:
6911         * tabular.C:
6912         * text.C:
6913         * text3.C: remove META_NEWLINE in favour of an inset
6914
6915         * rowpainter.h:
6916         * rowpainter.C: remove paintNewline (done by inset)
6917
6918 2003-03-12  John Levon  <levon@movementarian.org>
6919
6920         * paragraph_pimpl.C: complain about bad getChar()s
6921         for a while at least
6922
6923 2003-03-12  John Levon  <levon@movementarian.org>
6924
6925         * buffer.h:
6926         * buffer.C: move paragraph read into a separate function,
6927         a little renaming to reflect that.
6928
6929         * bufferparams.h:
6930         * bufferparams.C: remove the author_ids map, not necessary now
6931
6932         * factory.h:
6933         * factory.C: moved Buffer::readInset to here
6934
6935         * paragraph_funcs.h:
6936         * paragraph_funcs.C: readParagraph free function moved from
6937         buffer.C
6938
6939         * tabular.C: name change
6940
6941 2003-03-12  John Levon  <levon@movementarian.org>
6942
6943         * buffer.C:
6944         * ParagraphParameters.C: move par params input to
6945         a read() method
6946
6947         * lyxlex_pimpl.C: make nextToken()/next() after a pushToken()
6948         behave like a normal read from the stream wrt reading
6949         a line vs. a \\token
6950
6951 2003-03-12  John Levon  <levon@movementarian.org>
6952
6953         * paragraph.C:
6954         * ParagraphParameters.h:
6955         * ParagraphParameters.C: move output code to a
6956         ::write() method
6957
6958 2003-03-12  John Levon  <levon@movementarian.org>
6959
6960         * BufferView.C (insertLyXFile):
6961         * buffer.h:
6962         * buffer.C:
6963         * tabular.C: use a parlist iterator for creating the
6964           document.
6965
6966 2003-03-12  John Levon  <levon@movementarian.org>
6967
6968         * buffer.C: make current_change static local not
6969           static file-scope
6970
6971 2003-03-12  John Levon  <levon@movementarian.org>
6972
6973         * buffer.C: fix insertStringAsLines for change tracking
6974
6975 2003-03-12  John Levon  <levon@movementarian.org>
6976
6977         * BufferView.C:
6978         * tabular.C:
6979         * buffer.h:
6980         * buffer.C:
6981         * bufferparams.h:
6982         * bufferparams.C: move author list into params. Rename some
6983           functions. Move the header reading into a separate token
6984           loop. Move the header token reading into BufferParams.
6985
6986 2003-03-12  John Levon  <levon@movementarian.org>
6987
6988         * changes.C: put debug inside lyxerr.debugging() checks
6989
6990 2003-03-11 André Pönitz <poenitz@gmx.net>
6991
6992         * factory.C: make it aware of InsetHFill
6993
6994 2003-03-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6995
6996         * buffer.C (latexParagraphs): move function from here...
6997         * paragraph_funcs.C (latexParagraphs): ...to here, and adjust
6998         args.
6999
7000 2003-03-10  Angus Leeming  <leeming@lyx.org>
7001
7002         * LyXAction.C (init): fix bug in poplating array with multiple entries
7003         with the same LFUN (spotted by JMarc).
7004
7005 2003-03-10  John Levon  <levon@movementarian.org>
7006
7007         * text.C:
7008         * text2.C: move getColumnNearX() near its
7009         only call site
7010
7011 2003-03-10  John Levon  <levon@movementarian.org>
7012
7013         * text.C: fix break before a minipage
7014
7015 2003-03-10  John Levon  <levon@movementarian.org>
7016
7017         * text.C: fix the last commit
7018
7019 2003-03-09  John Levon  <levon@movementarian.org>
7020
7021         * lyxtext.h:
7022         * text.C:
7023         * text2.C: clean up nextBreakPoint (now rowBreakPoint). Fix
7024         bug 365 (don't break before insets unless needed). Don't
7025         return a value > last under any circumstances.
7026
7027 2003-03-09  Angus Leeming  <leeming@lyx.org>
7028
7029         * BufferView_pimpl.C (trackChanges, dispatch): call
7030         Dialogs::show("changes") rather than Dialogs::showMergeChanges().
7031
7032 2003-03-09  Angus Leeming  <leeming@lyx.org>
7033
7034         * lyxfunc.C (dispatch): call Dialogs::show("about") rather
7035         than Dialogs::showAboutlyx().
7036
7037 2003-03-09  Angus Leeming  <leeming@lyx.org>
7038
7039         * factory.C (createInset): call Dialogs::show("tabularcreate") rather
7040         than Dialogs::showTabularCreate().
7041
7042 2003-03-09  John Levon  <levon@movementarian.org>
7043
7044         * lyxtext.h:
7045         * text.C:
7046         * text2.C: 3rd arg to nextBreakPoint was always the same.
7047           Use references.
7048
7049 2003-03-08  John Levon  <levon@movementarian.org>
7050
7051         * lyxrow.C:
7052         * paragraph.C:
7053         * paragraph.h:
7054         * rowpainter.C:
7055         * text.C:
7056         * text2.C: Remove the "main" bit from the "main body"
7057           notion.
7058
7059 2003-03-08  John Levon  <levon@movementarian.org>
7060
7061         * text.C (leftMargin): The left margin of an empty
7062         manual label paragraph should not include the label width
7063         string length.
7064
7065         * text.C (prepareToPrint): don't attempt to measure hfills
7066         for empty manual label paragraphs - the answer should be 0
7067
7068 2003-03-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
7069
7070         * CutAndPaste.C: remove commented code and reindent.
7071
7072 2003-03-08  John Levon  <levon@movementarian.org>
7073
7074         * lyxfunc.h:
7075         * lyxfunc.C: move reloadBuffer()
7076
7077         * BufferView.h:
7078         * BufferView.C: to here
7079
7080         * lyxvc.C: add comment
7081
7082         * vc-backend.h:
7083         * vc-backend.C: call bv->reload() to avoid
7084           getStatus() check on MENURELOAD
7085
7086 2003-03-07  Dekel Tsur  <dekelts@tau.ac.il>
7087
7088         * LaTeX.C (run): Fix a bug where the DVI file was not updated due
7089         to an old format .dep file.
7090
7091 2003-03-07  Angus Leeming  <leeming@lyx.org>
7092
7093         * text3.C (dispatch): remove the 'gross hack' of calling inset->edit
7094         when the LFUN_MOUSE_RELEASE should have been handled by
7095         inset->localDispatch.
7096
7097 2003-03-07  Angus Leeming  <leeming@lyx.org>
7098
7099         * BufferView_pimpl.C (dispatch):
7100         * LyXAction.C (init):
7101         * ToolbarDefaults.C (init):
7102         * commandtags.h:
7103         * lyxfunc.C (getStatus):
7104         remove LFUN_INSET_GRAPHICS.
7105
7106         * factory.C (createInset): add "graphics" to LFUN_INSET_APPLY.
7107
7108 2003-03-07  Angus Leeming  <leeming@lyx.org>
7109
7110         * commandtags.h:
7111         * LyXAction.C (init):
7112         * lyxfunc.C (getStatus): remove LFUN_REF_INSERT.
7113
7114         * lyxfunc.C (getStatus): add LFUN_DIALOG_SHOW_NEW_INSET to switch.
7115
7116         * commandtags.h:
7117         * LyXAction.C: add LFUN_INSET_DIALOG_UPDATE.
7118
7119         * lyxfunc (dispatch): on LFUN_DIALOG_UPDATE, pass the 'open' inset's
7120         localDispatch method LFUN_INSET_DIALOG_UPDATE.
7121
7122 2003-03-07  Angus Leeming  <leeming@lyx.org>
7123
7124         * lyxfunc.C (dispatch): add "include" to LFUN_SHOW_NEW_INSET and
7125         remove "ert".
7126
7127 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
7128
7129         * ParagraphList.C (front): new function
7130         (back): implement
7131
7132 2003-03-06  Alfredo Braunstein  <abraunst@libero.it>
7133
7134         * lyxtext.h (top_y): added these 2 methods, and private vars top_row_
7135         and top_row_offset_. removed var first_y.
7136         * text.C (top_y):
7137         * text2.C (LyXText, removeRow):
7138         * text3.C:
7139         * BufferView_pimpl.C:
7140         use these methods instead of using first_y
7141
7142 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
7143
7144         * text2.C (pasteSelection): adjust for checkPastePossible
7145
7146         * CutAndPaste.C: remove Paragraph * buf and replace with
7147         ParagraphList paragraphs.
7148         (DeleteBuffer): delete
7149         (cutSelection): change the tc type to textclass_type
7150         (copySelection): change the tc type to textclass_type
7151         (copySelection): adjust for ParagraphList
7152         (pasteSelection): change the tc type to textclass_type
7153         (pasteSelection): adjust for Paragraphlist
7154         (nrOfParagraphs): simplify for ParagraphList
7155         (checkPastePossible): simplify for ParagraphList
7156         (checkPastePossible): remove unused arg
7157
7158         * ParagraphList.C (insert): handle the case where there are no
7159         paragraphs yet.
7160
7161         * CutAndPaste.h: make CutAndPaste a namespace.
7162
7163         * text3.C (dispatch): adjust
7164
7165         * text.C (breakParagraph): add a ParagraphList as arg
7166
7167         * paragraph_funcs.C (breakParagraph): change to take a
7168         BufferParams and a ParagraphList as args.
7169         (breakParagraphConservative): ditto
7170         (mergeParagraph): ditto
7171         (TeXDeeper): add a ParagraphList arg
7172         (TeXEnvironment): ditto
7173         (TeXOnePar): ditto
7174
7175         * buffer.C (readLyXformat2): adjust
7176         (insertStringAsLines): adjust
7177         (latexParagraphs): adjust
7178
7179         * CutAndPaste.C (cutSelection): use 'true' not '1' as truth value.
7180         (cutSelection): adjust
7181         (pasteSelection): adjust
7182
7183         * BufferView_pimpl.C (insertInset): adjust
7184
7185 2003-03-05  Angus Leeming  <leeming@lyx.org>
7186
7187         * commandtags.h:
7188         * LyXAction.C (init):
7189         * BufferView_pimpl.C (dispatch):
7190         * lyxfunc.C (getStatus):
7191         remove LFUN_CHILD_INSERT.
7192
7193         * factory.C (createInset): add "include" to LFUN_INSET_APPLY.
7194
7195 2003-03-05  Angus Leeming  <leeming@lyx.org>
7196
7197         * commandtags.h:
7198         * LyXAction.C (init):
7199         * src/factory.C (createInset):
7200         * lyxfunc.C (getStatus):
7201         * text3.C (dispatch):
7202         remove LFUN_INSET_EXTERNAL and LFUN_INSERT_URL
7203
7204         * factory.C (createInset): add "external" to LFUN_INSET_APPLY.
7205
7206 2003-03-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
7207
7208         * ParagraphList.C (insert): handle insert right before end()
7209         (erase): fix cases where it can be first or last paragraph.
7210
7211 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
7212
7213         * paragraph_funcs.C (TeXEnvironment): remove all usage of
7214         Paragraph::next and Paragraph::previous
7215         (TeXOnePar): ditto
7216
7217         * text.C (breakParagraph): adjust
7218
7219         * paragraph_funcs.C (breakParagraph): take a Buffer* instead of a
7220         BufferParams& as arg.
7221         (breakParagraph): use ParagraphList::insert
7222         (breakParagraphConservative): take a Buffer* instead of a
7223         BufferParams& as arg.
7224         (breakParagraphConservative): use ParagraphList::insert.
7225
7226         * buffer.C (insertStringAsLines): un-const it
7227         (insertStringAsLines): adjust
7228
7229         * ParagraphList.C (insert): new function
7230
7231         * CutAndPaste.C (pasteSelection): adjust
7232
7233         * text.C (backspace): adjust
7234
7235         * tabular.C (SetMultiColumn): adjust
7236
7237         * CutAndPaste.C (cutSelection): adjust
7238         (pasteSelection): adjust
7239
7240         * tabular.C (SetMultiColumn): make it take a Buffer* instead of a
7241         Buffer const * as arg
7242
7243         * ParagraphList.C (erase): new function
7244         * paragraph_funcs.C (mergeParagraph): use it
7245         (mergeParagraph): make it take a Buffer* instead of a
7246         BufferParams* as arg
7247
7248         * paragraph_funcs.C (breakParagraph): take ParagraphList::iterator
7249         as arg
7250         (breakParagraphConservative): ditto
7251
7252         * paragraph.h: remove the breakParagraph friend
7253
7254         * paragraph.C (eraseIntern): new function
7255         (setChange): new function
7256
7257         * paragraph_funcs.C (mergeParagraph): make it take a
7258         ParagraphList::iterator instead of a Paragraph *, adjust
7259         accordingly.
7260
7261         * paragraph.h: move an #endif so that the change tracking stuff
7262         also works in the NO_NEXT case.
7263
7264 2003-03-04  Angus Leeming  <leeming@lyx.org>
7265
7266         * commandtags.h:
7267         * LyXAction.C: new LFUN_INSET_MODIFY.
7268
7269         * BufferView_pimpl.C (dispatch): if an inset is found to be open
7270         on LFUN_INSET_APPLY, pass LFUN_INSET_MODIFY to its localDispatch.
7271
7272 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
7273
7274         * several files: ws changes only
7275
7276         * paragraph_funcs.C (TeXOnePar): take ParagraphList::iterator as args
7277         (TeXEnvironment): ditto
7278         (TeXDeeper): ditto
7279
7280         * buffer.C (makeLaTeXFile): adjust
7281         (latexParagraphs): make it take ParagraphList::iterator as args
7282
7283 2003-03-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
7284
7285         * buffer.C (latexParagraphs): adjust
7286
7287         * paragraph.C (TeXOnePar): move function...
7288         (optArgInset): move function...
7289         (TeXEnvironment): move function...
7290         * paragraph_pimpl.C (TeXDeeper): move function...
7291         * paragraph_funcs.C: ...here
7292
7293         * tabular.C (UseParbox): rewrite to use ParagraphList iterators.
7294
7295 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
7296
7297         * buffer.C (readInset): remove compability code for old Figure and
7298         InsetInfo insets
7299
7300 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
7301
7302         * buffer.C: ws changes
7303         (readInset):
7304
7305         * BufferView_pimpl.C: ditto
7306         * author.C: ditto
7307         * buffer.h: ditto
7308         * bufferlist.h: ditto
7309         * changes.h: ditto
7310         * lyxfunc.C: ditto
7311
7312 2003-02-28  Alfredo Braunstein <abraunst@libero.it>
7313
7314         * converter.[Ch]: split into itself +
7315         * graph.[Ch]
7316         * format.[Ch]
7317         * Makefile.am: += graph.[Ch] + format.[Ch]
7318         * MenuBackend.C
7319         * buffer.C
7320         * exporter.C
7321         * importer.C
7322         * lyx_main.C
7323         * lyxfunc.C
7324         * lyxrc.C: added #include "format.h"
7325
7326 2003-02-27  Angus Leeming  <leeming@lyx.org>
7327
7328         * BufferView_pimpl.C (dispatch): call a real, LyX dialog to insert
7329           a label.
7330
7331         * factory.C (createInset): add "label" to the factory.
7332
7333         * lyx_cb.[Ch] (getPossibleLabel): rewrite MenuInsertLabel to return the
7334           string and do no more.
7335
7336 2003-02-27  Angus Leeming  <leeming@lyx.org>
7337
7338         * commandtags.h:
7339         * LyXAction.C (init):
7340         * factory.C (createInset):
7341         * BufferView_pimpl.C (dispatch):
7342           collapse LFUN_XYZ_APPLY to LFUN_INSET_APPLY.
7343
7344         * lyxfunc.C (getStatus): remove LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY.
7345
7346         * lyxfunc.C (dispatch):
7347         * text3.C (dispatch): pass name to params2string.
7348
7349 2003-02-26  Angus Leeming  <leeming@lyx.org>
7350
7351         * BufferView_pimpl.C (dispatch): collapse the various LFUN_XYZ_APPLY
7352           blocks together.
7353           Rearrange the ~includes. Strip out the unnecessary ones.
7354
7355         * factory.C (createInset): reformat.
7356           create new insets for the various LFUN_XYZ_APPLY lfuns.
7357
7358 2003-02-26  John Levon  <levon@movementarian.org>
7359
7360         * lyxrow.h:
7361         * lyxrow.C: add isParStart,isParEnd helpers
7362
7363         * paragraph.h: make isInserted/DeletedText take refs
7364
7365         * paragraph_funcs.h:
7366         * paragraph_funcs.C: remove #if 0'd code
7367
7368         * lyxtext.h:
7369         * text3.C:
7370         * text2.C:
7371         * text.C: use lyxrow helpers above.
7372           Move draw and paint routines to RowPainter.
7373           Make several methods use refs not pointers.
7374           Make backgroundColor() const.
7375           Add markChangeInDraw(), isInInset().
7376           Merge changeRegionCase into changeCase.
7377           Make workWidth() shouldn't-happen code into an Assert.
7378
7379         * rowpainter.h:
7380         * rowpainter.C: new class for painting a row.
7381
7382         * vspace.h:
7383         * vspace.C: make inPixels take a ref
7384
7385 2003-02-26  Angus Leeming  <leeming@lyx.org>
7386
7387         * BufferView_pimpl.C (dispatch): use InsetCommand::localDispatch for
7388         LFUN_REF_APPLY.
7389
7390 2003-02-25  John Levon  <levon@movementarian.org>
7391
7392         * ispell.C: give the forked command a more accurate name
7393
7394 2003-02-22  John Levon  <levon@movementarian.org>
7395
7396         * toc.h:
7397         * toc.C: make TocItem store an id not a Paragraph *
7398           (bug #913)
7399
7400 2003-02-21  Angus Leeming  <leeming@lyx.org>
7401
7402         * commandtags.h: Retire LFUN_CITATION_INSERT, LFUN_CITATION_CREATE,
7403           LFUN_INSERT_BIBTEX, LFUN_BIBTEX_STYLE, LFUN_BIBDB_ADD, LFUN_BIBDB_DEL.
7404           Bring to life LFUN_DIALOG_SHOW_NEW_INSET, LFUN_DIALOG_SHOW_NEXT_INSET,
7405           LFUN_DIALOG_UPDATE, LFUN_DIALOG_HIDE, LFUN_DIALOG_DISCONNECT_INSET,
7406           LFUN_BIBITEM_APPLY, LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY,
7407           LFUN_INDEX_APPLY, LFUN_REF_APPLY, LFUN_TOC_APPLY, LFUN_URL_APPLY,
7408
7409         * BufferView_pimpl.C (dispatch):
7410         * LyXAction.C (init):
7411         * factory.C (createInset):
7412         * lyxfunc.C (getStatus, dispatch):
7413         * text3.C (dispatch): retire old LFUNs and bring new ones to life.
7414
7415 2003-02-21  Angus Leeming  <leeming@lyx.org>
7416
7417         * BufferView_pimpl.C (MenuInsertLyXFile):
7418         * lyx_cb.C (WriteAs, getContentsOfAsciiFile):
7419         * lyxfunc.C (menuNew, open, doImport):
7420           no longer pass a LyXView & to fileDlg.
7421
7422 2003-02-21  Angus Leeming  <leeming@lyx.org>
7423
7424         * BufferView_pimpl.C: replace insetbib.h with insetbibtex.h.
7425         * LyXAction.C: change, BIBKEY to BIBITEM.
7426         * buffer.C: replace insetbib.h with insetbibitem.h and insetbibtex.h.
7427         Change InsetBibKey to InsetBibitem.
7428         Change BIBKEY_CODE to BIBITEM_CODE.
7429         * commandtags.h: change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
7430         * factory.C: replace insetbib.h with insetbibitem.h.
7431         Change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
7432         * paragraph.C: replace insetbib.h with insetbibitem.h.
7433         * paragraph.[Ch]: change InsetBibKey to InsetBibitem.
7434         Change bibkey() to bibitem().
7435         * text.C: remove insetbib.h.
7436         * text2.C: replace insetbib.h with insetbibitem.h.
7437         change bibkey() to bibitem().
7438         * text3.C: remove insetbib.h.
7439         change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
7440
7441 2003-02-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7442
7443         * lyxrc.C (output): enclose user email in quotes (in case there are
7444         several words)
7445
7446 2003-02-18  John Levon  <levon@movementarian.org>
7447
7448         * buffer.h: add std::
7449
7450 2003-02-17  John Levon  <levon@movementarian.org>
7451
7452         * SpellBase.h:
7453         * ispell.h:
7454         * ispell.C:
7455         * pspell.h:
7456         * pspell.C: reworking. Especially in ispell, a large
7457           number of clean ups and bug fixes.
7458
7459         * lyxfunc.C: fix revert to behave sensibly
7460
7461 2003-02-17 André Pönitz <poenitz@gmx.net>
7462
7463         * LyXAction.C:
7464         * commandtags.h: new LFUN_INSERT_BIBKEY
7465
7466         * layout.h:
7467         * lyxlayout.C:
7468         * buffer.C:
7469         * factory.C:
7470         * text.C:
7471         * text2.C:
7472         * text3.C:
7473         * paragraph.[Ch]:
7474         * paragraph_func.C: remove special bibkey handling
7475
7476 2003-02-17  John Levon  <levon@movementarian.org>
7477
7478         * text.C (Delete): fix case where delete at the end of
7479           the very first paragraph would not merge the pars
7480
7481 2003-02-17  John Levon  <levon@movementarian.org>
7482
7483         * lyxrow.C: fix lastPrintablePos()
7484
7485 2003-02-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7486
7487         * bufferparams.C (writeLaTeX): add a std:here
7488
7489         * buffer.C: and remove a using directive there
7490
7491 2003-02-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7492
7493         * buffer.C (makeLaTeXFile): move the code that generates the
7494           preamble...
7495
7496         * bufferparams.C (writeLaTeX): ... in this new method
7497
7498         * LaTeXFeatures.C (getEncodingSet): make const
7499           (getLanguages): make const
7500
7501         * MenuBackend.C (binding): returns the binding associated to this
7502           action
7503           (add): sets the status of each item by calling getStatus. Adds
7504           some intelligence.
7505           (read): add support for OptSubMenu
7506           (expand): remove extra separator at the end of expanded menu
7507
7508 2003-02-15  John Levon  <levon@movementarian.org>
7509
7510         * BufferView.C:
7511         * BufferView_pimpl.C:
7512         * bufferlist.h:
7513         * bufferlist.C: remove pointless BufferStorage bloat. Remove
7514           inset code that had no actual effect. Remove unneeded status
7515           code.
7516
7517 2003-02-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7518
7519         * buffer.C (makeLaTeXFile): fix counting of number of line feeds
7520           in preamble
7521
7522 2003-02-14  Michael Schmitt <michael.schmitt@teststep.org>
7523
7524         * text.C (drawLengthMarker): also draw an arrow marker for
7525           symbolic lengths (medskip...)
7526
7527 2003-02-14  John Levon  <levon@movementarian.org>
7528
7529         * tabular.h:
7530         * tabular.C: better method names
7531
7532 2003-02-14  John Levon  <levon@movementarian.org>
7533
7534         * BufferView_pimpl.C:
7535         * bufferlist.C:
7536         * buffer.C:
7537         * converter.C:
7538         * lyx_cb.C:
7539         * lyxfunc.C: change prohibit/allowInput to busy(bool), as
7540           it's a more accurate name. Remove some pointless uses.
7541
7542 2003-02-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7543
7544         * text2.C (LyXText): change order of initilizers to shut off
7545           warnings
7546
7547 2003-02-14  John Levon  <levon@movementarian.org>
7548
7549         * buffer.C: use ParIterator for getParFromID()
7550
7551         * paragraph.h:
7552         * paragraph.C:
7553         * paragraph_pimpl.h:
7554         * paragraph_pimpl.C: remove unused getParFromID()
7555
7556 2003-02-14  John Levon  <levon@movementarian.org>
7557
7558         * buffer.C: remove some very old #if 0'd parse code
7559
7560 2003-02-13  John Levon  <levon@movementarian.org>
7561
7562         * text.h:
7563         * text.C:
7564         * text2.C: move hfillExpansion(), numberOfSeparators(),
7565           rowLast(), rowLastPrintable(), numberofHfills(),
7566           numberOfLabelHfills() ...
7567
7568         * lyxrow.h:
7569         * lyxrow.C: ... to member functions here.
7570
7571         * paragraph.h:
7572         * paragraph.C:
7573         * lyxtext.h:
7574         * text.C: remove LyXText::beginningOfMainBody(), and call
7575           p->beginningOfMainBody() directly. Move the check for
7576           LABEL_MANUAL into the latter.
7577
7578         * text.h:
7579         * text.C:
7580         * text2.C:
7581         * vspace.C:
7582         * BufferView.h:
7583         * BufferView.C: make defaultHeight() be a free defaultRowHeight()
7584
7585         * text.h:
7586         * text.C:
7587         * text2.C:
7588         * text3.C:
7589         * frontends/screen.C: move bv_owner private, introduce isTopLevel()
7590           to make it clear we're testing for outmost-lyxtext vs. inset's lyxtext
7591
7592 2003-02-13  John Levon  <levon@movementarian.org>
7593
7594         * CutAndPaste.C: remove debug
7595
7596 2003-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7597
7598         * paragraph.C (asString): remove two unused variables
7599
7600         * lyxtextclass.C (readTitleType):
7601           (Read):
7602           (LyXTextClass): handle new members titletype_ and titlename_
7603
7604         * buffer.C (latexParagraphs): honor LyXTextClass::titletype
7605
7606 2003-02-09  John Levon  <levon@movementarian.org>
7607
7608         * buffer.h:
7609         * buffer.C: replace hand-coded list with a map for the dep clean
7610
7611 2003-02-08  John Levon  <levon@movementarian.org>
7612
7613         * LaTeX.C: consolidate code into showRunMessage() helper
7614
7615 2003-02-08  John Levon  <levon@movementarian.org>
7616
7617         * lyxfind.C:
7618         * lyxtext.h:
7619         * text2.C:
7620         * BufferView.C: change setSelectionOverString() to setSelectionRange()
7621           and pass the size in explicitly
7622
7623         * BufferView_pimpl.h:
7624         * BufferView_pimpl.C:
7625         * BufferView.h:
7626         * BufferView.C: add getCurrentChange()
7627
7628         * BufferView_pimpl.h:
7629         * BufferView_pimpl.C: handle change lfuns
7630
7631         * CutAndPaste.C: merge the cut and copy code. Rework the cut code
7632           for changes. Mark pasted paragraphs as new.
7633
7634         * support/lyxtime.h:
7635         * support/lyxtime.C:
7636         * DepTable.C: abstract time_t as lyx::time_type
7637
7638         * LColor.h:
7639         * LColor.C: add colours for new text, deleted text, changebars
7640
7641         * LaTeXFeatures.C: add dvipost as a simple feature. Make the color
7642           package use "usenames" option.
7643
7644         * commandtags.h:
7645         * lyxfunc.C:
7646         * LyXAction.C: add change lfuns
7647
7648         * Makefile.am:
7649         * author.h:
7650         * author.C: author handling
7651
7652         * buffer.h:
7653         * buffer.C: add a per-buffer author list, with first entry as
7654           current author. Handle new .lyx tokens for change tracking. Output
7655           author list to .lyx file. Output dvipost stuff to .tex preamble.
7656           Bump lyx format to 222.
7657
7658         * bufferlist.h:
7659         * bufferlist.C: add setCurrentAuthor() to reset current author details
7660           in all buffers.
7661
7662         * bufferparams.h:
7663         * bufferparams.C: add param for tracking
7664
7665         * bufferview_funcs.C: output change info in minibuffer
7666
7667         * Makefile.am:
7668         * changes.h:
7669         * changes.C: add change-tracking structure
7670
7671         * debug.h:
7672         * debug.C: add CHANGES debug flag
7673
7674         * lyxfind.h:
7675         * lyxfind.C: add code for finding the next change piece
7676
7677         * lyxrc.h:
7678         * lyxrc.C: add user_name and user_email
7679
7680         * lyxrow.h:
7681         * lyxrow.C: add a metric for the top of the text line
7682
7683         * lyxtext.h:
7684         * text.C: implement accept/rejectChange()
7685
7686         * lyxtext.h:
7687         * text.C: paint changebars. Paint new/deleted text in the chosen
7688         colours. Strike through deleted text.
7689
7690         * paragraph.h:
7691         * paragraph.C:
7692         * paragraph_pimpl.h:
7693         * paragraph_pimpl.C: output change markers in .lyx and .tex. Pass
7694           in the current change to the insert functions. Rework erase to
7695           mark text as deleted, adding an eraseIntern() and a range-based
7696           erase(). Implement per-paragraph change lookup and
7697           accept/reject.
7698
7699         * paragraph_funcs.C: Fixup paste for change tracking.
7700
7701         * tabular.C: mark added row/columns as new.
7702
7703         * text.C: fix rowLast() to never return -1. Don't allow
7704           spellchecking of deleted text. Track transpose changes. Don't
7705           allow paragraph break or merge where appropriate.
7706
7707         * text2.C: leave cursor at end of selection after a cut.
7708
7709 2003-02-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7710
7711         * text.C (getLengthMarkerHeight):
7712         (drawLengthMarker): make the `symbolic' lengths (small/med/big)
7713         visible on screen too.
7714
7715 2003-02-07  John Levon  <levon@movementarian.org>
7716
7717         * text.C: s/LYX_PAPER_MARGIN/PAPER_MARGIN/g
7718
7719 2003-02-05  Angus Leeming  <leeming@lyx.org>
7720
7721         * lyxserver.C (read_ready): revert my patch of 11 September last year
7722         as it sends PC cpu through the roof. Presumably this means that
7723         the lyxserver will no longer run on an Alpha...
7724
7725 2003-01-30  Angus Leeming  <leeming@lyx.org>
7726
7727         * factory.C (createInset): create an InsetCommandParam of type "index"
7728         and use it to 'do the right thing'.
7729
7730         * text2.C (getStringToIndex): ensure that cursor position is always
7731         reset to the reset_cursor position.
7732
7733 2003-01-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7734
7735         * lyxfunc.C (getStatus): "buffer-export custom" should never be
7736         disabled.
7737
7738 2003-01-20  Michael Schmitt <michael.schmitt@teststep.org>
7739
7740         * bufferview.C:
7741         * lyxcb.C:
7742         * lyxfunc.C: Output messages with identical spelling, punctuation,
7743         and spaces
7744
7745 2003-01-22  Michael Schmitt  <Michael.Schmitt@teststep.org>
7746
7747         * MenuBackend.C (expandFormats): List only viewable export formats
7748         in "View" menu
7749
7750         * buffer.C (parseSingleLyXformat2Token): Fix misleading error
7751         message
7752
7753         * lyxfunc.C (getStatus): Make sure that formats other than
7754         "fax" can also be disabled
7755
7756 2003-01-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7757
7758         * text3.C (dispatch): put the lfuns that insert insets in 3
7759         groups, and call doInsertInset with appropriate arguments.
7760         (doInsertInset): new function, that creates an inset and inserts
7761         it according to some boolean parameters.
7762
7763 2003-01-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
7764
7765         * buffer.C (readFile): remember to pass on 'par' when calling
7766         readFile recursively.
7767
7768 2003-01-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7769
7770         * MenuBackend.C (expandFormats): add "..." to import formats.
7771
7772 2003-01-15  Dekel Tsur  <dekelts@tau.ac.il>
7773
7774         * paragraph.C (asString): Remove XForms RTL hacks.
7775
7776 2003-01-13  Alfredo Braunstein <abraunst@libero.it>
7777         * buffer.C: fix typo
7778
7779 2003-01-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
7780
7781         * Makefile.am (LIBS): delete var
7782         (lyx_LDADD): add @LIBS@ here instead.
7783
7784 2003-01-08  Michael Schmitt <Michael.Schmitt@teststep.org>
7785
7786         * Clarify the meaning of "wheel mouse jump"
7787
7788 2003-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7789
7790         * lyxfunc.C (getStatus): fix disabling of cut/paste of cells in a
7791         tabular in a float
7792
7793 2003-01-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7794
7795         * importer.C (Loaders): do not preallocate 3 elements in the
7796         vector, since one ends up with 6 elements otherwise
7797
7798 2002-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7799
7800         * DepTable.C (write): write the file name as last element of the
7801         .dep file (because it may contain spaces)
7802         (read): read info in the right order
7803
7804 2003-01-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7805
7806         * paragraph_pimpl.C (simpleTeXBlanks):
7807         (simpleTeXSpecialChars):
7808         * paragraph.C (simpleTeXOnePar): make `column' unsigned.
7809
7810         * tabular.C (latex): add some missing case statements. Reindent.
7811
7812         * MenuBackend.C (expandToc): remove unused variable.
7813
7814 2003-01-06  Michael Schmitt <Michael.Schmitt@teststep.org>
7815
7816         * LColor.C:
7817         * LaTeX.C:
7818         * LyXAction.C:
7819         * MenuBackend.C:
7820         * buffer.C:
7821         * exporter.C:
7822         * lyxfunc.C:
7823         * lyxrc.C: fix inconsistent usage of spaces, colons, capitalization,
7824         and the like.
7825
7826 2003-01-05  John Levon  <levon@movementarian.org>
7827
7828         * BufferView.h:
7829         * BufferView.C: add getEncoding()
7830
7831         * kbsequence.h:
7832         * kbsequence.C: do not store last keypress
7833
7834         * lyxfunc.h:
7835         * lyxfunc.C: store last keypress here instead. Pass encoding
7836           to getISOEncoded()
7837
7838 2002-12-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7839
7840         * lyx_main.C (init): remove annoying error message when following
7841         symbolic links (bug #780)
7842
7843 2002-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7844
7845         * text.C (insertChar):
7846         * lyxrc.C (getDescription): remove extra spaces
7847
7848 2002-12-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7849
7850         * lyxrc.C (getDescription): remove extra spaces
7851
7852 2002-12-20  John Levon  <levon@movementarian.org>
7853
7854         * text3.C: hack fix for page up/down across tall rows
7855
7856 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7857
7858         * text2.C (pasteEnvironmentType): avoid crash if layout-copy has
7859         not been invoked
7860
7861 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7862
7863         * lyxfunc.C (getStatus): query lyx_gui::getStatus() to catter for
7864         unimplemented lfuns. Make LFUN_THESAURUS_ENTRY status unknown if
7865         thesaurus is not compiled in
7866
7867 2002-12-17  Alfredo Braunstein <abraunst@libero.it>
7868
7869         * lyxfunc.C: correct  inversion of WORDFINDBACK/FORWARD
7870
7871 2002-12-16  Angus Leeming  <leeming@lyx.org>
7872
7873         * lyxrc.[Ch]:
7874         * lyx_main.C (init): remove override_x_deadkeys stuff.
7875
7876 2002-12-12  John Levon  <levon@movementarian.org>
7877
7878         * lyxfunc.C: use LyXKeySym->isText() as last-ditch
7879           insert. Only remove shift modifier under strict
7880           circumstances.
7881
7882 2002-12-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
7883
7884         * MenuBackend.C (expandToc): fix crash.
7885
7886 2002-12-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
7887
7888         * MenuBackend.C (expandToc): gettext on float names.
7889
7890 2002-12-03  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
7891
7892         * lyxlength.[Ch]: set default unit to UNIT_NONE,
7893         implement bool empty() [bug 490]
7894
7895 2002-12-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
7896
7897         * text2.C, CutAndPaste.C: use BoostFormat.h not boost/format.hpp
7898
7899 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
7900
7901         * several files: ws changes
7902
7903 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
7904
7905         * text2.C (setCounter): clean up a bit, use boost.format.
7906         (updateCounters): initialize par upon declaration.
7907
7908         * CutAndPaste.C (SwitchLayoutsBetweenClasses): set the layout also
7909         if the layout exists. We do not just store the layout any more.
7910         (SwitchLayoutsBetweenClasses): use boost.format
7911
7912 2002-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7913
7914         * converter.C (convert): if from and to files are the same, use a
7915         temporary files as intermediary
7916
7917 2002-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7918
7919         * commandtags.h:
7920         * LyXAction.C (init): remove LFUN_VECTOR (bug 662)
7921
7922 2002-11-27  Dekel Tsur  <dekelts@tau.ac.il>
7923
7924         * lyxrc.[Ch]: Add {roman,sans,typewriter}_font_foundry variables.
7925
7926 2002-11-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
7927
7928         * tabular.C (asciiPrintCell): use string(size, char) instead of
7929         explicit loop.
7930
7931         * sgml.C (openTag): fix order of arguments to string constructor
7932         (closeTag): ditto
7933
7934         * lyxfunc.C (dispatch): use boost.format
7935
7936         * lots of files: change "c" -> 'c'
7937
7938 2002-11-25  Dekel Tsur  <dekelts@tau.ac.il>
7939
7940         * encoding.C: Patch from Isam Bayazidi: Fix Arabic shaping.
7941
7942 2002-11-25  Angus Leeming  <leeming@lyx.org>
7943
7944         * BoostFormat.h: wrap code inside #ifdef __GNUG__ block.
7945
7946         * lyx_main.C (init): compile fix.
7947
7948 2002-11-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
7949
7950         * lyx_cb.C (start): boost.formatify
7951         do not include <iostream>
7952
7953         * lengthcommon.C: ws only
7954
7955         * boost-inst.C,BoostFormat.h: add more explict instantations
7956
7957 2002-11-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
7958
7959         * lots of files: handle USE_BOOST_FORMAT
7960
7961 2002-11-21  John Levon  <levon@movementarian.org>
7962
7963         * pspell.C: fix compile
7964
7965 2002-11-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7966
7967         * lyxfunc.C (dispatch): use boost::format
7968         (open): ditto
7969         (doImport): ditto
7970
7971         * lyxfont.C (stateText): use boost::format
7972
7973         * lyx_main.C (LyX): use boost::format
7974         (init): ditto
7975         (queryUserLyXDir): ditto
7976         (readRcFile): ditto
7977         (parse_dbg): ditto
7978         (typedef boost::function): use the recommened syntax.
7979
7980         * importer.C (Import): use boost::format
7981
7982         * debug.C (showLevel): use boost::format
7983
7984         * converter.C (view): use boost::format
7985         (convert): ditto
7986         (move): ditto
7987         (scanLog): ditto
7988
7989         * bufferview_funcs.C (currentState): use boost::format
7990
7991         * bufferlist.C (emergencyWrite): use boost::format
7992
7993         * buffer.C (readLyXformat2): use boost::format
7994         (parseSingleLyXformat2Token): ditto
7995
7996         * Makefile.am (lyx_SOURCES): add BoostFormat.h and boost-inst.C
7997
7998         * LaTeX.C (run): use boost::format
7999
8000         * Chktex.C (scanLogFile): use boost::format
8001
8002         * BufferView_pimpl.C (savePosition): use boost::format
8003         (restorePosition): ditto
8004         (MenuInsertLyXFile): ditto
8005
8006         * BoostFormat.h: help file for explicit instation.
8007
8008 2002-11-21  Dekel Tsur  <dekelts@tau.ac.il>
8009
8010         * tabular.C (latex): Support for block alignment in fixed width
8011         columns.
8012
8013 2002-11-17  John Levon  <levon@movementarian.org>
8014
8015         * BufferView_pimpl.C:
8016         * lyx_cb.C:
8017         * lyxfunc.C: split filedialog into open/save
8018
8019 2002-11-08  Juergen Vigna  <jug@sad.it>
8020
8021         * undo_funcs.C (textHandleUndo): fixed problems with undo introduced
8022         by my last patch (hopefully).
8023
8024 2002-11-08  John Levon  <levon@movementarian.org>
8025
8026         * iterators.h:
8027         * iterators.C:
8028         * buffer.h:
8029         * buffer.C:
8030         * paragraph.h:
8031         * paragraph.C:
8032         * toc.h:
8033         * toc.C: ParConstIterator, and use it (from Lars)
8034
8035 2002-11-07  Ben Stanley  <bds02@uow.edu.au>
8036
8037         * lyxtextclass.[Ch]: revise and add doxygen comments
8038
8039 2002-11-07  John Levon  <levon@movementarian.org>
8040
8041         * text.C: fix progress value for spellchecker
8042
8043         * toc.C: fix navigate menu for insetwrap inside minipage
8044
8045         * paragraph_funcs.C: added FIXME for suspect code
8046
8047 2002-11-07  John Levon  <levon@movementarian.org>
8048
8049         * BufferView_pimpl.C: fix redrawing of insets
8050           on buffer switch
8051
8052 2002-11-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8053
8054         * text2.C (updateCounters): fix bug 668
8055
8056 2002-11-04  Dekel Tsur  <dekelts@tau.ac.il>
8057
8058         * text3.C (dispatch): Do not make the buffer dirty when moving the
8059         cursor.
8060
8061 2002-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
8062
8063         * vc-backend.C: STRCONV
8064         (scanMaster): ditto
8065
8066         * text2.C (setCounter): STRCONV
8067
8068         * paragraph.C (asString): STRCONV
8069
8070         * lyxlength.C (asString): STRCONV
8071         (asLatexString): ditto
8072
8073         * lyxgluelength.C (asString): STRCONV
8074         (asLatexString): ditto
8075
8076         * lyxfunc.C (dispatch): STRCONV
8077         (open): ditto
8078
8079         * lyxfont.C (stateText): STRCONV
8080
8081         * importer.C (Import): STRCONV
8082
8083         * counters.C (labelItem): STRCONV
8084         (numberLabel): ditto
8085         (numberLabel): remove unused ostringstream o
8086
8087         * chset.C: STRCONV
8088         (loadFile): ditto
8089
8090         * bufferview_funcs.C (currentState): STRCONV
8091
8092         * buffer.C (readFile): STRCONV
8093         (asciiParagraph): ditto
8094         (makeLaTeXFile): ditto
8095
8096         * Spacing.C (writeEnvirBegin): STRCONV
8097
8098         * LaTeXFeatures.C (getLanguages): STRCONV
8099         (getPackages): ditto
8100         (getMacros): ditto
8101         (getBabelOptions): ditto
8102         (getTClassPreamble): ditto
8103         (getLyXSGMLEntities): ditto
8104         (getIncludedFiles): ditto
8105
8106         * LaTeX.C: STRCONV
8107         (run): ditto
8108         (scanAuxFile): ditto
8109         (deplog): ditto
8110
8111         * LString.h: add the STRCONV macros
8112
8113         * BufferView_pimpl.C (savePosition): STRCONV
8114         (restorePosition): ditto
8115         (MenuInsertLyXFile): ditto
8116
8117         * vc-backend.C (scanMaster): change from submatch[...] to
8118         submatch.str(...)
8119
8120         * funcrequest.C: include config.h
8121
8122         * factory.C: include config.h
8123
8124         * chset.C (loadFile): change from submatch[...] to submatch.str(...)
8125
8126         * box.C: include config.h
8127
8128         * LaTeX.C (scanAuxFile): change from submatch[...] to
8129         submatch.str(...)
8130         (deplog): ditto
8131
8132 2002-10-25  Angus Leeming  <leeming@lyx.org>
8133
8134         * BufferView_pimpl.C (cursorToggle): remove reapSpellchecker hack.
8135
8136         * ispell.[Ch] (setError): new method.
8137         * ispell.C (c-tor): move out child process into new class LaunchIspell.
8138         Use setError() insetead of goto END.
8139
8140         * lyx_cb.C (AutoSave): move out child process into new class
8141         AutoSaveBuffer.
8142
8143 2002-10-30  John Levon  <levon@movementarian.org>
8144
8145         * text3.C: make start appendix undoable
8146
8147 2002-10-24  Dekel Tsur  <dekelts@tau.ac.il>
8148
8149         * lyxlength.C (inPixels): Fix returned value.
8150
8151         * paragraph.C (TeXOnePar): Fix bug with language changes in nested
8152         environment.
8153
8154 2002-10-24  Angus Leeming  <leeming@lyx.org>
8155
8156         * lyxgluelength.h: no need to forward declare BufferParams
8157         or BufferView, so don't.
8158
8159 2002-10-21  John Levon  <levon@movementarian.org>
8160
8161         * BufferView.C: menuUndo ->undo, redo
8162
8163         * BufferView.h: document, remove dead, make some methods private
8164
8165         * paragraph_funcs.h:
8166         * paragraph_funcs.C:
8167         * CutAndPaste.C: s/pasteParagraph/mergeParagraph
8168
8169         * buffer.h:
8170         * buffer.C:
8171         * sgml.h:
8172         * sgml.C: move sgml open/close tag into sgml.C
8173
8174         * bufferview_funcs.h: unused prototype
8175
8176         * lyxfunc.h:
8177         * lyxfunc.C: remove unused
8178
8179         * lyxtext.h:
8180         * text.C: remove unused
8181
8182 2002-10-21  John Levon  <levon@movementarian.org>
8183
8184         * BufferView.h:
8185         * BufferView.C:
8186         * BufferView_pimpl.h:
8187         * BufferView_pimpl.C: fix mouse wheel handling based on
8188           patch from Darren Freeman
8189
8190 2002-10-09  Dekel Tsur  <dekelts@tau.ac.il>
8191
8192         * lyx_main.C (queryUserLyXDir): Fix automatic reconfiguration.
8193
8194 2002-10-17  Dekel Tsur  <dekelts@tau.ac.il>
8195
8196         * lyxlength.C (inPixels): Fix hanfling of negative length.
8197         Fix LyXLength::MU case.
8198
8199 2002-10-16  John Levon  <levon@movementarian.org>
8200
8201         * buffer.C: remove \\protected_separator parsing done by lyx2lyx now
8202
8203 2002-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8204
8205         * converter.C (view): add support for $$i (file name) and $$p
8206         (file path) for the viewer command. If $$i is not specified, then
8207         it is appended to the command (for compatibility with old syntax)
8208
8209 2002-10-14  Juergen Vigna  <jug@sad.it>
8210
8211         * undo_funcs.C (textHandleUndo): alter the order in which the
8212         new undopar is added to the LyXText, as we have to set first
8213         the right prev/next and then add it as otherwise the rebuild of
8214         LyXText is not correct. Also reset the cursor to the right paragraph,
8215         with this IMO we could remove the hack in "redoParagraphs()".
8216
8217 2002-10-09  Angus Leeming  <leeming@lyx.org>
8218
8219         * Bufferview_pimpl.C (dispatch): call InsetCitation::setLoadingBuffer
8220         to turn off an optimisation if a new inset is to be inserted.
8221
8222 2002-10-11 André Pönitz <poenitz@gmx.net>
8223
8224         * lyxtext.h: make some functions public to allow access
8225         from inset/lyxtext for handling LFUN_PRIOR/NEXT
8226
8227 2002-10-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8228
8229         * text3.C (dispatch): when changing layout, avoid an infinite loop
8230         [bug #652]
8231
8232 2002-10-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8233
8234         * lyxrc.C (read): treat a viewer or converter command of "none" as
8235         if it were empty.
8236
8237         * MenuBackend.C (expandFormats): for an update, also allow the
8238         formats that are not viewable
8239
8240         * lyx_main.C (queryUserLyXDir): re-run automatically the configure
8241         script if it is newer than the lyxrc.defaults in user directory
8242
8243 2002-10-07 André Pönitz <poenitz@gmx.net>
8244
8245         * text.C: Vitaly Lipatov's small i18n fix
8246
8247 2002-09-25  Angus Leeming  <leeming@lyx.org>
8248
8249         * ispell.h: doxygen fix.
8250
8251 2002-09-25  Dekel Tsur  <dekelts@tau.ac.il>
8252
8253         * buffer.h (readFile): Add a new argument to the method, to allow
8254         reading of old-format templates.
8255
8256 2002-09-24  Dekel Tsur  <dekelts@tau.ac.il>
8257
8258         * toc.C (getTocList): Get TOC from InsetWrap.
8259
8260 2002-09-16  John Levon  <levon@movementarian.org>
8261
8262         * lyxfunc.C: check tabular for cut/copy too
8263
8264 2002-09-12  John Levon  <levon@movementarian.org>
8265
8266         * LyXAction.C: tidy
8267
8268         * factory.h:
8269         * factory.C: add header
8270
8271         * paragraph_funcs.h:
8272         * paragraph_funcs.C: cleanup
8273
8274 2002-09-11  John Levon  <levon@movementarian.org>
8275
8276         * PrinterParams.h: odd/even default to true
8277
8278 2002-09-12  Rob Lahaye  <lahaye@snu.ac.kr>
8279
8280         * PrinterParams.h: update printer parameters for new xforms dialog
8281
8282 2002-09-11  Angus Leeming  <leeming@lyx.org>
8283
8284         * lyxserver.C (read_ready): re-write to make it more transparent
8285         and to make it work in coherent fashion under Tru64 Unix.
8286
8287 2002-09-11  André Pönitz <poenitz@gmx.net>
8288
8289         * commandtags.h:
8290         * LyXAction.C:
8291         * text3.C: implement LFUN_WORDSEL
8292
8293 2002-09-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
8294
8295         * lyxtextclass.h: don't include FloatList.h, forward declare instead.
8296         make floatlist_ a boost::shared_ptr<FloatList>
8297
8298         * lyxtextclass.C: include FloatList.h
8299         (LyXTextClass): initialize floatlist_
8300         (TextClassTags): add TC_NOFLOAT
8301         (Read): match "nofloat" to TC_NOFLOAT and use it.
8302         (readFloat): modify call to floatlist_
8303         (floats): ditto
8304         (floats): ditto
8305
8306         * FloatList.[Ch] (FloatList): remove commented out float
8307         initialization.
8308         (erase): new function
8309
8310 2002-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8311
8312         * MenuBackend.C (expandToc): fix crash when there is no document
8313         open
8314
8315 2002-09-10  Dekel Tsur  <dekelts@tau.ac.il>
8316
8317         * many files: Add insetwrap.
8318
8319 2002-09-09  John Levon  <levon@movementarian.org>
8320
8321         * text2.C: remove confusing and awkward depth wraparound
8322
8323 2002-09-09  John Levon  <levon@movementarian.org>
8324
8325         * BufferView_pimpl.C: Don't use empty arg for LFUN_CHILD_INSERT
8326
8327         * buffer.h:
8328         * buffer.C: remove getIncludeonlyList()
8329
8330         * paragraph.C:
8331         * lyxfunc.C: remove headers
8332
8333 2002-09-09  Juergen Vigna  <jug@sad.it>
8334
8335         * text.C (getColumnNearX): fix form Michael this is most
8336         probably a cut&paste bug.
8337
8338 2002-09-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
8339
8340         * remove all INHERIT_LANG and INHERIT_LANGUAGE commented code
8341
8342         * LaTeXFeatures.C (useLayout): let tclass and lyt be a const
8343         references, ws changes.
8344
8345         * text2.C (init): update counters after init
8346         (insertParagraph): no need to set counter on idividual paragraphs.
8347         (setCounter): access the counters object in the textclass object
8348         on in the buffer object.
8349         (updateCounters): ditto
8350
8351         * lyxtextclass.C: include counters.h, add variable ctrs_ as
8352         shared_ptr<Counters> to avoid loading counters.h in all
8353         compilation units.
8354         (LyXTextClass): initialize ctrs_
8355         (TextClassTags): add TC_COUNTER, and ...
8356         (Read): use it here.
8357         (CounterTags): new tags
8358         (readCounter): new function
8359         (counters): new funtion
8360         (defaultLayoutName): return a const reference
8361
8362         * counters.C (Counters): remove contructor
8363         (newCounter): remove a couple of unneeded statements.
8364         (newCounter): simplify a bit.
8365         (numberLabel): some small formatting changes.
8366
8367         * buffer.[Ch]: remove all traces of counters, move the Counters
8368         object to the LyXTextClass.
8369
8370 2002-09-06  Alain Castera  <castera@in2p3.fr>
8371
8372         * tabular.C: uses \tabularnewline; uses >{...} construct from array
8373         package to set the horizontal alignment on fixed width columns.
8374
8375         * lyx_sty.C:
8376         * lyx_sty.h: added tabularnewline macro def.
8377
8378         * LaTeXFeatures.C: added NeedTabularnewline macro feature
8379
8380 2002-09-06  John Levon  <levon@movementarian.org>
8381
8382         * LyXAction.C: tooltips for sub/superscript
8383
8384         * MenuBackend.C: a bit more verbose
8385
8386         * lyxfunc.C: tiny clean
8387
8388         * undo_funcs.C: document undo_frozen
8389
8390 2002-09-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
8391
8392         * counters.C (Counters): add missing algorithm counter.
8393
8394         * text2.C (setCounter): lookup the counter with layouts latexname
8395         instead of by section number.
8396         (setCounter): use a hackish way to lookup the correct enum
8397         counter.
8398         a float name->type change
8399         reset enum couners with counter name directly instead of depth value.
8400
8401         * counters.C (Counters): remove the push_backs, change to use the
8402         float type not the float name.
8403         (labelItem): remove unused string, float name->type change
8404
8405         * counters.h: don't include vector, loose the enums and sects vectors
8406
8407 2002-09-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
8408
8409         * lyxtextclass.C (TextClassTags): add TC_FLOAT
8410         (Read): add float->TC_FLOAT to textclassTags
8411         (Read): and handle it in the switch
8412         (readFloat): new function
8413
8414         * FloatList.C (FloatList): comment out the hardcoded float
8415         definitions.
8416
8417         * lyxlayout.h: ws change.
8418
8419 2002-08-29  Dekel Tsur  <dekelts@tau.ac.il>
8420
8421         * buffer.C (readFile): Look for lyx2lyx in LYXDIR/lyx2lyx/
8422
8423 2002-09-03  Angus Leeming  <leeming@lyx.org>
8424
8425         * BufferView_pimpl.h: qualified name is not allowed in member
8426         declaration: WorkArea & Pimpl::workarea() const;
8427
8428         * factory.C: added using std::endl directive.
8429
8430         * text3.C: added using std::find and std::vector directives.
8431
8432 2002-08-29  André Pönitz <poenitz@gmx.net>
8433
8434         * lyxtext.h:
8435         * text2.C: remove unused member number_of_rows
8436
8437         * Makefile.am:
8438         * BufferView2.C: remove file, move contents to...
8439         * BufferView.C: ... here
8440
8441         * BufferView_pimpl.C:
8442         * factory.C: move more inset creation to factory
8443
8444         * vspace.C: avoid direct usage of LyXText, ws changes
8445
8446         * BufferView.[Ch]:
8447                 don't provide direct access to WorkArea, use two simple
8448                 acessors haveSelction() and workHeight() instead
8449
8450
8451 2002-08-29  John Levon  <levon@movementarian.org>
8452
8453         * BufferView_pimpl.C (dispatch): do not continue when
8454           no buffer
8455
8456 2002-08-28  André Pönitz <poenitz@gmx.net>
8457
8458         * commandtags.h: new LFUN_MOUSE_DOUBLE, LFUN_MOUSE_TRIPLE
8459
8460         * BufferView.h:
8461         * BufferView_pimpl.[Ch] move work area mouse event to LFUNs
8462
8463 2002-08-28  Rob Lahaye  <lahaye@snu.ac.kr>
8464
8465         * buffer.C: increment LYX_FORMAT to 221
8466
8467         * lyxrc.[Ch]: declare display_graphics as grfx::DisplayType and use
8468         grfx::displayTranslator.find(foo); include graphics/GraphicsTypes.h.
8469
8470         * lyxrc.C: use more "if (...) { } else { }" style (John's advice).
8471
8472         * lyx_main.C: call once the setDisplayTranslator(); is that okay here?
8473
8474 2002-08-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8475
8476         * factory.C (createInset): use LyXTextClass::floats
8477
8478         * MenuBackend.C (expandFloatListInsert):
8479         (expandFloatInsert):
8480         (expandToc):
8481
8482         * text2.C (setCounter):
8483
8484         * LaTeXFeatures.C (useFloat):
8485         (getFloatDefinitions):
8486
8487         * BufferView_pimpl.C (dispatch): use LyXTextClass::floats()
8488
8489         * lyxtextclass.[Ch]: rename layoutlist to layoutlist_; add
8490         floatlist_, with accessor floats().
8491
8492         * FloatList.h: remove global FloatList
8493
8494 2002-08-26  André Pönitz <poenitz@gmx.net>
8495
8496         * paragraph.[Ch]: Martin's patch for the \end_deeper bug
8497
8498         * BufferView.h:
8499         * BufferView2.C:
8500         * BufferView_pimpl.C:
8501         * text3.C: mun hanfling of LFUN_CUT/COPY/PASTE to LyXText
8502
8503 2002-08-25  John Levon  <levon@movementarian.org>
8504
8505         * LyXAction.C: fix margin note description
8506
8507 2002-08-24  John Levon  <levon@movementarian.org>
8508
8509         * buffer.C:
8510         * bufferlist.C:
8511         * bufferview_funcs.C:
8512         * lyxfont.C:
8513         * undo_funcs.C: cleanups
8514
8515         * lyxfunc.C: disable CUT/COPY when no selection
8516
8517 2002-08-23  Rob Lahaye  <lahaye@snu.ac.kr>
8518
8519         * lyxlength.[Ch]: use better (three letters) mnemonics for percentage units
8520         in "enum UNIT"; e.g. PTW for Percent of TextWidth
8521
8522         * lyxrc.C: graphics display is now monochrome|grayscale|color|none.
8523         Add backward compatibility to "mono", "gray" and "no".
8524
8525 2002-08-24  Dekel Tsur  <dekelts@tau.ac.il>
8526
8527         * buffer.C (readFile): Always run lyx2lyx if file_format < LYX_FORMAT
8528         (and file_format >= 200).
8529
8530 2002-08-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8531
8532         * lyxlayout.C (Read): treat LT_OPTARGS as an integer, not a bool
8533
8534 2002-08-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8535
8536         * lyxfunc.C (getStatus): handle LFUN_INSET_OPTARG
8537
8538 2002-08-20  Martin Vermeer  <martin.vermeer@hut.fi>
8539
8540         * BufferView_pimpl.C:
8541         * LyXAction.C:
8542         * buffer.C:
8543         * commandtags.h:
8544         * lyxfunc.C:
8545         * paragraph.[Ch]:
8546         * text2.C:
8547         * insets/insetoptarg.[Ch]: Added "optional argument" collapsible
8548         inset and code to make it  work with the paragraph code. The inset
8549         can be anywhere in the paragraph, but will only do the expected
8550         thing in LaTeX if the layout file contains the parameter line
8551                         OptionalArgs    1
8552         (or more generally, a nonzero value) for that layout.
8553
8554 2002-08-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
8555
8556         * paragraph.h: remove the declaration of undefined counters class
8557         function.
8558
8559 2002-08-22  Martin Vermeer <martin.vermeer@hut.fi>
8560
8561         * text2.C (setCounter):  fixed enumeration mis-count as reported by
8562         Dr. Richard Hawkins.
8563
8564 2002-08-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8565
8566         * paragraph_funcs.h: remove some unneeded includes
8567
8568         * text.C (backspace): pasteParagraph now in global scipe
8569
8570         * CutAndPaste.C (cutSelection): pasteParagraph now in global scope
8571         (pasteSelection): ditto
8572
8573         * paragraph.[Ch] (pasteParagraph): move function to global scope ...
8574         * paragraph_funcs.C (pasteParagraph): ... here
8575
8576 2002-08-20  André Pönitz <poenitz@gmx.net>
8577
8578         * commandtags.h: new LFUNs for swapping/copying table row/colums
8579
8580         * LyXAction.C:
8581         * lyxfunc.C: support for new lfuns
8582
8583 2002-08-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
8584
8585         * tabular.C:
8586         * buffer.[Ch]: remove NO_COMPABILITY stuff
8587
8588 2002-08-20  Lars Gullik Bjønnes  <larsbj@gullik.net>
8589
8590         * boost.C (throw_exception): new file, with helper function for
8591         boost compiled without exceptions.
8592
8593         * paragraph.h:
8594         * lyxlength.C:
8595         * buffer.C:
8596         * ParameterStruct.h:
8597         * ParagraphParameters.[Ch]: remove NO_PEXTRA_REALLY stuff
8598
8599         * bufferlist.C (emergencyWriteAll): use boost bind
8600
8601         * BufferView_pimpl.C (moveCursorUpdate): remove inline
8602
8603         * text.C: include paragraph_funcs.h
8604         (breakParagraph): breakParagraph is now in global scope
8605
8606         * paragraph_funcs.[Ch]: new files
8607
8608         * paragraph.C (breakParagraph,breakParagraphConservative): move to
8609         global scope
8610
8611         * buffer.C: include paragraph_funcs.h
8612         (insertStringAsLines): breakParagraph is now in global scope
8613
8614         * Makefile.am (lyx_SOURCES): add paragraph_funcs.h and
8615         paragraph_funcs.C
8616
8617         * CutAndPaste.C: include paragraph_funcs.h
8618         (cutSelection): breakParagraphConservative is now in global scope
8619         (pasteSelection): ditto
8620
8621         * buffer.h: declare oprator== and operator!= for
8622         Buffer::inset_iterator
8623
8624         * bufferlist.C (emergencyWrite): don't use fmt(...)
8625
8626         * text3.C: add using std::endl
8627
8628         * BufferView.C (moveCursorUpdate): remove default arg
8629
8630 2002-08-20  André Pönitz <poenitz@gmx.net>
8631
8632         * buffer.[Ch]: move inline functions to .C
8633
8634         * BufferView2.C:
8635         * BufferView_pimpl.C:
8636         * text.C:
8637         * buffer.[Ch]: use improved inset_iterator
8638
8639         * buffer.C:
8640         * paragraph.[Ch]: write one paragraph at a time
8641
8642 2002-08-20  Dekel Tsur  <dekelts@tau.ac.il>
8643
8644         * BufferView_pimpl.C (dispatch): Insert insetbibtex with "plain"
8645         style if style is not specified.
8646
8647 2002-08-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8648
8649         * text2.C (setCounter): when searching for right label for a
8650         caption, make sure to recurse to parent insets (so that a caption
8651         in a minipage in a figure float works) (bug #568)
8652
8653 2002-08-20  André Pönitz <poenitz@gmx.net>
8654
8655         * text3.C: new file for LyXText::dispatch() and helpers
8656
8657         * BufferView.[Ch]: move text related stuff to LyXText::dispatch()
8658
8659         * funcrequest.[Ch]: add message() do avoid direct access to LyXFunc
8660
8661 2002-08-19  André Pönitz <poenitz@gmx.net>
8662
8663         * lyxtext.h:
8664         * text.C: new LyXText::dispatch()
8665
8666         * BufferView_pimpl.C: move handling of LFUN_APPENDIX to LyXText
8667
8668 2002-08-18  Dekel Tsur  <dekelts@tau.ac.il>
8669
8670         * text.C (paintRowSelection): Fix code for rows with both RTL & LTR text.
8671
8672         * BufferView_pimpl.C (smartQuote): Insert typewriter quotes in
8673         Hebrew text.
8674
8675 2002-08-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8676
8677         * Makefile.am: use $(variables) instead of @substitutions@
8678
8679 2002-08-15  André Pönitz <poenitz@gmx.net>
8680
8681         * lyxfunc.C:
8682         * BufferView_pimpl.C: streamlining mathed <-> outer world
8683         interaction
8684
8685         * commandtags.h:
8686         * LyXAction.C: remove unused LFUN_MATH
8687
8688 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
8689
8690         * paragraph.[Ch]: add some NO_NEXT ifdefs.
8691
8692 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
8693
8694         * paragraph.C (Paragraph): reformat a bit
8695         (cutIntoMinibuffer): use builtin InsetList function instad of
8696         doing it manually.
8697         (getInset): ditto
8698
8699         * buffer.C: include boost/bind.hpp, add using std::for_each
8700         (writeFileAscii): use ParagraphList iterators
8701         (validate): use for_each for validate traversal of paragraphs
8702         (getBibkeyList): use ParagraphList iterators
8703         (resizeInsets): use for_each to resizeInsetsLyXText for all
8704         paragraphs.
8705         (getParFromID): use ParagraphList iterators
8706
8707         * BufferView2.C (lockInset): use paragraph list and iterators
8708
8709 2002-08-14  John Levon  <levon@movementarian.org>
8710
8711         * lyxserver.C: remove spurious xforms include
8712
8713 2002-08-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8714
8715         * lyxfunc.C (getStatus): disable math-extern outside of math mode
8716
8717 2002-08-13  André Pönitz <poenitz@gmx.net>
8718
8719         * LyXAction.[Ch]:
8720         * lyxfunc.C: further cleaning
8721
8722 2002-08-13  André Pönitz <poenitz@gmx.net>
8723
8724         * funcrequest.h: new constructor
8725
8726         * funcrequest.C: move stuff here from .h
8727
8728         * Makefile.am:
8729         * BufferView_pimpl.C:
8730         * LyXAction.C:
8731         * toc.C:
8732         * lyxfunc.C: subsequent changes
8733
8734         * lyxfunc.h: new view() member function
8735
8736         * lyxfunc.C: subsequent changes
8737
8738 2002-08-13  Angus Leeming  <leeming@lyx.org>
8739
8740         * BufferView2.C:
8741         * BufferView_pimpl.C:
8742         * buffer.C:
8743         * converter.C:
8744         * importer.C:
8745         * lyxfunc.C:
8746         * lyxvc.C:
8747         * toc.C:
8748         * vc-backend.C:
8749         changes due to the changed LyXView interface that now returns references
8750         to member variables not pointers.
8751
8752 2002-08-13  Angus Leeming  <leeming@lyx.org>
8753
8754         * WordLangTuple (word, lang_code): return references to strings,
8755         not strings.
8756
8757         * BufferView.h:
8758         * SpellBase.h:
8759         * lyxtext.h: forward-declare WordLangTuple.
8760
8761         * BufferView2.C:
8762         * ispell.C:
8763         * pspell.C:
8764         * text.C: #include "WordLangTuple.h".
8765
8766         * lyxtext.h:
8767         * text.C: (selectNextWordToSpellcheck): constify return type.
8768
8769 2002-08-12  Martin Vermeer <martin.vermeer@hut.fi>
8770
8771         * buffer.C:
8772         * buffer.h:
8773         * lyxtext.h:
8774         * paragraph.C:
8775         * paragraph_pimpl.h:
8776         * text.C:
8777         * text2.C:
8778         * undo_funcs.C: replaced per-paragraph counter logic by per-buffer, as
8779         suggested by Angus.
8780         Made updateCounter always count from start of buffer, and removed
8781         second argument (par).
8782         Reverted floats number display to '#'. Perhaps I'll try again when the
8783         code base is sanitized a bit.
8784
8785 2002-08-12  Angus Leeming  <leeming@lyx.org>
8786
8787         * buffer.[Ch] (getLabelList): constify.
8788
8789 2002-08-07  André Pönitz <poenitz@gmx.net>
8790
8791         * commandtags.h: new LFUN_MOUSE_(PRESS|MOTION|RELEASE)
8792
8793         * funcrequest.h: extension to keep mouse (x,y) position
8794
8795 2002-08-12  Juergen Vigna  <jug@sad.it>
8796
8797         * BufferView2.C (insertErrors): forbid undo when inserting error
8798         insets.
8799
8800         * CutAndPaste.C (SwitchLayoutsBetweenClasses): ditto
8801
8802 2002-08-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
8803
8804         * ParagraphList.[Ch]: new files
8805
8806         * Makefile.am (lyx_SOURCES): add ParagraphList.[Ch]
8807
8808         * BufferView2.C (lockInset): ParagraphList changes
8809         * toc.C: ditto
8810         * text2.C: ditto
8811         * bufferlist.C: ditto
8812         * buffer.h: ditto
8813         * buffer.C: ditto
8814
8815 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
8816
8817         * paragraph_pimpl.h: remove inclusion of boost/array.hpp, remove
8818         unused class variable counter_,
8819
8820         * paragraph.[Ch] (getFirstCounter): delete unused function
8821
8822         * counters.C: include LAssert.h
8823         (reset): add a new function with no arg, change other version to
8824         not have def. arg and to not allow empty arg.
8825
8826         * text2.C (setCounter): remove empty arg from call to Counters::reset
8827
8828 2002-08-11  John Levon  <levon@movementarian.org>
8829
8830         * Makefile.am: add WordLangTuple.h
8831
8832 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
8833
8834         * paragraph.C, ToolbarDefaults.h, kbsequence.h, lyx_main.C,
8835         lyxfunc.C lyxlex_pimpl.C: ws changes only.
8836
8837         * insets/insettext.C: InsetList changes
8838
8839         * graphics/GraphicsSupport.C (operator()): InsetList changes
8840
8841         * toc.C (getTocList): InsetList changes
8842
8843         * paragraph_pimpl.[Ch]: InsetList changes
8844
8845         * paragraph.[Ch]: InsetList changes
8846
8847         * buffer.C (inset_iterator): InsetList changes
8848         (setParagraph): ditto
8849         * buffer.h (inset_iterator): ditto
8850         * iterators.C (operator++): ditto
8851         * iterators.h: ditto
8852
8853         * Makefile.am (lyx_SOURCES): add InsetList.C and InsetList.h
8854
8855         * InsetList.[Ch]: new files, most InsetList handling moved out of
8856         paragraph.C.
8857
8858         * BufferView2.C (removeAutoInsets): InsetList changes
8859         (lockInset): ditto
8860         (ChangeInsets): ditto
8861
8862 2002-08-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
8863
8864         * paragraph_pimpl.h (empty): new function
8865
8866         * paragraph.[Ch] (empty): new function
8867
8868         * other files: use the new Paragraph::empty function
8869
8870 2002-08-09  John Levon  <levon@movementarian.org>
8871
8872         * lyxtext.h: remove unused refresh_height
8873
8874 2002-08-09  John Levon  <levon@movementarian.org>
8875
8876         * Makefile.am:
8877         * sgml.h:
8878         * sgml.C:
8879         * buffer.C:
8880         * paragraph.h:
8881         * paragraph.C: move sgml char escaping out of paragraph
8882
8883         * paragraph.h:
8884         * paragraph.C: remove id setter
8885
8886         * buffer.C:
8887         * paragraph.C:
8888         * paragraph_pimpl.C: remove dead tex_code_break_column
8889
8890         * bufferview_funcs.C: small cleanup
8891
8892         * lyxfunc.C: remove dead proto
8893
8894         * lyxtext.h: make some stuff private. Remove some dead stuff.
8895
8896         * lyxgluelength.C: make as[LyX]String() readable
8897
8898 2002-08-08  John Levon  <levon@movementarian.org>
8899
8900         * LyXAction.h:
8901         * LyXAction.C:
8902         * MenuBackend.C:
8903         * ToolbarDefaults.C:
8904         * lyxfunc.C:
8905         * lyxrc.C:
8906         * toc.C: lyxaction cleanup
8907
8908 2002-08-08  John Levon  <levon@movementarian.org>
8909
8910         * BufferView2.C: small cleanup
8911
8912         * lyxfind.h:
8913         * lyxfind.C: move unnecessary header into the .C
8914
8915 2002-08-08  John Levon  <levon@movementarian.org>
8916
8917         * funcrequest.h: just tedious nonsense
8918
8919         * lyx_main.h:
8920         * lyx_main.C: cleanups
8921
8922         * buffer.C:
8923         * vspace.C: remove dead header lyx_main.h
8924
8925 2002-08-07  Angus Leeming  <leeming@lyx.org>
8926
8927         * Paragraph.[Ch]:
8928         * paragraph_pimpl.h:
8929         Forward declare class Counters in paragraph.h by moving the ctrs member
8930         variable into Paragraph::Pimpl.
8931         (counters): new method, returning a reference to pimpl_->ctrs.
8932
8933         * text2.C: ensuing changes.
8934
8935 2002-08-07  John Levon  <levon@movementarian.org>
8936
8937         * BufferView_pimpl.C (resizeCurrentBuffer): update scrollbar
8938
8939         * BufferView_pimpl.C: announce X selection on double/triple
8940           click
8941
8942         * lyx_main.C: use correct bool in batch dispatch
8943
8944         * counters.h: srcdocs (from Martin Vermeer and Angus Leeming)
8945
8946 2002-08-07  André Pönitz <poenitz@gmx.net>
8947
8948         * funcrequest.h: new class to wrap a kb_action and its argument
8949
8950         * BufferView.[Ch]:
8951         * BufferView_pimpl[Ch]:
8952         * LaTeX.C:
8953         * LyXAction.[Ch]:
8954         * lyxfunc.[Ch]:
8955         * lyxrc.C: subsequent changes
8956
8957
8958 2002-08-07  John Levon  <levon@movementarian.org>
8959
8960         * BufferView_pimpl.C (redoCurrentBuffer): fix screen update when
8961           document options change.
8962
8963 2002-08-06  Martin Vermeer  <martin.vermeer@hut.fi>
8964
8965         * counters.[Ch]
8966         * text2.C
8967         * paragraph.[Ch]
8968         * makefile.am: move counters functionality over from
8969         text2.C/paragraph.[Ch] to counters.[Ch], and make proper C++.
8970
8971 2002-08-06  John Levon  <levon@movementarian.org>
8972
8973         * WordLangTuple.h: new file for word + language code tuple
8974
8975         * SpellBase.h:
8976         * pspell.h:
8977         * pspell.C:
8978         * ispell.h:
8979         * ispell.C:
8980         * lyxtext.h:
8981         * text.C:
8982         * text2.C:
8983         * BufferView.h:
8984         * BufferView2.C: use WordLangTuple
8985
8986         * layout.h:
8987         * buffer.C: remove very dead LYX_LAYOUT_DEFAULT
8988
8989 2002-08-06  John Levon  <levon@movementarian.org>
8990
8991         * lyx_main.C: fix cmdline batch handling
8992
8993 2002-08-06  André Pönitz <poenitz@gmx.net>
8994
8995         * lyxrc.C: set default for show_banner to true
8996
8997 2002-08-06  John Levon  <levon@movementarian.org>
8998
8999         * pspell.C: fix a crash, and allow new aspell to work
9000
9001 2002-08-06  John Levon  <levon@movementarian.org>
9002
9003         * lyxfunc.C:
9004         * kbmap.C: small cleanup
9005
9006         * vspace.h:
9007         * vspace.C: add const
9008
9009 2002-08-05  John Levon  <levon@movementarian.org>
9010
9011         * LyXAction.C: back to tabular-insert
9012
9013 2002-08-04  John Levon  <levon@movementarian.org>
9014
9015         * BufferView.h:
9016         * BufferView.C: cosmetic change
9017
9018         * BufferView_pimpl.C: s/IGNORE_CODE/NOTE_CODE/
9019
9020         * bufferlist.C:
9021         * buffer.h:
9022         * buffer.C:
9023         * lyxcb.h:
9024         * lyxcb.C:
9025         * lyxserver.C:
9026         * lyxvc.C:
9027         * vc-backend.C:
9028         * BufferView2.C: purge all "Lyx" not "LyX" strings
9029
9030         * lyxcursor.h:
9031         * lyxcursor.C: attempt to add some documentation
9032
9033         * lyxfunc.C:
9034         * commandtags.h:
9035         * LyXAction.C:
9036         * ToolbarDefaults.C:
9037         * BufferView_pimpl.C: remove LFUN_DIALOG_TABULAR_INSERT and
9038           merge with LFUN_TABULAR_INSERT
9039
9040         * Makefile.am:
9041         * SpellBase.h:
9042         * ispell.h:
9043         * ispell.C:
9044         * pspell.h:
9045         * pspell.C: split up i/pspell implementations into separate
9046           files, many cleanups
9047
9048         * lyxlex.C: unrevert, with a proper fix for prefix.length() == 0
9049
9050         * text2.C: some cleanup
9051
9052         * lyxfunc.C: don't check for isp_command == "none" any more, it
9053           didn't make any sense
9054
9055 2002-08-06      Martin Vermeer <martin.vermeer@hut.fi>
9056
9057         * counters.[Ch]
9058         * text2.C
9059         * paragraph.[Ch]
9060         * makefile.am: move counters functionality over
9061         from text2.C/paragraph.[Ch] to counters.[Ch], and
9062         make proper C++.
9063 2002-08-02  John Levon  <levon@movementarian.org>
9064
9065         * buffer.C: s/lyxconvert/lyx2lyx/
9066
9067 2002-08-02  Angus Leeming  <leeming@lyx.org>
9068
9069         * lyxlex.C: revert John's change as it breaks reading of the user
9070         preamble.
9071
9072 2002-08-02  Angus Leeming  <leeming@lyx.org>
9073
9074         * importer.C (Import):
9075         * lyxfunc.C (moveCursorUpdate, dispatch, view_status_message):
9076         changes due to LyXView::view() now returning a boost::shared_ptr.
9077
9078 2002-08-02  John Levon  <levon@movementarian.org>
9079
9080         * lyxlex.C: small cleanup
9081
9082 2002-08-02  John Levon  <levon@movementarian.org>
9083
9084         * text2.C (status): small cleanup, no logic change
9085
9086 2002-08-01  John Levon  <levon@movementarian.org>
9087
9088         * buffer.h:
9089         * buffer.C (writeFile): don't output alerts, caller
9090           handles this
9091
9092         * bufferlist.C:
9093         * lyx_cb.C: from above
9094
9095         * lyxfunc.C: allow to open non-existent files
9096
9097 2002-07-31  John Levon  <levon@movementarian.org>
9098
9099         * lyxserver.C: don't let incidental errors get
9100           in the way (errno)
9101
9102 2002-07-30  John Levon  <levon@movementarian.org>
9103
9104         * lyxfunc.C: disable character dialog in ERT inset (partial fix)
9105
9106 2002-07-30  John Levon  <levon@movementarian.org>
9107
9108         * lyxserver.h:
9109         * lyxserver.C: remove I/O callback too
9110
9111 2002-07-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9112
9113         * lyxfunc.C (getStatus): disable LFUN_LATEX_LOG when there is no
9114         log.
9115
9116 2002-07-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
9117
9118         * many files: strip,frontStrip -> trim,ltrim,rtrim
9119
9120 2002-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
9121
9122         * PrinterParams.h: remove extern containsOnly, and include
9123         support/lstrings.h instead.
9124
9125         * LaTeX.C (scanAuxFile): modify because of strip changes
9126         (deplog): ditto
9127         * buffer.C (makeLaTeXFile): ditto
9128         * bufferparams.C (writeFile): ditt
9129         * lyxfont.C (stateText): ditto
9130         * lyxserver.C (read_ready): ditto
9131         * vc-backend.C (scanMaster): ditto
9132
9133         * BufferView_pimpl.h: ws changes
9134
9135         * BufferView_pimpl.C: inlude boost/signals/connection.hpp
9136
9137 2002-07-26  André Pönitz <poenitz@gmx.net>
9138
9139         * kb_sequence.C: remove unnedred usings
9140
9141 2002-07-26  Juergen Vigna  <jug@sad.it>
9142
9143         * lyxfind.C (LyXReplace): we have to check better if the returned
9144         text is not of theLockingInset()->getLockingInset().
9145
9146 2002-07-25  Juergen Vigna  <jug@sad.it>
9147
9148         * lyxfind.C (LyXReplace): don't replace if we don't get the
9149         right LyXText.
9150
9151         * undo_funcs.C (createUndo): remove debugging code.
9152
9153 2002-07-25  Dekel Tsur  <dekelts@tau.ac.il>
9154
9155         * buffer.C (parseSingleLyXformat2Token): Use default placement
9156         when reading old floats.
9157
9158         * FloatList.C (FloatList): Change the default placement of figure
9159         and tables to "tbp".
9160
9161 2002-07-25  John Levon  <moz@compsoc.man.ac.uk>
9162
9163         * MenuBackend.C: using std::max
9164
9165 2002-07-25  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9166
9167         * MenuBackend.C (expandToc):
9168         (expandToc2): code moved from xforms menu frontend. It is now
9169         generic and TOCs are transparent to menu frontends.
9170
9171 2002-07-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9172
9173         * toc.C (getTocList): protect against buf=0
9174
9175         * MenuBackend.C (expand): move from Menu to MenuBackend; pass a
9176         Menu as first parameter. Now, this calls itself recursively to
9177         expand a whole tree (this will be useful for TOC handling)
9178         (expandFloatInsert): remove 'wide' version of floats
9179
9180         * MenuBackend.h (submenuname): returns the name of the submenu.
9181         (submenu): returns the submenu itself, provided it has been
9182         created by MenuBackend::expand
9183
9184 2002-07-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9185
9186         * paragraph_pimpl.C (simpleTeXSpecialChars): close fonts before
9187         insets which have noFontChange == true. (bug #172)
9188
9189 2002-07-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9190
9191         * BufferView_pimpl.C: add connection objects and use them...
9192         (Pimpl): here.
9193
9194 2002-07-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9195
9196         * MenuBackend.C (expandLastfiles):
9197         (expandDocuments):
9198         (expandFormats):
9199         (expandFloatListInsert):
9200         (expandFloatInsert):
9201         (expand): split expand in parts
9202
9203 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
9204
9205         * lyx_gui.C: use lyx_gui::exit()
9206
9207 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
9208
9209         * LyXAction.C: show the failing pseudo action
9210
9211 2002-07-22  Dekel Tsur  <dekelts@tau.ac.il>
9212
9213         * buffer.C (readFile): Run the lyxconvert script in order to read
9214         old files.
9215
9216 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
9217
9218         * LyXAction.C:
9219         * commandtags.h:
9220         * lyxfunc.C: remove LFUN_ADD_TO_TOOLBAR
9221
9222 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
9223
9224         * LyXAction.C:
9225         * commandtags.h:
9226         * lyxfunc.C: remove LFUN_TOOLBAR_PUSH
9227
9228 2002-07-22  Herbert Voss  <voss@lyx.org>
9229
9230         * lengthcommon.C:
9231         * lyxlength.[Ch]: add support for the vertical lengths
9232
9233 2002-07-21  John Levon  <moz@compsoc.man.ac.uk>
9234
9235         * toc.[Ch]: std:: fixes
9236
9237 2002-07-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9238
9239         * lyxrc.C: do not include lyx_main.h
9240
9241         * LaTeXFeatures.h: use a list<string> instead of a vector<string>
9242         for layouts
9243
9244         * lyxrc.C:
9245         * encoding.C:
9246         * bufferlist.C:
9247         * BufferView2.C: include "lyxlex.h"
9248
9249         * tabular.h:
9250         * bufferparams.h: do not #include "lyxlex.h"
9251
9252         * lyxtextclasslist.C (Add): remove method
9253         (classlist): renamed to classlist_
9254
9255         * paragraph_pimpl.C:
9256         * paragraph.C:
9257         * text2.C:
9258         * CutAndPaste.C:
9259         * bufferview_funcs.C:
9260         * bufferlist.C:
9261         * text.C:
9262         * LaTeXFeatures.C:
9263         * buffer.C:
9264         * toc.C (getTocList): use BufferParams::getLyXTextClass
9265
9266         * toc.C (getTocList): use InsetFloat::addToToc
9267
9268         * toc.[Ch]: new files, containing helper functions to handle table
9269         of contents
9270
9271         * lyxfunc.C (dispatch): no need to remove spaces around command
9272         given as a string
9273         (getStatus): handle LFUN_SEQUENCE by returning the status of the
9274         first command of the sequence; it is not very clever, but I do not
9275         have a better idea, actually
9276
9277         * LyXAction.C (LookupFunc): make sure to remove space at the
9278         beginning and end of the command
9279
9280 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9281
9282         * MenuBackend.C (getMenubar): new method: return the menubar of
9283         this menu set
9284         (read): treat differently reading of menu and menubar (in
9285         particular, the menubar has no name now)
9286         (Menu::menubar): remove
9287
9288         * lyxfunc.C (dispatch): add 'done' message to minibuffer when
9289         saving is finished
9290
9291 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
9292
9293         * BufferView_pimpl.C (workAreaButtonRelease): Fix opening of
9294         a bibitem inset in a RTL paragraph.
9295
9296 2002-07-20  John Levon  <moz@compsoc.man.ac.uk>
9297
9298         * paragraph_pimpl.C: constify
9299
9300         * BufferView_pimpl.C:
9301         * LaTeX.C:
9302         * lyxfunc.C: fix dispatch in a nicer way
9303
9304 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9305
9306         * lyxfunc.C (dispatch):
9307         * BufferView_pimpl.C:
9308         * BufferView_pimpl.h:
9309         * BufferView.C:
9310         * BufferView.h: rename Dispatch() to dispatch()
9311
9312         * LaTeXFeatures.C (useLayout): honor LyXLayout::depends_on()
9313
9314         * lyxlayout.C (Read): honor DependsOn tag
9315
9316         * lyxlayout.[Ch] (depends_on): new method
9317
9318         * version.C.in: update lyx_docversion
9319
9320         * LaTeXFeatures.C (getMacros): only define \LyX when needed
9321
9322         * paragraph.C (validate): remove from here...
9323         * paragraph_pimpl.C (validate): ... and move here
9324         (isTextAt): make it const
9325
9326         * buffer.C (getLists): ws cleanup
9327
9328 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
9329
9330         * language.C (read): Use iso8859-1 encoding in latex_lang
9331         (this prevents LyX from crashing when using iso10646-1 encoding).
9332
9333 2002-07-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9334
9335         * text2.C (toggleInset): if cursor is inside an inset, close the
9336         inset and leave cursor _after_ it
9337
9338 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
9339
9340         * lyxfunc.C: move minibuffer completion handling out of here
9341
9342 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
9343
9344         * BufferView_pimpl.C:
9345         * LaTeX.C: fix dispatch calls
9346
9347 2002-07-19  Dekel Tsur  <dekelts@tau.ac.il>
9348
9349         * text.C (drawChars): Fix Arabic text rendering.
9350
9351 2002-07-18  John Levon  <moz@compsoc.man.ac.uk>
9352
9353         * LyXAction.C:
9354         * commandtags.h:
9355         * lyxfunc.C: remove message-push/pop
9356
9357         * lyxserver.C:
9358         * lyxfunc.h:
9359         * lyxfunc.C: rationalise some code by removing verboseDispatch
9360           in favour of a bool argument to dispatch()
9361
9362 2002-07-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9363
9364         * lyx_main.C (init): make sure to read symlinks as absolute paths
9365
9366 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
9367
9368         * lyxfunc.h:
9369         * lyxfunc.C: no need for commandshortcut to be a member
9370
9371 2002-07-15  André Pönitz <poenitz@gmx.net>
9372
9373         * converter.C: add support for $$s (scripts from lib/scripts dir)
9374         * lyx_main.C: white space
9375
9376 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
9377
9378         * bufferlist.C:
9379         * lyxrc.h:
9380         * lyxrc.C: remove second exit confirmation
9381
9382 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
9383
9384         * BufferView.h:
9385         * BufferView.C:
9386         * BufferView2.C:
9387         * BufferView_pimpl.h:
9388         * BufferView_pimpl.C:
9389         * lyxfunc.C: s/setState/switchKeyMap/, s/showState/view_state_changed/
9390
9391 2002-07-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9392
9393         * MenuBackend.C (expand): add numeric shortcuts to document menu
9394
9395         * lyxrc.C (getDescription): remove RC_NEW_ASK_FILENAME
9396
9397 2002-07-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9398
9399         * lyxfont.C (setLyXFamily):
9400         (setLyXSeries):
9401         (setLyXShape):
9402         (setLyXSize):
9403         (setLyXMisc):
9404         (lyxRead):
9405         * debug.C (value):
9406         * buffer.C (asciiParagraph): use ascii_lowercase
9407
9408 2002-07-15  Mike Fabian  <mfabian@suse.de>
9409
9410         * lyxlex_pimpl.C (search_kw):
9411         * lyxlex.C (getLongString):
9412         * converter.h (operator<):
9413         * converter.C (operator<):
9414         * buffer.C (parseSingleLyXformat2Token):
9415         (asciiParagraph):
9416         * ToolbarDefaults.C (read):
9417         * MenuBackend.C (checkShortcuts):
9418         (read):
9419         * LColor.C (getFromGUIName):
9420         (getFromLyXName): use the compare_ascii_no_case instead of
9421         compare_no_case, because in turkish, 'i' is not the lowercase
9422         version of 'I', and thus turkish locale breaks parsing of tags.
9423
9424 2002-07-16  Angus Leeming  <leeming@lyx.org>
9425
9426         * BufferView_pimpl.C (buffer): Previews::generateBufferPreviews
9427         now takes a Buffer const & argument.
9428
9429 2002-07-15  John Levon  <moz@compsoc.man.ac.uk>
9430
9431         * BufferView.C (resize): check there's a buffer to resize
9432
9433 2002-07-14  John Levon  <moz@compsoc.man.ac.uk>
9434
9435         * lyxfunc.C: remove dead code
9436
9437         * lyxserver.h:
9438         * lyxserver.C: use lyx_guii::set_read_callback
9439
9440 2002-07-13  Dekel Tsur  <dekelts@tau.ac.il>
9441
9442         * lyxfunc.C (dispatch): Correct cursor behaviour when exiting
9443         an inset in a RTL paragraph.
9444
9445 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
9446
9447         * lyxfunc.C: repaint after a font size update
9448
9449 2002-07-15  André Pönitz <poenitz@gmx.net>
9450
9451         * lyxlength.C: inBP should be able to return negative values
9452
9453 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
9454
9455         * lyxfunc.C: use lyx_gui::update_fonts()
9456
9457 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
9458
9459         * lyxfunc.C: use lyx_gui::update_color()
9460
9461 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
9462
9463         * bufferlist.C:
9464         * lyxfunc.h:
9465         * lyxfunc.C:
9466         * lyxrc.h:
9467         * lyxrc.C: remove file->new asks for name option, and let
9468           buffer-new take an argument
9469
9470 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
9471
9472         * BufferView_pimpl.C: remove unneeded extra repaint()
9473
9474 2002-07-10  John Levon  <moz@compsoc.man.ac.uk>
9475
9476         * LyXAction.C: allow command-sequence with NoBuffer
9477
9478         * lyxfunc.C: don't insist on trailing ';' for command-sequence
9479
9480 2002-07-10  Angus Leeming  <leeming@lyx.org>
9481
9482         * lyxrc.[Ch]: preview_scale_factor should be a float not an int.
9483
9484 2002-07-09  Angus Leeming  <leeming@lyx.org>
9485
9486         * lyxrc.[Ch]: added preview_hashed_labels and preview_scale_factor.
9487
9488 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
9489
9490         * lengthcommon.h: whitespace
9491
9492         * lyxfunc.C: update scrollbar after goto paragraph
9493
9494         * lyxtext.h: factor out page break drawing, and fix it so
9495           page break/added space paints as selected nicely
9496
9497 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
9498
9499         * BufferView_pimpl.C: add FIXMEs, clean up a little
9500
9501 2002-07-09  André Pönitz <poenitz@gmx.net>
9502
9503         * lyxfont.[Ch]: support for wasy symbols
9504
9505 2002-07-08  André Pönitz <poenitz@gmx.net>
9506
9507         * BufferView_pimpl.C: apply John's patch for #93.
9508
9509 2002-07-05  Angus Leeming  <leeming@lyx.org>
9510
9511         * BufferView_pimpl.C (buffer): generate previews if desired.
9512
9513         * LColor.h: add "preview" to the color enum.
9514
9515         * LColor.C (LColor): add a corresponding entry to the items array.
9516
9517         * buffer.C (~Buffer): remove any previewed LaTeX snippets associated
9518         with this buffer.
9519
9520 2002-07-05  Angus Leeming  <leeming@lyx.org>
9521
9522         * buffer.[Ch] (makeLaTeXFile): create two methods where there was one.
9523         The body of the code is now in the method that is passed an ostream &
9524         rather than a file name.
9525         Pass an additional only_preamble parameter, useful for the forthcoming
9526         preview stuff.
9527
9528 2002-07-03  André Pönitz <poenitz@gmx.net>
9529
9530         * lyxfunc.C: simplify getStatus() a bit for math stuff
9531
9532 2002-07-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9533
9534         * BufferView_pimpl.C (workAreaResize): add an unconditional repaint.
9535
9536 2002-06-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9537
9538         * text.C (changeRegionCase): do not change case of all the
9539         document when region ends at paragraph end (bug #461)
9540
9541 2002-07-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9542
9543         * paragraph.C (startTeXParParams):
9544         (endTeXParParams): add \protect when necessary
9545
9546 2002-06-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9547
9548         * BufferView_pimpl.C (workAreaExpose): remove warning
9549
9550 2002-06-27  Angus Leeming  <leeming@lyx.org>
9551
9552         * Makefile.am: add lyxlayout_ptr_fwd.h.
9553
9554 2002-06-26  André Pönitz <poenitz@gmx.net>
9555
9556         * lyxrc.[Ch]: introduce \preview, revive half-dead \show_banner
9557
9558 2002-06-25  Angus Leeming  <leeming@lyx.org>
9559
9560         * lyxfunc.C (dispatch): Comment out the call to
9561         grfx::GCache::changeDisplay. The method no longer exists now that the
9562         pixmap generation part of the graphics loader has been moved into
9563         InsetGraphics.
9564
9565 2002-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9566
9567         * text2.C: layout as layout
9568
9569         * text.C: layout as layout
9570
9571         * tabular.C (OldFormatRead): layout as layout
9572
9573         * paragraph_pimpl.C (TeXDeeper): layout as layout
9574         (realizeFont): layout as layout
9575
9576         * paragraph.C (writeFile): layout as layout
9577         (validate): layout as layout
9578         (getFont): layout as layout
9579         (getLabelFont): layout as layout
9580         (getLayoutFont): layout as layout
9581         (breakParagraph): layout as layout
9582         (stripLeadingSpaces): layout as layout
9583         (getEndLabel): layout as layout
9584         (getMaxDepthAfter): layout as layout
9585         (applyLayout): layout as layout
9586         (TeXOnePar): layout as layout
9587         (simpleTeXOnePar): layout as layout
9588         (TeXEnvironment): layout as layout
9589         (layout): layout as layout
9590         (layout): layout as layout
9591
9592         * lyxtextclass.C (compare_name): new functor to work with
9593         shared_ptr, layout as layout
9594         (Read): layout as layout
9595         (hasLayout): layout as layout
9596         (operator): layout as layout
9597         (delete_layout): layout as layout
9598         (defaultLayout): layout as layout
9599
9600         * lyxlayout_ptr_fwd.h: new file
9601
9602         * lyxlayout.C (Read): layout as layout
9603
9604         * lyx_cb.C (MenuInsertLabel): layout as layout
9605
9606         * bufferlist.C (newFile): layout as layout
9607
9608         * buffer.C (readLyXformat2): layout as layout
9609         (parseSingleLyXformat2Token): layout as layout
9610         (insertStringAsLines): layout as layout
9611         (asciiParagraph): layout as layout
9612         (latexParagraphs): layout as layout
9613         (makeLinuxDocFile): layout as layout
9614         (simpleLinuxDocOnePar): layout as layout
9615         (makeDocBookFile): layout as layout
9616         (simpleDocBookOnePar): layout as layout
9617         (getLists): layout as layout
9618
9619         * LaTeXFeatures.C (getTClassPreamble): layout as layout
9620
9621         * CutAndPaste.C (cutSelection): layout as layout
9622         (pasteSelection): layout as layout
9623         (SwitchLayoutsBetweenClasses): layout as layout
9624
9625         * BufferView_pimpl.C (Dispatch): layout as layout
9626         (smartQuote): layout as layout
9627
9628         * BufferView2.C (unlockInset): layout as layout
9629
9630 2002-06-24  André Pönitz <poenitz@gmx.net>
9631
9632         * lyxfunc.C: fix #487
9633
9634 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
9635
9636         * lyxrc.h:
9637         * lyxrc.C:
9638         * lyxfunc.C: remove display_shortcuts, show_banner
9639
9640 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
9641
9642         * Buffer_pimpl.C: oops, update on resize
9643
9644 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
9645
9646         * buffer.C:
9647         * converter.C:
9648         * exporter.C:
9649         * lyxfunc.C:
9650         * BufferView.h:
9651         * BufferView.C: use repaint()
9652
9653         * BufferView_pimpl.h:
9654         * BufferView_pimpl.C: s/updateScreen()/repaint()/
9655           as it's a clearer description. Remove superfluous
9656           redraws.
9657
9658 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
9659
9660         * text.C: fix bug 488. Not ideal, but getting
9661           getWord() to work properly for the insets that
9662           matter is more difficult ...
9663
9664 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
9665
9666         * BufferView_pimpl.C:
9667         * LyXAction.C:
9668         * commandtags.h:
9669         * lyxfunc.C: remove the six million index lyxfuncs to just
9670           one, and DTRT (bug 458)
9671
9672 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
9673
9674         * BufferView.h:
9675         * BufferView.C:
9676         * BufferView_pimpl.h:
9677         * BufferView_pimpl.C: clean up resize() stuff,
9678           and unnecessary updateScreen()s
9679
9680 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
9681
9682         * BufferView.h:
9683         * BufferView.C:
9684         * BufferView_pimpl.h:
9685         * BufferView_pimpl.C:
9686         * lyxfind.h:
9687         * lyxfind.C:
9688         * minibuffer.C: remove focus management of workarea,
9689           not needed. Use screen's greyOut()
9690
9691 2002-06-17  Herbert Voss  <voss@lyx.org>
9692
9693         * converter.C: (convert) do not post a message, when converting
9694         fails, let the calling function decide what to do in this case
9695
9696 2002-06-18  John Levon  <moz@compsoc.man.ac.uk>
9697
9698         * lyxfunc.C: tidy up a little
9699
9700 2002-06-16    <alstrup@diku.dk>
9701
9702         * BufferView_pimpl.C (Pimpl): Use WorkAreaFactory.
9703         Got rid of FORMS_H_LOCATION include. Now we are
9704         GUII.
9705
9706 2002-06-15  LyX Development team  <lyx@rilke>
9707
9708         * buffer.[Ch] (sgmlOpenTag):
9709         (sgmlCloseTag): Added support for avoiding pernicious mixed
9710         content. Return number of lines written.
9711
9712         (makeLinuxDocFile):
9713         (makeDocBookFile): Fixed calls to sgml*Tag.
9714         Simple white space clean.
9715
9716         (simpleDocBookOnePar): Simple white space clean.
9717
9718         * tabular.[Ch] (docBook): Renamed to docbook and got another
9719         argument to related with the pernicious mixed content.
9720
9721         (docbookRow): Fixed calls for docbook inset method.
9722
9723 2002-06-15  Lyx Development team  <larsbj@birdstep.com>
9724
9725         * lyxfunc.[Ch]: Use LyXKeySym instead of KeySym,
9726         so it's X11 independent.
9727
9728         * kb*.[Ch]: ditto.
9729
9730         * BufferView_pimpl.[Ch] (workAreaKeyPress): ditto.
9731
9732 2002-06-15  Lyx Development team  <lyx@electronia>
9733
9734         * intl.h: Renamed getTrans to getTransManager.
9735
9736 2002-06-14  Angus Leeming  <leeming@lyx.org>
9737
9738         * Makefile.am: nuke forgotten stl_string_fwd.h.
9739
9740 2002-06-12  Angus Leeming  <leeming@lyx.org>
9741
9742         * stl_string_fwd.h: unused and non-compliant anyway. Nuked.
9743
9744 2002-06-13  Angus Leeming  <leeming@lyx.org>
9745
9746         * LaTeX.C:
9747         * vspace.C: wrap using std::sscanf inside a CXX_GLOBAL_CSTD block.
9748
9749 2002-06-12  Andrew Zabolotny  <zap@cobra.ru>
9750
9751         * kbmap.C (getiso): add support for cyrillic and greek
9752
9753 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9754
9755         * BufferView.h:
9756         * BufferView.C:
9757         * BufferView_pimpl.h:
9758         * BufferView_pimpl.C: move bogus scrolling logic
9759           to xforms
9760
9761 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9762
9763         * lyxfunc.C:
9764         * BufferView_pimpl.C: view->resize() change
9765
9766 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9767
9768         * BufferView_pimpl.C: topCursorVisible
9769           prototype change
9770
9771 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9772
9773         * Makefile.am:
9774         * lyx_gui.h:
9775         * lyx_gui.C: move to frontends/
9776
9777         * main.C:
9778         * lyx_main.h:
9779         * lyx_main.C: changes from above
9780
9781 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9782
9783         * intl.C:
9784         * intl.h:
9785         * kbmap.C:
9786         * kbsequence.C:
9787         * lyx_cb.C:
9788         * lyx_main.C: minor tidy
9789
9790 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9791
9792         * BufferView_pimpl.h:
9793         * BufferView_pimpl.C:
9794         * BufferView.h:
9795         * BufferView.C: make painter() const,
9796           remove dead code
9797
9798         * BufferView2.C: use screen() accessor
9799
9800         * lyx_main.h:
9801         * lyx_main.C: some minor cleanup
9802
9803 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9804
9805         * BufferView_pimpl.h:
9806         * BufferView_pimpl.C: remove enter/leaveView,
9807           use workHeight()
9808
9809 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9810
9811         * BufferView.h:
9812         * BufferView.C:
9813         * BufferView2.C:
9814         * BufferView_pimpl.h:
9815         * BufferView_pimpl.C: only construct screen once,
9816           rename
9817
9818         * lyxrc.C: remove pointless comment
9819
9820 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
9821
9822         * BufferView.h:
9823         * BufferView.C: remove active() and belowMouse()
9824
9825         * BufferView_pimpl.h:
9826         * BufferView_pimpl.C: use workarea() not workarea_,
9827           and make it use a scoped_ptr instead
9828
9829 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
9830
9831         * lyx_gui.C: add debug message on BadWindow
9832
9833 2002-06-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9834
9835         * sp_spell.C: fdopen is not part of the C++ standard.
9836
9837         * paragraph.C (InsetIterator): use >= instead of ==
9838
9839 2002-06-07  Angus Leeming  <leeming@lyx.org>
9840
9841         Fixes needed to compile with Compaq cxx 6.5.
9842         * BufferView_pimpl.C:
9843         * DepTable.C:
9844         * buffer.C:
9845         * converter.C:
9846         * encoding.C:
9847         * lyx_gui.C:
9848         * lyx_main.C:
9849         * lyxtextclasslist.C:
9850         * minibuffer.C:
9851         * sp_spell.C:
9852         * tabular_funcs.C:
9853         * vc-backend.C:
9854         all c-library variables have been moved into namespace std. Wrap
9855         using std::xyz declarations inside a #ifndef CXX_GLOBAL_CSTD block.
9856
9857         * lyxlength.C:
9858         * tabular-old.C:
9859         * tabular.C:
9860         Add a using std::abs declaration.
9861
9862         * kbmap.h (modifier_pair):
9863         * paragraph.h (InsetTable, InsetList):
9864         * lyxfont.h (FontBits):
9865         type definition made public.
9866
9867         * bufferlist.C (emergencyWriteAll): the compiler complains that
9868         there is more than one possible lyx::class_fun template to choose from.
9869         I re-named the void specialisation as lyx::void_class_fun.
9870
9871         * lyxfont.C (FontBits' operator==, operator!=): taken out of class.
9872
9873         * tabular_funcs.C: lstrings.h must come before tabular_funcs.h or
9874         the compiler is is unable to find tostr in write_attribute.
9875
9876 2002-06-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9877
9878         * buffer.C (sgmlError): hide #warning
9879
9880 2002-06-05  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9881
9882         * xtl/*: get rid of xtl, which is not in use anyway
9883
9884         * LyXAction.C (init):
9885         * commandtags.h: remove BUFFER_PRINT and BUFFER_PARAMS_GET, which
9886         were unimplemented xtl experimentation
9887
9888 2002-06-04  André Pönitz <poenitz@gmx.net>
9889
9890         * lyxfunc.C: disable array operation on simple formulae
9891
9892 2002-06-03  John Levon  <moz@compsoc.man.ac.uk>
9893
9894         * converter.C: constify a bit
9895
9896 2002-06-02  John Levon  <moz@compsoc.man.ac.uk>
9897
9898         * lyx_gui.C: check xforms version correctly
9899
9900 2002-04-30  Herbert Voss  <voss@lyx.org>
9901
9902         * buffer.C (parseSingleLyXformat2Token): fix bug with ignored
9903         "keep" option
9904
9905 2002-05-31  John Levon  <moz@compsoc.man.ac.uk>
9906
9907         * lyxvc.C: fix bug 416 (make sure buffer is saved before
9908           attempt to register it with a VCS)
9909
9910 2002-05-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9911
9912         * lyx_main.C (init): honor variables LYX_DIR_13x and
9913         LYX_USERDIR_13x
9914
9915 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
9916
9917         * buffer.h:
9918         * buffer.C:
9919         * lyx_main.C: fix a crash on bad command line,
9920           and give a useful exit status on error
9921
9922         * lyxfunc.C (doImport): allow -i lyx to work
9923
9924 2002-03-30  André Pönitz <poenitz@gmx.net>
9925
9926         * lyxfunc.C: mathed font changes
9927
9928 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
9929
9930         * LaTeX.C:
9931         * importer.h:
9932         * importer.C:
9933         * lyx_sty.h:
9934         * lyx_sty.C:
9935         * lyxlex.C:
9936         * lyxrow.h:
9937         * lyxtext.h:
9938         * paragraph.h:
9939         * paragraph.C:
9940         * texrow.h:
9941         * texrow.C:
9942         * text.C:
9943         * trans_mgr.h: srcdocs, and some minor cleanups
9944
9945 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9946
9947         * paragraph_pimpl.C (isTextAt): rewrite to be much faster (do not
9948         call getFont all the time)
9949
9950 2002-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9951
9952         * switch from SigC signals to boost::signals
9953
9954 2002-05-29  André Pönitz <poenitz@gmx.net>
9955
9956         * paragraph_pimpl.C (getChar): don't call size() too often...
9957
9958 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9959
9960         * paragraph_pimpl.C (insertChar): do not try to update tables when
9961         appending (pos == size())
9962
9963         * buffer.C (parseSingleLyXformat2Token): reorder a bit the tests
9964         in order to reduce drastically the number of comparisons needed to
9965         parse a large document
9966
9967 2002-05-29  André Pönitz <poenitz@gmx.net>
9968
9969         * text.C:
9970         * text2.C:
9971         * lyxtextclass.C:
9972         * sp_pspell.h:
9973         * textclasslist.[Ch]:
9974         * sp_ispell.h: whitespace change
9975
9976 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9977
9978         * lyxserver.C (callback): tentative fix of lyxserver. Does not use
9979         lyxaction directly now.
9980
9981 2002-05-27  John Levon  <moz@compsoc.man.ac.uk>
9982
9983         * trans.C:
9984         * lyxfont.C:
9985         * lyxvc.C: remove unused headers
9986
9987 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
9988
9989         * Makefile.am:
9990         * buffer.h:
9991         * undostack.h:
9992         * undostack.C:
9993         * undo_funcs.h:
9994         * undo_funcs.C: some cleanups. Use shared_ptr
9995           and a template for the undo stacks.
9996
9997 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
9998
9999         * BufferView_pimpl.h:
10000         * BufferView_pimpl.C:
10001         * kbmap.h:
10002         * kbmap.C:
10003         * kbsequence.h:
10004         * kbsequence.C:
10005         * lyxfunc.h:
10006         * lyxfunc.C:
10007         * text2.C: use key_state/mouse_state
10008
10009 2002-05-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10010
10011         * vc-backend.C (scanMaster): use boost regex and get rid of LRegex
10012         and LSubstring
10013
10014         * chset.C: change include order
10015         (loadFile): use boost regex and get rid of LRegex and LSubstring
10016
10017         * Makefile.am (BOOST_LIBS): new variable
10018         (lyx_LDADD): use it
10019
10020         * LaTeX.C: change include order.
10021         (scanAuxFile): use boost regex and get rid of LRegex and
10022         LSubstring
10023         (deplog): ditto
10024
10025 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
10026
10027         * ColorHandler.h:
10028         * ColorHandler.C:
10029         * FontInfo.h:
10030         * FontInfo.C: moved to frontends/xforms/
10031
10032         * FontLoader.h:
10033         * FontLoader.C: moved into frontends for GUIIzation
10034
10035         * Makefile.am:
10036         * lyx_gui.C:
10037         * lyxfont.C:
10038         * lyxfunc.C: changes from above
10039
10040 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
10041
10042         * LColor.C: remove spurious X include
10043
10044         * BufferView_pimpl.C:
10045         * Makefile.am:
10046         * font.h:
10047         * font.C:
10048         * text.C:
10049         * text2.C: move font metrics to frontends/
10050
10051 2002-05-24  Juergen Vigna  <jug@sad.it>
10052
10053         * undo_funcs.C (textHandleUndo): fix the cursor selection after
10054         setting the undo_cursor.
10055
10056         * ParagraphParameters.h: include local includes first.
10057
10058 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
10059
10060         * BufferView_pimpl.C:
10061         * BufferView_pimpl.h:
10062         * Makefile.am:
10063         * WorkArea.h:
10064         * WorkArea.C:
10065         * screen.C: move WorkArea into frontends/
10066
10067         * lyxscreen.h:
10068         * screen.C:
10069         * text.C:
10070         * BufferView.C:
10071         * BufferView2.C: move LyXScreen into frontends/
10072
10073         * lyxlookup.h:
10074         * lyxlookup.C:
10075         * lyx_gui.C: move lyxlookup into frontends/xforms/
10076
10077 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
10078
10079         * BufferView2.C:
10080         * BufferView_pimpl.C:
10081         * FontLoader.C:
10082         * LyXView.h:
10083         * LyXView.C:
10084         * Makefile.am:
10085         * WorkArea.C:
10086         * XFormsView.h:
10087         * XFormsView.C:
10088         * buffer.C:
10089         * bufferlist.C:
10090         * bufferview_funcs.C:
10091         * converter.C:
10092         * importer.C:
10093         * lyx_cb.C:
10094         * lyx_gui.C:
10095         * lyx_main.C:
10096         * lyx_find.C:
10097         * lyxfunc.C:
10098         * lyxvc.C:
10099         * minibuffer.C:
10100         * text.C:
10101         * text2.C:
10102         * trans.C:
10103         * vc-backend.C: move LyX/XFormsView into frontends/
10104
10105 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
10106
10107         * Makefile.am:
10108         * PainterBase.C:
10109         * PainterBase.h:
10110         * Painter.C:
10111         * Painter.h:
10112         * WorkArea.C:
10113         * WorkArea.h:
10114         * screen.C:
10115         * tabular.C:
10116         * text.C:
10117         * text2.C: move Painter to frontends/
10118
10119 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10120
10121         * buffer.C: comment out some some code that depend upon lyx_format
10122         < 220
10123
10124         * paragraph.h (NO_PEXTRA_REALLY): turn off all pextra
10125         * ParagraphParameters.h (NO_PEXTRA_REALLY): ditto
10126
10127         * buffer.h (NO_COMPABILITY): turn off compability
10128
10129         * ColorHandler.C: include scoped_array.hpp
10130
10131         * font.C: Use more specific smart_ptr header.
10132         * Painter.C: ditto
10133         * gettext.C: ditto
10134         * ShareContainer.h: ditto
10135         * lyx_main.h: ditto
10136         * kbmap.h: ditto
10137         * FontInfo.h: ditto
10138         * BufferView_pimpl.h: ditto
10139         * ColorHandler.h: ditto
10140
10141         * kbmap.C (defkey): change call to shared_ptr::reset
10142
10143 2002-05-21  Juergen Vigna  <jug@sad.it>
10144
10145         * buffer.C (insertErtContents): fix to insert ert asis if it is
10146         non empty. Skip it completely if it contains only whitespaces.
10147
10148 2002-05-15  John Levon  <moz@compsoc.man.ac.uk>
10149
10150         * BufferView_pimpl.C:
10151         * BufferView2.C: clear selection on paste (bug 393)
10152
10153 2002-05-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10154
10155         * DepTable.C: include ctime
10156
10157 2002-05-11  Dekel Tsur  <dekelts@tau.ac.il>
10158
10159         * buffer.C (latexParagraphs): Add new argument (moving_arg).
10160
10161 2002-05-14  Juergen Vigna  <jug@sad.it>
10162
10163         * text.C (breakParagraph): fixed function to honor the keepempty
10164         layout in the right maner and also to permit the right breaking
10165         algorithm on empty or non empyt keepempty paragraphs.
10166
10167         * paragraph.C (breakParagraph): we have to check also if the par
10168         is really empty (!size()) for isempty otherwise we do the wrong
10169         paragraph break.
10170
10171 2002-05-10  Juergen Vigna  <jug@sad.it>
10172
10173         * buffer.[Ch] : The following are only changes to the ert
10174         compatibility read reading old LaTeX layout and font stuff and
10175         convert it to ERTInsets.
10176
10177         * buffer.h: added isErtInset().
10178
10179         * buffer.C (struct ErtComp): add a fromlayout bool to check
10180         if we're inside a LaTeX layout.
10181         (isErtInset): new helper function.
10182         (insertErtContents): look for other ert insets before this one
10183         and insert the contents there, so that we don't have subsequent
10184         ERT insets with nothing between them. This way we create only one
10185         inset with multiple paragraphs. Also check if we don't insert only
10186         spaces ' ' as they are ignored anyway afterwards in the .tex file
10187         so if we have only spaces we will ignore this latex part in the
10188         new file.
10189         (parseSingleLyXformat2Token \\layout): better compatibility when
10190         reading layout-latex stuff.
10191         (parseSingleLyXformat2Token \\lang): put the insetERT in the right
10192         language tag.
10193         (parseSingleLyXformat2Token \\begin_inset): don't reset ert_comp
10194         stuff after reading the inset only get the information back from
10195         the stack.
10196
10197 2002-05-10  Dekel Tsur  <dekelts@tau.ac.il>
10198
10199         * buffer.C (makeLaTeXFile): Put language options after loading babel.
10200
10201         * LaTeXFeatures.C (getBabelOptions): New method.
10202
10203 2002-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10204
10205         * BufferView_pimpl.C (Dispatch): work around missing argument for
10206         'layout'
10207
10208 2002-05-08  Juergen Vigna  <jug@sad.it>
10209
10210         * text.C (leftMargin): handle paragraph leftindent.
10211
10212         * paragraph.C (writeFile): write the new \\leftindent tag.
10213         (validate): handle leftindent code.
10214         (TeXEnvironment): handle paragraphleftindent code again.
10215
10216         * lyx_sty.h: changed ParagraphIndent to ParagraphLeftIndent.
10217
10218         * buffer.C (parseSingleLyXformat2Token): added compatibility code
10219         for paragrap_extra indent code and new token \\leftindent.
10220         (latexParagraphs): handle the leftindent as environment.
10221
10222         * ParameterStruct.h: added leftindent support.
10223
10224         * ParagraphParameters.C (leftIndent): added support functions for
10225         the paragraph left indent.
10226
10227         * LaTeXFeatures.C: change paragraphindent to paragraphleftindent seems
10228         more appropriate.
10229
10230 2002-05-05  Dekel Tsur  <dekelts@tau.ac.il>
10231
10232         * paragraph.C (isRightToLeftPar): Return false for a paragraph
10233         inside insetERT.
10234
10235         * text.C (computeBidiTables): No bidi in insetERT.
10236
10237         * BufferView_pimpl.C (setState): Fix keymap handling inside insetERT
10238         in RTL documents.
10239
10240 2002-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10241
10242         * version.C.in: pre 5
10243
10244 2002-05-02  José Matos  <jamatos@fep.up.pt>
10245         * buffer.C (makeDocBookFile): white space changes, add newline to
10246         command styles.
10247         (simpleDocBookOnePar): protect <emphasis> inside a CDATA section.
10248
10249         * tabular.C (docBook): fix typo.
10250
10251 2002-05-03  Juergen Vigna  <jug@sad.it>
10252
10253         * screen.C (drawFromTo): recalculate the rowpointer if we had a
10254         change in LyXText as we can not be sure it was not freed.
10255         (drawOneRow): remove unused code.
10256
10257         * text.C (drawInset): redo the calculation of the need_break_row as
10258         it could have a row which was already freed.
10259         (draw): look at the return value of drawInset and return false if
10260         it also returned false.
10261         (paintRowText): look at the return value of draw and return false if
10262         it also returned false.
10263
10264         * lyxtext.h: added bool return type to drawInset() and draw() so that
10265         if we have a change in the row so that the rowbreak has to be redone
10266         we abort drawing as it will be called again.
10267
10268 2002-05-02  Juergen Vigna  <jug@sad.it>
10269
10270         * BufferView_pimpl.C (moveCursorUpdate): make repaint if we had
10271         a change in the maintext also if we're inside an inset.
10272         (Dispatch): set the cursor again after a break line and after the
10273         screen has been updated as it could be we're in a different row.
10274
10275         * text2.C (fixCursorAfterDelete): check to make sure we don't request
10276         to set the cursor behind the pargraph with > size().
10277         (setCursor): check also for the same paragraph when checking where
10278         to put the cursor if we have a NFR inset.
10279
10280         * buffer.C (parseSingleLyXformat2Token): move the compatibility
10281         parts of layout read further up as it still was in the wrong
10282         position.
10283
10284 2002-05-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10285
10286         * screen.C (drawFromTo): change sine fullRebreak always return
10287         true.
10288
10289         * buffer.C (parseSingleLyXformat2Token): reindent some
10290
10291         * BufferView_pimpl.C (update): change since fullRebreak always
10292         return true.
10293         (Dispatch): git rid of the last hardcoded "Standard"s.
10294
10295 2002-05-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10296
10297         * text2.[Ch] (fullRebreak): make it return void now that we always
10298         returned true.
10299
10300 2002-04-30  Juergen Vigna  <jug@sad.it>
10301
10302         * buffer.C (parseSingleLyXformat2Token): reset the font before the
10303         ert compatibility check for "latex" layout.
10304
10305 2002-04-29  Dekel Tsur  <dekelts@tau.ac.il>
10306
10307         * buffer.C (parseSingleLyXformat2Token): Fix reading of old format
10308         minipages: use col% instead of p%, and also use the current font.
10309         (makeLaTeXFile): Fix use babel condition.
10310         (parseSingleLyXformat2Token): Correct font when reading old floats.
10311
10312 2002-04-28  Dekel Tsur  <dekelts@tau.ac.il>
10313
10314         * BufferView_pimpl.C (Dispatch): Check that float type exists when
10315         inserting list of floats.
10316
10317 2002-04-25  Herbert Voss  <voss@lyx.org>
10318
10319         * MenuBackend.C (expand): don't add the graphics extensions to the
10320         export menu
10321
10322 2002-04-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10323
10324         * CutAndPaste.C (SwitchLayoutsBetweenClasses): when converting a
10325         non-existing layout, do not complain if it was the default layout
10326         of the original class (bug #342)
10327
10328 2002-04-24  Juergen Vigna  <jug@sad.it>
10329
10330         * BufferView_pimpl.C (workAreaButtonPress): fix handling of mouse-wheel
10331         (workAreaButtonRelease): don't do anything if it was a mouse-wheel
10332
10333 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
10334
10335         * buffer.C (getBibkeyList): If using \bibliography, return the
10336         option field with the reference itself. Enables us to provide natbib
10337         support when using \bibliography.
10338
10339 2002-04-23  Mike Ressler  <mike.ressler@alum.mit.edu>
10340
10341         * lyxtextclass.[Ch]: add layout keyword ProvidesNatbib.
10342
10343         * LaTeXFeatures.C: do not add \usepackage{natbib} to tex file if
10344         natbib is provided by the LaTeX class.
10345
10346 2002-04-23  Juergen Vigna  <jug@sad.it>
10347
10348         * BufferView_pimpl.[Ch]: remove use of wrong and unneeded insetSleep/
10349         Wakeup functions.
10350
10351         * BufferView.[Ch]: remove not needed insetSleep/Wakeup functions.
10352
10353 2002-04-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10354
10355         * lyxfunc.C (getStatus): LFUN_PROTECTED_SPACE is allowed in maths
10356
10357         * paragraph_pimpl.C (simpleTeXSpecialChars): remove bogus
10358         ensuremath around textordmasculine, textordfeminine and
10359         textdegree.
10360
10361 2002-04-19  Juergen Vigna  <jug@sad.it>
10362
10363         * BufferView_pimpl.C (resizeCurrentBuffer): resize the insets before
10364         reinitializing the buffer otherwise row-dimensions may be wrong.
10365         (update): reset also the selection cursors if they do exits otherwise
10366         their x/y positions may be wrong.
10367
10368         * text2.C (cursorDown): don't enter the inset if we came from a row
10369         above and are one row over the inset.
10370
10371         * lyxfunc.C (dispatch): update paragraph layout after LFUN_ESCAPE when
10372         really leaving an inset.
10373
10374 2002-04-18  Juergen Vigna  <jug@sad.it>
10375
10376         * BufferView_pimpl.C (Dispatch): fixed to change layout also if one
10377         of the selected paragraph does not have the selected layout also if
10378         the last one had!
10379
10380         * text2.C (setLayout): fixed bug which did not change last selected
10381         paragraph.
10382
10383         * tabular.C (OldFormatRead): check also for \\end_inset as Lars
10384         changed the read and substituted \\end_float with \\end_inset!
10385
10386         * BufferView_pimpl.C (cursorPrevious):
10387         (cursorNext): fixed to make it work with rows heigher than the work
10388         area without moving the cursor only the draw of the row.
10389         (workAreaMotionNotify): fix jumping over high rows.
10390
10391 2002-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10392
10393         * lyxtextclass.C (Read): fix bit adding, bug discovered by Mike
10394         Ressler.
10395
10396 2002-04-16  Juergen Vigna  <jug@sad.it>
10397
10398         * text2.C (setCursor): set also the irow().
10399         (setCursorFromCoordinates): fixed to set the (i) cursor values right!
10400         (cursorUp):
10401         (cursorDown): support for locking an inset if the x_fix value goes
10402         inside it. That way I can transverse insets too with cursor up/down.
10403
10404         * lyxrow.h: added irow helper function same as other (i) functions.
10405
10406         * BufferView_pimpl.C (cursorPrevious):
10407         (cursorNext): fixed for insets!
10408
10409 2002-04-15  Juergen Vigna  <jug@sad.it>
10410
10411         * BufferView_pimpl.C (insetDimensions): use ix/iy values for inset
10412         position otherwise it is wrong in some cases.
10413
10414         * lyxfunc.C (dispatch): fix FINISHED UP/DOWN to handle x position
10415         inside the inset before the call.
10416
10417 2002-04-16  Angus Leeming  <a.leeming@ic.ac.uk>
10418
10419         * buffer.[Ch] (getBibkeyList): make it const.
10420
10421 2002-04-12  Juergen Vigna  <jug@sad.it>
10422
10423         * BufferView_pimpl.C (workAreaMotionNotify): use new ix() cursor pos.
10424
10425         * text2.C (getCursorX): new helper function
10426         (setCursor): compute also ix_
10427         (setCursorFromCoordinates): set also ix.
10428
10429         * lyxcursor.h: added ix_ and helper functions.
10430
10431         * BufferView_pimpl.C (workAreaMotionNotify): forgot to use iy().
10432
10433         * buffer.C (insertStringAsLines): dont break paragraph if the this
10434         paragraph is inside an inset which does not permit it!
10435
10436         * text.C (breakParagraph): honor keepempty flag and break the paragraph
10437         also with no chars on this paragraph.
10438         (paintRowText): only paint stuff if it's inside the workarea!
10439
10440         * paragraph.C (breakParagraph): honor keepempty flag and break the
10441         paragraph always below not above.
10442
10443         * BufferView2.C (unlockInset): update the paragraph layout on inset
10444         unlock as we changed paragraph in such a case.
10445
10446         * lyxfind.C (LyXFind): clear the former selection if not found!
10447
10448         * text2.C (insertInset): freeze Undo after setUndo so that it is not
10449         again called in insertChar().
10450
10451         * text.C (leftMargin): return LYX_PAPER_MARGIN if this row contains
10452         an inset which uses the whole row!
10453         (rightMargin): ditto.
10454         (insertChar): force a rebreak if we inserted an inset!
10455
10456 2002-03-28  Herbert Voss  <voss@lyx.org>
10457
10458         * lyxlength.[Ch]: add inBP() to get the right PS-point
10459         units (BigPoint). With inPixels we have rounding errors
10460
10461 2002-04-11  Juergen Vigna  <jug@sad.it>
10462
10463         * text2.C (setCursorFromCoordinates): set iy to the right value.
10464         (setCursor): add check if row->previous exists!
10465
10466         * buffer.C (parseSingleLyXformat2Token): reset font after read of
10467         an old float_type as this was the case in the old code!
10468
10469         * paragraph.C (simpleTeXOnePar): fix closing of foreignlanguage tags.
10470
10471         * BufferView2.C (showLockedInsetCursor): use iy
10472         (fitLockedInsetCursor): ditto
10473
10474         * BufferView_pimpl.C (checkInset): use LyXCursor::iy for baseline of
10475         locked insets as there we have the right value now.
10476
10477         * lyxcursor.C: added iy_ variable and iy functions to set to the
10478         baseline of cursor-y of the locked inset.
10479
10480         * text2.C (setCursorFromCoordinates): set LyXCursor::iy.
10481         (setCursor): fixed for insets which need a full row.
10482
10483         * text.C (rowLastPrintable): don't ignore the last space when before
10484         an inset which needs a full row.
10485         (numberOfSeparators): use rowLastPrintable and <= last to honor a space
10486         as last character of a row when before a inset which needs a full row.
10487
10488 2002-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10489
10490         * version.C.in: update date
10491
10492         * text2.C (fullRebreak): try to always return true and see what
10493         happens...
10494
10495 2002-04-04  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10496
10497         * MenuBackend.C (expand): use Floating::listName
10498
10499         * FloatList.C (FloatList): add listName argument to the built-in
10500         floats
10501
10502         * Floating.[Ch]: add listName member, which is the 'List of XXX'
10503         text associated with the float.
10504
10505 2002-04-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10506
10507         * MenuBackend.C (expand): change label "Wide xxx" to "xxx (wide)".
10508
10509 2002-04-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10510
10511         * ShareContainer.h: add a couple of missing typenames.
10512
10513 2002-04-02  Angus Leeming  <a.leeming@ic.ac.uk>
10514
10515         * lyxrc.C (getDescription): use _() correctly rather than N_().
10516
10517 2002-03-28  Herbert Voss  <voss@lyx.org>
10518
10519         * lyxlength.C: compatibility stuff for < 1.1.6fix4 and
10520         "old" 1.2.0 files which use c%, l%, p% t% instead of text%, ...
10521
10522 2002-04-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10523
10524         * lyx_main.C (init): use environment variable LYX_DIR_12x instead
10525         of LYX_DIR_11x. Same for LYX_USERDIR_12x.
10526
10527 2002-03-29  Juergen Vigna  <jug@sad.it>
10528
10529         * lyxfunc.C (dispatch): add a missing fitCursor call.
10530
10531         * BufferView2.C (fitLockedInsetCursor): the inset needs to know if
10532         it was scrolled by a cursor move, so return the bool status.
10533
10534         * BufferView.C (fitCursor): return the bool flag also to the outside
10535         world as this is needed.
10536
10537         * screen.C (toggleToggle): don't subtract the offset if it's positive.
10538
10539         * BufferView_pimpl.C (workAreaButtonPress): just lock the inset don't
10540         call the edit() as it is not needed (and wrong) IMO.
10541         (workAreaButtonPress): set the screen_first variable before evt.
10542         unlock the inset as this may change screen_first and then we have
10543         a wrong y position for the click!
10544
10545 2002-03-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10546
10547         * MenuBackend.C (expand): another translation that I missed
10548
10549 2002-03-28  Juergen Vigna  <jug@sad.it>
10550
10551         * screen.C (toggleToggle): fix for insettexts y_offset on drawing.
10552
10553         * tabular.C (OldFormatRead): fix ert compatibility read inside cells.
10554
10555 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10556
10557         * lyxfunc.C (getStatus): return 'disabled' early for LFUN_NOACTION
10558
10559         * MenuBackend.C (expand): fix export/view/update when there is no
10560         document open.
10561
10562 2002-03-27  Herbert Voss  <voss@lyx.org>
10563
10564         * lengthcommon.C: change c%, l%, p% t% to col%, line%, page%
10565         and text%
10566
10567 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10568
10569         * bufferview_funcs.C (currentState): only show paragraph number
10570         for is DEVEL_VERSION is set.
10571
10572         * lyxfunc.C (dispatch): put warning in INFO channel
10573
10574         * MenuBackend.C (expand): translate the name of floats
10575
10576         * FloatList.C (FloatList): mark the float names for translation
10577
10578         * converter.C (convert): use LibScriptSearch
10579
10580 2002-03-26  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10581
10582         * MenuBackend.C (defaults): fix default menu (we might as well get
10583         rid of it...)
10584
10585 2002-03-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10586
10587         * lyxvc.C (registrer): register the file with CVS if it's in a CVS
10588         directory.
10589
10590 2002-03-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10591
10592         * lyxvc.C: reorder includes.
10593
10594 2002-03-25  John Levon  <moz@compsoc.man.ac.uk>
10595
10596         * BufferView_pimpl.C (updateScrollbar): update on buffer switch
10597           properly
10598
10599 2002-03-19  John Levon  <moz@compsoc.man.ac.uk>
10600
10601         * CutAndPaste.C: change layouts earlier on paste
10602           to avoid crashing when calling getFont()
10603
10604 2002-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
10605
10606         * PrinterParams.h: #include "lyxrc.h" and remove that bloody
10607         irritating #error.
10608
10609 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10610
10611         * WorkArea.C: remove 'Pending' debug message.
10612
10613         * most files: ws cleanup
10614
10615         * buffer.[Ch]: ws changes
10616
10617         * Makefile.am (LYX_CONV_LIBS): remove ld -r stuff.
10618
10619 2002-03-21  Juergen Vigna  <jug@sad.it>
10620
10621         * tabular.C (SetMultiColumn): collapse also the contents of the
10622         cells and set the last border right. Added a Buffer const * param.
10623
10624 2002-03-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10625
10626         * Makefile.am (LYX_CONV_LIBS): select libs depending on partial
10627         linking or not.
10628
10629 2002-03-19  Juergen Vigna  <jug@sad.it>
10630
10631         * text2.C (clearSelection): reset also xsel_cache.
10632
10633         * BufferView_pimpl.C (Dispatch): call WorkArea::haveSelection(false)
10634         where it needs to be called (John tells us to do so too :)
10635         (selectionLost): reset sel_cache.
10636
10637         * WorkArea.C (event_cb): leave ret to 0 (John tells us to do so :)
10638
10639 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10640
10641         * text2.C (setCursorIntern): put debuging code in INSETS channel
10642
10643 2002-03-19  André Pönitz <poenitz@gmx.net>
10644
10645         * lyxfunc.C: tiny whitespace change
10646
10647 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10648
10649         * ToolbarDefaults.C (init):
10650         * LyXAction.C (init):
10651         * commandtags.h:
10652         * BufferView_pimpl.C (Dispatch):
10653         * lyxfunc.C (dispatch): remove LFUN_DEPTH
10654
10655 2002-03-19  Allan Rae  <rae@lyx.org>
10656
10657         * exporter.C (Export): removeAutoInsets before doing anything else.
10658         While I've just introduced a dependency on BufferView this really is
10659         the best place to clean the buffer otherwise you need to cleanup in
10660         a dozen places before calling export or cleanup in a dozen functions
10661         that export calls.
10662
10663         * converter.C (runLaTeX):
10664         (scanLog): Better handling of removeAutoInsets and screen updates.
10665
10666         * lyxfunc.C (dispatch): small whitespace changes
10667
10668 2002-03-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10669
10670         * WorkArea.C (C_WorkAreaEvent): return a value.
10671         (event_cb): return 1 if we handled the event, 0 otherwise.
10672
10673         * lyx_gui.C (LyX_XErrHandler): don't abort on BadWindow
10674
10675 2002-03-18  Juergen Vigna  <jug@sad.it>
10676
10677         * tabular.C (LeftAlreadyDrawed): fixed for multicolumn borders.
10678         (GetAdditionalWidth): ditto.
10679         (RightLine): ditto.
10680         (LeftLine): ditto.
10681
10682         * BufferView2.C (copy): use getLyXText() so that we do it inside an
10683         inset if we're there actually (probably not used right now but this
10684         is the direction to go for unifying code).
10685         (paste): disable code to clear the selection.
10686
10687         * BufferView_pimpl.C (workAreaButtonPress): check also for a selection
10688         inside an InsetText and move the check further up as it is in the
10689         wrong place.
10690
10691         * text2.C (pasteSelection): set a selection over the pasted text.
10692
10693 2002-03-14  Kayvan A. Sylvan  <kayvan@sylvan.com>
10694
10695         * Makefile.am (lyx_DEPENDENCIES): Swap the order of libfrontend
10696         and libgraphics to build on Cygwin.
10697
10698 2002-03-15  Juergen Vigna  <jug@sad.it>
10699
10700         * CutAndPaste.C (SwitchLayoutsBetweenClasses): fix the wrong use of
10701         inserting an Inset into the paragraph. I know this is not the best
10702         fix but we already use current_view in CutAndPaste so we will remove
10703         all of it's using at the same time.
10704
10705         * buffer.C (sgmlError): deactivated function till it is rewritten in
10706         the right mode, now it can create problems.
10707
10708         * paragraph.C (isLineSeparator): check if getInset returns != 0,
10709         before accessing it.
10710
10711 2002-03-14  Juergen Vigna  <jug@sad.it>
10712
10713         * undo_funcs.C (textHandleUndo): do the right thing when updating
10714         the inset after the undo/redo.
10715
10716         * text2.C (setCursor): just some testcode for #44 not ready yet.
10717
10718         * undo_funcs.C (textHandleUndo): set the next() and previous()
10719         pointers of the paragraph to 0 before deleting otherwise we have
10720         problems with the Paragraph::[destructor].
10721
10722         * text.C (breakParagraph): IMO we should ALWAYS force a real undo
10723         on a paragraph insertion.
10724
10725 2002-03-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10726
10727         * buffer.C (asciiParagraph): use += operator for char append to
10728         string.
10729
10730         * paragraph.C (getFontSettings): compare >= not just >
10731         (highestFontInRange): ditto
10732         (setFont): ditto
10733
10734 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10735
10736         * paragraph.C: change several algorithm to be more appripriate for
10737         the problem domain. This is lookip in FontList and in the InsetList.
10738
10739 2002-03-13  André Pönitz <poenitz@gmx.net>
10740
10741         * commandtags.h:
10742         * LyXAction.C: remove unused LFUN_MATH_MACROARG
10743
10744 2002-03-06  John Levon  <moz@compsoc.man.ac.uk>
10745
10746         * commandtags.h:
10747         * LyXAction.C:
10748         * lyxfunc.C:
10749         * BufferView_pimpl.C: remove unused LFUN_CORE, LFUN_TEXT_INSET
10750
10751 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10752
10753         * Painter.C (display): anon helper function, adjust code for this
10754         change.
10755         (pixmap): remove function.
10756
10757         * Painter.h: remove private display variable.
10758
10759         * PainterBase.[Ch]: remove dummy[123] cruft, ws changes
10760
10761 2002-03-13  Angus Leeming  <a.leeming@ic.ac.uk>
10762
10763         * WorkArea.[Ch]: remove figinset_canvas cruft.
10764
10765 2002-03-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10766
10767         * lyxtextclass.C (operator): add one item cache optimization.
10768
10769         * bufferlist.h: doxy changes
10770
10771         * bufferlist.C: ws changes
10772
10773         * DepTable.[Ch] (ext_exist): place const in the right spot.
10774
10775         * BufferView_pimpl.C (resizeCurrentBuffer): further refine when to
10776         call resizeInsets.
10777         (workAreaExpose): call resizeInsets when the with BufferView changes.
10778         (Dispatch): adjust for protectedBlank removal
10779         (specialChar): call updateInset if the insert went ok.
10780
10781         * BufferView_pimpl.[Ch] (protectedBlank): remove func, use
10782         specialChar instead.
10783
10784         * BufferView2.C (ChangeInsets): remove warning add FIXME comment
10785
10786         * BufferView.h: doxy change
10787
10788         * Makefile.am (INCLUDES): remove @FRONTEND_INCLUDES@
10789
10790         * lyxtextclass.C (operator[]): remove non-const version
10791         (defaultLayout): remove non-const version
10792
10793 2002-03-12  Juergen Vigna  <jug@sad.it>
10794
10795         * BufferView_pimpl.C (resizeCurrentBuffer): only resize insets if we
10796         did resize the LyXText too.
10797
10798         * buffer.C (readLyXformat2): set layout information on newly allocated
10799         paragraphs.
10800
10801         * tabular.C (OldFormatRead): set layout information on the paragraph.
10802
10803 2002-03-12  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
10804
10805         * buffer.C (simpleDocBookOnePar): fix empty definition case for now.
10806
10807 2002-03-11  Juergen Vigna  <jug@sad.it>
10808
10809         * BufferView_pimpl.C (cursorPrevious): remove old cruft which is
10810         plainly wrong.
10811         (resizeCurrentBuffer): force also the insets to resize themselfes.
10812         (moveCursorUpdate): fixed up for InsetText.
10813
10814 2002-03-08  Angus Leeming  <a.leeming@ic.ac.uk>
10815
10816         * commandtags.h:
10817         * LyXAction.C: add LFUN_TOOLTIPS_TOGGLE, "toggle-tooltips"
10818         * lyxfunc.C (getStatus(LFUN_TOOLTIPS_TOGGLE)): set flag based on
10819         value of Dialogs::tooltipsEnabled().
10820         (dispatch(LFUN_TOOLTIPS_TOGGLE)): emit signal Dialogs::toggleTooltips.
10821
10822 2002-03-08  Juergen Vigna  <jug@sad.it>
10823
10824         * BufferView_pimpl.C (updateInset): update inset inside inset also
10825         if it isn't inside theLockingInset().
10826
10827 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10828
10829         * buffer.C (asciiParagraph): redo some of the word and line length
10830         handling.
10831         (getLists): look for Caption instead of caption.
10832
10833 2002-03-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10834
10835         * buffer.C (Buffer): initialize niceFile to true
10836         (makeLaTeXFile):
10837         (makeLinuxDocFile):
10838         (makeDocBookFile): make sure niceFile is true on exit
10839
10840 2002-03-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10841
10842         * buffer.C (makeLaTeXFile): escape ~ in \input@path
10843
10844 2002-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
10845
10846         * LyXSendto.C: remove.
10847         * LyXView.C (c-tor): clean-up Jürgen's #if 0 correctly.
10848         * lyx_gui.C: remove now-redundant comment.
10849         * ColorHandler.h: remove forward declaration of class WorkArea.
10850         * lyxfunc.C: remove #include "WorkArea.h".
10851
10852 2002-03-07  Juergen Vigna  <jug@sad.it>
10853
10854         * undo_funcs.C (textHandleUndo): fix problems when the paragraph
10855         got moved away with the DEPM and also set the inset_owner always
10856         right which before could have been omitted.
10857
10858 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10859
10860         * buffer.C (parseSingleLyXformat2Token): use default layout is the
10861         wanted layout is not found.
10862
10863 2002-03-07  Juergen Vigna  <jug@sad.it>
10864
10865         * CutAndPaste.C (cutSelection): another layout settings forgotten.
10866
10867 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10868
10869         * paragraph.C (breakParagraph): use default layout not layout of
10870         prev paragraph.
10871         (Paragraph): clear ParagraphParameters.
10872
10873 2002-03-06  Juergen Vigna  <jug@sad.it>
10874
10875         * buffer.C (parseSingleLyXformat2Token): changed "%" to "p%" as
10876         otherwise it would not be a valid lenght. Fixed a special case in
10877         the minipage compatibility read where we end the document with a
10878         minipage.
10879
10880         * text2.C (deleteEmptyParagraphMechanism): check if old_cursor.par()
10881         was set as it could be 0 for InsetTexts first entry.
10882
10883 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10884
10885         * paragraph.C (writeFile): if layout is empty write out
10886         defaultLayoutName().
10887
10888         * buffer.C (parseSingleLyXformat2Token): if we have a buggy .lyx
10889         file without named layout we set layout to defaultLayoutName().
10890
10891 2002-03-06  Juergen Vigna  <jug@sad.it>
10892
10893         * CutAndPaste.C (copySelection): set layout for new paragraph.
10894
10895         * text.C (prepareToPrint): leave ERT inset left aligned
10896         (leftMargin): don't indent paragraphs inside ERT insets
10897
10898 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10899
10900         * paragraph.C (breakParagraph): dont call clear do the work manually
10901
10902         * paragraph.[Ch] (clear): remove function
10903
10904 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10905
10906         * paragraph.C (Paragraph): dont call clear, the work has already
10907         been done.
10908
10909         * lyxtextclass.C (operator): assert if n is empty
10910
10911         * CutAndPaste.C (cutSelection): dont call Paragraph::clear, do the
10912         work manually instead.
10913
10914 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
10915
10916         * BufferView_pimpl.C: protect selectionLost against text == 0
10917
10918 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10919
10920         * text.C (breakParagraph): fix a setting layout to '0' problem.
10921
10922 2002-03-05  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
10923
10924         * buffer.C (makeLinuxDocFile, makeDocBookFile): take in account the
10925         final location of file, for the included files, and graphics.
10926
10927 2002-03-05  Juergen Vigna  <jug@sad.it>
10928
10929         * CutAndPaste.C (pasteSelection): fix the depth level on paste.
10930
10931 2002-03-04  Juergen Vigna  <jug@sad.it>
10932
10933         * lyx_cb.C (getContentsOfAsciiFile): new helper function.
10934
10935         * tabular.C (calculate_width_of_column_NMC): fixed to use also the
10936         last column of multicolumn cells.
10937         (SetWidthOfMulticolCell): recalculate NMC and real columns.
10938
10939 2002-03-04  Jose Abilio Oliveira Matos  <jamatos@novalis.fc.up.pt>
10940
10941         * exporter.C (Export): for linuxdoc and docbook the buffer is a nice
10942         file if it doesn't go to a temporary file.
10943
10944         * buffer.C (sgmlOpenTag):
10945         (sgmlCloseTag):  remove extra newline insertion.
10946
10947 2002-03-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10948
10949         * text.C (getRowNearY): comment out debug msg
10950
10951 2002-03-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10952
10953         * text2.C: first -> first_y
10954
10955         * text.C (getRowNearY): add some attemts at a possible
10956         optimization, not working.
10957
10958         * tabular.[Ch]: add BufferParams to several function so that newly
10959         created paragraph can be initialized to he default layotu for the
10960         buffers textclass.
10961
10962         * tabular-old.C (ReadOld): add buf->params to call of Init
10963
10964         * screen.C: rename text->first to text->first_y
10965
10966         * paragraph.C (breakParagraph): always set layout in the broken
10967         paragraph
10968
10969         * lyxtextclass.C (Read): remove lowercase
10970         (hasLayout): ditto
10971         (operator): ditto
10972         (delete_layout): ditto
10973
10974         * lyxtext.h: rename first -> first_y
10975
10976         * lyxlayout.C (Read): remove lowercase
10977         (name): ditto
10978         (setName): ditto
10979         (obsoleted_by): ditto
10980
10981         * bufferlist.C (newFile): set layout on first paragrpah of new buffers.
10982
10983         * buffer.C (insertErtContents): add params are to InsetERT
10984         (parseSingleLyXformat2Token): add code to check if a paragraphs
10985         layout really exist.
10986         (parseSingleLyXformat2Token): add params to several inset
10987         constructors
10988         (asciiParagraph): remove lowercase, do the layout comparisons with
10989         no_case
10990
10991         * BufferView_pimpl.C (cursorNext): first -> first_y
10992         (resizeCurrentBuffer): first -> first_y
10993         (updateScrollbar): first -> first_y
10994         (scrollCB): first -> first_y
10995         (workAreaMotionNotify): first -> first_y
10996         (workAreaButtonPress): first -> first_y
10997         (checkInsetHit): first -> first_y
10998         (cursorPrevious): first -> first_y
10999         (cursorNext): first -> first_y
11000         (Dispatch): add buffer_->params to severl inset contructors
11001
11002 2002-03-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11003
11004         * lyxlayout.C (Read): remove some debug info that I forgot.
11005
11006         * buffer.C (makeLaTeXFile): fix calling of LaTeXFeatures, and
11007         clean up the code slightly.
11008         (makeLinuxDocFile): ditto
11009         (makeDocBookFile): ditto
11010
11011         * text2.C: layout as string
11012
11013         * text.C: layout as string
11014
11015         * paragraph_pimpl.C: layout as string
11016
11017         * paragraph.[Ch]: layout as string
11018
11019         * lyxtextclasslist.[Ch]: layout as string
11020
11021         * lyxtextclass.[Ch]: layout as string
11022
11023         * lyxtext.h: layout as string
11024
11025         * lyxlayout.[Ch]: layout as string
11026
11027         * lyx_cb.C: layout as string
11028
11029         * bufferview_funcs.C: layout as string
11030
11031         * bufferparams.C: layout as string
11032
11033         * buffer.C: layout as string
11034
11035         * LyXView.[Ch]: layout as string
11036
11037         * LaTeXFeatures.[Ch]: layout as string
11038
11039         * CutAndPaste.C (SwitchLayoutsBetweenClasses): layout as string
11040
11041         * BufferView_pimpl.C: change current_layout to string, remove
11042         lyx::layout_type.
11043         (Dispatch):
11044         (smartQuote):
11045         (insertInset):
11046         (workAreaButtonRelease): layout as string
11047
11048         * BufferView2.C (unlockInset): adjust
11049
11050         * vspace.C (asLatexCommand): use an explict temp variable.
11051
11052 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
11053
11054         * Makefile.am: use FRONTEND_*
11055
11056 2002-03-01  Juergen Vigna  <jug@sad.it>
11057
11058         * tabular.C (SetWidthOfMulticolCell): changed to something better
11059         I hope but still work in progress.
11060         (recalculateMulticolumnsOfColumn): renamed function from
11061         recalculateMulticolCells as it is more appropriate now.
11062         (SetWidthOfCell): calculate multicols better.
11063
11064 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11065
11066         * minibuffer.C (MiniBuffer): reset timout to 6000, as it was before.
11067
11068         * lyxfunc.C (processKeySym): print sequence also if it is
11069         `deleted' (complete)
11070
11071         * kbsequence.C (print): print sequence even if it is deleted
11072         (complete would be a better word, actually).
11073
11074         * lyxfunc.C (dispatch): print complete options after a prefix key
11075
11076         * vspace.C (asLatexCommand): rewrite in a slightly different form.
11077
11078 2002-03-01  Martin Vermeer  <martin.vermeer@hut.fi>
11079
11080         * text2.C (setCharFont): eliminate setCharFont code duplication.
11081
11082 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11083
11084         * BufferView_pimpl.C (Dispatch): remove bogus handling of
11085         LFUN_TABULAR_FEATURE (bug #177)
11086
11087 2002-02-29 ;-)  Angus Leeming  <a.leeming@ic.ac.uk>
11088
11089         * Makefile.am: remove figure.h
11090
11091 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
11092
11093         * Bufferview_pimpl.C:
11094         * CutAndPasteC:
11095         * LaTeX.C:
11096         * LyXSendto.C:
11097         * buffer.C:
11098         * bufferlist.C:
11099         * converter.C:
11100         * language.C:
11101         * lyxfunc.C:
11102         * lyxvc.C:
11103         * paragraph.C:
11104         * text.C:
11105         * text2.C: remove #include "lyx_gui_misc.h".
11106
11107         * LaTeX.C: added #include <cstdio>
11108
11109 2002-02-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11110
11111         * paragraph.C (getMaxDepthAfter): new method. The maximal depth
11112         that the paragraph following this one can have.
11113
11114         * text2.C (incDepth): use Paragraph::getMaxDepthAfter
11115
11116         * vspace.C (asLatexCommand): fix bogus gcc warning
11117
11118         * Makefile.am (lyx_SOURCES): remove vms_defines.h
11119
11120 2002-02-27  Martin Vermeer  <martin.vermeer@hut.fi>
11121
11122         * text2.C (setLayout): get rid of redundant code
11123
11124 2002-02-26  Martin Vermeer  <martin.vermeer@hut.fi>
11125
11126         * text2.C (incDepth): make sure depth cannot be increased beyond
11127         reasonable values.
11128
11129 2002-02-20  Angus Leeming  <a.leeming@ic.ac.uk>
11130
11131         * lyxfunc.C (dispatch): act on LFUN_FORKS_SHOW and LFUN_FORKS_KILL.
11132         also call grfx::GCache::changeDisplay if the graphicsbg color changes.
11133
11134         * PainterBase.h (image):
11135         * Painter.[Ch] (image): now accepts a grfx::GImage const & rather than
11136         a LyXImage const *.
11137
11138 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
11139
11140         * BufferView.C:
11141         * BufferView.h:
11142         * BufferView_pimpl.C:
11143         * BufferView_pimpl.h:
11144         * LaTeXFeatures.C:
11145         * LyXAction.C:
11146         * LyXView.C:
11147         * Makefile.am:
11148         * UpdateList.h:
11149         * UpdateList.C:
11150         * buffer.C:
11151         * figure.h:
11152         * figureForm.C:
11153         * figureForm.h:
11154         * figure_form.C:
11155         * figure_form.h:
11156         * lyx_cb.C:
11157         * lyx_gui.C:
11158         * lyx_gui_misc.C:
11159         * lyxfunc.C:
11160         * sp_base.h:
11161         * sp_ispell.h:
11162         * sp_pspell.h:
11163         * sp_spell.C: remove fig inset, and the crap house of
11164           cards that follows it
11165
11166 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
11167
11168         * Makefile.am:
11169         * lyxserver.C:
11170         * os2_defines.h:
11171         * os2_errortable.h:
11172         * nt_defines.h: move .h into support/
11173
11174         * vms_defines.h: remove
11175
11176         * WorkArea.C: add space in debug output
11177
11178         * text2.C:
11179         * paragraph.C:
11180         * buffer.C: add WITH_WARNINGS
11181
11182         * vc-backend.h:
11183         * vc-backend.C:
11184         * bufferlist.C: s/retrive/retrieve/, add docs
11185
11186         * vspace.h:
11187         * vspace.C:
11188         * kbmap.h:
11189         * lyxlength.h:
11190         * lyxgluelength.h:
11191         * length_common.h:
11192         * chset.h:
11193         * chset.C: add docs
11194
11195         * lyxgui.C: add ID to X error handler
11196
11197         * lyxtestclass.c: fix typo
11198
11199 2002-02-26  Juergen Vigna  <jug@sad.it>
11200
11201         * tabular_funcs.C (write_attribute): changed so that some default
11202         attributes are not written at all.
11203         (getTokenValue): set default values before trying to read the
11204         value so we have the return value always set as default if we don't
11205         find the token we search for.
11206
11207         * tabular.C (Write): write bools as bools not as strings!
11208
11209 2002-02-22  Juergen Vigna  <jug@sad.it>
11210
11211         * BufferView_pimpl.C (workAreaButtonPress): call edit() before calling
11212         insetButtonPress for HIGHLY_EDITABLE_INSETS seems saner (fix #250).
11213
11214         * text.C (leftMargin): don't add an indent for paragraphs inside
11215         tabular cells (fix #208).
11216
11217 2002-02-21  José Matos  <jamatos@fep.up.pt>
11218
11219         * tabular.C (docBook): fixed support for long tables.
11220
11221 2002-02-20  Juergen Vigna  <jug@sad.it>
11222
11223         * text2.C (getFont): get the drawing font of the Inset if this
11224         paragraph is inside an inset (only important for InsetERT for now).
11225
11226         * buffer.C (insertErtContents): use new lanugage params in ERT
11227         constructor.
11228
11229         * CutAndPaste.C: commenting out seemingly uneeded code.
11230
11231 2002-02-19  Allan Rae  <rae@lyx.org>
11232
11233         * BufferView2.C (removeAutoInsets): fix remaining freed memory read.
11234         Iterators might be simple to use but they also get invalidated.
11235         (removeAutoInsets): renamed saved cursor tracking variables and added
11236         some comments to clarify what everything does.
11237
11238 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
11239
11240         * Chktex.C:
11241         * LaTeX.C:
11242         * LyXSendto.C:
11243         * converter.C:
11244         * lyx_cb.C:
11245         * vc-backend.C: Changes due to the renaming of support/syscall.[Ch] as
11246         support/systemcall.[Ch] and of class Systemcalls as class SystemCall.
11247
11248         * lyxfunc.C:
11249         * vc-backend.h: remove #include "support/syscall.h"
11250
11251         * LaTeX.C:
11252         * LyXSendto.C:
11253         * converter.C: rearrange #includes in Lars' approved fashion.
11254
11255         * LyXView.[Ch]: make autosave_timeout a pointer to Timeout. Can thus
11256         forward declare class Timeout in the header file.
11257
11258         * XFormsView.C: changes due to the above.
11259
11260         * minibuffer.[Ch]: make timer and stored_timer pointers to Timeout,
11261         similar to LyXView.
11262
11263         * commandtags.h: add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to the enum.
11264         * LyXAction.C (init): add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to items[]
11265
11266 2002-02-18  José Matos  <jamatos@fep.up.pt>
11267
11268         * buffer.C (simpleDocBookOnePar): if paragraph style is CDATA escapes
11269         insets contents.
11270
11271 2002-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
11272
11273         * a lot of small ws changes
11274         * add a lot of using std::XXX
11275         * use std construcs some places where approp.
11276         * use some exisint stuff from lyxfunctional where approp.
11277         * Make file changes to use partial linking (lets test this now...)
11278
11279 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
11280
11281         * Chktex.C:
11282         * buffer.C:
11283         remove #include "support/syscontr.h" as it's redundant. Always has been.
11284
11285         * Chktex.C:
11286         * LaTeX.C:
11287         * LyXSendto.C:
11288         * converter.C:
11289         * lyx_cb.C:
11290         * vc-backend.C:
11291         change Systemcalls::System to Systemcalls::Wait and
11292         change Systemcalls::SystemDontWait to Systemcalls::DontWait.
11293         No change of functionality, just reflects the stripped down Systemcalls
11294         class.
11295
11296 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
11297
11298         * debug.[Ch]: add a GRAPHICS type to the enum.
11299
11300 2002-02-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11301
11302         * text.C (nextBreakPoint): use Paragraph::isLineSeparator
11303
11304         * paragraph.C (isLineSeparator): call Inset::isLineSeparator if
11305         there is an inset.
11306
11307 2002-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11308
11309         * lyxfunc.C (getStatus): change the rules for LFUN_INSET_TOGGLE to
11310         match the changes below.
11311
11312         * text2.C (toggleInset): if there is not editable inset at cursor
11313         position, try to see if cursor is _inside_ a collapsable inset
11314         and close it.
11315
11316 2002-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11317
11318         * lyxfunc.C (getStatus): handle LFUN_SWITCHBUFFER so that the
11319         document menu has a nice checkbox
11320
11321 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11322
11323         * lyxlength.C (asLatexString): change PW to output as percent of
11324         \textwidth.
11325
11326         * lengthcommon.C: change '%' to 't%'
11327
11328         * lyxfunc.C (dispatch): a few comments from Martin
11329
11330 2002-02-06  John Levon  <moz@compsoc.man.ac.uk>
11331
11332         * WorkArea.h:
11333         * WorkArea.C:
11334         * BufferView_pimpl.h:
11335         * BufferView_pimpl.C: clear our selection when X tells us we've lost
11336           the X selection.
11337
11338 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11339
11340         * vspace.C (inPixels): fix compiler warning
11341
11342 2002-02-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11343
11344         * lyxfunc.C (getStatus): fix status message for disabled commands.
11345
11346 2002-02-01  John Levon  <moz@compsoc.man.ac.uk>
11347
11348         * BufferView_pimpl.C: fix crash on close buffer
11349         during selection (#227)
11350
11351 2002-01-27  Herbert Voss  <voss@lyx.org>
11352
11353         * buffer.C: link old Figure to new graphic inset
11354
11355 2002-01-26  Dekel Tsur  <dekelts@tau.ac.il>
11356
11357         * FontLoader.C (getFontinfo): Change the latex font names in order
11358         to match the names of type1inst.
11359
11360 2002-01-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11361
11362         * WorkArea.C (WorkArea): initialize the scrollbar bounds.
11363
11364         * DepTable.C (sumchange): do not evaluate end() on every iteratrion.
11365         (extchanged): ditto
11366         (ext_exist): ditto
11367         (remove_files_with_extension): ditto
11368         (remove_file): ditto
11369         (write): ditto
11370
11371         * BufferView_pimpl.C (updateScrollbar): do the right thing if the
11372         document is smaller than the work area height. Do not initialize
11373         static variables to 0.
11374
11375 2002-01-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11376
11377         * lyx_gui.C (init): give the toolbar tooltips a normal font.
11378
11379         * lyxfunc.C (getStatus): handle LFUN_LAYOUT like
11380         LFUN_LAYOUT_PARAGRAPHS.
11381
11382         * tabular.C (GetCellFromInset): new method. Finds an inset in a
11383         tabular. It is possible to provide a possible cell, which will
11384         typically be the actcell from the corresponding insettabular
11385
11386         * lyxfunc.C (getStatus): small cleanup; disable
11387         LFUN_LAYOUT_PARAGRAPHS in insets where forceDefaultParagraphs is
11388         true
11389
11390 2002-01-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11391
11392         * tabular.C (Validate): remove broken optimization (fixes bug #201)
11393
11394         * paragraph.C (startTeXParParams):
11395         (endTeXParParams): new methods. The LaTeX code to
11396         start/end paragraph formatting
11397         (simpleTeXOnePar): call startTeXParParams also when paragraph is
11398         empty (fixes bug #200)
11399
11400         * vspace.C (inPixels): adapt to the change below
11401         (inPixels): [later] more cleanups (remove unused variables)
11402
11403         * lyxlength.C (inPixels): change to use a width and a height as
11404         parameter.
11405
11406 2002-01-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11407
11408         * lyxlength.C (asLatexString): \pagewidth is not a LaTeX macro.
11409         Replaced with \paperwidth
11410
11411         * DepTable.C (insert): add std:: qualifier
11412
11413 2002-01-18  Allan Rae  <rae@lyx.org>
11414
11415         * text2.C (removeRow): add comment.  Should other refresh_?? vars be
11416         updated also?
11417
11418         * text.C (drawInset): Turned out I didn't know enough about how
11419         rebreaking worked.  This fixes most of the redraw problems.  I see
11420         an occasional cursor trail when a line is broken now and the cursor
11421         placement can seem out by a few pixels also after a rebreak.
11422
11423 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11424
11425         * buffer.C (parseSingleLyXformat2Token): update because minipage
11426         width is now a LyXLength
11427
11428         * lyxlength.C (inPixels): new method, extracted from VSpace::inPixels
11429
11430         * BufferView_pimpl.C (smartQuote): fix insertion of quote inset in
11431         math insets
11432
11433 2002-01-17  Juergen Vigna  <jug@sad.it>
11434
11435         * lyxfunc.C (dispatch): fixed PARAGRAPH_GOTO
11436
11437         * BufferView2.C (lockInset): call edit() so that theLockingInset()
11438         is set correctly and the inset is updated correctly.
11439
11440 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11441
11442         * CutAndPaste.C (pasteSelection): move the setInsetOwner call at
11443         the beginning of the loop.
11444
11445 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
11446
11447         * lyxrc.C: improve help for use_scalable_fonts
11448
11449 2002-01-17  Allan Rae  <rae@lyx.org>
11450
11451         * lyx_cb.C (ShowMessage): make sure we have a user and an owner.
11452
11453 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11454
11455         * CutAndPaste.C (pasteSelection): when pasting multiple paragraph,
11456         make sure to set their inset_owner to the right value (bug #171)
11457
11458 2001-12-12  Ben Stanley  <bds02@uow.edu.au>
11459
11460         * DepTable.h
11461         * DepTable.C: Implement mtime checking to reduce time spent doing
11462         CRCs.
11463
11464 2002-01-16  Juergen Vigna  <jug@sad.it>
11465
11466         * tabular.C (GetAdditionalHeight): one of error fixed.
11467
11468         * lyxrc.C (output): small fix in writing use_pspell.
11469
11470 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
11471
11472         * sp_base.h: #include LString.h
11473
11474 2002-01-16  Allan Rae  <rae@lyx.org>
11475
11476         * text2.C (removeRow): refresh_row needs a valid row.  Or does it?
11477         Can someone check this please?
11478
11479         * text.C (drawInset): It was possible that p.row would be removed by
11480         breakAgainOneRow upsetting a few other settings.  There may be another
11481         small tweak possible by setting need_break_row = 0 when p.row has been
11482         removed but I don't know enough about the logic here.
11483
11484 2002-01-15  Allan Rae  <rae@lyx.org>
11485
11486         * text.C (insertChar): removed conditional truism.
11487
11488         * BufferView2.C (removeAutoInsets): More tweaks.
11489         cur_par_prev could be a stray pointer.  Check for trailing empty line
11490         in case last line was cur_par and only had an error inset on it.
11491
11492 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11493
11494         * lyx_cb.C (MenuWrite): buffer->fileName is guaranteed to be
11495         absolute
11496
11497         * vc-backend.C (most methods):
11498         * exporter.C (Export):
11499         * converter.C (convert):
11500         (runLaTeX):
11501         * LyXSendto.C (SendtoApplyCB):
11502         * lyxfunc.C (dispatch):
11503         (menuNew):
11504         (open):
11505         (doImport):
11506         * lyx_cb.C (AutoSave):
11507         (InsertAsciiFile):
11508         * BufferView_pimpl.C (MenuInsertLyXFile):
11509         * buffer.C (runChktex): use Buffer::filePath().
11510
11511         * buffer.h: rename filename to filename_; rename filepath to
11512         filepath_ and make it private
11513         (filePath): new method
11514
11515         * buffer.C (writeFile): use fileName()
11516         (getLatexName):
11517
11518         * lyx_main.C (init): fix starting  of LyX when the binary is a
11519         link from so,ewhere else.
11520
11521         * minibuffer.C: include <cctype> for isprint
11522
11523 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
11524
11525         * buffer.C (parseSingleLyXformat2Token): changes associated with the
11526         change of InsetMinipage::width to InsetMinipage::pageWidth to avoid the
11527         name clash with InsetCollapsable's width function.
11528
11529 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11530
11531         * lastfiles.C: include <iterator>
11532
11533 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
11534
11535         * BufferView2.C (ChangeRefsIfUnique): use lyx::count rather than
11536         std::count.
11537
11538         * buffer.C (makeLaTeXFile): ditto.
11539         Also make loop operation more transparent.
11540
11541 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
11542
11543         * ToolbarDefaults.C: remove trailing comma closing namespace.
11544
11545         * WorkArea.h: remove WorkArea:: from declaration of event_cb.
11546
11547         * lyxfunc.[Ch]: clean-up declaration of verboseDispatch functions
11548         as in WorkArea.
11549
11550         * trans.C (Load): comment out unused variable, allowed.
11551
11552 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
11553
11554         * minibuffer.[Ch] (append_char): new method to recieve input from the
11555         drop-down completion browser. If a key was pressed, then recieve this
11556         char and append it to the existing string.
11557         (peek_event): modify the positioning data passed to the completion
11558         browser so that it can be placed above the minibuffer rather than below.
11559 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11560
11561         * LyXAction.C (init): alloe error-next for readonly documents.
11562
11563         * BufferView2.C (ChangeRefsIfUnique): use standard version of
11564         count.
11565
11566 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11567
11568         * bufferlist.C (readFile): create the buffer _after_ checking that
11569         the file exists.
11570
11571         * lyxfunc.C (verboseDispatch): fix handling of arguments
11572
11573         * lyxrc.C (setDefaults): do not initialize document_path to $HOME.
11574
11575         * lyxrc.C: use string::erase() instead of initializing to "".
11576
11577
11578 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
11579
11580         * BufferView_pimpl.h:
11581         * BufferView_pimpl.C:
11582         * WorkArea.h:
11583         * WorkArea.C:
11584         * text2.C: tell X when we have made a selection for copying
11585
11586 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11587
11588         * BufferView_pimpl.C (MenuInsertLyXFile):
11589         * lyxfunc.C (menuNew):
11590         (open):
11591         (doImport): add shortcuts to directory buttons
11592
11593         * BufferView_pimpl.C (workAreaButtonRelease): remove dead code (to
11594         open a float)
11595
11596         * lyxfunc.C (setStatusMessage):
11597         (getStatusMessage): new methods
11598         (getStatus):use setStatusMessage instead of setErrorMessage
11599         (dispatch): when function is disabled, set error message here
11600         [instead of in getStatus previously]
11601
11602         * BufferView_pimpl.C (workAreaButtonRelease): update
11603         toolbar/menubar here too.
11604
11605 2002-01-13  Allan Rae  <rae@lyx.org>
11606
11607         * BufferView2.C (removeAutoInsets): finished off earlier fix.
11608         Now seems indestructible.  Remaining task is to audit all other
11609         code affected by deleteEmptyParagraphMechanism.  One small quirk
11610         left is that an empty document with an error in the preamble can
11611         be made to report an error but no error box appears.  I don't know
11612         where it goes.
11613         (removeAutoInsets): Improved comments.
11614
11615 2002-01-13  John Levon  <moz@compsoc.man.ac.uk>
11616
11617         * Thesaurus.h:
11618         * Thesaurus.C: update for Aiksaurus 0.14
11619
11620 2002-01-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11621
11622         * text2.C (firstParagraph): removed member function, all uses
11623         replaces with ownerParagraph
11624         (redoParagraphs): here
11625         (updateInset): here
11626         (toggleAppendix): here
11627         * BufferView2.C (insertErrors): here
11628         (setCursorFromRow): here
11629
11630 2002-01-13  Allan Rae  <rae@lyx.org>
11631
11632         * BufferView2.C (removeAutoInsets): ensure we have a valid cursor if
11633         the old cursor is now invalid due to deleteEmptyParagraphMechanism.
11634         There is still a way to segfault this although you may have to do this
11635         multiple times: Have an InsetERT with an unknown command in it.
11636         View->DVI, move cursor between Error box and InsetERT and hit <Enter>,
11637         <down-arrow>, <Enter> again, View->DVI, BANG!
11638
11639         * text2.C (setCursor):
11640         (deleteEmptyParagraphMechanism):
11641         * lyxtext.h (setCursor):
11642         (deleteEmptyParagraphMechanism): return true if the paragraph was deleted.
11643         Making use of the return value may help fix other bugs.
11644
11645 2002-01-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11646
11647         * lyxfunc.C (dispatch): update toolbar/menubar after dispatching.
11648
11649         * LyXView.C (updateMenubar): call MenuBar::update here
11650         (updateToolbar): but not here
11651         (showState): do not update toolbar/menubar
11652
11653         * LyXAction.[Ch]: move isPseudoAction to the C file, since nobody
11654         should need to care about that.
11655
11656         * lyxfunc.C (verboseDispatch): simplify a bit
11657         (getStatus): have a version which takes a pseudoaction, and
11658         another which requires a (kb_action,string).
11659
11660         * LyXAction.C (retrieveActionArg): make it work also when action
11661         is not a pseudo-action.
11662         (getActionName): simplify a bit
11663         (helpText):
11664
11665 2002-01-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11666
11667         * lyxfunc.C (verboseDispatch): new families of methods with
11668         several ways to specify a command and a bool to indicate whether
11669         the command name and shortcut should be displayed in minibuffer
11670         (eventually, we could extend that to a finer bitmask like
11671         SHORTCUT|CMDNAME|CMDRESULT, or whatever).
11672         (dispatch): the pristine dispatch command which just, well,
11673         dispatchs! Note it still sets its result to minibuffer; I'm not
11674         sure we want that.
11675
11676         * lyxfunc.h: remove setHintMessage
11677
11678         * vc-backend.C: use LFUN_MENURELOAD instead of "buffer-reload"
11679
11680 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11681
11682         * BufferView_pimpl.C (specialChar): delete new inset if we have
11683         not been able to insert it.
11684
11685         * kbmap.C: revert to using int instead of kb_action, since all we
11686         are dealing with is pseudo-actions.
11687
11688         * LyXAction.C (searchActionArg): change to return int instead of
11689         kb_action, since the result is a pseudoaction.
11690
11691 2002-01-12  Dekel Tsur  <dekelts@tau.ac.il>
11692
11693         * buffer.C (insertErtContents): Fix (partially) the font bug.
11694
11695 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
11696
11697         * BufferView2.C (ChangeRefsIfUnique): use the HP version of std::count
11698         as the other one is broken on my machine!
11699
11700 2002-01-10  Martin Vermeer  <martin.vermeer@hut.fi>
11701
11702         * commandtags.h:
11703         * LyXAction.C: two new LFUNS, LFUN_FRAK and LFUN_ITAL.
11704
11705 2002-01-10  Angus Leeming  <a.leeming@ic.ac.uk>
11706
11707         * lyxrc.[Ch]: change names and descriptions of popup font variables to
11708         reflect their actual use. Provide compatibility code for older lyxrc
11709         files.
11710
11711         * lyx_gui.C (init): revoke change of 2002-01-07 of popup font style to
11712         FL_NORMAL_STYLE.
11713         change names of popup font variables in line with the changes to lyxrc.C
11714
11715 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11716
11717         * buffer.C (asciiParagraph): avoid outputing a word twice after
11718         an inset.
11719
11720         * lyxrc.C (getDescription): document that document_path and
11721         template_path can be empty.
11722
11723 2002-01-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11724
11725         * LaTeXFeatures.C (getMacros):
11726         * buffer.C (validate): rename feature "amsstyle" to "amsmath"
11727
11728         * buffer.C (makeLaTeXFile): remove test for "amsstyle" from here.
11729
11730         * LaTeXFeatures.C (useFloat): require "float" here instead of in
11731         getPackages.
11732         (getPackages): rename feature "floats" to "float". Use an array to
11733         iterate over 'simple' features (i.e. just a \usepackage). Add
11734         handling of "amsmath" (renamed from "amsstyle").
11735
11736 2001-12-29  Michael A. Koziarski  <michael@koziarski.org>
11737
11738         * LaTeXFeatures.C (require): Prevent duplicate entries in the
11739         features list.
11740
11741 2002-01-08  Angus Leeming  <a.leeming@ic.ac.uk>
11742
11743         * FuncStatus.C: small compile fix for DEC cxx. Doesn't like
11744         FuncStaus::FuncStatus & FuncStaus::some_method().
11745
11746 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
11747
11748         * FuncStatus.[Ch]: new files. This is a rewrite as a proper class
11749         of the func_satus stuff. Edited and massaged in various ways by
11750         JMarc.
11751
11752         * lyxfunc.C (getStatus): use FuncStatus
11753
11754 2002-01-08  Juergen Vigna  <jug@sad.it>
11755
11756         * text.C (nextBreakPoint): use function Inset::isChar().
11757
11758         * paragraph.C (TeXOnePar): use function
11759         Inset::forceDefaultParagraphs.
11760
11761         * buffer.C (latexParagraphs): use function
11762         Inset::forceDefaultParagraphs.
11763
11764 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
11765
11766         * lyx_gui.C (init): set the style of the menu popups to
11767         FL_BOLD_STYLE, thereby fixing bugzilla bug #32.
11768
11769 2002-01-07  Juergen Vigna  <jug@sad.it>
11770
11771         * text.C (setHeightOfRow): small fix
11772         (prepareToPrint): don't look at alignment if we don't have the place
11773         for doing it.
11774
11775 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
11776
11777         * box.C: New file. Move the Box methods and functions out of box.h,
11778         following Lars' suggestion.
11779
11780 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
11781
11782         * box.h: #include "support/LOstream.h", needed for inlined function.
11783
11784         * lyxtextclass.C:
11785         * lyxtextclasslist.C: added some using std declarations.
11786
11787 2002-01-06  John Levon  <moz@compsoc.man.ac.uk>
11788
11789         * box.h: make signed dimensions to allow insets wider than
11790           the screen (bug #162)
11791
11792         * BufferView_pimpl.C: add some insetHit debug
11793
11794 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
11795
11796         * vc-backend.C: add FIXME
11797
11798 2002-01-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11799
11800         * lyxfunc.C (getStatus): enable code for showing math font status
11801         in toolbar/menu.
11802
11803 2002-01-07  Juergen Vigna  <jug@sad.it>
11804
11805         * text.C (nextBreakPoint): removed debug output not needed anymore.
11806
11807 2002-01-06  Juergen Vigna  <jug@sad.it>
11808
11809         * text.C (nextBreakPoint): fixed up this function we had this bug
11810         since ever but now hopefully we break row better.
11811         (insertChar): we have to check if an inset is the next char as it
11812         could now happen that a large inset is causing a break.
11813
11814 2002-01-05  Juergen Vigna  <jug@sad.it>
11815
11816         * BufferView2.C (showLockedInsetCursor): don't draw the inset cursor
11817         if it doesn't like to be drawed.
11818
11819 2002-01-04  Juergen Vigna  <jug@sad.it>
11820
11821         * BufferView2.C (lockInset): forgot to set a cursor.
11822
11823         * lyxfunc.C (dispatch): add a finishUndo() in LFUN_ESCAPE.
11824
11825 2002-01-03  Martin Vermeer  <martin.vermeer@hut.fi>
11826
11827         * FormMathsPanel.C:
11828         * FormMathsPanel.h
11829         * MathsSymbols.C:
11830         * form_maths_panel.C:
11831         * form_maths_panel.h:
11832         * form_maths_panel.fd: implemented sub- and super- buttons in math
11833         panel.
11834
11835         * lyx_main.C: Revised hardwired bindings to allow original _ and ^
11836         (or ^ space) to be used as in TeX (req'd by André).
11837
11838         * lyxfunc.C: Allow ^ and _ again to be used both as
11839         super/subscript (mathed) and as themselves (in text).
11840
11841 2002-01-03  Allan Rae  <rae@lyx.org>
11842
11843         * LyXView.C (updateWindowTitle): Setup a short icon title of either
11844         "LyX" or the filename of the current buffer if it has one.  This is a
11845         modified form of John Levon's patch.
11846
11847         * XFormsView.C (setWindowTitle): also set icon title.
11848
11849         * LyXView.h (setWindowTitle): signature changed.
11850         * XFormsView.h (setWindowTitle): ditto.
11851
11852 2002-01-02  Juergen Vigna  <jug@sad.it>
11853
11854         * tabular.C (AppendColumn): hopefully fixed this memory access problem.
11855
11856 2001-12-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11857
11858         * screen.C (topCursorVisible): introduce a temp var for
11859         text->cursor.row(), handle the case where this row is null. (kindo
11860         hachish)
11861
11862         * text2.C (setCursor): add a couple of asserts.
11863
11864         * paragraph.h (inset_iterator): add -> operator
11865
11866         * paragraph.[Ch] (autoDeleteInsets): remove member function
11867
11868         * BufferView2.C (removeAutoInsets): rewrite to handle the old
11869         cursor pos correctly and handle inset deletion by itself.
11870         (insertErrors): move iterator declaration out of for expression
11871
11872         * lyxtextclass.C: add <algorithm>
11873
11874         * Makefile.am: added the new files to sources, removed layout.C
11875
11876         * layout.C: removed file
11877
11878         * layout.h: remove LYX_DUMMY_LAYOUT
11879
11880         * lyxtextclasslist.C (NumberOfLayout): do not special case dummy
11881         layout.
11882
11883         * lyxlayout.[Ch]:
11884         * lyxtextclass.[Ch]:
11885         * lyxtextclasslist.[Ch]: new files
11886
11887         * include order changes to a lot of files, also changes because of
11888         the six new files.
11889
11890 2001-12-27  Juergen Vigna  <jug@sad.it>
11891
11892         * buffer.C (asciiParagraph): more fixes.
11893
11894         * tabular.C (ascii): make ascii export support export of only the
11895         data separated by a column-delimiter.
11896         (ascii): better support for ascii export.
11897
11898         * buffer.C (asciiParagraph): rewrote to hopefully work as expected!
11899
11900 2001-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11901
11902         * tabular_funcs.C: use a "using std::getline" instead of the
11903         previous fix from Angus (necessary for cxx + lyxstring)
11904
11905 2001-12-24  Juergen Vigna  <jug@sad.it>
11906
11907         * BufferView_pimpl.C (tripleClick): fixed for InsetText.
11908
11909         * buffer.C (parseSingleLyXformat2Token): fixed 2 compatibility read
11910         problems. First check a minipage also if we have some ert-contents
11911         (not only on par->size(), second set the right depth of the paragraph
11912         on the relink to the root-paragraph-list!
11913
11914         * undo_funcs.C (textHandleUndo): fixed a stupid earlier wrong fix
11915         which then did not anymore update the main paragraphs on undo/redo!
11916
11917 2001-12-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11918
11919         * lyxfunc.C (getStatus): use func_status::toggle to simplify the
11920         code. Support all font-changing funcs (even those which are not in
11921         menu currently). Support for reporting font settings in
11922         mathed (disabled until Andre provides a function on mathed's side).
11923
11924         * func_status.h (toggle): small helper function to set toggle
11925         state on a flag.
11926
11927 2001-12-21  Angus Leeming  <a.leeming@ic.ac.uk>
11928
11929         * tabular_funcs.C: getline -> std::getline
11930
11931 2001-12-21  Juergen Vigna  <jug@sad.it>
11932
11933         * undo_funcs.C (textHandleUndo): fixed a case where tmppar3 is
11934         accessed and could be 0 (I couldn't generate this but it seems
11935         Michael could!).
11936
11937 2001-12-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11938
11939         * tabular_funcs.C: add LIstream.h, move write_attribute to..
11940         * tabular_funcs.h: here and include iosfwd
11941
11942 2001-12-20  Juergen Vigna  <jug@sad.it>
11943
11944         * undo_funcs.C (textHandleUndo): fixed crash when undo_cursor not
11945         inside inset but undo_par was.
11946
11947 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11948
11949         * Thesaurus.C: always include <config.h> in sources.
11950
11951         * Painter.h:
11952         * lyxlookup.h:
11953         * box.h: do not include <config.h> in header files
11954
11955         * text.C (paintLastRow): remove unused variable
11956
11957         * text.C (transformChar):
11958         (insertChar):
11959         * tabular-old.C (getTokenValue): use IsDigit instead of isdigit.
11960
11961         * Painter.C (text):
11962         * font.C (width): rewrite to use uppercase() instead of
11963         islower/toupper.
11964
11965         * lyxfind.C (IsStringInText): use uppercase instead of toupper.
11966
11967 2001-12-12  John Levon  <moz@compsoc.man.ac.uk>
11968
11969         * lyxfind.C: clean up of find failure position change
11970
11971 2001-12-20  Juergen Vigna  <jug@sad.it>
11972
11973         * Makefile.am (lyx_SOURCES): added tabular_funcs.[hC].
11974
11975         * tabular.C (isValidRow): added to check if we're in a LT-h/f row.
11976         (TeXRow): added to LaTeX a single tabular row.
11977         (TeXLongtableHeaderFooter): added to output LT-h/f data.
11978         (Latex): simplified and finally good LT-h/f support.
11979         (various_functions): just small adaptions for LT-h/f support.
11980
11981         * tabular_funcs.[hC]: added and moved here all not classfunctions
11982         of LyXTabular.
11983
11984 2001-12-19  Juergen Vigna  <jug@sad.it>
11985
11986         * tabular.[Ch]: better support for longtabular options (not finished
11987         yet!)
11988
11989 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11990
11991         * text.C (paintLastRow): use the label font instead of the font of
11992         the last character to compute the size of *_BOX. This makes more
11993         sense and avoids a crash with empty paragraphs.
11994         Use Painter::rectangle to draw EMPTY_BOX.
11995
11996 2001-12-19  Juergen Vigna  <jug@sad.it>
11997
11998         * undo_funcs.C (textHandleUndo): fixed setting of inset_owner of
11999         the paragraphs if the replaced paragraph is not the first one!
12000         Tried to delete not used paragraphs but does not work yet so for
12001         now it's inside #ifdef's and by default off!
12002
12003 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12004
12005         * MenuBackend.C: include "lyx_main.h" instead of declaring
12006         lastfiles (actually was declared as LastFiles* instead of a
12007         scoped_ptr).
12008
12009 2001-12-17  Juergen Vigna  <jug@sad.it>
12010
12011         * tabular.C (AppendColumn): applied John's fix
12012
12013 2001-12-15  John Levon  <moz@compsoc.man.ac.uk>
12014
12015         * BufferView.h:
12016         * BufferView.C:
12017         * BufferView_pimpl.h:
12018         * BufferView_pimpl.C: cleanup and fix of checkInsetHit().
12019
12020         * Makefile.am:
12021         * box.h: new start of class for above
12022
12023         * lyxfunc.C: ignore space-only minibuffer dispatches.
12024           Show the command name when it doesn't exist
12025
12026         * minibuffer.C: don't add empty lines to the history
12027
12028         * minibuffer.C: add a space on dropdown completion
12029
12030 2001-12-14  John Levon  <moz@compsoc.man.ac.uk>
12031
12032         * text.C: fix line above/below drawing in insets
12033
12034 2001-12-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12035
12036         * lyxlength.C (LyXLength): Initialize private variables.
12037
12038 2001-12-15  Dekel Tsur  <dekelts@tau.ac.il>
12039
12040         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Use buffer language
12041         when inserting error insets.
12042
12043 2001-12-13  Juergen Vigna  <jug@sad.it>
12044
12045         * undo_funcs.C (textRedo/Undo): fixed as the first paragraph was
12046         actually sometimes the before-paragraph.
12047         (setUndo): don't clear the redostack if we're not actually undoing!
12048
12049 2001-12-06  Juergen Vigna  <jug@sad.it>
12050
12051         * undo_funcs.C (textHandleUndo): well after John's hint I got here
12052         and fixed redoing of main paragraph, so we can use it now ;)
12053
12054         * text2.C (redoParagraphs): fixed a crash when having only 1 row!
12055
12056 2001-12-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12057
12058         * undo_funcs.C (textHandleUndo): undo undo leak fix below, as per
12059         Juergen's request
12060
12061 2001-12-13  André Pönitz <poenitz@gmx.net>
12062
12063         * undostack.[Ch]:
12064         * undo_func.C: minor cleanup
12065
12066 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12067
12068         * FontLoader.C (getFontinfo): only use symbol fonts with encoding
12069         -adobe-fontspecific. At least Mandrake and Redhat have a symbol
12070         font in urw-fonts package which is marked as -urw-fontspecific and
12071         does not work (incidentally, changing the encoding in the
12072         fonts.dir of this package to -adobe-fontspecific fixes the
12073         problem).
12074
12075         * undo_funcs.C (textHandleUndo): fix leak in undo, but now there
12076         is a crash when undoing first paragraph (Juergen, please take a
12077         look). THis does not mean the undo fix is wrong, just that it
12078         uncovers problems.
12079
12080         * text2.C (ownerParagraph): let the (int,Paragraph*) version call
12081         the (Paragraph*) version when needed instead of duplicating the
12082         code.
12083
12084         * text.C (workWidth): use Inset::parOwner to find out where the
12085         inset has been inserted. This is a huge performance gain for large
12086         documents with lots of insets. If Inset::parOwner is not set, fall
12087         back on the brute force method
12088
12089         * paragraph_pimpl.C (insertInset):
12090         * paragraph.C (Paragraph):
12091         (cutIntoMinibuffer): set parOwner of insets when
12092         inserting/removing them
12093
12094         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
12095
12096 2001-12-12  Martin Vermeer  <martin.vermeer@hut.fi>
12097
12098         * commandtags.h:
12099         * LyXAction.C:
12100         * lyx_main.C:
12101         * lyxfunc.C:
12102         * mathed/formulabase.C:
12103         * mathed/math_cursor.[Ch]:
12104         make sub/superscript into functions LFUN_SUB/SUPERSCRIPT.
12105
12106
12107 2001-12-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12108
12109         * lyxlength.[Ch] (operator!=): new function
12110
12111 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12112
12113         * text.C (workWidth): use Inset::parOwner to find out where the
12114         inset has been inserted. This is a huge performance gain for large
12115         documents with lots of insets. If Inset::parOwner is not set, fall
12116         back on the brute force method
12117
12118         * paragraph_pimpl.C (insertInset):
12119         * paragraph.C (Paragraph):
12120         (cutIntoMinibuffer): set parOwner of insets when
12121         inserting/removing them
12122
12123         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
12124
12125 2001-12-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12126
12127         * tabular-old.C (getTokenValue):
12128         * tabular.C (getTokenValue):
12129         (write_attribute): new versions for LyXLength
12130         (everywhere): adjust the use of widths
12131
12132         * tabular.h: change the type of widths from string to LyXLength
12133
12134 2001-12-11  Ben Stanley <bds02@uow.edu.au>
12135
12136         * paragraph.C: fixed missing line number count when exporting
12137         Environments to LaTeX file
12138
12139         * buffer.C: added informational message for checking line numbers.
12140
12141 2001-12-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12142
12143         * text2.C (deleteEmptyParagraphMechanism): if there is only one
12144         paragraph, do the 'double space' part, but not the 'empty
12145         paragraph' one.
12146
12147         * text.C (workWidth): small optimization
12148         (getLengthMarkerHeight): use minimal size for negative lengths.
12149
12150 2001-12-11  Dekel Tsur  <dekelts@tau.ac.il>
12151
12152         * lyxfont.C (GUIFamilyNames): Fix GUIFamilyNames array
12153
12154         * FontLoader.C (getFontinfo): Use "*-eufrak-medium"
12155
12156 2001-12-11  André Pönitz <poenitz@gmx.net>
12157
12158         * FontLoader.C:
12159         * lyxfont.[Ch]: support for fraktur font used by \mathfrak
12160
12161 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
12162
12163         * text2.C: keep selection on a setFont()
12164
12165 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
12166
12167         * lyx_cb.C: another bv->text misuse, from insert label
12168
12169 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
12170
12171         * kbsequence.h:
12172         * kbsequence.C: re-instate nmodifier mask
12173
12174 2001-12-12  Angus Leeming  <a.leeming@ic.ac.uk>
12175
12176         * lyx_main.h: make lyxGUI private.
12177
12178 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
12179
12180         * lyxfind.C: place the cursor correctly on failed search
12181
12182 2001-12-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12183
12184         * text.C (getLengthMarkerHeight): for small heights, the arrows
12185         are not always on top/bottom of the text
12186         (drawLengthMarker): smaller arrows; take the left margin in
12187         account; draw also vfills.
12188         (paintFirstRow):
12189         (paintLastRow): remove special code for vfill and standard spaces,
12190         since everything is handled in drawLengthMarker now.
12191
12192 2001-12-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12193
12194         * buffer.C (insertErtContents): try to handle font and language
12195         interaction a bit better.g
12196
12197         * ColorHandler.C (updateColor): change the hash to cover the whole
12198         LColor enum, ws cleanup
12199         (getGCLinepars): ditto
12200         (getGCLinepars): only lookup in the linecache once.
12201
12202 2001-12-07  Dekel Tsur  <dekelts@tau.ac.il>
12203
12204         * iterators.C (operator++): Make the iterator more robust
12205
12206         * BufferView2.C (removeAutoInsets): Use paragraph iterators
12207         (John's patch)
12208         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Ditto
12209
12210 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12211
12212         * lyxtext.h:
12213         * text.C: better added space drawing
12214
12215 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12216
12217         * LyXView.C:
12218         * BufferView2.C: fix layout combo update on inset unlock
12219
12220 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12221
12222         * Makefile.am: don't compile unused files
12223
12224 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12225
12226         * lyxfunc.C:
12227         * commandtags.h:
12228         * LyXAction.C: remove old LFUN_LAYOUTNO
12229
12230 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12231
12232         * paragraph_pimpl.h:
12233         * paragraph_pimpl.C: isTextAt() doesn't need font param
12234
12235 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12236
12237         * lyxlex.h:
12238         * lyxlex.C: little cleanup
12239
12240 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12241
12242         * BufferView_pimpl.C: fix insertAscii for insets
12243
12244 2001-12-05  Juergen Vigna  <jug@sad.it>
12245
12246         * CutAndPaste.C (pasteSelection): remove not allowed insets/chars and
12247         set the right font on the "multi" paragraph paste!
12248
12249 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12250
12251         * trans_decl.h:
12252         * trans_mgr.[Ch]:
12253         * trans.[Ch]:
12254         * lyxgluelength.C:
12255         * lyxlength.C: remove out-commented code.
12256
12257         * BufferView_pimpl:
12258         * CutAndPaste.C:
12259         * DepTable.C:
12260         * buffer.C:
12261         * chset.C:
12262         * lastfiles.C:
12263         * lyxlex.C:
12264         * lyxlex_pimpl.C:
12265         * lyxserver.C:
12266         * screen.C:
12267         * tabular-old.C:
12268         * tabular.C:
12269         * text.C:
12270         * trans_mgr.C:
12271         * vc-backend.C: change "while(" to "while ("
12272
12273         * lyxlength.[Ch]: add zero function to check if length is zero or
12274         not
12275         * lyxgluelength.C: use it
12276
12277 2001-12-05  Allan Rae  <rae@lyx.org>
12278
12279         * lyxlength.C: Attempted a fix for the abs(int) header selection.
12280         Works for 2.95.3, from what I understand of Garst's reports this should
12281         work for other g++ versions.  We're screwed if the abs(int) definition
12282         changed between bugfix releases of gcc.
12283
12284 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
12285
12286         * text.C: fix chapter label offset !
12287
12288 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
12289
12290         * lyxtext.h:
12291         * text.C: fix hfill at end of line, clean up
12292
12293 2001-12-04  Juergen Vigna  <jug@sad.it>
12294
12295         * undo_funcs.C (textHandleUndo): added a call to inset->update() so
12296         that we force an update of the inset and it's owners if neccessary.
12297
12298 2001-12-03  Juergen Vigna  <jug@sad.it>
12299
12300         * text.C (rowLast): simplified code
12301
12302 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
12303
12304         * lyxfunc.C: fix show options on timeout
12305
12306 2001-12-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12307
12308         * screen.C (topCursorVisible): scroll half a page when the cursor
12309         reached top of bottom of screen
12310
12311 2001-12-02  John Levon  <moz@compsoc.man.ac.uk>
12312
12313         * minibuffer.C: deactivate on loss of focus
12314
12315 2001-12-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12316
12317         * vspace.[Ch] (operator!=): add operator.
12318
12319 2001-12-01  John Levon  <moz@compsoc.man.ac.uk>
12320
12321         * BufferView_pimpl.C: refuse to open an inset when
12322         there's a selection.
12323
12324 2001-11-30  John Levon  <moz@compsoc.man.ac.uk>
12325
12326         * BufferView_pimpl.C: allow to click on RHS of full row insets
12327
12328 2001-11-30  Juergen Vigna  <jug@sad.it>
12329
12330         * tabular.C (LyXTabular): add a same_id to set the same id's in the
12331         insets for undo reasons.
12332
12333 2001-11-28  André Pönitz <poenitz@gmx.net>
12334
12335         * vspace.[Ch]: cosmetical changes
12336
12337 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
12338
12339         * LyXAction.h:
12340         * LyXAction.C:
12341         * lyxfunc.h:
12342         * lyxfunc.C:
12343         * kbmap.h:
12344         * kbmap.C:
12345         * lyxrc.C:
12346         * kbsequence.h:
12347         * kbsequence.C: part re-write of old kb code
12348
12349         * Painter.C:
12350         * WorkArea.C: remove Lgb_bug_find_hack
12351
12352 2001-11-30  José Matos <jamatos@fep.up.pt>
12353
12354         * buffer.C (makeDocBookFile): add a comment to point a hack.
12355         (simpleDocBookOnePar): changed a PAR::META_INSET to isInset().
12356         Fixed a double write of labels.
12357
12358 2001-11-29 Ben Stanley <bds02@uow.edu.au>
12359
12360         * LaTeX.C:
12361         * LaTeX.h Fixed bug in LaTeX class where it would not
12362         re-run latex if no depfiles were changed, but the .dvi was removed.
12363
12364 2001-11-28  André Pönitz <poenitz@gmx.net>
12365
12366         * all the files from the change on 2001/11/26:
12367         use lyx::layout_type instead of LyXTextClass::size_type
12368         use lyx::textclass_type instead of LyXTextClassList::size_type
12369
12370 2001-11-29  Juergen Vigna  <jug@sad.it>
12371
12372         * text.C: added support for paragraph::isFreeSpacing()
12373
12374         * buffer.C: same as above
12375
12376         * paragraph.h: inserted isFreeSpacing() function to enable
12377         FreeSpacing inside InsetERT.
12378
12379         * CutAndPaste.C (cutSelection/copySelection): set the inset_owner
12380         of the paragraph's in the cut/copy buffer to 0!
12381
12382         * text2.C (removeRow): remove the assert as it can!
12383
12384         * lyxtext.h: added helper function firstRow returning firstrow and
12385         made firstrow private again.
12386
12387         * BufferView2.C (lockInset): don't relock if we're already locked!
12388
12389         * text2.C (deleteEmptyParagraphMechanism): don't do anything if it's
12390         the only paragraph.
12391         (removeRow): added Assert::(firstrow)
12392
12393         * debug.C: forgot to add INSETTEXT here.
12394
12395 2001-11-28  Juergen Vigna  <jug@sad.it>
12396
12397         * sp_spell.C (initialize): changed error text to more general
12398         spellchecker command use (not only ispell!)
12399
12400         * bufferlist.C (qwriteAll): fixed "Cancel" button handling!
12401
12402         * debug.h: inserted one for debugging INSETTEXT (and InsetTabular)!
12403
12404 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
12405
12406         * vspace.C: initialise lyxgluelength on failure
12407
12408 2001-11-28  Allan Rae  <rae@lyx.org>
12409
12410         * text.C (paintLastRow): g++-2.95.3 and others don't like variable
12411         declaration & definition that looks like a function declaration.
12412
12413 2001-11-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12414
12415         * BufferView2.C (copy):
12416         (copyEnvironment): do not clear the selection when doing a copy.
12417
12418         * text.C (paintFirstRow): compilation fix
12419
12420 2001-11-27  Ben Stanley  <bds02@uow.edu.au>
12421
12422         * tabular.C (Latex): correct line count when writing latex.
12423
12424 2001-11-27  John Levon  <moz@compsoc.man.ac.uk>
12425
12426         * paragraph_pimpl.h:
12427         * paragraph_pimpl.C: tidy, and fix font-change in "LaTeX"
12428           bug a bit
12429
12430 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
12431
12432         * text.C:
12433         * LColor.h:
12434         * LColor.C: change vfillline->added_space
12435
12436         * text.C: add markers and text for added space
12437
12438         * vspace.C: fix comment
12439
12440 2001-11-28  André Pönitz <poenitz@gmx.net>
12441
12442         * paragraph.C: whitespace changes
12443         * all the other files from the change on 2001/11/26:
12444         change *::pos_type into lyx::pos_type
12445
12446 2001-11-27  Dekel Tsur  <dekelts@tau.ac.il>
12447
12448         * buffer.C (parseSingleLyXformat2Token): Set the language to the
12449         language of the document when inserting error insets.
12450
12451 2001-11-26  André Pönitz <poenitz@gmx.net>
12452
12453         * BufferView_pimpl.[Ch]:
12454         *       CutAndPaste.C:
12455         * buffer.[Ch]:
12456         * lyxcursor.[Ch]:
12457         * lyxfind.C:
12458         * lyxfunc.C:
12459         * lyxrow.[Ch]:
12460         * paragraph.[Ch]:
12461         * paragraph_pimpl.[Ch]:
12462         * sp_spell.C:
12463         * text.C:
12464         * text2.C: reduce header dependencies, introduce type for positions
12465
12466 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
12467
12468         * <various>: change to use Alert.h
12469
12470 2001-11-25  Dekel Tsur  <dekelts@tau.ac.il>
12471
12472         * buffer.C (parseSingleLyXformat2Token): Insert an error inset
12473         when encountering an unknown token.
12474         (readLyXformat2): Show an error message if there were unknown tokens.
12475
12476 2001-11-22  John Levon  <moz@compsoc.man.ac.uk>
12477
12478         * BufferView2.C:
12479         * BufferView_pimpl.C:
12480         * buffer.C:
12481         * paragraph.h:
12482         * text.C:
12483         * text2.C: use par->isInset()
12484
12485 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
12486
12487         * paragraph_pimpl.h:
12488         * paragraph_pimpl.C: cleanup
12489
12490 2001-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12491
12492         * text2.C (removeRow):
12493         * text.C (setHeightOfRow): remove useless (and costly) call to
12494         getRow.
12495
12496 2001-11-20  Allan Rae  <rae@lyx.org>
12497
12498         * paragraph.C (insertFromMinibuffer): Fix for inset related crashes.
12499         Now need Inset*::checkInsertChar() to return true for appropriate
12500         cases so that the characters in the minibuffer will actually be
12501         inserted.
12502
12503 2001-11-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12504
12505         * text.C: change the order of the includes.
12506         (workWidth): initialize it at once.
12507         (workWidth): make maxw unsigned
12508         (setHeightOfRow): remove unused variable (inset)
12509         (selectSelectedWord): remove unused variable (inset)
12510         (paintRowText): fix drawing of hfill characters, and clean up a bit.
12511
12512 2001-11-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12513
12514         * lyxserver.C (emergencyCleanup): do not try to close pipes if
12515         server is not running.
12516         (openConnection):
12517         (closeConnection): add debug info when server is disabled.
12518
12519         * ColorHandler.C (getGCForeground): send debug message to GUI
12520         channel.
12521
12522         * lyxrc.C: do not include lyxserver.h and tex-strings.h.
12523
12524         * kbmap.C (bind): modify because return conventions of
12525         kb_sequence::parse have changed.
12526
12527         * kbsequence.C (parse): only ignore spaces and not any stupid
12528         control character. This avoids tests like s[i] <= ' ', which are
12529         guaranteed to fail with 8bit characters and signed chars.
12530         Change return code to string::npos when there have been no error
12531         (0 was a bad idea when error is at first character)
12532
12533 2001-11-14  José Matos  <jamatos@fep.up.pt>
12534
12535         * buffer.h:
12536         * buffer.C (simpleDocBookOnePar): removed unused argument.
12537
12538 2001-11-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12539
12540         * text.C (selectNextWordToSpellcheck): do not test explicitely for
12541         insets which are part of a word. Paragraph::isLetter takes care of
12542         that now. Use Paragraph::isInset to identify insets.
12543         (selectSelectedWord): do not test for hyphenation break.
12544
12545         * BufferView_pimpl.C (smartQuote): use Inset::isSpace, so
12546         that protected spaces are considered as spaces.
12547
12548         * paragraph.C (isLetter): cleanup the code for ispell extras; use
12549         Inset::isLetter.
12550
12551 2001-11-12  John Levon  <moz@compsoc.man.ac.uk>
12552
12553         * lyxserver.h:
12554         * lyxserver.C: fix it. and small cleanup.
12555
12556 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
12557
12558         * BufferView_pimpl.C: use inline helpers
12559
12560         * LaTeXFeatures.h:
12561         * LaTeXFeatures.C: fix typos
12562
12563         * Spacing.h:
12564         * Spacing.C: move spacing_string into class
12565
12566         * ToolbarDefaults.C: move stuff into namespace anon
12567
12568         * layout.h: update enum
12569
12570         * lyxfunc.C: use better debug
12571
12572         * minibuffer.h: fix typo
12573
12574         * debug.h:
12575         * debug.C:
12576         * WorkArea.C: add and use Debug::WORKAREA
12577
12578         * lyxtext.h:
12579         * text.C:
12580         * text2.C: code re-organisation, inline helpers
12581
12582 2001-11-09  Michael A. Koziarski <michael@koziarski.org>
12583
12584         * Layout.C: replaced a few cases of std::vector.size() == 0 with
12585         std::vector.empty().
12586
12587 2001-11-09  Allan Rae  <rae@lyx.org>
12588
12589         * paragraph.C (TeXOnePar): remove old, now-irrelevent comments about
12590         '\n's after tables.  Tabular and ERT inset work now makes this no
12591         longer necessary.
12592
12593 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
12594
12595         * minibuffer.h:
12596         * minibuffer.C: fix crash, improve drop-down completion
12597
12598 2001-11-06  John Levon  <moz@compsoc.man.ac.uk>
12599
12600         * lyxserver.h:
12601         * lyxserver.C: invalidate fd's when doing endPipe()
12602
12603 2001-11-08  José Matos  <jamatos@fep.up.pt>
12604
12605         * buffer.C (sgmlLineBreak): renamed from linux_doc_line_break.
12606         (simpleDocBookOnePar): removed code made obsolete by the new inset code.
12607
12608         * paragraph.h:
12609         * paragraph.C (sgmlConvertChar): renamed from linuxDocConvertChar.
12610
12611 2001-11-07  José Matos  <jamatos@fep.up.pt>
12612
12613         * buffer.h:
12614         * buffer.C (sgmlError): linuxDocError renamed, and made public, added
12615         const qualifier.
12616
12617         * buffer.C (sgmlOpenTag):
12618         * buffer.C (sgmlCloseTag): removed debug info.
12619
12620         * buffer.h (sgmlOpenTag):
12621         * buffer.h (sgmlCloseTag): made public.
12622
12623 2001-11-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12624
12625         * buffer.C (saveParamsAsDefaults):
12626         * lyx_cb.C (MenuLayoutSave): remove
12627
12628         * LyXAction.C (init):
12629         * commandtags.h:
12630         * lyxfunc.C (dispatch): remove LFUN_LAYOUT_SAVE_DEFAULT.
12631
12632 2001-11-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12633
12634         * buffer.C (setPaperStuff): removed from here...
12635
12636         * bufferparams.C (setPaperStuff): ... and moved there.
12637
12638 2001-11-03  John Levon  <moz@compsoc.man.ac.uk>
12639
12640         * minibuffer.h:
12641         * minibuffer.C:
12642         * XFormsView.C: add support for drop-down completion
12643
12644 2001-11-03  Dekel Tsur  <dekelts@tau.ac.il>
12645
12646         * paragraph.C (TeXOnePar): Correct placement of \selectlanguage
12647         commands.
12648
12649 2001-10-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12650
12651         * gettext.C (locale_init): set LC_NUMERIC to "C" even if nls is
12652         disabled.
12653
12654 2001-10-30  John Levon  <moz@compsoc.man.ac.uk>
12655
12656         * lyx_main.C: change ref to known bugs
12657
12658 2001-10-30  Kayvan A. Sylvan  <kayvan@sylvan.com>
12659
12660         * LaTeXFeatures.C (getPackages): Use lyxskak.sty now instead
12661         to work around older babel problems.
12662
12663 2001-10-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
12664
12665         * LaTeXFeatures.[hC]: Now uses skak.sty for chess material.
12666
12667 2001-10-24  Juergen Vigna  <jug@sad.it>
12668
12669         * tabular-old.C (ReadOld): below variable changes reflected.
12670
12671         * tabular.[Ch]: added ltType struct for longtable header/footer
12672         defines and changed all instances where they are used. Added
12673         future support for double top/bottom rows.
12674
12675 2001-10-24  José Matos  <jamatos@fep.up.pt>
12676
12677         * buffer.h (docbookHandleCaption):
12678         * buffer.C (docbookHandleCaption): removed unused function.
12679         (makeDocBookFile): moved docbook supported version to v4.1.
12680
12681 2001-10-24  José Matos  <jamatos@fep.up.pt>
12682
12683         * tabular.h:
12684         * tabular.C (docbookRow): new function to export docbook code of a row.
12685         (DocBook): now honors the longtable flags.
12686
12687 2001-10-23  José Matos  <jamatos@fep.up.pt>
12688
12689         * LaTeXFeatures.h:
12690         * LaTeXFeatures.C (getLyXSGMLEntities): new function to get the name
12691         of the lyx defined sgml entities used in a docbook/linuxdoc document.
12692
12693         * buffer.C (makeLinuxDocFile):
12694         (makeDocBookFile): reworked the preamble, more clean, and with
12695         support for lyx defined entities. Changed the document declaration
12696         to be more XML friendly.
12697
12698         * tabular.C (DocBook): removed / terminator to be more SGML friendly,
12699         if we need to output XML that should be done with a filter.
12700
12701 2001-10-22  Juergen Vigna  <jug@sad.it>
12702
12703         * sp_pspell.h (class PSpell): add alive function needed in the
12704         controller to see if the spellchecker could be started.
12705
12706 2001-10-22  Juergen Vigna  <jug@sad.it>
12707
12708         * buffer.C (insertStringAsLines): modify the font for inserting
12709         chars in certain conditions by calling checkInsertChar(font).
12710
12711 2001-10-19  Juergen Vigna  <jug@sad.it>
12712
12713         * text.C (workWidth): use getRow instead of wrong algorithm.
12714         (setHeightOfRow): fix for MARGIN_RIGHT_ADDRESS_BOX
12715
12716 2001-10-19  John Levon  <moz@compsoc.man.ac.uk>
12717
12718         * lyxserver.h:
12719         * lyxserver.C:
12720         * lyx_main.h:
12721         * lyx_main.C: add emergencyCleanup (remove pipes on crash)
12722
12723 2001-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12724
12725         * text.C (workWidth): do not search for the exact row when
12726         margintype is not MARGIN_RIGHT_ADDRESS_BOX. This is an
12727         optimization for big documents.
12728
12729 2001-10-18  Juergen Vigna  <jug@sad.it>
12730
12731         * text.C (workWidth): new function with added Inset * parameter.
12732
12733 2001-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12734
12735         * text2.C (setCursorFromCoordinates): use Paragraph::size_type
12736
12737         * lyxtext.h: change type of refresh_pos to Paragraph::size_type;
12738         change return type of getColumnNearX.
12739
12740
12741         * text.C (changeRegionCase): use uppercase/lowercase instead of
12742         toupper/tolower.
12743         (leftMargin):
12744         (rightMargin): simplify code by factoring out the uses of
12745         textclasslist.
12746         (labelFill):
12747         (numberOfHfills):
12748         (setHeightOfRow):
12749         (appendParagraph): use Paragraph::size_type
12750
12751 2001-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12752
12753         * vspace.C (asLatexString): add a missing break
12754
12755 2001-10-15  Herbert Voss  <voss@perce.de>
12756
12757         * vspace.C (asLatexString): fix bug in output of string for l% and p%.
12758
12759 2001-10-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12760
12761         * lyxfunc.C (getStatus): disable thesaurus when aiksaurus library
12762         is not available.
12763
12764 2001-10-10  André Pönitz <poenitz@gmx.net>
12765
12766         * lyxfunc.C: removed greek_kb_flag.
12767
12768 2001-10-10  Herbert Voss  <voss@perce.de>
12769
12770         * lyx_main.C: delete global string help_lyxdir.
12771
12772 2001-10-09  Herbert Voss  <voss@perce.de>
12773
12774         * commandtags.h (kb_action): added LFUN_HELP_TEXINFO.
12775
12776         * LyXAction.C (init): added LFUN_HELP_TEXINFO to items array.
12777
12778         * lyx_main.C: added global string help_lyxdir.
12779
12780         * lyxfunc.C (dispatch): added LFUN_HELP_TEXINFO to switch.
12781
12782 2001-10-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
12783
12784         * lyxrc.C (set_font_norm_type): support iso8859-4
12785
12786 2001-07-02  Claus Hentschel  <claus.hentschel@mbau.fh-hannover.de>
12787
12788         * LaTeX.C (deplog): add another regex for MikTeX
12789
12790 2001-10-05  Adrien Rebollo  <adrien.rebollo@gmx.fr>
12791
12792         * lyxrc.C (set_font_norm_type): support iso8859-3
12793
12794 2001-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12795
12796         * BufferView_pimpl.C (tripleClick): fix stupid logic error.
12797
12798         * LaTeXFeatures.C: remove special case of french and index
12799
12800         * buffer.C (makeLaTeXFile): _really_ load babel late (i.e. just
12801         before \begin{document}). This solves several incompatibilities.
12802
12803 2001-10-03  Garst Reese  <reese@isn.net>
12804
12805         * lyx_cb.C: change CheckTex error msg.
12806
12807 2001-10-03  José Matos  <jamatos@fep.up.pt>
12808
12809         * buffer.C (simpleDocBookOnePar): add support for pass_thru.
12810
12811 2001-10-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12812
12813         * .cvsignore: update
12814
12815         * lyx_main.C (commandLineVersionInfo): use new style version info.
12816
12817         * buffer.C (writeFile):
12818         (makeLaTeXFile):
12819         (makeLinuxDocFile):
12820         (makeDocBookFile): use lyx_docversion instead of LYX_DOCVERSION.
12821
12822         * WorkArea.C (WorkArea): use lyx_version instead of LYX_VERSION.
12823
12824         * version.h: update to use stuff in version.C
12825
12826         * version.C.in: new file. Contains version information determined
12827         at compile time. This is a merging of version.h and
12828         version_info.h.in.
12829
12830 2001-10-03  Juergen Vigna  <jug@sad.it>
12831
12832         * BufferView_pimpl.C (update): don't change "dirty" status in
12833         updateInset call.
12834
12835 2001-10-03  Angus Leeming  <a.leeming@ic.ac.uk>
12836
12837         * WorkArea.C (c-tor): re-position version string slightly.
12838
12839 2001-10-02  Angus Leeming  <a.leeming@ic.ac.uk>
12840
12841         * BufferView_pimpl.C (buffer): remove call to WorkArea::show() and
12842         revert to previous code.
12843
12844         WorkArea.[Ch]: (show, destroySplash): methods removed.
12845
12846         WorkArea.C: rework code so that it's an amalgam of the codes before and
12847         after the splash screen was moved to WorkArea.
12848
12849 2001-10-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12850
12851         * lyxrc.C (read):
12852         * vspace.C (inPixels):
12853         (lyx_advance):
12854         * kbmap.C (bind):
12855         * buffer.C (insertStringAsLines):
12856         (asciiParagraph): fix types to be large enough
12857
12858         * lyxlex_pimpl.h: change member status from short to int
12859
12860         * layout.h: fix type of endlabeltype
12861
12862         * kbmap.C (bind):
12863         * kbsequence.C (parse): change return type to string::size_type
12864
12865         * LaTeX.C (updateBibtexDependencies): comment out unneeded
12866         variable
12867
12868         * Bullet.C (bulletSize):
12869         (bulletEntry): do not use short ints as parameters
12870
12871         * BufferView2.C (insertLyXFile): change a char to an int.
12872
12873         * WorkArea.C (WorkArea): remove unneeded floats in computation
12874
12875 2001-10-01  Dekel Tsur  <dekelts@tau.ac.il>
12876
12877         * buffer.C (asciiParagraph): Treat '\\' as other chars.
12878
12879         * paragraph.C (asString): Do not ignore newline/hfill chars when
12880         copying to the clipboard.
12881
12882 2001-09-29  Dekel Tsur  <dekelts@tau.ac.il>
12883
12884         * paragraph_pimpl.C (simpleTeXSpecialChars): Call to textrow.start
12885         after a multi-line inset.
12886
12887 2001-09-28  Dekel Tsur  <dekelts@tau.ac.il>
12888
12889         * paragraph.C (validate): Set NeedLyXFootnoteCode
12890
12891 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
12892
12893         * lyxfont.C (LyXSizeNames): changed increase-error to increase
12894         and decrease-error to decrease.
12895
12896 2001-09-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12897
12898         * text2.C (deleteEmptyParagraphMechanism): reformat a bit to make
12899         it more readable (should be equivalent)
12900
12901 2001-09-27  Adrien Rebollo  <adrien.rebollo@gmx.fr>
12902
12903         * paragraph_pimpl.C (simpleTeXSpecialChars): handle latin9 too.
12904
12905 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12906
12907         * text2.C (fixCursorAfterDelete): new method. Fixes the parameters
12908         of a cursor (row, etc.) after a character has been deleted
12909         (deleteEmptyParagraphMechanism): call the method above on _all_
12910         cursors held by the LyXText when a double space has been
12911         detected/deleted.
12912
12913 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
12914
12915         * BufferView_pimpl.C (buffer): call WorkArea::show to pop-up the
12916         pixmap.
12917         (resizeCurrentBuff): remove code to destroy the old splash dialog.
12918
12919         * WorkArea.[Ch]: add the "LyX" pixmap and version string to the
12920         background. Use greyOut() and the new show() methods to toggle between
12921         the foreground and background. Add code to remove the splash after
12922         its initial showing.
12923
12924         * lyx_gui.C: Remove dependency on frontends/Dialogs.h.
12925         (create_forms): no longer call Dialogs::showSplash.
12926
12927 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12928
12929         * .cvsignore: add version_info.h
12930
12931 2001-09-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12932
12933         * version_info.h.in: new file
12934
12935         * Makefile.am: add version_info.h.in
12936
12937         * lyx_main.C (commandLineVersionInfo): use version_info defined in
12938         version_info.h instead of VERSION_INFO
12939
12940 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
12941
12942         * text.C (selectNextWordToSpellcheck): reverted change to if-block.
12943         The ERT inset now returns string().
12944
12945 2001-09-21  Angus Leeming  <a.leeming@ic.ac.uk>
12946
12947         * lyxtext.h, text.C (selectNextWord): renamed as
12948         selectNextWordToSpellcheck.
12949
12950         * text.C (selectNextWordToSpellcheck): Modified to not select
12951         words inside an ERT inset.
12952
12953 2001-09-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12954
12955         * lyx_cb.C (MenuLayoutSave): change a bit the question
12956
12957         * sp_base.h: include <sys/types.h>
12958
12959 2001-09-18  Angus Leeming  <a.leeming@ic.ac.uk>
12960
12961         * LColor.[Ch]: added graphicsbg to color enum and to ColorEntry.
12962
12963 2001-09-20  Michael Schmitt  <Michael.Schmitt@teststep.org>
12964
12965         * several files: fix typos in user-visible strings
12966
12967 2001-09-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12968
12969         * text2.C (pasteSelection): do not set the selection, since it
12970         will be cleared later. Actually, the intent was to fix the way the
12971         selection was set, but I figured rmoving the code was just as good.
12972
12973 2001-09-19  Dekel Tsur  <dekelts@tau.ac.il>
12974
12975         * FontLoader.C (available): Check if font is available without
12976         loading the font.
12977
12978 2001-09-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
12979
12980         * lyxrc.[Ch]: added auto_reset_options variable and associated code.
12981
12982 2001-09-13  Angus Leeming  <a.leeming@ic.ac.uk>
12983
12984         * lyxrc.[Ch]: added display_graphics variable and associated code.
12985
12986 2001-09-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12987
12988         * bufferparams.C (hasClassDefaults): new method. Returns true if
12989         the buffer parameters correspond to known class defaults
12990
12991 2001-09-17  Angus Leeming  <a.leeming@ic.ac.uk>
12992
12993         * XFormsView.C (show): set minimum size to the main window.
12994
12995 2001-09-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12996
12997         * text2.C (copySelection):
12998         (cutSelection):
12999         * lyxfind.C (LyXReplace):
13000         * BufferView_pimpl.C (Dispatch): pass the correct flag to
13001         LyXText::selectionAsString.
13002
13003         * paragraph.C (asString): add "label" argument to the second form
13004
13005         * text2.C (selectionAsString): add "label" argument and pass it to
13006         Paragraph::asString.
13007
13008 2001-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13009
13010         * lyx_main.C (commandLineHelp): remove version information
13011
13012 2001-09-08  Rob Lahaye  <lahaye@users.sourceforge.net>
13013
13014         * lyx_main.C: add -version commandline option
13015
13016 2001-09-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13017
13018         * paragraph.h: make the optional constructor arg required instead.
13019         some modifications to other files because of this.
13020
13021         * minibuffer.C (C_MiniBuffer_peek_event): make it static
13022
13023         * lyxserver.C (C_LyXComm_callback): make it static
13024
13025         * lyx_main.C (error_handler): make it static
13026
13027         * lyx_gui.C (LyX_XErrHandler): make it static
13028
13029         * XFormsView.C (C_XFormsView_atCloseMainFormCB): make it static
13030
13031         * WorkArea.C: make the extern "C" methods static.
13032
13033         * Makefile.am (lyx_LDADD): simplify
13034
13035 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
13036
13037         * commandtags.h: removed redundant LFUNs, LFUN_HELP_COPYRIGHT,
13038         LFUN_HELP_CREDITS, LFUN_HELP_VERSION.
13039
13040         * LyXAction.C (init):
13041         * lyxfunc.C (dispatch): associated code removal.
13042
13043 2001-09-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13044
13045         * lyxfont.h (isSymbolFont): shut off warning
13046
13047         * text.C (setHeightOfRow):
13048         (getVisibleRow): fix crash with empty paragraphs which have a
13049         bottom line
13050
13051 2001-09-07  Rob Lahaye  <lahaye@users.sourceforge.net>
13052
13053         * lyxrc.[Ch]: added dialogs_iconify_with_main variable and associated
13054         code.
13055
13056 2001-09-04  José Matos  <jamatos@fep.up.pt>
13057         * buffer.C
13058         * buffer.h
13059         * tabular.C (docbook): rename docBook method to docbook.
13060
13061 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
13062
13063         * Makefile.am: add dependencies to main.o.
13064
13065 2001-09-03  Dekel Tsur  <dekelts@tau.ac.il>
13066
13067         * FontLoader.C (available): Return false if !lyxrc.use_gui
13068
13069 2001-09-03  Michael Schmitt <schmitt@itm.mu-luebeck.de>
13070
13071         * FontInfo.C (query):
13072         * converter.C (view):
13073         * importer.C (Import):
13074         * exporter.C (Export): Can not -> cannot.
13075
13076 2001-09-02  John Levon  <moz@compsoc.man.ac.uk>
13077
13078         * BufferView_pimpl.C: allow to create index inset even if
13079           string is empty
13080
13081 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
13082
13083         * buffer.C (getLists): replace boost::tie code with an explicit pair
13084         as boost::tie can break some compilers.
13085
13086         * iterators.h: Added a std:: declaration to the return type of
13087         ParIterator::size.
13088
13089 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
13090
13091         * lyxrc.C: add help for view_dvi_paper_option, default to safe
13092           case.
13093
13094 2001-09-02  Dekel Tsur  <dekelts@tau.ac.il>
13095
13096         * iterators.[Ch]: New files. Provide paragraph iterators.
13097
13098         * buffer.C (changeLanguage): Use paragraph iterators.
13099         (isMultiLingual): ditto
13100
13101         * BufferView2.C (ChangeInsets): Use paragraph iterators.
13102
13103 2001-09-01  Dekel Tsur  <dekelts@tau.ac.il>
13104
13105         * FontLoader.C: Support for cmr font.
13106
13107 2001-08-31  Dekel Tsur  <dekelts@tau.ac.il>
13108
13109         * FontLoader.C (getFontinfo): Handle latex symbol fonts.
13110         (available): New method.
13111
13112         * FontInfo.C (getFontname): Use scalable fonts even when
13113         lyxrc.use_scalable_fonts is false, if no non-scalable fonts was
13114         found.
13115
13116 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
13117
13118         * converter.C (Formats::view): reverted! Incorrect fix.
13119
13120 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
13121
13122         * converter.C (Formats::view): only output the -paper option
13123         if the dvi viewer is xdvi, thereby fixing bug #233429.
13124
13125 2001-08-23  Herbert Voss  <voss@perce>
13126
13127         * BufferView_pimpl.C: small fix for LFUN_INSERT_BIBTEX
13128
13129 2001-08-20  Dekel Tsur  <dekelts@tau.ac.il>
13130
13131         * Spacing.h (Spacing): Set space to Default on in the default
13132         constructor.
13133
13134 2001-08-19  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13135
13136         * vc-backend.h (RCS::versionString): add RCS to version
13137         (CVS::versionString): add CVS to version
13138
13139         * vc-backend.C (scanMaster): do not add CVS to version.
13140         (scanMaster): do not add RCS to version
13141
13142         * lyxvc.C (versionString): new method
13143
13144         * lyxfunc.C (initMiniBuffer): use LyXVC::versionString
13145
13146 2001-08-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13147
13148         * Spacing.C (set): initialize fval
13149
13150 2001-08-15  Dekel Tsur  <dekelts@tau.ac.il>
13151
13152         * lyxlex_pimpl.C (next): Treat \ as normal char if not followed by
13153         " or \.
13154
13155 2001-08-16  Juergen Vigna  <jug@sad.it>
13156
13157         * lyxfunc.C (dispatch): implemented the new FINISHED states.
13158
13159 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
13160
13161         * BufferView_pimpl.C:
13162         * figureForm.C:
13163         * lyxtext.h:
13164         * text2.C: setParagraph takes linespacing now
13165
13166 2001-08-15  John Levon  <moz@compsoc.man.ac.uk>
13167
13168         * LyxAction.C: add internal LFUN_CITATION_INSERT
13169
13170         * LyXView.C: actually apply fix
13171
13172         * bufferlist.C: fix open non-existent file
13173
13174         * lyxfind.C: fix indentation
13175
13176         * lyxfunc.C: remove unneeded assert, fix typo
13177
13178 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
13179
13180         * MenuBackend.C: use "Floatname List"
13181
13182 2001-08-14  Dekel Tsur  <dekelts@tau.ac.il>
13183
13184         * buffer.C (parseSingleLyXformat2Token): Do not generate errors
13185         when converting LaTeX layout to insetERT.
13186         Generate a non-collapsed float when reading old float
13187
13188 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
13189
13190         * BufferView2.C (showLockedInsetCursor): Use normal cursor shape in
13191         ERT insets.
13192
13193 2001-08-13  Juergen Vigna  <jug@sad.it>
13194
13195         * text.C (fill): return 0 instead of 20 as this seems to be the more
13196         correct value.
13197
13198 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
13199
13200         * encoding.C (TransformChar): Use lyxrc.font_norm_type instead of
13201         lyxrc.font_norm.
13202
13203 2001-08-13  Juergen Vigna  <jug@sad.it>
13204
13205         * lyxfind.C (LyXReplace): fixed not single-replacing characters with
13206         casesensitive off.
13207         (SearchBackward): comment out the unlocking of the inset_owner this
13208         should not be needed!
13209
13210 2001-08-11  Dekel Tsur  <dekelts@tau.ac.il>
13211
13212         * Many files: Remove inherit_language, and add latex_language
13213
13214         * BufferView2.C (showLockedInsetCursor): Fix cursor shape in
13215         collapsible insets.
13216
13217 2001-08-10  Juergen Vigna  <jug@sad.it>
13218
13219         * text.C (prepareToPrint): fixed hfill-width in draw!
13220
13221         * BufferView2.C (selectLastWord): save the selection cursor as this
13222         now is cleared in the function LyXText::clearSelection!
13223
13224 2001-08-08  Juergen Vigna  <jug@sad.it>
13225
13226         * BufferView_pimpl.C (Dispatch): use a non-cut-buffer cut on DELTE
13227         BACKSPACE type functions.
13228
13229         * CutAndPaste.C (cutSelection): added a bool so that the stuff actually
13230         is only cutted from the document but not put in the cut-buffer, where
13231         still the old stuff should be.
13232
13233         * text2.C (cutSelection): added bool to pass to CutAndPaste::cutSelection.
13234
13235         * BufferView2.C (cut): added a bool to pass to LyXText::cutSelection.
13236
13237         * tabular.C (SetWidthOfCell): fixed special case where the width
13238         was not updated!
13239         (LeftLine): handle '|' in align_special.
13240         (RightLine): ditto
13241         (LeftAlreadyDrawed): ditto
13242         (SetWidthOfCell): ditto
13243
13244 2001-08-07  Juergen Vigna  <jug@sad.it>
13245
13246         * lyx_main.C (readUIFile): fixed some forgotten lowercase!
13247
13248 2001-08-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13249
13250         * lyxlex_pimpl.[Ch]: converto to lowercase funcs
13251         * lyxlex.[hC]: ditto
13252
13253 2001-08-06  Juergen Vigna  <jug@sad.it>
13254
13255         * text.C (getVisibleRow): fix up row clearing a bit.
13256
13257 2001-08-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13258
13259         * minibuffer.C: make sure the X server sees the changes in the input.
13260
13261 2001-08-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13262
13263         * paragraph.C (getFont): split into...
13264         (getLabelFont): this
13265         (getLayoutFont): and this
13266         * paragraph_pimpl.C (realizeFont): calling this
13267
13268         * text2.C (getFont): split into...
13269         (getLayoutFont): this
13270         (getLabelFont): and this
13271         (realizeFont): all three calling this
13272
13273         * lyxfont.h: remove all NO_LATEX macros and code... adjust all
13274         files where used.
13275
13276 2001-08-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13277
13278         * lyxfunc.C (getStatus): add checkbox support for LFUN_APPENDIX
13279
13280 2001-08-02  Kayvan A. Sylvan  <kayvan@sylvan.com>
13281
13282         * BufferView_pimpl.C (smartQuote): Added code to exempt pass_thru
13283         layouts from the Quote inset insertion.
13284
13285 2001-08-03  Juergen Vigna  <jug@sad.it>
13286
13287         * BufferView_pimpl.C (update): do the fitCursor only at the end!
13288
13289         * screen.C (drawFromTo): don't call fitcursor here and do the loop
13290         only if status not is already CHANGED_IN_DRAW (second level).
13291
13292         * text.C (draw): don't set the need_break_row when inside an
13293         InsetText LyXText.
13294
13295 2001-08-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13296
13297         * buffer.C (parseSingleLyXformat2Token): handle more latex
13298         conversion cases.
13299
13300         * bufferview_funcs.[hC]: change function names to
13301         begin with small char, adjust other files.
13302
13303 2001-08-02  André Pönitz <poenitz@gmx.net>
13304
13305         * lyxfunc.C:
13306         BufferView_pimpl.C: remove broken special code for math-greek
13307
13308 2001-08-02  Juergen Vigna  <jug@sad.it>
13309
13310         * BufferView_pimpl.C (update): redone this function so that we
13311         update the text again if there was a CHANGE_IN_DRAW.
13312
13313         * screen.C (cursorToggle): removed LyXText parameter and recoded.
13314         (drawFromTo): added a new internal bool which is used by draw() and
13315         redraw() function.
13316         (general): some cursor drawing problems fixed.
13317
13318 2001-08-01  Juergen Vigna  <jug@sad.it>
13319
13320         * lyxfind.C (LyXFind): fixed
13321         (SearchForward): ditto
13322         (SearchBackward): ditto
13323
13324         * BufferView_pimpl.C (workAreaMotionNotify): hopefully fixed the
13325         spurius drawing of the cursor in the main area.
13326
13327         * text2.C (status): small fix which could lead to a segfault!
13328         (clearSelection): remove unneeded BufferView param.
13329
13330 2001-08-01  André Pönitz <poenitz@gmx.net>
13331
13332         * lyxfunc.C: small change due to changed mathed interface
13333
13334 2001-08-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13335
13336         * bufferlist.C (loadLyXFile): add .lyx to file name if necessary
13337
13338 2001-08-01  John Levon  <moz@compsoc.man.ac.uk>
13339
13340         * lyxfunc.c: fail gracefully if file doesn't exist
13341
13342         * LyXSendto.C:
13343         * buffer.C:
13344         * lyxfunc.C:
13345         * BufferView_pimpl.C: IsDirWriteable() proto changed
13346
13347         * LyXView.C: fix updateWindowTitle() to store the last title
13348
13349 2001-07-31  Juergen Vigna  <jug@sad.it>
13350
13351         * text.C (setHeightOfRow): fixed setting of ascent/descent based on
13352         the font (wrong since using of Paragraph::highestFontInRange).
13353
13354         * paragraph.C (highestFontInRange): added a default_size parameter.
13355
13356         * text.C (getVisibleRow): minor clear row changes (still not perfect).
13357         (setHeightOfRow): reformat
13358
13359 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13360
13361         * converter.[hC] + affected files: move to (inital-char)lowercase
13362         function names.
13363
13364         * ParagraphParameters.C (ParagraphParameters): remove commented code
13365
13366         * PainterBase.[Ch]: remove commented code
13367
13368         * LaTeXFeatures.h: add "bool floats" for float.sty
13369
13370         * LaTeXFeatures.C (LaTeXFeatures): init floats
13371         (require): handle float
13372         (getPackages): do it with floats
13373
13374 2001-07-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13375
13376         * BufferView_pimpl.C (Dispatch): improve handling of
13377         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE
13378
13379         * commandtags.h: #include lyxfont.h here temporarily to avoid
13380         keybinding bug.
13381
13382         * bufferlist.h: include LString.h here.
13383
13384 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13385
13386         * text2.C (getStringToIndex): new method.
13387
13388 2001-07-29  Asger Alstrup Nielsen  <alstrup@alstrup>
13389
13390         * *: Reduced header file dependencies all over.
13391
13392 2001-07-30  Baruch Even  <baruch@lyx.org>
13393
13394         * buffer.C (readInset): Stop auto-converting InsetFig to InsetGraphics.
13395
13396 2001-07-29  Baruch Even  <baruch@lyx.org>
13397
13398         * buffer.C (readInset): Changed GRAPHICS to Graphics.
13399
13400 2001-07-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13401
13402         * ParameterStruct.h (endif): add a default constructor to make
13403         sure that all variables is initialized.
13404
13405         * ParagraphParameters.C (ParagraphParameters): adjust
13406
13407 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13408
13409         * BufferView_pimpl.C (Dispatch): use WHOLE_WORD selection for
13410         index; also, check that there is something to index, and that it
13411         does not span over several paragraphs.
13412         (doubleClick): use WHOLE_WORD_STRICT for double click.
13413
13414         * text.C (getWord): handle new WHOLE_WORD_STRICT word_location value.
13415
13416         * text2.C (toggleFree): do selection with WHOLE_WORD_STRICT
13417         scheme.
13418
13419 2001-07-26  Baruch Even  <baruch@lyx.org>
13420
13421         * buffer.C (readInset): Changed to call up InsetGraphics when reading
13422         an InsetFig figure, backwards compatible reading of old figure code.
13423
13424 2001-07-27  Juergen Vigna  <jug@sad.it>
13425
13426         * text2.C: font.realize function adaption.
13427
13428         * text.C (draw): add a warnings lyxerr text if needed.
13429
13430         * layout.C: font.realize function adaption.
13431
13432         * language.C: add inherit_language and implement it's handlings
13433
13434         * bufferview_funcs.C (StyleReset): remove language parameter from
13435         font creation (should be language_inherit now).
13436
13437         * bufferparams.C (writeFile): handle ignore_language.
13438
13439         * paragraph.C (getFontSettings): the language has to be resolved
13440         otherwise we have problems in LyXFont!
13441
13442         * lyxfont.C (lyxWriteChanges): added document_language parameter
13443         (update): removed unneeded language parameter
13444
13445         * paragraph.C (validate): fixed wrong output of color-package when
13446         using interface colors for certain fonts in certain environments,
13447         which should not seen as that on the final output.
13448
13449 2001-07-26  John Levon  <moz@compsoc.man.ac.uk>
13450
13451         * BufferView_pimpl.C:
13452         * Thesaurus.h:
13453         * Thesaurus.C:
13454         * Makefile.am:
13455         * commandtags.h:
13456         * LyXAction.C: add thesaurus support
13457
13458         * lyxfind.h:
13459         * lyxfind.C: add "once" parameter, for thesaurus, to not
13460           move to the next match
13461
13462 2001-07-26  Juergen Vigna  <jug@sad.it>
13463
13464         * lyxfont.C (realize): honor ignore_language too!
13465         (resolved): ditto.
13466
13467         * paragraph.C (TeXOnePar): handle ignore language right (hopefully).
13468
13469         * text.C (draw): one place more for ignore_language to not draw
13470         itself!
13471
13472 2001-07-25  Angus Leeming  <a.leeming@ic.ac.uk>
13473
13474         * LaTeXFeatures.C (getPackages): clean-up a little of the natbib code.
13475
13476 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13477
13478         * buffer.C (parseSingleLyXformat2Token): a more general fix for
13479         the minipage conversion problem.
13480
13481 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13482
13483         * buffer.C (parseSingleLyXformat2Token): check minipage if we
13484         insert an inset.
13485
13486 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13487
13488         * BufferView.h: don't forward declare WorkArea
13489
13490         * BufferView.C: don't include WorkArea.h
13491
13492 2001-07-25  André Pönitz <poenitz@gmx.net>
13493
13494         * commandtags.h:
13495         * LyXAction.C:
13496         * lyxfunc.C:  new LFUN 'math-space'
13497
13498         * BufferView.[Ch]: remove unneeded reference to 'WorkArea'
13499
13500 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13501
13502         * text2.C (toggleInset): call open/close
13503
13504 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13505
13506         * lyxfunc.C (dispatch): add debug for the disabled case
13507
13508         * font.C (buttonText): make similar to rectText
13509
13510         * buffer.C (readInset): comment out parsing of insetlist and
13511         insttheorem
13512
13513         * PainterBase.C (rectText): small correction
13514
13515         * BufferView_pimpl.C: comment out insettheorem and insetlist
13516         * LyXAction.C: ditto
13517         * commandtags.h: ditto
13518
13519 2001-07-24  Juergen Vigna  <jug@sad.it>
13520
13521         * text.C (draw): honor the ignore_language.
13522
13523         * lyxfont.C (LyXFont): set language to ignore_language in FONT_INIT1.
13524
13525 2001-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13526
13527         * lyxfunc.C (getStatus): BREAKLINE does _not_ insert a special
13528         char inset.
13529
13530 2001-07-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13531
13532         * lyxtext.h: remove unused (and unimplemented) methods
13533
13534 2001-07-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13535
13536         * text.C (getVisibleRow): honor background color
13537
13538         * PainterBase.h:
13539         * Painter.h: remove default color argument for fillRectangle
13540
13541         * text.C (backgroundColor): new method
13542
13543 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13544
13545         * text.C (getVisibleRow): adjust
13546
13547         * font.[Ch] (rectText): new method, metrics
13548         (buttonText): new method, metrics
13549
13550         * PainterBase.[hC]: make rectText and buttonText always draw and take
13551         fewer paramteres.
13552
13553 2001-07-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13554
13555         * ToolbarDefaults.C (read):
13556         * MenuBackend.C (read): allow escaping in all strings
13557
13558         * BufferView_pimpl.C (insertAndEditInset): new method.
13559         (Dispatch): use insertAndEditInset whenever appropriate.
13560
13561         * BufferView_pimpl.C (insertNote): removed
13562
13563         * BufferView_pimpl.C (smartQuote): new method, moved from
13564         BufferView; if an insetquote cannot be inserted, insert a '"'
13565         character instead.
13566
13567         * BufferView2.C: remove insertCorrectQuote();
13568
13569         * lyxfunc.C (getStatus): Add support for all remaingin
13570         inset-insert lfuns.
13571
13572         * trans_mgr.C (insertVerbatim): do not treat '"' specially.
13573
13574         * lyxrc.C (read): in RC_BIND, allow escaped sequences in the
13575         command (necessary to pass " as parameter of self-insert.
13576
13577         * text.C (selectWordWhenUnderCursor):
13578         (selectWord): add word_location parameter
13579         (selectWordWhenUnderCursor): same + remove special code for word
13580         boundary.
13581         (selectNextWord): use kind() to guess type of insetspecialchar,
13582         not latex().
13583
13584         * buffer.C (insertStringAsLines): new method, extracted from LyXText.
13585         (insertErtContents): create ert insets as collapsed.
13586         (readInset): better compatibility code for Info inset.
13587
13588 2001-07-20  Juergen Vigna  <jug@sad.it>
13589
13590         * lyxfunc.C (dispatch): use always LyXFind now!
13591
13592         * text2.C (init): add a reinit flag so that the LyXText can be
13593         reinited instead of deleted and reallocated (used in InsetText).
13594
13595         * BufferView_pimpl.C: use the new Inset::edit(BV, bool) where needed.
13596
13597         * text.C: ditto
13598
13599         * text2.C: ditto
13600
13601 2001-07-18  Juergen Vigna  <jug@sad.it>
13602
13603         * text.C (selectNextWord): handle insets inside inset by calling
13604         always the bv->text functions so that we can go up the_locking_inset!
13605
13606         * BufferView_pimpl.C (show/hideCursor): fixed cursor showing up
13607         in strange locations when inside an inset!
13608
13609         * lyxfind.[Ch]: give all functions a LyXText * parameter and implement
13610         handling to include insets.
13611
13612         * lyxfunc.C (dispatch): changes to calls SearchBackward/Forward.
13613
13614 2001-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13615
13616         * LyXAction.C (init):
13617         * commandtags.h:
13618         * BufferView_pimpl.C (Dispatch): change HYPHENATION_BREAK to
13619         LIGATURE_BREAK, since the name is so stupid.
13620
13621 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
13622
13623         * buffer.C (readInset): enable reading of new InsetNotes as well as old
13624         InsetInfos.
13625
13626         * FontLoader.C: remove FORMS_H_LOCATION cruft.
13627
13628         * sp_form.[Ch]: remove.
13629
13630         * src/LColor.[Ch]: remove noteframe. Change note to "yellow".
13631
13632         * src/BufferView_pimpl.C (insertNote): use InsetNote in place of
13633         InsetInfo.
13634
13635         * src/buffer.C (readInset): ditto.
13636
13637 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13638
13639         * BufferView_pimpl.C (specialChar): new method. Obsoletes
13640         menuSeparator(), endOfSentenceDot(), ldots() and
13641         hyphenationPoint(), which are therefore removed.
13642         (Dispatch): handle LFUN_HYPHENATION_BREAK.
13643
13644         * LyXAction.C (init):
13645         * commandtags.h: add LFUN_HYPHENATION_BREAK.
13646
13647         * paragraph.C (getWord): removed.
13648
13649         * BufferView_pimpl.C (Dispatch): use last word or selection for
13650         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE.
13651
13652         * lyx_main.C (queryUserLyXDir): do not ask before creating
13653         user_dir, except if it has been named explicitely.
13654
13655 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
13656
13657         * BufferView_pimpl.C (updateScrollbar): Fix crash when reading in
13658         a document of zero size.
13659
13660 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
13661
13662         * LaTeXFeatures.[Ch]: add variable "bool natbib" and set it
13663         approriately in the c-tor and in require().
13664         (getPackages): output the appropriate LaTeX for natbib support.
13665
13666         * buffer.C (parseSingleLyXformat2Token): set the new bufferparams
13667         variables "use_natbib" and "use_numerical_citations" when reading the
13668         LyX file.
13669         (readInset): read the various natbib cite commands.
13670         (validate): white-space change.
13671
13672         * bufferparams.[Ch]: new variables "bool use_natbib" and
13673         "bool use_numerical_citations".
13674         (writeFile): output them in the LyX file.
13675
13676 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13677
13678         * lyxfunc.C (getStatus): add support for all the inset insertion
13679         commands.
13680
13681         * text2.C (insertInset):
13682         * paragraph.C (insetAllowed):
13683         * BufferView_pimpl.C (insertInset): update to take in account the
13684         renaming of insertInsetAllowed
13685
13686         * lyxfunc.C (getStatus): add support for LFUN_INSET_TOGGLE.
13687
13688         * text2.C (getInset): new method. returns inset at cursor position.
13689
13690         * BufferView_pimpl.C (Dispatch): changes because of this.
13691
13692         * LyXAction.C (init): rename open-stuff to inset-toggle.
13693
13694         * commandtags.h: rename LFUN_OPENSTUFF to LFUN_INSET_TOGGLE.
13695
13696         * text2.C (toggleInset): renamed from openStuff; use
13697         Inset::open().
13698
13699 2001-07-13  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
13700
13701         * lyxrc.C (set_font_norm_type): recognise ISO_8859_15.
13702
13703         * lyxrc.h: added ISO_8859_15 to enum FontEncoding.
13704
13705 2001-07-18  Dekel Tsur  <dekelts@tau.ac.il>
13706
13707         * buffer.C (readLyXformat2): Add filename to the error dialog
13708
13709 2001-07-18  Juergen Vigna  <jug@sad.it>
13710
13711         * tabular.C (GetCellNumber): put an assert here instead of the check!
13712
13713 2001-07-17  Juergen Vigna  <jug@sad.it>
13714
13715         * BufferView_pimpl.C (toggleSelection): adapted too.
13716
13717         * text.C (selectNextWord): adapted for use with insets.
13718         (selectSelectedWord): ditto
13719
13720 2001-07-17  Juergen Vigna  <jug@sad.it>
13721
13722         * sp_spell.C (PSpell): fix initialitation order.
13723
13724 2001-07-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13725
13726         * paragraph.C: spacing
13727
13728 2001-07-17  Edwin Leuven  <leuven@fee.uva.nl>
13729
13730         * sp_spell.C: repair language selection for pspell
13731
13732 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13733
13734         * lyxfunc.h: change more methods to begin with lower char.
13735
13736 2001-07-16  Dekel Tsur  <dekelts@tau.ac.il>
13737
13738         * buffer.C (parseSingleLyXformat2Token): Generate error insets
13739         for unknown layouts.
13740
13741 2001-07-13  Dekel Tsur  <dekelts@tau.ac.il>
13742
13743         * buffer.C (readLyXformat2): Generate an error dialog if there are
13744         unknown layouts.
13745
13746 2001-07-16  Juergen Vigna  <jug@sad.it>
13747
13748         * sp_spell.C: always compile ISpell part.
13749
13750         * lyxrc.C: added use_pspell entry and it's handling.
13751
13752 2001-07-13  Juergen Vigna  <jug@sad.it>
13753
13754         * sp_spell.C: removed double includes.
13755
13756 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
13757
13758         Consistent use of Lsstream.h:
13759         * Lsstream.h: added using std::stringstream for consistencies sake.
13760
13761         * buffer.C: removed using std::stringstream
13762
13763         * lyxfont.C (stateText):
13764         * paragraph.C (asString):
13765         * text.C (selectNextWord, selectSelectedWord):
13766         * text2.C (setCounter):
13767         * vspace.C (asString, asLatexString):
13768         std::ostringstream -> ostringstream.
13769
13770 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
13771
13772         * LyXAction.C: add LFUN_HELP_ABOUTLYX
13773         * commandtags.h: add LFUN_HELP_ABOUTLYX
13774         * lyxfunc.C: add about lyx remove credits/copyright/version stuff
13775
13776 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
13777
13778         * BufferView_pimpl.C: sigchldchecker instead of sigchldhandeler in
13779         cursorToggle()
13780         * lyx_gui_misc.C: remove spellchecker
13781         * lyxfunc.C: showSpellchecker
13782         * sp_base.h: added
13783         * sp_ispell.h: added
13784         * sp_pspell.h: added
13785         * sp_spell.C: added
13786         * sp_form.[Ch]: removed
13787         * spellchecker.[Ch]: removed
13788
13789 2001-07-12  Kayvan A. Sylvan  <kayvan@sylvan.com>
13790
13791         * paragraph_pimpl.C (simpleTeXBlanks): Simply return if pass_thru
13792         is set.
13793         (simpleTeXSpecialChars): Simply print the input character without
13794         any special translation if pass_thru is set.
13795
13796         * layout.h: Added bool pass_thru to layout class for being able to
13797         implement pass through of a paragraph for Literate Programming.
13798
13799         * layout.C: add LT_PASS_THRU to LayoutTags enum.
13800         * layout.C (LyXLayout): set pass_thru to flase in constructor.
13801         * layout.C (Read): add "passthru" to list of layout tags and add
13802         code to set the pass_thru boolean when it is read.
13803
13804 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13805
13806         * trans_decl.h: remove allowed from KmodInfo
13807
13808         * trans.[Ch] (AddDeakkey): change prototype to not have allowd.
13809         remove allowed code
13810         (Load): adjust
13811
13812         * paragraph_pimpl.C (erase): use boost::prior
13813
13814         * Painter.C (text): use data() instead of c_str() when length is
13815         also provided.
13816         * WorkArea.C (putClipboard): ditto
13817         * font.h (width): ditto
13818
13819         * BufferView2.C: use it-> instead of (*it). for iterators
13820         * texrow.C: ditto
13821         * paragraph_pimpl.C: ditto
13822         * paragraph.C: ditto
13823         * minibuffer.C: ditto
13824         * language.C: ditto
13825         * kbmap.C: ditto
13826         * encoding.C: ditto
13827         * counters.C: ditto
13828         * converter.C: ditto
13829         * chset.C: ditto
13830         * Variables.C: ditto
13831         * TextCache.C: ditto
13832         * MenuBackend.C: ditto
13833         * LyXAction.C: ditto
13834         * LColor.C: ditto
13835         * FloatList.C: ditto
13836         * DepTable.C: ditto
13837         * ColorHandler.C (LyXColorHandler): ditto
13838
13839 2001-07-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13840
13841         * BufferView_pimpl.C (Dispatch): handle LFUN_OPENSTUFF.
13842
13843         * text2.C (openStuff): reintroduce this method (which had been
13844         nuked in NEW_INSETS frenzy).
13845
13846         * lyxfunc.C (Dispatch): when an action has not been handled, use
13847         its name in the error message, not its number.
13848
13849         * paragraph.C (inInset): change method name to begin with lowercase.
13850
13851         * undo_funcs.C:
13852         * text2.C: updates because of this.
13853
13854 2001-07-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13855
13856         * ToolbarDefaults.C (add): add spaces in error message
13857
13858 2001-07-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13859
13860         * buffer.C (readLyXformat2): initialize the ert comp. variables.
13861         (readLyXformat2): rename return_par to first_par, use lyxlex's
13862         pushToken and remove the manual push handling.
13863         (parseSingleLyXformat2Token): add another ert comp. variable:
13864         in_tabular, rename return_par to first_par. handle newlines better
13865
13866 2001-07-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13867
13868         * kbsequence.C (getiso): redirect debug info to Debug::KBMAP.
13869
13870 2001-07-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13871
13872         * text2.C (getParFromID): removed
13873
13874         * buffer.C (getParFromID): new method moved form lyxtext.
13875         * BufferView2.C (insertErrors): adjust
13876         (setCursorFromRow): adjust
13877         * BufferView_pimpl.C (restorePosition): adjust
13878         * lyxfunc.C (Dispatch): adjust
13879         * undo_funcs.C (textUndo): adjust
13880         (textRedo): adjust
13881         (textHandleUndo): adjust
13882         (textHandleUndo): adjust
13883
13884 2001-07-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13885
13886         * buffer.C: up' the LYX_FORMAT
13887
13888         * lyxfont.h: turn NO_LATEX on as default
13889
13890         * buffer.C (insertErtContents): new methods of tex style compability.
13891         (parseSingleLyXformat2Token): use it several places.
13892         * tabular.C (OldFormatRead): and here
13893
13894 2001-07-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13895
13896         * text2.C: remove some commented code.
13897         reindent file.
13898
13899         * trans_mgr.[Ch]: simplify normalkey to only take a char as arg.
13900         * trans.C: changes because of the above.
13901
13902 2001-07-07  Dekel Tsur  <dekelts@tau.ac.il>
13903
13904         * text2.C (setCounter): Fix counters bug with bibliography layout.
13905
13906 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13907
13908         * paragraph_pimpl.C (simpleTeXBlanks): don't go through owner_ for
13909         own member functions
13910         (simpleTeXSpecialChars): ditto
13911
13912 2001-07-06  Juergen Vigna  <jug@sad.it>
13913
13914         * a lot of files: changed the access to LyXText::status and the
13915         call of undo-functions.
13916
13917         * undo.[Ch]: added a inset_id to the undo informations.
13918
13919         * undo_funcs.[Ch]: added and moved here all undo functions.
13920
13921         * lyxtext.h: give the status enum a weight, made status_ a private
13922         variable and made accessor functions for it, removed the whole bunch
13923         of undo-functions as they are now in their own file, make some
13924         functions publically available. Added function ownerParagraph with
13925         int parameter.
13926
13927         * paragraph.[Ch]: added "bool same_ids" to the constructor,
13928         made InInset() a const function, added getParFromID() function.
13929
13930         * buffer.[Ch]: added const version for inset_iterator functions,
13931         added getInsetFromID() function.
13932
13933         * BufferView2.C, BufferView_pimpl.C, text.C, text2.C, lyxfunc.C:
13934         changed undo functions for new version.
13935
13936 2001-07-05  Juergen Vigna  <jug@sad.it>
13937
13938         * paragraph_pimpl.C (Pimpl): set id_ also here (this is because some
13939         unknow mechanism does not call the proper constructor but only this
13940         one also if I request the other!?
13941
13942 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13943
13944         * BufferView_pimpl.C (resizeCurrentBuffer): init the new LyXText
13945
13946         * text2.C (LyXText): use initialization lists.
13947
13948         * lyxtext.h (Selection): initialize set_ and mark_
13949         (init): remove method
13950
13951 2001-07-05  Dekel Tsur  <dekelts@tau.ac.il>
13952
13953         * LaTeX.C (scanLogFile): Parse rerun messages from latex packages.
13954
13955 2001-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13956
13957         * screen.[Ch]: change method names to begin with lowercase
13958
13959         * BufferView_pimpl.C (updateScrollbar): simplify further and
13960         hopefully make it a bit faster.
13961
13962 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13963
13964         * ColorHandler.C (LyXColorHandler): use GUIRunTime instead of
13965         calling directly xforms functions.
13966
13967         * Painter.C (Painter):
13968         * lyx_cb.C (MenuWrite):
13969         * FontInfo.C (query): use GUIRunTime::x11Display() instead of
13970         fl_display.
13971
13972         * lyx_gui.C: remove bogus guiruntime extern declaration.
13973
13974 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13975
13976         * text2.C (redoHeightOfParagraph): comment out stuff we don't need
13977         in NEW_INSETS
13978         (redoDrawingOfParagraph): ditto
13979         (redoParagraphs): ditto
13980         (cutSelection): don't create a object for CutAndPaste use the
13981         static method directly
13982         (pasteSelection): ditto
13983
13984         * bufferview_funcs.[Ch]: move ProhibitInput and AllowInput to
13985         LyXview (+ rename)
13986
13987 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13988
13989         * modifications to some other files because of this.
13990
13991         * Makefile.am (lyx_SOURCES): add XFormsView
13992
13993         * XFormsView.[Ch]: new files
13994
13995         * LyXView.[Ch]: make LyXView a base class for the gui handling for
13996         the main window. Move the gui dependent stuff to XFormsView
13997
13998 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13999
14000         * tabular.C (GetCellInset): update cur_cell also in the row/col
14001         version of this function.
14002
14003         * lyxfunc.C: no need to include figure_form.h here.
14004
14005         * FontLoader.h:
14006         * lyxfunc.h:
14007         * lyxscreen.h:
14008         * text2.C:
14009         * lyxvc.C: no need to include forms.h here.
14010
14011 2001-06-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14012
14013         * lyxrc.C (read): change debugging channel for RC_BIND to lyxrc.
14014
14015         * lyxfunc.C (Dispatch):
14016         * Spacing.C (set):
14017         * BufferView_pimpl.C (Dispatch): use .c_str() on istringstream
14018         constructor argument.
14019
14020 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14021
14022         * paragraph.C (Paragraph): dont't clear, and just set layout.
14023         (makeSameLayout): use params's copy contructor.
14024
14025         * ParagraphParameters.[Ch] (makeSame): delete method
14026
14027 2001-06-29  John Levon  <moz@compsoc.man.ac.uk>
14028
14029         * Variables.[Ch]: fix indentation, rename set to isSet
14030
14031 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14032
14033         * lyxfunc.C (Dispatch): fix typo
14034
14035 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14036
14037         * paragraph_pimpl.C: add std:: qualifier to lower_bound and
14038         upper_bound.
14039
14040         * bufferlist.C: include assert.h for emergencyWrite().
14041
14042 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
14043
14044         * lyx_main.C: if we can't even find a readable LYX_DIR directory,
14045           give up at last (bug #425202) !
14046
14047 2001-06-27  John Levon  <moz@compsoc.man.ac.uk>
14048
14049         * lyx_gui_misc.C:
14050         * sp_form.h:
14051         * sp_form.C:
14052         * spellchecker.h:
14053         * spellchecker.C: strip spellchecker options and bring up
14054           preferences tab instead
14055
14056 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14057
14058         * BufferView_pimpl.C (Dispatch): add .c_str() to the argument of
14059         the istringstream constructor
14060
14061 2001-06-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14062
14063         * paragraph.C (getLayout): fix return value
14064
14065         * paragraph.h: do not declare getLayout as inline.
14066
14067         * lyxtext.h: remove LyXText:: qualifier to changeRegionCase
14068
14069 2001-06-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14070
14071         * lyxcursor.h (operator<): new func
14072         (operator>): new func
14073         (operator>=): new func
14074         (operator<=): new func
14075
14076         * text.C (changeCase): use selection.start and selection.end
14077         (changeRegionCase): require from to be <= to. Require par to be a
14078         valid paragraph.
14079
14080         * LaTeXFeatures.C (getFloatDefinitions): std:: qualify ostream
14081
14082 2001-06-27  Juergen Vigna  <jug@sad.it>
14083
14084         * text.C (cursorLeftOneWord): changed to return the cursor and added
14085         overlay with BufferView * parameter which calls this one.
14086         (getWord): added
14087         (selectWord): use new getWord function.
14088         (changeCase): renamed from changeWordCase as and extended to work
14089         also on selections.
14090
14091         * lyxtext.h: added enum word_location
14092
14093         * BufferView_pimpl.C (Dispatch): change function changeWordCase to
14094         changeCase as this operates now also on selections.
14095
14096 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
14097
14098         * lyxfunc.C (getStatus): support LFUN_MATH_MUTATE
14099
14100         * many files: send debug output to Debug::INFO instead of
14101         Debug::ANY.
14102
14103         * converter.C (View):
14104         (Convert):
14105         (Move): send debug output to Debug::FILES instead of console.
14106
14107 2001-06-26  The LyX Project  <lyx@rose.home.sad.it>
14108
14109         * lyxfunc.C (getStatus): use func_status
14110
14111         * func_status.h: new header, describing the results of
14112         LyXFunc::getStatus;
14113
14114         * lyxfunc.C (getStatus): add support for LFUN_MATH_VALIGN and
14115         LFUN_MATH_HALIGN.
14116
14117 2001-06-25  The LyX Project  <jug@sad.it>
14118
14119         * buffer.C (sgmlOpenTag):
14120         (sgmlCloseTag):
14121         (SimpleDocBookOnePar):  disable the depth spaces, for the moment.
14122
14123 2001-06-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14124
14125         * text2.C: remove some dead code
14126
14127         * tabular.C (GetCellInset): store the last cell checked (gotten)
14128
14129         * tabular.h: add the helper for the speedup
14130
14131         * lyxtext.h: remove some dead code
14132
14133 2001-06-26  The LyX Project  <Asger>
14134
14135         * paragraph.C: Change export to LaTeX of alignment to
14136         \begin{center} and family for better roundtrip work with reLyX.
14137
14138         * Tune the math drawing a bit.
14139
14140 2001-06-25  The LyX Project  <Asger>
14141
14142         * LColor.C (LColor): New color for math background. New color
14143         for buttons.
14144
14145 2001-06-25  The LyX Project  <jug@sad.it>
14146
14147         * lyxfunc.C (MenuNew): remove extra check for .lyx file
14148
14149         * lyxfunc.C (Open):
14150         * bufferlist.C (newFile): do not restrict to files ending with
14151         .lyx
14152
14153         * BufferView_pimpl.C (MenuInsertLyXFile):
14154
14155 2001-06-24  The LyX Project  <jug@sad.it>
14156
14157         * lyxlex_pimpl.C (compare_tags): use compare_ascii_no_case instead
14158         of compare_no_case
14159
14160 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14161
14162         * lyxtext.h: rename most methods to begin with a small char.
14163         Lots of changes because of this.
14164
14165         * paragraph.C (Paragraph): do not call fitToSize
14166         (erase): call Pimpl::erase
14167         (insertChar): call Pimpl::insertChar
14168         (insertInset): call Pipl::insertInset
14169         (breakParagraph): do not call fitToSize
14170         (breakParagraphConservative): do not call fitToSize
14171         (fitToSize): remove method
14172
14173         * buffer.C (parseSingleLyXformat2Token): do not call fitToSize
14174
14175 2001-06-24  The LyX Project  <Asger>
14176
14177         * Fix Qt compilation^2
14178
14179 2001-06-24  The LyX Project  <jug@sad.it>
14180
14181         * paragraph.[Ch] (outerHook): new method. mostly equivalent to
14182         depthHook(getDepth()-1).
14183
14184         * paragraph.h:
14185         * ParagraphParameters.h:
14186         * ParameterStruct.h: change type of depth to unsigned int ==
14187         depth_type. Many adaptations to other files before of that.
14188
14189 2001-06-24  The LyX Project  <Asger>
14190
14191         * Fix Qt compilation.
14192
14193 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14194
14195         * paragraph.h: renamed several methods to begin with small letter.
14196         several changes to many parts of the code because of this.
14197
14198 2001-06-23  The LyX Project  <jug@sad.it>
14199
14200         * text2.C (InsertStringAsLines): renamed from InsertStringA;
14201         rewritten to discard all double spaces when KeepEmpty is off
14202         (InsertStringAsParagraphs): renamed from InsertStringB; rewritten
14203         to only handle newlines but not fiddle with spaces and friends.
14204
14205         * lyxfunc.C (MenuNew): when doing 'new from template', use
14206         template_path as default directory
14207
14208 2001-06-23  The LyX Project  <Asger>
14209
14210         * Clean-up of header file includes all over
14211         * paragraph.h: Move some of the stuff into paragraph_pimpl.h
14212
14213 2001-06-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14214
14215         * paragraph.h: renamed from lyxparagraph.h
14216
14217 2001-06-23  Asger  <lyx@violet.home.sad.it>
14218
14219         * Buffer.h: Removed Buffer::resize
14220         * BufferList.h: Removed BufferList::resize
14221         * LyXView.h: Added LyXView::resize. This way, we will only reflow
14222         the document lazily when we change the width, or the font settings.
14223
14224 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
14225
14226         * lyxfunc.C: silently ignore empty dispatches from the minibuffer
14227
14228 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
14229
14230         * buffer.h: remove out of date comment
14231
14232 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
14233
14234         * lyxscreen.h:
14235         * screen.C: fix "theoretical" GC leak
14236
14237 2001-06-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14238
14239         * LaTeX.C (scanAuxFile):
14240         (deplog): remove trailing \r when reading stream (useful under
14241         win32)
14242
14243 2001-06-15  Angus Leeming  <a.leeming@ic.ac.uk>
14244
14245         * BufferView_pimpl.C (fitCursor): emit a signal updateParagraph.
14246         (resizeCurrentBuffer): have functions BufferView::theLockingInset()
14247         and BufferView::theLockingInset(Inset*), so should use them and not
14248         access bv_->text->the_locking_inset directly.
14249
14250         * lyxfunc.C (Dispatch): cosmetic name change of three signals.
14251
14252 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
14253
14254         * Makefile.am:
14255         * tex-defs.h: remove old unused file
14256
14257 2001-06-15  John Levon  <moz@compsoc.man.ac.uk>
14258
14259         * BufferView_pimpl.C: fix typo, remove minibuffer message
14260           when buffer has loaded
14261
14262 2001-06-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14263
14264         * lyxfunc.C (Dispatch): use stringstream
14265         (MenuNew): use stringstream
14266         (Open): use stringstream
14267
14268         * importer.C (Import): use stringstream
14269
14270         * bufferview_funcs.C (CurrentState): use stringstream
14271
14272         * LaTeX.C (run): use stringstream
14273
14274         * BufferView_pimpl.C (savePosition): use stringstream
14275         (restorePosition): use stringstream
14276         (MenuInsertLyXFile): use stringstream
14277
14278 2001-06-14  Angus Leeming  <a.leeming@ic.ac.uk>
14279
14280         * BufferView.C:
14281         * Bullet.C:
14282         * ColorHandler.C:
14283         * FontInfo.C:
14284         * FontLoader.C:
14285         * LColor.C:
14286         * LaTeXFeatures.C:
14287         * Painter.C:
14288         * gettext.C:
14289         * lyx_gui_misc.C:
14290         * lyxserver.C:
14291         * vspace.C: removed // -*- C++ -*- as first line.
14292
14293         * lyxfind.h:
14294         * version.h: added // -*- C++ -*- as first line.
14295
14296 2001-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14297
14298         * lyxfunc.C (getStatus): support LFUN_READ_ONLY_TOGGLE
14299
14300         * text2.C (SetSelectionOverString): do not test str[i]==0 for end
14301         of string
14302
14303 2001-06-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14304
14305         * buffer.C (parseSingleLyXformat2Token): fix compatability reading
14306         of floats.
14307
14308 2001-06-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14309
14310         * gettext.C: include LString.h even when --disable-nls is on.
14311
14312 2001-06-12  Angus Leeming  <a.leeming@ic.ac.uk>
14313
14314         * converter.h (Get): changed argument type from int to
14315         FormatList::size_type to avoid unnecessary conversion.
14316
14317         * bufferview_funcs.C (ToggleAndShow): check state of LyXText pointer
14318         before using it.
14319
14320 2001-06-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14321
14322         * gettext.h: include LString.h even when --disable-nls is on.
14323
14324 2001-06-07  Juergen Vigna  <jug@sad.it>
14325
14326         * text.C (BreakAgain): subst spaces with tabs.
14327
14328         * paragraph.C (deleteInsetsLyXText): set recursive on deleteLyXText.
14329         (resizeInsetsLyXText): set force on resizeLyXText.
14330
14331 2001-06-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14332
14333         * gettext.h (gettext_init):
14334         (locale_init): use a real definition instead of a macro
14335
14336 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
14337
14338         * Bufferview_pimpl.C:
14339         * LColor.h:
14340         * LColor.C: further lcolor tidies
14341
14342 2001-06-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14343
14344         * BufferView_pimpl.C (updateScrollbar): simplify.
14345
14346         * BufferView2.C: don't include insets/insetinfo.h, change
14347         prototype for insertInset and call the Pimpl version. let
14348         updateInset call Pimpl version.
14349
14350         * BufferView.h: move inset_slept to BufferView::Pimpl, move
14351         gotoInset to BufferView::Pimpl
14352
14353 2001-06-01  Juergen Vigna  <jug@sad.it>
14354
14355         * lyxfunc.C (Dispatch): LFUN_PREFIX don't call the update if we're
14356         inside a LockingInset (is the update needed at all?).
14357
14358 2001-05-31  Juergen Vigna  <jug@sad.it>
14359
14360         * BufferView_pimpl.C (Dispatch): we need a new instanze of cursor
14361         here not the old one otherwise how should we compare it afterwards
14362         if it's the same!
14363
14364 2001-06-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14365
14366         * lyxfont.C:
14367         * tabular.C:
14368         * tabular-old.C:
14369         * FontInfo.C: bring C functions into global namespace when
14370         necessary
14371
14372 2001-05-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14373
14374         * LString.h: make sure config.h has been loaded before LString.h.
14375
14376         * lyxlex_pimpl.C (EatLine): comment out annoying debug messages
14377         (one for each char read by EatLine!).
14378
14379         * lyx_main.C (init): constify lyxdir. Lowercase the name of some
14380         variables.
14381
14382 2001-06-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14383
14384         * paragraph.C (BreakParagraph): set the inset_owner in the new par
14385         to the same as the par we break from
14386
14387 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14388
14389         * commandtags.h: add LFUN_INSET_WIDE_FLOAT
14390
14391         * MenuBackend.C (expand): also create menu entries for wide
14392         versions of the floats.
14393
14394         * LyXAction.C (init): add entry for LFUN_INSET_WIDE_FLOAT
14395
14396         * BufferView_pimpl.C (Dispatch): implement LFUN_INSET_WIDE_FLOAT
14397
14398         * Makefile.am (lyx_DEPENDENCIES): adjust for change in
14399         frontends/Makefile.am
14400
14401         * text2.C: adjust
14402         * text.C: adjust
14403
14404
14405         * tabular.C (getTokenValue): add std::
14406
14407         * tabular-old.C (getTokenValue): add std::
14408         (getTokenValue): ditto
14409         (getTokenValue): ditto
14410
14411         * screen.C (ToggleSelection): adjust
14412
14413         * lyxtext.h: put selection cursors inside a Selection struct.
14414
14415         * lyxfunc.C (moveCursorUpdate): adjust
14416
14417         * lyxfont.C (latexWriteStartChanges): add std::
14418
14419         * lyxfind.C: adjust
14420
14421         * font.h: delete with(char const *, LyXFont const &)
14422
14423         * buffer.C (parseSingleLyXformat2Token): use contains instead of strstr
14424
14425         * FontInfo.C (getFontname): add std::
14426
14427         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
14428         (workAreaButtonPress): adjust
14429         (tripleClick): adjust
14430         (update): adjust
14431         (moveCursorUpdate): adjust
14432         (Dispatch): adjust
14433
14434         * BufferView2.C (gotoInset): adjust
14435
14436 2001-05-30  Juergen Vigna  <jug@sad.it>
14437
14438         * spellchecker.C (USE_ORIGINAL_MANAGER_FUNCS): as it seems only I use
14439         to check pspell I add this as default as I now have new pspell
14440         libraries and they seem to use this.
14441
14442 2001-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14443
14444         * text2.C (CutSelection): make the cursor valid before the call to
14445         ClearSelection.
14446
14447 2001-05-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14448
14449         * kbsequence.C (parse): de-uglify a bit the parsing code, which
14450         relied on 0 terminated strings and other horrors. Bug found due to
14451         the new assert in lyxstring!
14452
14453         * lyx_main.C (defaultKeyBindings): add bindings the cursor-related
14454         KP_ keys.
14455
14456 2001-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14457
14458         * lyx_main.C (defaultKeyBindings): move self-insert KP_ bindings
14459         to latinkeys.bind.
14460
14461         * lyxfunc.C (processKeySym): change method of getting to the
14462         self-insert char.
14463
14464         * BufferView(2).[Ch]: move hfill, protectedBlank, newline,
14465         menuSeparator, endOfSentenceDot, ldots, hypenationPoint and menuUndo
14466         * BufferView_pimpl.[Ch]: here as private methods.
14467
14468 2001-05-28  Juergen Vigna  <jug@sad.it>
14469
14470         * text.C (SetHeightOfRow): added the update() call again as it is
14471         needed to initialize inset dimensions!
14472
14473 2001-05-16  Juergen Vigna  <jug@sad.it>
14474
14475         * text2.C (SetCharFont): Add new function with BufferView * and
14476         bool toggleall parameters for setting insets internal fonts.
14477         (SetFont): Freeze the undo as we may change fonts in Insets and
14478         all this change should be inside only one Undo!
14479
14480         * bufferview_funcs.C (ToggleAndShow): fixed this functions for
14481         setting font's in insets as for them we have the SetFont function!
14482
14483 2001-05-15  Juergen Vigna  <jug@sad.it>
14484
14485         * text2.C (ClearSelection): to be sure we REALLY don't have any
14486         selection anymore!
14487
14488         * tabular.C (TeXCellPreamble): fixed the left border problem for
14489         multicolumn cells.
14490
14491 2001-05-27  Dekel Tsur  <dekelts@tau.ac.il>
14492
14493         * LaTeX.C (deplog): Make sure that the main .tex file is in the
14494         dependancy file
14495
14496 2001-05-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14497
14498         * lyx_main.C (defaultKeyBindings): set KP_enter to point at
14499         LFUN_BREAKPARAGRAPH.
14500
14501         * LyXAction.C (init): remove external name for LFUN_LAYOUTNO, set
14502         help test to "internal only", similar for LFUN_INSERT_URL
14503
14504         * BufferView_pimpl.C (Dispatch::LFUN_QUOTE): change it to to the insertcorrectQuote.
14505         (Dispatch::LFUN_SELFINSERT): fix to handle math greek,
14506         auto_region_delete and deadkeys.
14507
14508 2001-05-22  John Levon  <moz@compsoc.man.ac.uk>
14509
14510         * LColor.h:
14511         * LColor.C: remove some dead entries, tidy a little
14512
14513 2001-05-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14514
14515         * lyxfunc.C (processKeySym): comment the Escape handling, remove
14516         commented code.
14517         (Dispatch): implement LFUN_ESCAPE
14518
14519         * commandtags.h: add LFUN_ESCAPE
14520
14521         * LyXAction.C (init): add entry for LFUN_ESCAPE
14522
14523         * BufferView_pimpl.C (Dispatch): adjust for open_new_inset move.
14524         Remove commented code.
14525         (insertNote): moved here
14526         (open_new_inset): moved here
14527
14528         * BufferView[2].[Ch]: move insertNote and open_new_inset to
14529         BufferView_pimpl
14530
14531 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14532
14533         * kbmap.C (findbinding): clean it up and make it work correctly.
14534
14535         * lyx_main.C (init): do not pass argc and argv as parameters
14536
14537 2001-05-16  Ruurd Reitsma  <r.a.reitsma@wbmt.tudelft.nl>
14538
14539         * buffer.C: fix path for OS/2 & Win32
14540
14541         * lyx_gui.C:
14542         * lyx_main:
14543         * lyx_main.C: Added os:: class.
14544
14545         * os2_defines.h: update
14546
14547 2001-05-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14548
14549         * lyxfunc.[Ch] (processKeySym): return void. Handle unknown actions
14550         better by trying again with reduced state.
14551
14552 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14553
14554         * lyxrc.C (read): print error about invalid key sequence only when
14555         debugging (because not all latinX keysyms are known to some X
14556         servers)
14557
14558         * kbsequence.C (getiso): add a few std:: qualifiers
14559         (getiso): comment out extra return statement.
14560
14561 2001-05-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14562
14563         * BufferView_pimpl.C (Dispatch): comment out the old "default" key
14564         handling.
14565         (Dispatch): enhance the accent inset a bit. (not perfect)
14566
14567 2001-05-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14568
14569         * buffer.C (makeLaTeXFile): use stringstream on language_optons.
14570
14571 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14572
14573         * bufferlist.C (emergencyWrite): fix assert() call
14574
14575 2001-05-04  Kayvan A. Sylvan  <kayvan@sylvan.com>
14576
14577         * text.C (InsertChar): Added trivial patch to only send the "you
14578         can not do multiple spaces this way" message once during a
14579         session.
14580
14581 2001-05-08  Baruch Even  <baruch@lyx.org>
14582
14583         * Makefile.am: Changed order of libraries to get LyX to link properly
14584         with the gnome frontend.
14585
14586 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14587
14588         * LaTeXFeatures.h: add a std:: qualifier
14589
14590 2001-05-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14591
14592         * paragraph.C (String): use stringstream
14593
14594 2001-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14595
14596         * paragraph.C (writeFile): remove footflag arg
14597
14598         * buffer.C (makeLaTeXFile): use stringstream
14599         (latexParagraphs): remove footnot gurba
14600
14601         * LaTeXFeatures.C (getPackages): use stringstream
14602         (getMacros): likewise
14603         (getTClassPreamble): likewise
14604         (getFloatDefinitions): new method
14605
14606         * paragraph.C (writeFile): reindent
14607         (Erase): reindent
14608
14609         * WorkArea.h: revert the xpos + etc changes.
14610
14611         * CutAndPaste.C (SwitchLayoutsBetweenClasses): constify name and s
14612
14613         * lyxparagraph.[Ch]: add copy constructor, remove Clone
14614
14615         * CutAndPaste.C (copySelection): use LyXParagraph copy constructor
14616         (pasteSelection): likewise
14617         * text2.C (CreateUndo): likewise
14618
14619 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14620
14621         * minibuffer.C (peek_event): temporarily reduce the functionality
14622         of the minibuffer (to allow args on lfuns)
14623
14624         * commandtags.h: remove LFUN_LOA_INSERT, LFUN_LOF_INSERT,
14625         LFUN_LOT_INSERT. add LFUN_FLOAT_LIST
14626
14627         * buffer.C (readInset): add compability reading of old float
14628         lists, add reading of new style float list.
14629         (readInset): avoid reevaluation of inscmd.getCmdName()
14630         (getLists): reindent
14631
14632         * MenuBackend.C (MenuItem): implement parsing of
14633         md_floatlistinsert and md_floatinsert.
14634         (expand::LastFiles): move initalizaton of iterators out of loop,
14635         avoid reevaluation.
14636         (expand::Documents): introduce typdedef vector<string> Strings,
14637         and use it.
14638         (expand::ExportFormats): introduce typedef vector<Format const *>
14639         Formats, and use it.
14640         (expand): implement FloatListInsert and FloatInsert.
14641
14642         * LyXAction.C (init): remove entries for LFUN_LOA_INSERT,
14643         LFUN_LOA_VIEW, LFUN_LOF_INSERT, LFUN_LOFVIEW, LFUN_LOT_INSERT,
14644         LFUN_LOTVIEW. Add entry for LFUN_FLOAT_LIST
14645
14646         * BufferView_pimpl.C (Dispatch::LFUN_TOC_INSERT): remvoe the float
14647         handling.
14648         (Dispatch::LFUN_FLOAT_LIST): implement
14649
14650 2001-04-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
14651
14652         * LaTeX.C (run): Fix problem with --export code.
14653
14654 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
14655
14656         * BufferView.[Ch] (workarea): removed.
14657         (getClipboard) new method; wrapper for workarea()->getClipboard()
14658
14659         * ToolbarDefaults.C (read): removed final lex.next() command; it's a
14660         bug.
14661
14662         * WorkArea.h (width, height, xpos, ypos): These methods all
14663         returned the dimensions of the work_area sub-area of WorkArea,
14664         resulting in a position error if the WorkArea were resized. Now
14665         return the dimensions of the entire WorkArea.
14666
14667         * lyx_main.C (ReadUIFile): don't print out spurious warnings.
14668
14669 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14670
14671         * LaTeX.C (deplog): correct the syntax of regex reg1
14672
14673 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14674
14675         * undo.C: remove !NEW_INSETS cruft
14676
14677 2001-04-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14678
14679         * text2.C: remove !NEW_INSETS cruft
14680
14681         * text.C: remove !NEW_INSETS cruft
14682
14683         * tabular.C: remove !NEW_INSETS cruft
14684
14685         * spellchecker.C: remove !NEW_INSETS cruft
14686
14687         * lyxtext.h: remove !NEW_INSETS cruft
14688
14689         * lyxlex_pimpl.C: remove !NEW_INSETS cruft
14690
14691         * lyxfunc.C: remove !NEW_INSETS cruft
14692
14693         * lyxfind.C: remove !NEW_INSETS cruft
14694
14695         * lyx_cb.C: remove !NEW_INSETS cruft
14696
14697         * figureForm.C: remove  !NEW_INSETS cruft
14698
14699         * bufferview_funcs.[Ch]: remove !NEW_INSETS cruft
14700
14701         * buffer.[Ch]: remove !NEW_INSETS cruft
14702
14703         * ToolbarDefaults.C: remove !NEW_INSETS cruft
14704
14705         * CutAndPaste.C: remove !NEW_INSETS cruft
14706
14707         * BufferView_pimpl.C: remove !NEW_INSETS cruft
14708
14709         * BufferView2.C: remove !NEW_INSETS cruft
14710
14711         * BufferView.h: remove !NEW_INSETS cruft
14712
14713 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14714
14715         * Lsstream.h: include LString.h before the sstream headers to
14716         fix problem with gcc 2.95.3 and lyxstring
14717
14718 2001-05-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14719
14720         * lyx_main.C: add using directives when needed for C functions
14721         declared in std:: namespace.
14722
14723 2001-04-27  Juergen Vigna  <jug@sad.it>
14724
14725         * text.C (Fill): return 20 instead of 0 if paper_width < 0 (endless)
14726         (SetHeightOfRow): comment out the update call should not be needed!
14727
14728 2001-04-13  Juergen Vigna  <jug@sad.it>
14729
14730         * tabular.C (GetAdditionalHeight): changed parameter from cell to row.
14731         (LyXTabular): tried to minimize operator= operations (and realized
14732         hopfully Lars wish).
14733
14734 2001-04-27  Juergen Vigna  <jug@sad.it>
14735
14736         * spellchecker.C (sc_check_word): fixed Assert to lyx::Assert.
14737
14738 2001-04-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14739
14740         * lyxfunc.C (Dispatch): hack to make listof algorithm work
14741
14742         * buffer.C (readInset): hack to make listof algorithm work
14743
14744         * BufferView_pimpl.C: hack to make listof algorithm work
14745
14746 2001-04-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14747
14748         * LyXAction.C: removed all !NEW_INSETS cruft
14749         (init): moved lfun_item in method
14750
14751         * lyxparagraph.[Ch]: removed all !NEW_INSETS cruft
14752
14753 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
14754
14755         * BufferView2.C (theLockingInset): white space.
14756
14757 2001-04-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14758
14759         * minibuffer.C: include <iostream>
14760
14761         * BufferView_pimpl.C: implement LFUN_TRANSPOSE_CHARS
14762
14763         * LyXAction.C (init): add LFUN_TRANSPOSE_CHARS
14764
14765         * commandtags.h: add LFUN_TRANSPOSE_CHARS
14766
14767         * text.[Ch] (TransposeChars): new method
14768
14769 2001-04-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14770
14771         * call message directly through LyXView instead of through LyXFunc
14772         * BufferView2.C: adjust
14773         * BufferView_pimpl.C: adjust
14774         * FontLoader.C: adjust
14775         * buffer.C: adjust
14776         * bufferview_funcs.C: adjust
14777         * converter.C: adjust
14778         * figureForm.C: adjust
14779         * importer.C: adjust
14780         * lyx_cb.C: adjust
14781         * lyx_gui_misc.C: adjust
14782         * lyxfunc.C: adjust
14783         * lyxvc.C: adjust
14784         * text2.C: adjust
14785         + more files in subdirs
14786
14787         * lyxparagraph.h (size): move up int file
14788         (GetLayout): ditto
14789
14790         * adjust all uses of Assert to lyx::Assert.
14791
14792         * BufferView2.C (ChangeCitationsIfUnique): adjust for
14793         lyxfunctional in namespace lyx
14794         * layout.C (hasLayout): ditto
14795         (GetLayout): ditto
14796         (GetLayout): ditto
14797         (delete_layout): ditto
14798         (NumberOfClass): ditto
14799         * converter.C (GetFormat): ditto
14800         (GetNumber): ditto
14801         (Add): ditto
14802         (Delete): ditto
14803         (SetViewer): ditto
14804         * bufferlist.C (getFileNames): ditto
14805         (emergencyWriteAll): ditto
14806         (exists): ditto
14807         (getBuffer): ditto
14808         * MenuBackend.C (hasSubmenu): ditto
14809         (hasMenu): ditto
14810         (getMenu): ditto
14811         * BufferView_pimpl.C (getInsetByCode): ditto
14812
14813 2001-04-18  Juergen Vigna  <jug@sad.it>
14814
14815         * vspace.C (asLatexString): fixed the 100% problem.
14816
14817 2001-04-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14818
14819         * lyxfunc.C (Dispatch):
14820         * minibuffer.C:
14821         * minibuffer.h: add a few std:: qualifiers
14822
14823 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14824
14825         * minibuffer.[Ch]: reimplement so that commands is initiated and
14826         run from lyxfunc, simplified som handling, and made the completion
14827         and history code for complete. wip.
14828
14829         * lyxfunc.C (processKeySym): call message
14830         (miniDispatch): new temporary method
14831         (LFUN_EXEC_COMMAND): reimplement for new minibuffer
14832         (LFUN_MESSAGE): implement
14833         (LFUN_MESSAGE_PUSH): implement
14834         (LFUN_MESSAGE_POP): implement
14835         (initMiniBuffer): the initial/defualt minibuffer message.
14836
14837         * lyxfont.[Ch]: inline some more getters
14838
14839         * lyx_gui_misc.C (WriteAlert): use LFUN_MESSAGE
14840
14841         * lyx_gui_misc.[Ch] (WriteStatus): remove method
14842
14843         * lyx_cb.[Ch] (ShowMessage): remove delay arg, use LFUN_MESSAGE
14844         (AutoSave): use LFUN_MESSAGE
14845         (Reconfigure): ditto
14846
14847         * importer.C (Import): constify som local vars, use LFUN_MESSAGE
14848
14849         * figureForm.C: use LFUN_MESSAGE
14850
14851         * converter.C (runLaTeX): use LFUN_MESSAGE
14852
14853         * bufferview_funcs.C: use LFUN_MESSAGE
14854         (Melt): ditto
14855         (changeDepth): ditto
14856
14857         * bufferparams.h: use boost::
14858
14859         * bufferlist.h: inherit privately from noncopyable
14860
14861         * bufferlist.C (loadLyXFile): remove some commented code.
14862
14863         * buffer.C (runChktex): use LFUN_MESSAGE
14864
14865         * ShareContainer.h: inherit privately from noncopyable
14866
14867         * ParagraphParameters.[hC] (depth): inline it.
14868
14869         * LyXView.[Ch] (LyXView): connect the minibuffer signals to lyxfunc
14870         methods.
14871         (message): new method
14872         (messagePush): ditto
14873         (messagePop): ditto
14874         (show): init minibuffer
14875         (showState): direct call
14876
14877         * LaTeX.[Ch]: inherit privately from noncopyable
14878         (run): change second arg to LyXFunc*, use LFUN_MESSAGE
14879         instead of WriteStatus.
14880
14881         * FontLoader.C (doLoad): use LFUN_MESSAGE_PUSH and LFUN_MESSAGE_POP
14882
14883         * BufferView_pimpl.C (buffer): don't init minibuffer
14884         (workAreaButtonPress): use LFUN_MESSAGE
14885         (workAreaButtonRelease): ditto
14886         (savePosition): ditto
14887         (restorePosition): ditto
14888         (MenuInsertLyXFile): ditto
14889         (workAreaExpose): don't init minibuffer
14890         (update): remove commented code, simplify
14891
14892         * BufferView2.C (openStuff): use LFUN_MESSAGE
14893         (toggleFloat): ditto
14894         (menuUndo): ditto
14895         (menuRedo): ditto
14896         (copyEnvironment): ditto
14897         (pasteEnvironment): ditto
14898         (copy): ditto
14899         (cut): ditto
14900         (paste): ditto
14901         (gotoInset): ditto
14902         (updateInset): remove some commented code
14903
14904         * lastfiles.h: inherit privately from noncopyable
14905         * layout.h: ditto
14906         * lyx_gui.h: ditto
14907         * lyx_main.h: ditto
14908         * lyxlex.h: ditto
14909         * lyxlex_pimpl.h: ditto
14910
14911         * commandtags.h: comment out LFUN_FOOTMELT, LFUN_MARGINMELT,
14912         LFUN_FLOATSOPERATE, LFUN_MELT, add LFUN_MESSAGE,
14913         LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
14914
14915         * LyXAction.h: inherit privately from noncopyable, add methods
14916         func_begin, func_end, returning iterators to the func map.
14917
14918         * LyXAction.C (init): comment out LFUN_FLOATSOPERATE, LFUN_MELT,
14919         add entries for LFUN_MESSAGE, LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
14920         (func_begin): new method
14921         (func_end): new method
14922
14923         * CutAndPaste.C (cutSelection): split into two versons (NEW_INSETS
14924         and not)
14925         (copySelection): ditto
14926         (pasteSelection): ditto
14927
14928         * BufferView.C: whitespace change
14929         * BufferView.h: inherit privately from noncopyable
14930
14931 2001-04-16  Allan Rae  <rae@lyx.org>
14932
14933         * tabular-old.C (l_getline):
14934         * spellchecker.C (sc_check_word):
14935         * lyxfunc.C (Dispatch): #warning triggers an error on Sun CC 6.0 as
14936         an unrecognised preprocessor directive.  So ensure they're wrapped.
14937
14938 2001-04-14  Dekel Tsur  <dekelts@tau.ac.il>
14939
14940         * src/exporter.C (Export): Give an error message when path to file
14941         contains spaces.
14942
14943 2001-04-12  Dekel Tsur  <dekelts@tau.ac.il>
14944
14945         * LaTeX.C (deplog): Always check that foundfile exists.
14946
14947 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14948
14949         * lyx_main.h:
14950         * lyx_main.C (ReadLanguagesFile): fix weird typo in method name
14951
14952 2001-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14953
14954         * tabular.[Ch] (getLabelList): implement new method
14955
14956         * minibuffer.h: comment ouf setTiimer
14957
14958         * minibuffer.C (ExecutingCB): constify res
14959         (peek_event): constify s
14960         (Set): constify ntext
14961         (Init): constify nicename
14962
14963         * BufferView2.C (updateInset): comment out Minibuffer::setTimer
14964
14965         * BufferView_pimpl.C (update): comment out Minibuffer::setTimer
14966         (savePosition): use two params to Minibuffer::Set
14967         (restorePosition): ditto
14968
14969 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14970
14971         * lyx_main.C: include language.h
14972
14973         * Makefile.am (lyx_main.o): add language.h
14974
14975 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14976
14977         * exporter.C:
14978         * paragraph.C:
14979         * screen.C:
14980         * tabular.C:
14981         * CutAndPaste.C: include gettext.h
14982
14983         * lyxfont.h: remove old hack with ON and OFF.
14984
14985         * lyxparagraph.h:
14986         * lyxfont.h: do not include language.h...
14987
14988         * BufferView2.C:
14989         * LaTeXFeatures.C:
14990         * Painter.C:
14991         * bufferview_funcs.C:
14992         * font.C:
14993         * lyxfont.C:
14994         * text.C:
14995         * text2.C:
14996         * trans_mgr.C:
14997         * paragraph.C: ... but do it here instead
14998
14999 2001-04-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
15000
15001         * text2.C (SetLayout): split in NEW_INSETS and non NEW_INSETS version
15002
15003         * tabular.C: small reformat
15004
15005         * paragraph.C (GetFontSettings): split in NEW_INSETS and non
15006         NEW_INSETS version
15007         (GetChar): ditto
15008         (BreakParagraph): ditto
15009         (SetOnlyLayout): ditto
15010         (SetLayout): ditto
15011
15012         * lyxparagraph.h: add definitions for SetLayout and SetOnlyLayout
15013         with one arg less.
15014
15015         * lastfiles.C: removed most using decl, add std:: where needed
15016
15017         * buffer.C: ws changes
15018
15019         * MenuBackend.C (class compare_format): put into anon namespace
15020         (expand): constify label, names, action, action2
15021         (expand):
15022
15023         * text.C (SingleWidth): constify font
15024         (IsBoundary): constify rtl2
15025         (GetVisibleRow): constify ww
15026
15027         * LaTeX.C (deplog): constify logfile
15028
15029         * BufferView_pimpl.C (checkInsetHit): constify width, inset_x,
15030         start_x, end_x
15031         (workAreaExpose): constify widthChange, heightChange
15032
15033         * lyxrow.C (par): moved
15034         (height): moved
15035         (next): moved
15036         * lyxrow.h: as inlines here
15037
15038         * lyxfont.h (shape): moved from lyxfont.C
15039         (emph): moved from lyxfont.C
15040
15041         * lyxfont.C (LyXFont): use initialization list for all
15042         constructors
15043         (shape): move to lyxfont.h as inline
15044         (emph): move to lyxfont.h as inline
15045
15046
15047 2001-04-04  Juergen Vigna  <jug@sad.it>
15048
15049         * vspace.C: had to include stdio.h for use of sscanf
15050
15051 2001-04-03  Angus Leeming  <a.leeming@ic.ac.uk>
15052
15053         * BufferView.h:
15054         * BufferView_pimpl.h: remove xforms cruft. Both classes are
15055         independent of xforms.
15056
15057 2001-04-02  Juergen Vigna  <jug@sad.it>
15058
15059         * spellchecker.C: fixed namespace placing!
15060
15061 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
15062
15063         * lyxfunc.C (Dispatch): prevent crash in LFUN_GOTO_PARAGRAPH when
15064         the LyXParagraph * is 0.
15065
15066 2001-03-29  Juergen Vigna  <jug@sad.it>
15067
15068         * vspace.C: added support for %, c%, p%, l%.
15069         (stringFromUnit): added helper function.
15070         (asLatexString): changed to give right results for the %-values.
15071
15072         * buffer.C: convert the widthp in a width%.
15073
15074 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
15075
15076         * Makefile.am: removed form1.[Ch], lyx.[Ch] and added figure_form.[Ch],
15077         figureForm.[Ch].
15078
15079         * figureForm.[Ch]: stripped the FD_from_figure manipulation
15080         code out of lux_cb.[Ch], ready for its (imminent?) removal.
15081
15082         * lyx_cb.[Ch]: see above.
15083
15084         * figure_form.[Ch]: fdesign generated code, combining lyx.[Ch] and
15085         form1.[Ch].
15086
15087         * form1.[Ch]:
15088         * lyx.[Ch]: replaced by figure_form.[Ch].
15089
15090         * lyx_gui.C:
15091         * lyx_gui_misc.C:
15092         * lyxfunc.C: changed headers associated with above changes.
15093
15094 2001-03-27  Juergen Vigna  <jug@sad.it>
15095
15096         * BufferView_pimpl.C: set the temporary cursor right!
15097
15098 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
15099
15100         * BufferView_pimpl.C (Dispatch): corrected spelling givven -> given.
15101
15102 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
15103
15104         * LString.h: removed "using std::getline"!
15105
15106         * BufferView_pimpl.C (Dispatch): changes due to changes in
15107         InsetInclude::Params.
15108
15109         * buffer.C (tag_name): removed redundant break statements as they were
15110         producing lots of warnings with my compiler.
15111
15112 2001-03-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15113
15114         * LString.h: add "using std::getline" when using the real <string>.
15115
15116 2001-03-23  José Abílio Matos  <jamatos@fep.up.pt>
15117
15118         * buffer.C: removed bitset usage.
15119         PAR_TAG moved to an anonymous name space.
15120         (tag_name): new funtion, also in the anonymous namespace.
15121         (SimpleLinuxDocOnePar): replaced all the references to bitset by PAR_TAG.
15122         (makeDocBookFile): clean code. Completed transition from string arrays
15123         to string vectors.
15124         (SimpleDocBookOnePar): code clean.
15125
15126 2001-03-23  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15127
15128         * tabular.C: add some comments.
15129
15130 2001-03-22  Juergen Vigna  <jug@sad.it>
15131
15132         * buffer.C (parseSingleLyXformat2Token): redone the minipage
15133         compatibility read a bit and fixed bug with minipage in different
15134         depth.
15135
15136 2001-03-21  José Abílio Matos  <jamatos@fep.up.pt>
15137
15138         * buffer.C (pop_tag): removed.
15139         (push_tag): removed.
15140         (makeLinuxDocFile): cleaner C++ code, declarations near usage point,
15141         array replaced with vector. Added support for CDATA sections.
15142         (SimpleLinuxDocOnePar): ditto. Paragraph tags are correctly handled,
15143         at any nest level.
15144         (makeDocBookFile): XML conformant declaration of CDATA section,
15145         fixed bug related to <emphasis> in the first paragraph char.
15146         (sgmlOpenTag): exclude empty tags.
15147         (sgmlCloseTag): ditto.
15148
15149         * buffer.h (pop_tag): removed.
15150         (push_tag): removed.
15151
15152 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
15153
15154         * language.h (Languages): added size_type and size().
15155
15156 2001-03-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15157
15158         * buffer.C (parseSingleLyXformat2Token): Try to give a bit better
15159         response on compability reading of minipages. One probliem is that
15160         the old usage of minipages was «flertydig»
15161
15162         * several files here and in subdirs: don't use static at file
15163         scope use anon namespaces instead.
15164
15165 2001-03-19  Kayvan A. Sylvan <kayvan@sylvan.com>
15166
15167         * paragraph.C (TeXEnvironment): Added \n to \end{environment}
15168         LaTeX output. This is necessary for Literate document
15169         processing.
15170
15171 2001-03-17  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15172
15173         * buffer.C: insert hfill when needed.
15174
15175         * tabular.C (l_getline): use string::erase, small whitespace change.
15176
15177         * BufferView_pimpl.C: try the anon namespace.
15178         * WorkArea.C: ditto
15179
15180 2001-03-16  Juergen Vigna  <jug@sad.it>
15181
15182         * BufferView_pimpl.C (workAreaButtonRelease): return only on button==2
15183         otherwise it won't open options-dialogs.
15184
15185         * buffer.C: honor pextraWidth(p) on converting minipages.
15186
15187         * tabular.C (l_getline): changed the functions to strip trailing \r.
15188
15189 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
15190
15191         * BufferView_pimpl.C:
15192         * minibuffer..C: added "using SigC::slot" declaration.
15193
15194 2001-03-16  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15195
15196         * lyxlex_pimpl.h: noncopyable is in namespace boost.
15197
15198         * text2.C: ditto
15199
15200         * text.C: ditto
15201
15202         * paragraph.C: ditto
15203
15204         * lyxtext.h: NO_PEXTRA
15205
15206         * buffer.C: NO_PEXTRA_REALLY, NO_PEXTRA
15207
15208         * ParagraphParameters.C (clear): NO_PEXTRA_REALLY
15209         * ParameterStruct.h: ditto
15210         * ParagraphParameters.h: ditto
15211         * lyxparagraph.h: ditto
15212
15213 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15214
15215         * buffer.C: add compability for minipage alignment.
15216         (latexParagraphs): remove unwanted pextra check.
15217
15218         * several files: remove CXX_WORKING_NAMESPACES
15219
15220         * buffer.C (pop_tag): tie is in namespace boost
15221
15222         * BufferView.h: noncopyable is in namespace boost
15223         * lyxlex.h: ditto
15224         * lyx_main.h: ditto
15225         * lyx_gui.h: ditto
15226         * layout.h: ditto
15227         * lastfiles.h: ditto
15228         * bufferlist.h: ditto
15229         * ShareContainer.h: ditto
15230         * LyXView.h: ditto
15231         * LyXAction.h: ditto
15232         * LaTeX.h: ditto
15233
15234 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
15235
15236         * Merging changes from BRANCH_MVC back into HEAD.
15237
15238         * Makefile.am: added controllers/libcontrollers.la to lyx_DEPENDENCIES
15239
15240 2001-03-15  John Levon  <moz@compsoc.man.ac.uk>
15241
15242         * BufferView_pimpl.C: change from intl.C
15243
15244         * combox.h:
15245         * combox.C:
15246         * Makefile.am: move combox.*
15247
15248         * form1.h:
15249         * form1.C:
15250         * lyx_gui.C:
15251         * intl.h:
15252         * intl.C: remove dialog (covered by prefs)
15253
15254 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
15255
15256         * lyxfunc.C (Dispatch): removed redundant break statement.
15257
15258 2001-03-14  Juergen Vigna  <jug@sad.it>
15259
15260         * tabular.C (l_getline): pay attention on \r\n (from Windows-files)
15261
15262 2001-03-14  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15263
15264         * buffer.C: add hack to fix compability reading of minipages.
15265
15266 2001-03-13  Dekel Tsur  <dekelts@tau.ac.il>
15267
15268         * buffer.C (getLists): Cleanup.
15269
15270 2001-03-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15271
15272         * lyxfont.C (update): don't honor toggleall on font size.
15273
15274 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
15275
15276         * bmtable.c:
15277         * bmtable.h:
15278         * Makefile.am: moved to frontends/xforms/
15279
15280         * lyx_gui_misc.C:
15281         * lyxfunc.C:
15282         * BufferView_pimpl.C: changes for moved mathpanel
15283
15284 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
15285
15286         * gettext.h: fix gettext_init() in --disable-nls
15287
15288 2001-03-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15289
15290         * LaTeXFeatures.C (getMacros): add a .c_str() when using sstream.
15291
15292 2001-03-09  John Levon  <moz@compsoc.man.ac.uk>
15293
15294         * lyx.C:
15295         * lyx.h: strip external form
15296
15297 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
15298
15299         * BufferView_pimpl.C: add comment, destroySplash()
15300
15301 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
15302
15303         * BufferView_pimpl.C:
15304         * LyXAction.C:
15305         * buffer.C:
15306         * commandtags.h:
15307         * lyxfunc.C: use re-worked insetinclude
15308
15309 2001-03-12  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15310
15311         * buffer.C: add using std::stringstream.
15312
15313         * lyx_cb.C: readd using std::ios.
15314
15315         * buffer.C: add using std::map.
15316
15317         * BufferView_pimpl.C: add using std::vector.
15318
15319         * ShareContainer.h: add std:: to swap.
15320
15321         * buffer.h: add some typedefs
15322         * buffer.C (getLists): use them
15323         (getLists): renamed from getTocList.
15324         add a counter for the different float types and use it in the
15325         generated string.
15326         (getLists): use the same counter for the NEW_INSETS and the "non"
15327         NEW_INSETS
15328
15329         * lyx_cb.h: remove unused items, includes, using etc.
15330
15331         * ShareContainer.h: remove some commented code, add more comments
15332         and "documentation".
15333
15334 2001-03-11  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15335
15336         * buffer.C (getTocList): make the list also when NEW_INSETS is
15337         defined.
15338
15339         * buffer.h: remove TocType
15340
15341         * buffer.C (getTocList): change to return a map<string,
15342         vector<TocItem> >, implement for dynamic number of list.
15343
15344         * CutAndPaste.[Ch] (checkPastePossible): remove unused arg
15345         * text2.C (PasteSelection): adjust
15346         * CutAndPaste.C (pasteSelection): adjust
15347
15348         * FloatList.C (FloatList): update from the new_insets branch.
15349         * Floating.[Ch]: ditto
15350         * LaTeXFeatures.C: ditto
15351         * buffer.C: ditto
15352         * lyxlex_pimpl.C: ditto
15353
15354         * paragraph.C (Last): remove when NEW_INSETS is defined.
15355
15356         * other file: changes because of the above.
15357
15358 2001-03-09  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15359
15360         * lyxparagraph.h: rename next to next_, previous to previous_,
15361         make them private for NEW_INSETS. Rename Next() to next(),
15362         Previous() to previous().
15363
15364         * other files: changes because of the above.
15365
15366 2001-03-08  Dekel Tsur  <dekelts@tau.ac.il>
15367
15368         * BufferView.h:
15369         * lyxparagraph.h: Add '#include "LString.h"' to fix compilation
15370         problem.
15371
15372 2001-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15373
15374         * main.C (main): pass lyx_localedir to gettext_init().
15375
15376         * gettext.h: remove locale_init and gettext_init macros
15377
15378         * gettext.C (locale_init): new function
15379         (gettext_init): new function
15380
15381         * lyx_gui.C (LyXGUI): use locale_init() instead of explicit
15382         setlocale().
15383
15384 2001-03-07  Edwin Leuven  <leuven@fee.uva.nl>
15385
15386         * Moved credits to frontends:
15387         * credits.[Ch]: removed
15388         * credits_form.[Ch]: removed
15389         * lyx_gui_misc.C: remove credits stuff
15390         * Makefile.am:
15391
15392 2001-03-07  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15393
15394         * lyx_main.C: make toplevel_keymap a boost::scoped_ptr.
15395
15396         * kbmap.[Ch]: make kb_key::table a boost::shared_ptr, remove
15397         unneeded destructor.
15398
15399         * intl.[Ch] (Intl): free the fd_form_keymap, make the fd_form_keymap
15400         a standalone pointer again.
15401
15402         * ColorHandler.[Ch]: make lyxColorHandler a boost::scoped_ptr
15403
15404 2001-03-06  John Levon  <moz@compsoc.man.ac.uk>
15405
15406         * Makefile.am:
15407         * filedlg.h:
15408         * filedlg.C:
15409         * LyXAction.C:
15410         * ToolbarDefaults.C:
15411         * bufferlist.C:
15412         * commandtags.h:
15413         * form1.C:
15414         * form1.h:
15415         * lyx_cb.C:
15416         * lyx_cb.h:
15417         * lyxfunc.h:
15418         * lyxfunc.C:
15419         * BufferView_pimpl.C: use new file dialog in GUII
15420
15421         * lyx_cb.h:
15422         * lyx_cb.C: remove LayoutsCB to Toolbar
15423
15424 2001-03-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15425
15426         * ShareContainer.h (get): add std:: qualifier
15427
15428 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15429
15430         * ShareContainer.h: define a proper ShareContainer::value_type
15431         type (and use typename to please compaq cxx)
15432
15433 2001-03-06  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15434
15435         * lyxparagraph.h: move serveral local vars to
15436         ParameterStruct/ParagraphParameters., use ShareContainer in
15437         FontTable., make vars in FontTable private and add getter and
15438         setter.
15439
15440         * paragraph.C: changes because of the above.
15441
15442         * lyxfont.h: remove copy constructor and copy assignment. (the
15443         default ones is ok), move number inside FontBits. move inlines to
15444         lyxfont.C
15445
15446         * lyxfont.C: add number to initializaton of statics, move several
15447         inlines here. constify several local vars. some whitespace
15448         cleanup. Dont hide outerscope variables.
15449
15450         * Spacing.h: add two new constructors to match the set methods.
15451
15452         * ShareContainer.h: new file, will perhaps be moved to support
15453
15454         * ParameterStruct.h: new file
15455
15456         * ParagraphParameters.h: new file
15457
15458         * ParagraphParameters.C: new file
15459
15460         * Makefile.am (lyx_SOURCES): add ParagraphParameters.C,
15461         ParagraphParameters.h, ParameterStruct.h and ShareContainer.h
15462
15463         * BufferView_pimpl.C: ParagraphParameter changes.
15464         * buffer.C: Likewise.
15465         * bufferview_funcs.C: Likewise.
15466         * text.C: Likewise.
15467         * text2.C: Likewise.
15468
15469 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15470
15471         * lyxfind.C (LyXReplace): do not redefine default argument in
15472         implementation.
15473         (IsStringInText): ditto
15474         (SearchForward): ditto
15475         (SearchBackward): ditto
15476
15477 2001-03-06  Juergen Vigna  <jug@sad.it>
15478
15479         * lyxfind.C (IsStringInText): put parentes around expressions.
15480
15481 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
15482
15483         * lyxfind.[Ch]: find stuff moved out of text2.C/lyxtext.h
15484
15485 2001-02-23  John Levon  <moz@compsoc.man.ac.uk>
15486
15487         * lyx_main.C: add ISO_Left_Tab as bind synonym for Tab
15488
15489         * stl_string_fwd.h: add comment
15490
15491         * lyx_gui_misc.C: killed ALWAYS_CLOSE_MATH_PANELS
15492
15493         * tabular.h:
15494         * tabular.C: remove unused DocBook methods
15495
15496         * intl.C:
15497         * language.C:
15498         * paragraph.C:
15499         * buffer.C:
15500         killed DO_USE_DEFAULT_LANGUAGE
15501
15502 2001-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15503
15504         * lyx_gui.C: do not include language.h.
15505
15506         * bufferview_funcs.C (ToggleAndShow): do not provide optional
15507         arguments in function implementation.
15508
15509 2001-02-28  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15510
15511         * BufferView_pimpl.C: add <ctime>
15512
15513 2001-02-27  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15514
15515         * BufferView_pimpl.C: add using std::find_if
15516
15517 2001-02-27  José Matos  <jamatos@fep.up.pt>
15518
15519         * LaTeXFeatures.C (getIncludedFiles): call to BasePath replaced
15520         by OnlyPath.
15521
15522 2001-02-11  José Matos  <jamatos@fep.up.pt>
15523
15524         * buffer.C (makeDocBookFile): command styles now have a parameter as
15525         "title" by default.
15526
15527 2001-02-23  Edwin Leuven <leuven@fee.uva.nl>
15528
15529         * layout_forms.[Ch]: removed
15530         * lyx_cb.[Ch]: out character
15531         * lyx_gui.C: out character
15532         * lyx_gui_misc.C: out character
15533         * bufferview_funcs.C: : out character,
15534         added toggleall as parameter in ToggleAndShow
15535
15536 2001-02-26  Dekel Tsur  <dekelts@tau.ac.il>
15537
15538         * lyxfunc.C (getStatus): Fix the LFUN_EXPORT case.
15539
15540         * text2.C (SetCurrentFont): Disable number property at boundary.
15541
15542 2001-02-26  Juergen Vigna  <jug@sad.it>
15543
15544         * lyxfunc.C (getStatus): added a string argument override function so
15545         that this is correctly called from LyXFunc::Dispatch if it contains a
15546         do_not_use_argument which is used!
15547         (Dispatch): added check for "custom" export and call appropriate func.
15548
15549 2001-02-23  Dekel Tsur  <dekelts@tau.ac.il>
15550
15551         * lyxrc.C: Add language_command_local, language_use_babel and
15552         language_global_options.
15553
15554         * lyxfont.C (latexWriteStartChanges): Use language_command_local.
15555
15556         * buffer.C (makeLaTeXFile): Use language_use_babel and
15557         language_global_options.
15558
15559 2001-02-23  Juergen Vigna  <jug@sad.it>
15560
15561         * lyxfunc.C (Dispatch): removed the whole part of the switch statement
15562         which works with LyXText and putted it inside BufferView. Here now we
15563         only call for that part the BufferView::Dispatch() function.
15564
15565         * BufferView.C (Dispatch): added.
15566
15567         * BufferView_pimpl.C (Dispatch): added! Here are now all dispatch
15568         functions which needs to use a LyXText over from LyXFunc.
15569         (MenuInsertLyXFile): added
15570         (getInsetByCode): added
15571         (moveCursorUpdate): added
15572         (static TEXT): added
15573
15574 2001-02-22  Juergen Vigna  <jug@sad.it>
15575
15576         * BufferView_pimpl.C (update): call a status update to see if LyXText
15577         needs it.
15578
15579 2001-02-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15580
15581         * vc-backend.C (revert): implement for CVS
15582         (getLog): implement for CVS
15583
15584 2001-02-20  Juergen Vigna  <jug@sad.it>
15585
15586         * text2.C (ClearSelection): added BufferView param for inset_owner call
15587
15588         * lyxfunc.C (TEXT): added this function and use it instead of
15589         directly owner->view()-text of getLyXText().
15590
15591 2001-02-20  Edwin Leuven <leuven@fee.uva.nl>
15592
15593         * src/layout_forms.C: out preamble
15594         * src/layout_forms.h: out preamble
15595         * src/lyx_cb.C: out preamble
15596         * src/lyx_cb.h: out preamble
15597         * src/lyx_gui.C: out preamble
15598         * src/lyx_gui_misc.C: out preamble
15599         * src/lyxfunc.C: connect with guii preamble
15600
15601 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
15602
15603         * src/buffer.h: tiny clean-ups to allow compilation with DEC cxx.
15604
15605 2001-02-17  Dekel Tsur  <dekelts@tau.ac.il>
15606
15607         * LaTeX.C (run): Do not use 'scanres & RERUN' when deciding
15608         whether to run bibtex.
15609
15610 2001-02-16  Dekel Tsur  <dekelts@tau.ac.il>
15611
15612         * Makefile.am (lyx_SOURCES): Remove BackStack.h
15613
15614 2001-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
15615
15616         * Makefile.am (lyx_SOURCES): removed bibforms.h
15617
15618         * vspace.h: doxygen
15619
15620         * text.C (GetVisibleRow): make several local vars const
15621
15622         * tabular.C: small cleanup.
15623
15624         * lyxserver.C (callback): use compare instead of strncmp
15625
15626         * lyxparagraph.h: remove all code dep. on HAVE_ROPE, move inclass
15627         inlines to after class or to paragraph.C
15628
15629         * lyxfont.h: remove friend operator!=
15630
15631         * converter.h: move friend bool operator< to non friend and after
15632         class def.
15633
15634         * combox.h: small cleanup
15635
15636         * buffer.h: doxygen, remove unused constructor, move inclas inlies
15637         to inlines after class def.
15638
15639         * buffer.C (pop_tag): use string operations instead of strcmp
15640
15641         * bmtable.c: doxygen, small cleanup
15642
15643         * LaTeX.h: remove friend operator==
15644
15645 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
15646
15647         * screen.C:
15648         * lyxrc.[Ch]:
15649         * lyxfunc.C:
15650         * lyxfont.[Ch]:
15651         * lyx_cb.C:
15652         * intl.[Ch]:
15653         * commandtags.h:
15654         * buffer.C:
15655         * WorkArea.[Ch]:
15656         * LyXAction.C:
15657         * BufferView_pimpl.C:
15658         * BufferView.[Ch]: remove cruft
15659
15660 2001-02-14  Juergen Vigna  <jug@sad.it>
15661
15662         * lyxfunc.C: removed #if 0 unused code
15663
15664         * lyxfunc.C (Dispatch): make LFUN_QUOTE work for InsetText.
15665
15666         * BufferView_pimpl.C (update): set updatestatus of inset if needed.
15667
15668         * text2.C (SetSelection): added a BufferView * parameter
15669
15670 2001-02-13  Juergen Vigna  <jug@sad.it>
15671
15672         * lyxfunc.C (Dispatch): fixed protected blank problem.
15673         * BufferView2.C (protectedBlank): added LyxText * parameter.
15674
15675         * tabular.C (AppendRow): forgot to set row_info of newly added row.
15676         (AppendColumn): same as above for column_info.
15677
15678         * lyxfunc.C (Dispatch): supported some more functions in InsetText.
15679         (moveCursorUpdate): use a LyXText param for support of InsetText.
15680
15681         * BufferView_pimpl.C (doubleClick): added support for InsetText.
15682         (tripleClick): ditto
15683
15684         * lyxfunc.C (LFUN_APPENDIX): changed to use "text" pointer.
15685
15686         * BufferView_pimpl.C (update): added LyXText param to honor insets.
15687
15688         * bufferview_funcs.C (ToggleAndShow): fixed for text in insets.
15689
15690         * text2.C (SetSelection): set correct update status if inset_owner
15691         (ToggleFree): ditto
15692
15693 2001-02-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
15694
15695         * tabular.C: remove some commented code.
15696
15697 2001-02-12  John Levon  <moz@compsoc.man.ac.uk>
15698
15699         * BufferView_pimpl.C: call hideSplash()
15700
15701         * LyXAction.C: make buffer-child-insert use LFUN_CHILD_CREATE
15702
15703         * include_form.h:
15704         * bibforms.h: remove
15705
15706         * lyxfunc.C:
15707         * src/commandtags.h: LFUN_CHILDINSERT -> LFUN_CHILD_INSERT,
15708           add LFUN_CHILD_CREATE
15709
15710         * counters.h: fix tiny typo
15711
15712         * lyx_cb.C:
15713         * lyx.h:
15714         * lyx_gui.C:
15715         * lyx.C: move splash to frontends/xforms/
15716
15717         * lyx_gui_misc.C: move Include and Bibform to frontends
15718
15719         * lyxvc.h: clarify comment
15720
15721         * vspace.C: tiny housekeeping
15722
15723 2001-02-10  Dekel Tsur  <dekelts@tau.ac.il>
15724
15725         * text.C (PrepareToPrint): RTL Fix.
15726
15727         * paragraph.C (GetUChar): New method.
15728         (String):  Use GetUChar.
15729
15730         * buffer.C (asciiParagraph): Use GetUChar.
15731
15732 2001-02-09  Dekel Tsur  <dekelts@tau.ac.il>
15733
15734         * text.C (GetVisibleRow): Fix selection drawing for RTL text in tables.
15735
15736 2001-02-09  John Levon  <moz@compsoc.man.ac.uk>
15737
15738         * buffer.h:
15739         * buffer.C: rename to getLogName(), handle
15740           build log / latex log nicely
15741
15742 2001-02-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15743
15744         * MenuBackend.C:
15745         * MenuBackend.h: remove support for reference menuitem type.
15746
15747 2001-02-07  John Levon  <moz@compsoc.man.ac.uk>
15748
15749         * BufferView_pimpl.C: housekeeping
15750         * BufferView_pimpl.h:
15751         * LyXView.h:
15752         * Makefile.am:
15753         * Timeout.C:
15754         * Timeout.h:
15755         * minibuffer.h: move Timeout GUI-I
15756
15757 2001-02-07  Dekel Tsur  <dekelts@tau.ac.il>
15758
15759         * lyxrc.C (read): Update converters data-structures.
15760
15761 2001-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
15762
15763         * LaTeX.h (operator!=): add operator != for Aux_Info
15764
15765 2001-02-06  John Levon  <moz@compsoc.man.ac.uk>
15766
15767         * Makefile.am: remove LaTeXLog.C, log_form.[Ch]
15768
15769         * LaTeXLog.C: deleted, useful code moved to Buffer
15770
15771         * buffer.h:
15772         * buffer.C: new function getLatexLogName()
15773
15774         * lyx_gui_misc.C:
15775         * lyx_gui.C:
15776         * lyxvc.C:
15777         * lyxvc.h:
15778         * lyxfunc.C: use frontends for LaTeX and VC logs
15779
15780 2001-02-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15781
15782         * LaTeX.h: yet another std:: that Allan forgot.
15783
15784         * Variables.C (set): renamed from isset(), because this clashes
15785         with some HP-UX macros (grr).
15786
15787 2001-02-06  Allan Rae  <rae@lyx.org>
15788
15789         * LaTeX.h: Another bug fix.  Missing std:: this time.
15790
15791 2001-02-04  Allan Rae  <rae@lyx.org>
15792
15793         * paragraph.C (TeXOnePar): Partial fix for the '\n' generation in
15794         floats problem. I've left it commented out because it's not quite
15795         correct.  It should also test that the current object is a table or
15796         figure inset.  But I haven't gotten around to figuring out how to do
15797         that.  I *think* it'll be something like: "table" == inset.type()
15798
15799         * LaTeX.h (operator==): Aux_Info should have a friend that returns a
15800         bool.
15801
15802 2001-02-02  Dekel Tsur  <dekelts@tau.ac.il>
15803
15804         * LaTeX.C (scanAuxFile): A rewrite of this method. It now returns
15805         all the citation/databases/styles in the auxilary file.
15806         (run): Rerun latex if there was a babel language error.
15807
15808 2001-02-01  Dekel Tsur  <dekelts@tau.ac.il>
15809
15810         * text.C (Backspace): Preserve the font when changing newline char
15811         with a space.
15812         (BreakParagraph): If the cursor is before a space, delete the space.
15813
15814         * lyx_cb.C (QuitLyX): Do not save files when running with no gui.
15815
15816 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
15817
15818         * BufferView2.C (ChangeInsets): Renamed from ChangeRefs. Accept a
15819         new argument (code).
15820         (ChangeCitationsIfUnique): New method.
15821
15822         * paragraph.C (GetPositionOfInset): Handle bibkey.
15823
15824 2001-01-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15825
15826         * BufferView_pimpl.h: change type of Position::par_pos to
15827         LyXParagraph::size_type.
15828
15829 2001-01-29  Dekel Tsur  <dekelts@tau.ac.il>
15830
15831         * BufferView_pimpl.C (savePosition, restorePosition): Write
15832         messages to minibuffer.
15833
15834 2001-01-28  José Matos  <jamatos@fep.up.pt>
15835
15836         * buffer.C (makeDocBookFile): adds support for document language.
15837         A silly restriction on the name of LatexCommand types where removed.
15838         Added support for CDATA sections, allows to chars unescaped, used
15839         among others in code, to avoid escape < and >.
15840
15841 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
15842
15843         * BufferView_pimpl.C (savePosition, restorePosition): Use a vector of
15844         saved positions instrad of a stack. Furthermore, a position is
15845         stored using paragraph id/paragraph position.
15846
15847         * commandtags.h: Add LFUN_BOOKMARK_SAVE and LFUN_BOOKMARK_GOTO.
15848         Remove LFUN_REF_BACK.
15849
15850 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
15851
15852         * converter.C (dvipdfm_options): New method.
15853
15854 2001-01-26  Dekel Tsur  <dekelts@tau.ac.il>
15855
15856         * vspace.C (isValidLength): Fix for empty input string.
15857
15858 2001-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15859
15860         * LyXAction.C (init): change description of LFUN_FIGURE to
15861         "Insert Graphics"
15862
15863 2001-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15864
15865         * LaTeX.C: add using directive
15866
15867 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
15868
15869         * MenuBackend.C (expand): Fix the sorting of the formats.
15870
15871 2001-01-24  John Levon  <moz@compsoc.man.ac.uk>
15872
15873         * lyx_main.C: tiny error message fix
15874
15875 2001-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15876
15877         * lyx_gui.C (LyXGUI): force the LC_NUMERIC locale to "C" after
15878         calling fl_initialize(). This fixes the problem with ',' as
15879         decimal separator in text files.
15880
15881 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
15882
15883         * trans.C (process): Fix the keymap bug.
15884
15885 2001-01-23  Dekel Tsur  <dekelts@tau.ac.il>
15886
15887         * LaTeX.C (scanAuxFiles): New method. Provides support for
15888         multiple bibliographies (when using the bibtopic/bibunits pacakges).
15889         (scanLogFile) Scan for "run BibTeX" messages.
15890
15891         * buffer.C (makeLaTeXFile): Do not load the ae package when using
15892         OT1 font encoding. Also, load the aecompl package if the ae
15893         package is loaded.
15894
15895         * tex-strings.C: Add "ae" to tex_fonts[] (from Matej Cepl).
15896
15897 2001-01-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15898
15899         * texrow.C (increasePos): turn two error messages into debug
15900         messages.
15901
15902 2001-01-20  Dekel Tsur  <dekelts@tau.ac.il>
15903
15904         * LaTeX.C (scanAux): Handle the \@input macro.
15905         (runBibTeX): Use scanAux().
15906
15907         * language.C (latex_options_): New field.
15908
15909         * LaTeXFeatures.C (getMacros): Add language macros.
15910
15911         * buffer.C (makeLaTeXFile): Small fix.
15912
15913 2001-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15914
15915         * lyxfunc.C: fix the name of the inset for LFUN_CHILDINSERT
15916
15917         * text2.C: add a using directive.
15918
15919 2000-01-17  John Levon  <moz@compsoc.man.ac.uk>
15920
15921         * BufferView2.C:
15922         * lyx_gui_misc.h:
15923         * lyxfr1.C:
15924         * lyxfunc.C: kill LyXBell.
15925
15926 2001-01-17  Dekel Tsur  <dekelts@tau.ac.il>
15927
15928         * text.C (IsBoundary): Remove the error message
15929
15930         * WorkArea.C (work_area_handler): Decrease keyboard purge threshold.
15931
15932         * lyxrc.C (setDefaults): Correct initialization value for
15933         font_norm_type.
15934
15935 2001-01-15  Dekel Tsur  <dekelts@tau.ac.il>
15936
15937         * BufferView2.C (gotoInset): New method. Replaces gotoNote() and
15938         gotoError().
15939
15940         * text2.C (GotoNextInset): New method. Replaces GotoNextError()
15941         and GotoNextNote().
15942
15943         * src/LyXAction.C: Added reference-next.
15944
15945         * text.C (InsertChar): Use contains instead of strchr.
15946
15947         * lyx_cb.C (MenuInsertLabel): Enable default value code.
15948
15949 2001-01-13  Dekel Tsur  <dekelts@tau.ac.il>
15950
15951         * paragraph.C (SimpleTeXOnePar) Put \protect before paragraph
15952         alignment commands (when needed).
15953
15954         * text.C (InsertChar): Add ':' to number separator chars.