]> git.lyx.org Git - lyx.git/blob - src/ChangeLog
one less use of ownerPar means faster code
[lyx.git] / src / ChangeLog
1 2004-08-15  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2
3         * metricsinfo.h: add a new field ltr_pos to PainterInfo
4
5         * rowpainter.C (paintInset): initialize PainterInfo::ltr_pos
6
7         * text.C (singleWidth): remove useless test
8
9 2004-08-14  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10
11         * tabular.h: remove bogus comments
12
13         * tabular.C (getDescentOfRow): 
14         (isPartOfMultiColumn): add assertions
15
16         * lyxlength.C (inPixels): remove #warning
17
18 2004-08-14  André Pönitz  <poenitz@gmx.net>
19
20         * paragraph.h: inline getChar()
21         
22         * BufferView.h: remove unused declarations
23
24 2004-08-14  José Matos  <jamatos@lyx.org>
25
26         * Buffer.[Ch] (readDocument): new name for old readBody.
27         * Buffer.C: new file format, new keywords: \begin_document,
28         \begin_header, \begin_body, \end_body.
29
30         * bufferparams.C (readToken): replace all calls to lex.nextToken
31         by lex.next(). Do the same to eatLine except where really needed.
32
33         * lyxfont.C (lyxWriteChanges): remove whitespaces in the end of
34         line when writing to the lyx file.
35
36         * output_plaintext.C (asciiParagraph): fix Bibliography style
37         handling.
38
39         * text.C (read): fix end of file handling.
40
41 2004-08-14  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
42
43         * MenuBackend.C (Menu::operator[]): new method to access
44         individual menu items
45         (Menu::hasFunc): new method. search for an item that corresponds
46         to a given func
47         (MenuBackend::specialMenu): new method
48         (MenuBackend::expand): if a special menu has been set, skip
49         entries whose func() appears in this menu
50
51 2004-08-14  Lars Gullik Bjonnes  <larsbj@lyx.org>
52
53         * text3.C: use Debug::DEBUG a bit more
54
55         * text.C (leftMargin): try to simplify a tiny bit change var x to
56         l_margin. Dont output the wide margins always.
57         (rightMargin): no margin in inner texts
58
59         * rowpainter.h (nestMargin): new func
60         (changebarMargin): new func
61         (rightMargin): new func
62
63         * rowpainter.C (paintDepthBar): changebarMargin and nestMargin is
64         now functions.
65         (paintLast): ditto
66
67         * factory.C (createInset): modify setDrawFrame
68
69         * cursor.C: use Debug::DEBUG a bit more
70
71 2004-08-14  André Pönitz  <poenitz@gmx.net>
72
73         * coordcache.[Ch]:
74         * Makefile.am: new files to accomodate an 'external' (x,y)-position
75         cache for all insets in (at least partially) visible (top-level)
76         paragraphs.
77         
78         * BufferView_pimpl.C: reset external coord cache before every update.
79         This means the coord cache only contains valid entries.
80
81 2004-08-14  Lars Gullik Bjonnes  <larsbj@lyx.org>
82
83         bug 1096
84         * BufferView_pimpl.C (getInsetByCode): move function out of class
85         and change in to a template in anon namespace. Also fix to do what
86         suits us better.
87
88 2004-08-13  Lars Gullik Bjonnes  <larsbj@lyx.org>
89
90         bug 1305
91         * paragraph_funcs.C (moveItem): use Paragraph::value_type instead
92         of char
93         (breakParagraph): rename par to par_offset and use a local
94         reference. Add code to keep the language over a rebreak.
95         (breakParagraphConservative): rename par to par_offset, use a
96         local reference
97         (mergeParagraph): ditto
98         (outerHook): ditto
99         (isFirstInSequence): ditto
100         (outerFont): rename pit to par_offset
101
102         * paragraph.C: ws change
103         * paragraph.h: ditto
104         * text3.C: ditto
105         * text.C: ditto
106
107 2004-08-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
108
109         * paragraph_pimpl.C (simpleTeXSpecialChars): remove special
110         treatment for ']'
111
112         * paragraph.C (simpleTeXOnePar): when we have a \item with
113         optional argument, enclose the argument with curly brackets (in
114         case it contains a closing square bracket)
115
116         * text2.C (editXY):
117         * text2.C (editXY):
118         * text3.C (checkInsetHit): constify
119
120 2004-08-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
121
122         * LyXAction.C (init): mark LFUN_WORD_FIND as working in read-only
123         documents (bug 1629)
124
125 2004-08-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
126
127         Fix toggling of collapsable insets with the mouse (bug 1558)
128
129         * lyxfunc.C (dispatch): adapt to LCursor changes
130
131         * BufferView_pimpl.C (workAreaDispatch): adapt to LCursor changes;
132         make sure that dispatch is not invoked twice
133
134         * cursor.C (needsUpdate): new method
135         (dispatch): return void
136         (result): new method, to access the DispatchResult of the cursor.
137
138 2004-08-13  José Matos  <jamatos@lyx.org>
139
140         * tabular.C (docbook): close empty tags in XML. Fix bug 1147.
141
142 2004-08-13  André Pönitz  <poenitz@gmx.net>
143
144         * cursor.C (macroModeClose): use plainInsert instead of niceInsert.
145
146         * CutAndPaste.C (eraseSelection): fix cursor position after erasing
147           multiple cells
148
149 2004-08-12  André Pönitz  <poenitz@gmx.net>
150
151         * text3.C: take out the 'cursor right' form insertInset and only
152         do it in those places when it is really needed. Fixes crash on
153         C-m...
154
155 2004-08-08  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
156
157         * lyxfunc.C (dispatch): implement LFUN_SAVE_AS_DEFAULT
158
159         * BufferView_pimpl.C (setBuffer): initialize the current font of
160         the underlying LyXText
161
162 2004-08-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
163
164         * kbsequence.C (print): use UI native formatting for menu
165         shortcuts
166
167         * text.C (insertChar): call Paragraph::insertChar with a font
168         argument (cosmetic)
169
170         * paragraph.C (insertInset, insertChar): the version that takes a
171         LyXFont argument is now a wrapper around the other one (the
172         opposite used to be true).
173
174         * paragraph_pimpl.C (insertInset, insertChar): remove the LyXFont
175         argument. Font setting is done in Paragraph now.
176
177 2004-08-04  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
178
179         * outputparams.h: add new members intitle and lang.
180
181         * paragraph.C (simpleTeXOnePar): initialize rp.lang and
182         rp.intitle. Actually use rp in call to simpleTeXSpecialChars
183
184 2004-08-01  Lars Gullik Bjonnes  <larsbj@gullik.net>
185
186         * text3.C (dispatch): remove special handling of button 4 and 5,
187         it is now taken care of in the frontend code.
188
189 2004-07-25  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
190
191         * Spacing.h: add <string> (STLPort compile fix)
192
193 2004-08-02  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
194
195         * LaTeXFeatures.C: (jurabib) \RequirePackage -> \usepackage
196
197 2004-07-25  Lars Gullik Bjonnes  <larsbj@gullik.net>
198
199         * lyxlex_pimpl.C (compare_tags): chagne return type of operator()
200         to bool.
201
202         * converter.C (showMessage): inherit from unary_function, make
203         operator() const.
204
205         * buffer.C (writeFile): initialize retval
206
207         * InsetList.h: rename private variable list to list_
208         * InsetList.[Ch]: adjust accordingly.
209
210 2004-07-24  Lars Gullik Bjonnes  <larsbj@gullik.net>
211
212         * text3.C, text2.C, text.C, tabular.C, paragraph_funcs.C, paragraph.C:
213         * lyxlength.C, lyxgluelength.C, lyxfunc.C, lyxfont.C, lyxfind.C:
214         * kbmap.C, funcrequest.C, factory.C, cursor.C, counters.C:
215         * bufferview_funcs.C, bufferparams.C, buffer.C, Spacing.C:
216         * ParagraphParameters.C, LaTeXFeatures.C: replace
217         "support/std_sstream.h" with <sstream>
218
219 2004-07-23  Lars Gullik Bjonnes  <larsbj@gullik.net>
220
221         * lyxserver.C (startPipe): use this (pointer) not *this (reference)
222         * lyxsocket.C (LyXServerSocket): ditto
223         (serverCallback): ditto
224
225 2004-07-23  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
226
227         * LaTeXFeatures.C: check release date when loading jurabib.
228
229 2004-07-22  Lars Gullik Bjonnes  <larsbj@gullik.net>
230
231         * lyxserver.C (startPipe): call register_socket_callback
232         (endPipe): call unregister_socket_callback
233
234 2004-07-21  Lars Gullik Bjonnes  <larsbj@gullik.net>
235
236         * lyxsocket.C (LyXServerSocket): reduce max outstanding clients to 3
237         (LyXServerSocket): register the callback
238         (LyXServerSocket): unregister the callback
239         (fd): delete function
240         (serverCallback): improve error checking and setup the callbacks.
241         (dataCallback): change arg to fd.
242         (writeln): new func (copied fro the client socket) used for server
243         write to client.
244         (LyXDataSocket): simplify
245         (~LyXDataSocket): close ann unregiser callback
246         (server): delete function
247         (fd): delete function
248         (readln): small changes, improve some std::string usage
249         (writeln): constify a bit
250
251 2004-06-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
252
253         * kbmap.C (find1keybinding): new method, only used by LyX/Mac with
254         Qt frontend
255
256 2004-07-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
257
258         * BufferView_pimpl.C (setBuffer): set the layout combox value only
259         after it has been populated
260
261 2004-06-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
262
263         * text2.C (insertInset): move cursor when inserting inset.
264
265 2004-06-30  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
266
267         * kbmap.C (findbindings): a couple of new methods. returns a
268         container of kb_sequence objects. The real work is done by the
269         private recursive version
270         (printbindings): uses findbindings to print out a bracketed list
271         of bindings (renamed from findbinding).
272
273         * MenuBackend.C (binding): use kb_keymap::findbindings
274
275         * lyxfunc.C (sendDispatchMessage): use use kb_keymap::printbindings.
276
277 2004-07-01  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
278
279         * buffer.C: up LYX_FORMAT to 235 (needed for the paperpackage fix)
280
281 2004-06-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
282
283         * paragraph.C (isWord): return true on insets that report
284         isLetter().
285
286         * text.C (getWord): use Paragraph::isWord to decide what is in a
287         word and what is not; fix bug 1609.
288
289 2004-06-27  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
290
291         * tex-strings.C: add "none" to string_paperpackages[], fixes
292         off-by-one-error in the paperpackage selection.
293
294         * lyxlex.[Ch]:
295         * tex-strings.[Ch]: char const * string[n]
296         -> char const * const string[]
297
298 2004-06-10  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
299
300         * lyxfunc.C (getStatus): if lyx_gui::getStatus disables the
301         command, return early.
302
303 2004-06-18  Lars Gullik Bjonnes  <larsbj@gullik.net>
304
305         * debug.h: add DEBUG to enum and fix size of ANY.
306
307         * debug.C: add support for Debug::DEBUG
308         (showTags): cast errorTags.level to unsigned int
309
310         * BufferView_pimpl.C (fitCursor): use Debug::DEBUG
311         (redoCurrentBuffer): ditto
312         (updateScrollbar): ditto
313         * cursor.C (dispatch): ditto
314         * text2.C (setLayout): ditto
315         (setFont): ditto
316         (updateCounters): ditto
317         (editXY): ditto
318         (deleteEmptyParagraphMechanism): ditto
319
320 2004-06-09  Lars Gullik Bjonnes  <larsbj@gullik.net>
321
322         * Makefile.am (dist_noinst_DATA): use the dist_ and noinst_
323         annotations to cleanup the Makefile slightly.
324
325 2004-05-10  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
326
327         * lyxrc.C: do not set user_email to a default value but use empty
328         instead. The entry used to be translated, which does not work
329         since at the point where lyxrc is constructed there is no
330         translation service available
331
332         * messages.C (getLocaleDir): remove and use directly
333         lyx_localedir() instead
334
335 2004-06-02  Angus Leeming  <leeming@lyx.org>
336
337         Fix crash caused by dereferencing null pointer 'exportdata' in
338         OutputParams by creating a new ExportData variable on the heap,
339         storing it in a boost::shared_ptr.
340         The crash was triggered when generating an Instant Preview
341         of an external inset.
342
343         * Makefile.am: add outputparams.C
344
345         * outputparams.[Ch]: store exportdata as a shared_ptr<Exportdata>.
346         (c-tor): allocate memory to it.
347
348         * exporter.C (c-tor): associated changes.
349
350 2004-06-01  Angus Leeming  <leeming@lyx.org>
351
352         * output_linuxdoc.C (linuxdocParagraphs): Check that the paragraph
353         contains data before calling isInset(0). (Bug 1513.)
354
355 2004-06-01  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
356
357         * exporter.C (checkOverwrite): new method
358         * exporter.C (copyFile): new method
359         * exporter.C (Export): copy referenced files to the document dir
360         * exporter.[Ch]: new class ExportedFile
361         * exporter.[Ch]: new class ExportData. Contains currently the
362         names of referenced external files
363         * outputparams.h: add exportdata member.
364
365 2004-05-28  Lars Gullik Bjonnes  <larsbj@gullik.net>
366
367         * Makefile.am (DISTCLEANFILES): add version.C, stamp-version and
368         version.C-tmp
369
370 2004-05-19  Angus Leeming  <leeming@lyx.org>
371
372         * LaTeXFeatures.C:
373         * ToolbarBackend.C:
374         * bufferparams.C:
375         * lyxfunc.C: small changes due to the introduction of namespace
376         lyx::frontend and the moving of namespace biblio to lyx::biblio.
377
378 2004-05-18  Alfredo Braunstein  <abraunst@lyx.org>
379
380         * text3.C (dispatch): supress update when only moving the cursor
381         * cursor.C (selHandle): remove commented code
382
383 2004-05-17  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
384
385         * paragraph.C (startTeXParParams): correct column count
386         * CutAndPaste.C (pasteSelection): remove const_cast
387         * output_docbook.C (docbookParagraphs): remove const_cast
388         * output_latex.C (TeXEnvironment, TeXOnePar, TeXDeeper): remove
389         const_cast and return ParagraphList::const_iterator
390         * output_linuxdoc.C (linuxdocParagraphs): remove const_cast
391         * output_plaintext.C (writeFileAscii): remove const_cast
392         * paragraph.[Ch] (simpleTeXOnePar): make const
393         * paragraph_funcs.C (outerPar): use const iterators
394         * paragraph_pimpl.C (validate): use const iterators
395         * text.C (setHeightOfRow): use const iterators
396
397 2004-05-17  Angus Leeming  <leeming@lyx.org>
398
399         * lfuns.h:
400         * LyXAction.C (init): new LFUN_INSET_REFRESH.
401
402         * lyxfunc.C (dispatch): in the LFUN_BUFFERPARAMS_APPLY block loop
403         over all insets and dispatch LFUN_INSET_REFRESH to any citation insets
404         if the citation engine has changed.
405
406 2004-05-14  José Matos  <jamatos@lyx.org>
407
408         * buffer.C (makeDocBookFile): add a default Formal Public Identifier
409         if the textclass does not provide it. Have it different for sgml and
410         xml.
411         support the language of document.
412         * output_docbook.C (docbookParagraphs):
413         * paragraph.[Ch] (getDocbookId): new function that gets the id of the
414         first anchor as the id of the paragraph, remove special case code.
415         * sgml.C (escapeChar): escape only < & >.
416
417 2004-05-14  Angus Leeming  <leeming@lyx.org>
418
419         * bufferparams.h: move biblio::CiteEngine enum here to minimize
420         dependencies on src/frontends/controllers/biblio.h. Define a
421         CiteEngine_enum wrapper class to enable the enum to be forward
422         declared.
423
424 2004-05-12  Angus Leeming  <leeming@lyx.org>
425
426         * buffer.C: up LYX_FORMAT to 234.
427         * bufferparams.[Ch]: replace the three bools, use_natbib, use_jurabib,
428         use_numerical_citations with a single biblio::CiteEngine cite_engine
429         variable.
430         * LaTeXFeatures.C (getPackages): use BufferParams::cite_engine.
431
432 2004-05-13  José Matos  <jamatos@lyx.org>
433
434         * converter.h:
435         * converter.C (Converter, readFlags): add xml member.
436         * outputparams.h: add XML flavor.
437         * buffer.C (makeDocBookFile): add support for the sgml/xml distinction.
438
439 2004-05-03  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
440
441         * lyxfunc.C (dispatch):
442         (getStatus): fix handling of LFUN_SEQUENCE
443
444 2004-04-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
445
446         * debug.C (showLevel): do not forget the end-of-line marker
447
448 2004-04-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
449
450         * kbmap.C (read): do not stop parsing a bind file when an error
451         occurs (bug 1575)
452
453 2004-04-29  Angus Leeming  <leeming@lyx.org>
454
455         * cursor.C:
456         * factory.C:
457         * pariterator.C:
458         * text2.C: wrap a bunch of #warning statements
459         inside #ifdef WITH_WARNINGS blocks.
460
461 2004-04-29  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
462
463         * buffer.C: increment format to 233.
464
465 2004-04-28  Angus Leeming  <leeming@lyx.org>
466
467         * BufferView_pimpl.C:
468         * lyxfunc.C:
469         * text3.C:
470         s/updateToolbar()/updateToolbars()/
471         s/Toolbar.h/Toolbars.h/
472
473 2004-04-28  Angus Leeming  <leeming@lyx.org>
474
475         * BufferView.[Ch] (c-tor):
476         * BufferView_pimpl.[Ch] (c-tor): no longer receives x,y position.
477         No longer passes these data to the WorkArea generator.
478
479 2004-04-28  Angus Leeming  <leeming@lyx.org>
480
481         * BufferView_pimpl.C (c-tor): pass LyXView & to WorkArea generator.
482
483 2004-04-26  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
484
485         * LaTeXFeatures.C, lyx_sty.[Ch]: add \lyxdot macro
486
487 2003-09-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
488
489         * output_latex.C (TeXEnvironment): make sure that there is a line
490         break before \end{foo} for the last paragraph of a document
491         (TeXOnePar): if the paragraph is at the end of the document (or
492         inset) and the language has to be reset, then make sure that the
493         line break is _before_ the language command, not after (fixes bug
494         1225); also make sure that the language reset command is the first
495         thing after the paragraph (to ensure proper nesting of
496         environments and thus fix bug 1404)
497
498 2004-04-21  John Levon  <levon@movementarian.org>
499
500         * ToolbarBackend.h:
501         * ToolbarBackend.C: make "name" be a programmatic name
502         and a gui_name field.
503
504         * lyxfunc.C: display the minibuffer on M-x
505
506 2004-04-18  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
507
508         * LaTeX.C (runMakeIndex, runBibTeX): quote correctly file name
509         (bug 1526)
510
511 2004-04-19  Angus Leeming  <leeming@lyx.org>
512
513         * BufferView_pimpl.C (setBuffer): changed preview interface.
514
515         * lyxrc.[Ch] (preview): no longer a bool. Now an enum with three
516         possible values.
517
518 2004-04-19  John Levon  <levon@movementarian.org>
519
520         * BufferView_pimpl.C:
521         * text3.C: fix bug 1569 (insert->label doesn't give suggestion)
522
523 2004-04-05  Angus Leeming  <leeming@lyx.org>
524
525         * text.C (redoParagraphs): add call to updateCounters(), thereby
526         fixing the missing "Figure #:" label from the caption of a
527         figure float.
528
529 2004-04-13  Angus Leeming  <leeming@lyx.org>
530
531         * text3.C (dispatch): call Inset::.notifyCursorLeaves when the
532         cursor is clicked out of an inset.
533
534 2004-04-13  Angus Leeming  <leeming@lyx.org>
535
536         * lyx_main.[Ch] (updateInset): pass it an InsetBase pointer rather
537         than an InsetOld one.
538
539 2004-04-12  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
540
541         * format.[Ch]: add editor to Format
542         * lyxrc.[Ch]: merge RC_FORMAT and RC_VIEWER. Add editor to Format
543         * LyXAction.C, lfuns.h, lyxfunc.C: add lfun LFUN_GRAPHICS_EDIT
544
545 2004-04-08  André Pönitz  <poenitz@gmx.net>
546
547         * metricsinfo.h: remove PainterInfo::width member
548
549 2004-04-08  Angus Leeming  <leeming@lyx.org>
550
551         * lyx_sty.C (boldsymbol_def): modify so that it outputs
552         "\providecommand" rather than "\newcommand", thereby preventing
553         clashes with packages that define "\boldsymbol" themselves.
554         Eg, beamer.
555
556 2004-04-08  Angus Leeming  <leeming@lyx.org>
557
558         * lyxrc.C (read): don't try to set the color of none, inherit, ignore
559         thereby squashing an unnecessary warning.
560
561 2004-04-01  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
562
563         * LaTeXFeatures.[Ch]: change buffer_ to a pointer and add accessor
564         setBuffer()
565
566 2004-04-07  Alfredo Braunstein  <abraunst@lyx.org>
567
568         * BufferView.C (setCursor): call redoParagraph (some insets could
569         have been opened)
570         (putSelectionAt): remove the 'double update' trick
571
572         * BufferView_pimpl.C (fitCursor): call refreshPar
573         (workAreaDispatch): remove an uneeded update call
574         (dispatch): remove some manual update calls
575
576         * cursor.[Ch]: remove cached_y_, updatePos
577         (selHandle): set noUpdate when appropriate
578
579         * lyxfunc.C (dispatch): track if we need an update
580
581         * metricsinfo.[Ch]: PainterInfo receive a Painter & on construction
582
583         * rowpainter.[Ch] (RowPainter): remove superfluous xo_ parameter
584         (paintSelection): cheap optimization, do not call cursorX when not
585         needed
586         (paintPars): change signature
587         (refreshPar): add
588         (paintText): adjust
589         (paintTextInset): adjust
590
591         * text.C: adjust
592
593 2004-04-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
594
595         * lengthcommon.C: compilation fix: remove explicit array size from
596         unit_name[] and friends
597
598 2004-04-05  Angus Leeming  <leeming@lyx.org>
599
600         * LyXAction.C (init): set LFUN_DIALOG_UPDATE's atrib flag to NoBuffer.
601
602         * lyxfunc.C (getStatus): enable LFUN_DIALOG_UPDATE if no buffer is
603         present only for the preferences dialog.
604         (dispatch): handle LFUN_DIALOG_UPDATE for the preferences dialog.
605
606 2004-04-05  Angus Leeming  <leeming@lyx.org>
607
608         * lyxrc.[Ch] (write): now takes a 'bool ignore_system_lyxrc' arg
609         to enable the frontends to export changes to lyxrc correctly.
610
611         * lyxfunc.C (dispatch): output lyxrc.write("preferences", false).
612
613 2004-04-07  André Pönitz  <poenitz@gmx.net>
614
615         * cursor.[Ch] (selClear, adjust): remove math
616
617         * cursor_slice.C: more agressive assert
618
619         * lyxfunc.C:
620         * BufferView_pimpl.C: rework mouse event dispatch
621
622         * dociterator.C:
623         * paragraph.C:
624         * text2.C:
625         * text3.C: adjust
626
627 2004-04-05  André Pönitz  <poenitz@gmx.net>
628
629         * cursor.[Ch] (valign, halign...): remove unneeded functions
630
631 2004-04-05  Angus Leeming  <leeming@lyx.org>
632
633         * lyxlength.[Ch] (unit_name et al.): const-correct.
634
635 2004-04-05  Angus Leeming  <leeming@lyx.org>
636
637         * BufferView_pimpl.C:
638         * buffer.C:
639         * counters.C:
640         * cursor.C:
641         * lyxfunc.C
642         * paragraph.C:
643         * pariterator.C:
644         * text.C:
645         * text2.C:
646         * text3.C: wrap #warning calls inside #ifdef WITH_WARNINGS blocks.
647
648 2004-04-01  Alfredo Braunstein  <abraunst@lyx.org>
649
650         * text3.C (getStatus): add LFUN_BEGINNINGBUF
651
652 2004-04-01  Alfredo Braunstein  <abraunst@lyx.org>
653
654         * lyxfind.C: add a couple of inTexted() tests + other small fixes
655         * BufferView_pimpl.[Ch] (getStatus)
656         * BufferView.[Ch] (getStatus): add
657         * lyxfunc.C (getStatus): move lfuns handled in
658         BufferView::dispatch to te function above
659         * Cursor.C (setSelection): set selection() = true
660
661 2004-04-01  Alfredo Braunstein  <abraunst@lyx.org>
662
663         * lyxfunc.C (getStatus): enable LFUN_WORD_{FIND,REPLACE}
664
665 2004-03-31  Angus Leeming  <leeming@lyx.org>
666
667         * lyxfunc.C (dispatch): Fall through to the generic
668         Dialogs::show("preamble").
669
670 2004-03-31  Angus Leeming  <leeming@lyx.org>
671
672         * lyxfunc.C (dispatch): Fall through to the generic
673         Dialogs::show("spellchecker").
674
675 2004-03-31  Angus Leeming  <leeming@lyx.org>
676
677         * lyxfunc.C (getStatus, dispatch): changed invocation of the
678         preferences dialog.
679
680 2004-03-31  Alfredo Braunstein  <abraunst@lyx.org>
681
682         * BufferView.C
683         * cursor.[Ch]
684         * dociterator.[Ch]:
685         * insetiterator.[Ch]:
686         * lyxfind.C:
687         * lyxfunc.C:
688         * pariterator.[Ch]:
689         * text2.C:
690         * undo.[Ch]: s/DocumentIterator/DocIterator/g
691
692 2004-03-31  Alfredo Braunstein  <abraunst@lyx.org>
693
694         * BufferView.C (setCursor, putSelectionAt): call edit to open the
695         insets where we are putting the cursor.
696
697 2004-03-31  Angus Leeming  <leeming@lyx.org>
698
699         * lfuns.h:
700         * LyXAction.C: new lfun LFUN_LYXRC_APPLY.
701
702         * lyxrc.[Ch] (read, write): overloaded member functions taking
703         a std::[io]stream arguments.
704
705         * lyxfunc.C (getStatus, dispatch): handle LFUN_LYXRC_APPLY.
706
707 2004-03-31  Angus Leeming  <leeming@lyx.org>
708
709         * lyxfunc.C (loadTextclass): new helper function, invoked by two of
710         dispatch's case blocks, LFUN_TEXTCLASS_APPLY and LFUN_TEXTCLASS_LOAD.
711
712         * lyxtextclass.C (load): if the text class couldn't be loaded, then
713         don't overwrite 'loaded_ = false' with 'loaded_ = true' !
714
715 2004-03-31  Angus Leeming  <leeming@lyx.org>
716
717         * lyxfunc.C (dispatch): remove the cursor-manipulation code from
718         the LFUN_ALL_INSETS_TOGGLE code.
719
720 2004-03-30  Angus Leeming  <leeming@lyx.org>
721
722         * lyxfunc.C (dispatch): the specialization Dialogs::showDocument
723         has died. Fall through to the generic Dialogs::show("document").
724
725 2004-03-30  Angus Leeming  <leeming@lyx.org>
726
727         * lfuns.h:
728         * LyXAction.C: new lfuns LFUN_LANGUAGE_BUFFER, LFUN_TEXTCLASS_APPLY,
729         LFUN_TEXTCLASS_LOAD, LFUN_SAVE_AS_DEFAULT, LFUN_BUFFERPARAMS_APPLY.
730
731         * lyxfunc.C (getStatus, dispatch): define the actions for these
732         lfuns. Little more than a cut and pste job from ControlDocument.C
733
734         * lyxtextclass.[Ch] (loaded): accessor for the private bool loaded_.
735
736 2004-03-30  Angus Leeming  <leeming@lyx.org>
737
738         * lfuns.h:
739         * LyXAction.C (init): new lfuns, LFUN_KEYMAP_TOGGLE,
740         LFUN_NEXT_INSET_TOGGLE, LFUN_ALL_INSETS_TOGGLE.
741
742         * lyxfunc.C (dispatch): LFUN_ALL_INSETS_TOGGLE is used to toggle the
743         open/closed state of ollapsable insets. Usage:
744
745         all-inset-toggle <state> <name>, where
746         <state> == "open" || "closed" || "toggle" and
747         <name> is an identifier for a 'type' of inset. Eg "branch", "ert",...
748
749         * lyxtext.h, text2.C (toggleInset): removed.
750
751         * text3.C (dispatch): split the existing LFUN_INSET_TOGGLE in two,
752         LFUN_KEYMAP_TOGGLE and LFUN_NEXT_INSET_TOGGLE. LFUN_NEXT_INSET_TOGGLE
753         now passes LFUN_INSET_TOGGLE to the found inset.
754
755         * InsetList.[Ch] (insetsOpenCloseBranch): removed. Functionality
756         is now invoked as "all-insets-toggle toggle branch".
757
758 2004-03-30  Angus Leeming  <leeming@lyx.org>
759
760         * dociterator.C:
761         * insetiterator.C:
762         * pariterator.[Ch]: added/corrected header blurb.
763
764 2004-03-30  Alfredo Braunstein  <abraunst@lyx.org>
765
766         * dociterator.[Ch]: add an inset_ member
767         (backwardPos): implemented
768         (backwardPos, forwardPos): use inset_ when the stack is empty.
769         (doc_iterator_begin, doc_iterator_end): implemented
770         * pariterator.[Ch]: adjust, add begin, end
771         * insetiterator.[Ch]: adjust, add begin, end
772         * cursor.C:
773         * document.C:
774         * BufferView.C:
775         * BufferView_pimpl.C:
776         * CutAndPaste.C: adjust
777
778 2004-03-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
779
780         * buffer.C: increment file format to 232.
781         * LaTeXFeatures.C: add bibtopic package.
782         * bufferparams.[Ch]: param \use_bibtopic.
783
784         * lyxrc.[Ch]: add lyxrc bibtex_command
785         * LaTeX.C: use rc.bibtex_command instead of hardcoded string.
786
787         * buffer.C: increment file format to 231.
788
789 2004-03-28  Alfredo Braunstein  <abraunst@lyx.org>
790
791         * dociterator.C: implement forwardPar
792         * iterators.[Ch]: remove, replaced by
793         * pariterator.[Ch]: this. derive ParIterator from DocumentIterator
794         * BufferView.C:
795         * BufferView_pimpl.C:
796         * CutAndPaste.C:
797         * buffer.C:
798         * bufferview_funcs.C:
799         * cursor.C:
800         * lyxfind.C
801         * lyxfunc.C
802         * paragraph_funcs.C
803         * toc.C:
804         * Makefile.am: adjust
805
806 2004-03-28  Alfredo Braunstein  <abraunst@lyx.org>
807
808         * CutAndPaste.C (pasteSelection): fix 2 crashes
809         (eraseSelection): fix a crash
810         * paragraph_funcs.C: remove a warning
811
812 2004-03-28  Angus Leeming  <leeming@lyx.org>
813
814         * lfuns.h:
815         * LyXAction.C (init): new LFUN_PRINT.
816
817         * lyxfunc.C (getStatus, dispatch): handle LFUN_PRINT.
818
819 2004-03-27  Angus Leeming  <leeming@lyx.org>
820
821         * lfuns.h:
822         * LyXAction.C (init): new LFUN_EXPORT_CUSTOM.
823
824         * lyxfunc.C (getStatus, dispatch): handle LFUN_EXPORT_CUSTOM.
825
826 2004-03-27  Angus Leeming  <leeming@lyx.org>
827
828         * paragraph_funcs.C (moveItem): fix memory leaks, ensure that
829         insetlist always contains non-null pointers to insets.
830
831 2004-03-26  Angus Leeming  <leeming@lyx.org>
832
833         * src/BufferView_pimpl.C:
834         * src/CutAndPaste.C:
835         * src/buffer.C:
836         * src/iterators.C:
837         * src/output_plaintext.C:
838         * src/outputparams.h:
839         * src/paragraph_funcs.C:
840         * src/rowpainter.C:
841         * src/text.C:
842         * src/text2.C:
843         * src/frontends/controllers/ControlErrorList.C:
844         * src/frontends/gtk/FileDialogPrivate.C:
845         * src/frontends/gtk/GPainter.C:
846         * src/frontends/gtk/GToolbar.C:
847         * src/frontends/qt2/QRef.C:
848         * src/mathed/math_scriptinset.C: squash compiler warnings.
849
850 2004-03-26  Angus Leeming  <leeming@lyx.org>
851
852         * ispell.C (LaunchIspell::start):
853         * lyx_cb.C (AutoSaveBuffer::start):
854         invoke run(DontWait) rather than runNonBlocking().
855
856 2004-03-26  Alfredo Braunstein  <abraunst@lyx.org>
857
858         * buffer_funcs.C (readFile): add cancel button to two prompt dialogs
859
860 2004-03-26  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
861
862         * kbsequence.C (print): adjust
863
864         * kbmap.C (printKeySym): rename and change signature
865         (printKey): use LyXKeySym::print()
866
867 2004-03-26  Martin Vermeer  <martin.vermeer@hut.fi>
868
869         * undo.C: add using std::advance to compile for stlport
870
871 2004-03-24  Angus Leeming  <leeming@lyx.org>
872
873         * lyxfunc.C (dispatch): remove test code in LFUN_QUIT handler as
874         it leads to a crash when no buffer is present.
875
876 2004-03-25  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
877             Martin Vermeer  <martin.vermeer@hut.fi>
878
879         * lyxfunc.C (dispatch):
880         * bufferparams.C (readToken): use the new LColor::setColor
881
882         * LColor.[Ch] (setColor): new version that takes two strings as
883         argument and creates a new color entry if necessary
884
885 2003-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
886
887         * buffer.C (makeLaTeXFile): if the main latex file that is
888         processed is usually a subdocument of some master, then pretend
889         for a while that it is actually the master
890
891 2003-02-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
892
893         * buffer.C (getLabelList):
894         (getBibkeyList): use getMasterBuffer()
895         (getMasterBuffer): new method. Returns the main document in the
896         case where one is using included documents.
897
898 2004-03-25  André Pönitz  <poenitz@gmx.net>
899
900         * Makefile.am:
901         * iterators.[Ch]:
902         * PosIterator.[Ch]: drop PosIterator, replaced by DocumentIterator
903
904         * ParagraphList_fwd.h: change ParagraphList to a std::vector
905
906         * CutAndPaste.[Ch]: simpler interface by moving some stuff from
907         text*.C over here. Rename namespace CutAndPaste to lyx::cap
908
909         * ParameterStruct.h: merge with ParagraphParameters
910
911         * lyxtext.h: remove LyXText::parOffset() and getPar()
912
913         * text3.C: Remove all 'manual' update calls. We do now one per user
914         interaction which is completely sufficient.
915
916         * Bidi.C:
917         * BufferView.[Ch]:
918         * BufferView_pimpl.C:
919         * FontIterator.[Ch]:
920         * MenuBackend.C:
921         * ParagraphParameters.[Ch]:
922         * buffer.C:
923         * buffer.h:
924         * bufferlist.C:
925         * cursor.[Ch]:
926         * cursor_slice.[Ch]:
927         * dociterator.[Ch]:
928         * errorlist.[Ch]:
929         * factory.C:
930         * lfuns.h:
931         * lyxfind.C:
932         * lyxfunc.C:
933         * output_docbook.[Ch]:
934         * output_latex.[Ch]:
935         * output_linuxdoc.[Ch]:
936         * output_plaintext.[Ch]:
937         * paragraph.[Ch]:
938         * paragraph_funcs.[Ch]:
939         * paragraph_pimpl.[Ch]:
940         * rowpainter.C:
941         * tabular.[Ch]:
942         * text.C:
943         * text2.C:
944         * toc.C:
945         * undo.[Ch]: adjust
946
947         * frontends/controllers/ControlDocument.C:
948         * frontends/controllers/ControlErrorList.C:
949         * frontends/controllers/ControlSpellchecker.C:
950         * insets/inset.C:
951         * insets/inset.h:
952         * insets/insetbase.h:
953         * insets/insetbibitem.C:
954         * insets/insetbox.C:
955         * insets/insetbranch.C:
956         * insets/insetcaption.C:
957         * insets/insetcharstyle.C:
958         * insets/insetcharstyle.h:
959         * insets/insetcollapsable.C:
960         * insets/insetcollapsable.h:
961         * insets/insetert.C:
962         * insets/insetfloat.C:
963         * insets/insetfoot.C:
964         * insets/insetmarginal.C:
965         * insets/insetnote.C:
966         * insets/insetoptarg.C:
967         * insets/insettabular.C:
968         * insets/insettext.C:
969         * insets/insettext.h:
970         * insets/insetwrap.C:
971         * mathed/math_mboxinset.C:
972         * mathed/math_nestinset.C:
973         * mathed/math_scriptinset.C:
974         * mathed/math_scriptinset.h:
975         * support/types.h:
976
977 2004-03-24  Angus Leeming  <leeming@lyx.org>
978
979         * BufferView_pimpl.C (cursorToggle): use the cursor toggle to
980         deal with any child processes that have finished but are waiting to
981         communicate this fact to the rest of LyX.
982
983 2004-03-24  Angus Leeming  <leeming@lyx.org>
984
985         64-bit compile fixes.
986
987         * errorlist.[Ch] (pos_start, pos_end): store as lyx::pos_type.
988         (c-tor): pass lyx::pos_types rather than ints.
989
990         * paragraph.[Ch] (beginOfBody, begin_of_body_): return, store as
991         lyx::pos_type.
992
993         * text.C (Delete): compile fix.
994         (getPar): ensure that function declaration is the same as that in
995         the header file.
996
997 2004-03-23  Angus Leeming  <leeming@lyx.org>
998
999         * ispell.C (LaunchIspell):
1000         * lyx_cb.C (AutoSaveBuffer): change the signature of clone to return
1001         a boost::shred_ptr rather than a std::auto_ptr.
1002
1003 2004-03-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1004
1005         * lyxfunc.C (getStatus): handle read-only buffers correctly;
1006         handle LFUN_FILE_INSERT_*
1007
1008         * lyxrc.C (setDefaults, getDescription, output, read):
1009         * lyxrc.h: remove ps_command
1010
1011 2004-03-22  Angus Leeming  <leeming@lyx.org>
1012
1013         * lyx_main.C (error_handler, init): remove handler for SIGPIPE.
1014         Ensure that error_handler is processed once only and that all data
1015         is saved before attempting to output any warning messages.
1016
1017         * cursor.[Ch] (nopos_, noPos): remove unused member variable/function.
1018
1019 2004-03-21  Alfredo Braunstein  <abraunst@lyx.org>
1020
1021         * tabular.C (TeXRow): crash fix (from Kayvan and André)
1022
1023 2004-03-19  André Pönitz  <poenitz@gmx.net>
1024
1025         * cursor.[Ch] (reset): take main text inset as argument
1026
1027         * BufferView: adjust
1028         * BufferView_pimpl.C: adjust
1029
1030         * paragraph.[Ch]: fix completely broken operator=()
1031
1032 2004-03-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1033
1034         * LColor.C (getFromLyXName): make sure that the color name is used
1035         as lowercase.
1036
1037 2004-03-17  Angus Leeming  <leeming@lyx.org>
1038
1039         * lfuns.h:
1040         * LyXAction.C (init): remove LFUN_FORKS_KILL.
1041
1042         * lyxfunc.C (getStatus, dispatch) remove lfuns to show the forks
1043         dialog and to kill a forked process.
1044
1045 2004-03-17  Alfredo Braunstein  <abraunst@lyx.org>
1046
1047         * text2.C (setCursorFromCoordinates): fix font problem
1048
1049 2004-03-17  Alfredo Braunstein  <abraunst@lyx.org>
1050
1051         * BufferView_pimpl.C (resizeCurrentBuffer): remove unneeded and
1052         bogus "rebuild cursor" code
1053
1054 2004-03-11  André Pönitz  <poenitz@gmx.net>
1055
1056         * buffer.[Ch]: use InsetText instead of LyXText as container for
1057         the main lyx text.
1058
1059         * dociterator.[Ch]: drop the BufferView * member which is not needed
1060         anymore after the change to buffer.C
1061
1062         * paragraph_funcs.C:
1063         * text.C:
1064         * text2.C:
1065         * BufferView.[Ch]:
1066         * BufferView_pimpl.[Ch]:
1067         * cursor.[Ch]:
1068         * cursor_slice.[Ch]: adjust
1069
1070         * text3.C: fix bug in mathDispatch
1071
1072 2004-03-08  André Pönitz  <poenitz@gmx.net>
1073
1074         * undo.[Ch]: use 'StableDocumentIterator' as base for
1075         the Undo struct.
1076
1077 2004-03-07  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1078
1079         * LaTeXFeatures.C:
1080         * bufferparams.[Ch]: add jurabib support and param.
1081
1082         * LaTeX.C: add FIXME/comment.
1083
1084 2004-03-05  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1085
1086         * buffer.C: increment file format to 230.
1087
1088 2004-03-04  Alfredo Braunstein  <abraunst@lyx.org>
1089
1090         * cursor.C (dispatch): avoid infinite loops
1091
1092 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1093
1094         * rowpainter.C (paintSelection): fix x coordinates
1095
1096 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1097
1098         * text.C (rowBreakPoint): fix breaking before displayed insets
1099
1100 2004-03-01  André Pönitz  <poenitz@gmx.net>
1101
1102         * dociterator.[Ch]: new class for the 'iterator part' of LCursor.
1103
1104         * cursor.[Ch]: adjust, additioally: remove the 'current_' machinery
1105
1106         * Makefile.am:
1107         * BufferView.C:
1108         * BufferView_pimpl.C:
1109         * buffer.C:
1110         * lyxfind.C:
1111         * lyxfunc.C:
1112         * text.C:
1113         * text2.C:
1114         * text3.C: adjust
1115
1116 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1117
1118         * lyxtext.h:
1119         * text.C:
1120         * text2.C:
1121         * rowpainter.C:
1122         * BufferView_pimpl.C: rename textwidth -> maxwidth,
1123         prepareToPrint -> computeRowMetrics and remove textWidth accessor.
1124
1125 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1126
1127         * Bidi.[Ch] (computeTables): const correctness
1128         * lyxrow.[Ch]: add RowMetrics class, move there fill_separator,
1129         fill_hfill, fill_label_hfill and x from Row
1130         * lyxtext.h: prepareToPrint returns a RowMetrics
1131         * rowPainter.C: adjust
1132         * text.C (prepareToPrint): use width, not textWidth. adjust
1133         (redoParagraphInternal, cursorX): adjust
1134         * text2.C (getColumnNearX): adjust
1135         (init): put a default value to the top LyXText::width
1136
1137 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1138
1139         * FontIterator.[Ch]: move FontIterator from lyxtext.h/text.C to here
1140
1141 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1142
1143         * lyxtext.h: add FontIterator class
1144
1145         * text.C (FontIterator, operator*, operator->, operator++): add
1146         (rowBreakPoint, setRowWidth): adjust (fixing a
1147         rebreaking bug)
1148
1149 2004-02-25  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1150
1151         * BufferView_pimpl.C (workAreaDispatch): allow also
1152         LFUN_FILE_OPEN, which is used by the drag-and-drop code.
1153
1154 2004-02-27  Alfredo Braunstein  <abraunst@lyx.org>
1155
1156         * text.C (rowBreakPoint): fix a bug showing with very large insets
1157
1158 2004-02-25  André Pönitz  <poenitz@gmx.net>
1159
1160         * text3.C:
1161         * cursor.[Ch]: move some mathed specific code to mathed
1162
1163 2004-02-21  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1164
1165         * lyxrc.C, buffer.C, exporter.C: use always a temp dir, ignore
1166         use_tempdir in preferences
1167         * buffer.C (readFile), lyxvc.C (getLogFile): check success of
1168         tempfile creation
1169         * lyx_main.C: ensure that tempdir is valid
1170         * lyxlex.h: correct typo
1171         * buffer.[Ch] (isMultiLingual), (isUnnamed): make const
1172         * paragraph.[Ch] (isMultiLingual): make const
1173         * cursor.[Ch] (openable): make const
1174
1175 2004-02-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1176
1177         * text3.C: fixed LFUN_QUOTE and add lfun arguments single/double.
1178
1179 2004-02-20  André Pönitz  <poenitz@gmx.net>
1180
1181         * dispatchresult.h: rename 'FINISHED' to 'FINISHED_LEFT'
1182
1183         * cursor.[Ch]: prepare for localized getStatus()
1184
1185         * lyxtext.h:
1186         * tabular.C:
1187         * text.C:
1188         * text2.C:
1189         * text3.C:  streamlines the LyXText cursor movement handlers a bit.
1190
1191 2004-02-20  André Pönitz  <poenitz@gmx.net>
1192
1193         * lyxfunc.[Ch]: rename view_status_message() to viewStatusMessage()
1194
1195 2004-02-16  Alfredo Braunstein  <abraunst@lyx.org>
1196
1197         * text2.C (setCursorFromCoordinates): switch to absolute coords
1198         (cursorUp): adjust
1199         (cursorDown): adjust
1200         * text3.C (dispatch): adjust
1201
1202 2004-02-16  André Pönitz  <poenitz@gmx.net>
1203
1204         * cursor.[Ch]: use new '_void_ dispatch(...)' signature (see
1205           insets/ChangeLog)
1206
1207         * cursor_slice.[Ch]: remove unneeded acessor function
1208
1209         * lyxtext.h: rename rtl() to isRTL()
1210
1211         * rowpainter.C:
1212         * tabular.C:
1213         * text.C:
1214         * text2.C:
1215         * text3.C: adjust
1216
1217 2004-02-16  Alfredo Braunstein  <abraunst@lyx.org>
1218
1219         * rowpainter.C (paintSelection): coord fix
1220
1221 2004-02-15  Georg Baum <Georg.Baum@post.rwth-aachen.de>
1222
1223         * Spacing.C: compile fix
1224
1225 2004-02-13  Alfredo Braunstein  <abraunst@lyx.org>
1226
1227         * cursor.C (dispatch): restore current_ before returning
1228
1229 2004-02-13  Alfredo Braunstein  <abraunst@lyx.org>
1230
1231         * text2.C (cursorUp, cursorDown): fix coords
1232         (moveUp): fix crash
1233
1234 2004-02-12  André Pönitz  <poenitz@gmx.net>
1235
1236         * lyxtext.h:
1237         * text.C:
1238         * text2.C:
1239         * text3.C: add LCursor & parameter to most cursor movement functions
1240           remove usage of LyXText::cursorRow() and cursorPar()
1241
1242         * cursor.[Ch]: add textRow() needed members
1243
1244         * BufferView.C:
1245         * BufferView_pimpl.C:
1246         * paragraph.[Ch]:
1247         * BufferView.C:
1248         * BufferView_pimpl.C: adjust
1249
1250 2004-02-11  André Pönitz  <poenitz@gmx.net>
1251
1252         * lyxfunc.C:
1253         * BufferView.[Ch]:
1254         * BufferView_pimpl.C: shift undo/redo handling
1255
1256         * cursor.[Ch]: fix mathed crash
1257
1258         * lyxfind.C:
1259         * lyxtext.h: move selectionAsText to LCursor
1260
1261         * output_latex.C:
1262         * paragraph.C:
1263         * text.C:
1264         * text2.C:
1265         * text3.C: adjust
1266
1267         * rowpainter.C: fix excessive drawing
1268
1269 2004-02-06  André Pönitz  <poenitz@gmx.net>
1270
1271         * BufferView.[Ch]:
1272         * BufferView_pimpl.[Ch]:
1273         * text3.C: move some text specific LFUN handling
1274
1275 2004-02-06  Alfredo Braunstein  <abraunst@lyx.org>
1276
1277         * text3.C (checkInsetHit): adjust coords
1278         * text2.C (getColumnNearX): adjust coords
1279         (edit): adjust coords
1280         * text.C (getRowNearY): add two asserts
1281
1282 2004-02-06  Martin Vermeer  <martin.vermeer@hut.fi>
1283
1284         * converter.C:
1285         * format.C: add using std::distance to compile on gcc 2.95/stlport
1286
1287 2004-02-04  Martin Vermeer  <martin.vermeer@hut.fi>
1288
1289         * cursor.[Ch]: workaround gcc 2.95 pointer comparison bug
1290
1291 2004-02-04  André Pönitz  <poenitz@gmx.net>
1292
1293         * BufferView.[Ch] (insertInset):
1294         * BufferView_pimpl.[Ch] (insertInset): remove unneeded return value
1295
1296         * text2.C:
1297         * text3.C: adjust
1298
1299 2004-02-03  Alfredo Braunstein  <abraunst@lyx.org>
1300
1301         * BufferView_pimpl.C (dispatch): remove call to LCursor::dispatch
1302         on the default clause of the switch
1303         * lyxfunc.C (dispatch): call BufferView::dispatch if the event
1304         wasn't catched by LCursor::dispatch
1305
1306 2004-02-03  André Pönitz  <poenitz@gmx.net>
1307
1308         * BufferView.C:
1309         * cursor.[Ch]: some additional asserts
1310
1311         * undo.[Ch]: remove LyXText dependency in interface
1312
1313         * lyxfunc.C: adjust
1314
1315         * lyxtext.h (firstPar, lastPar): remove dead functions
1316
1317         * text.C:
1318         * text2.C:
1319         * text3.C:
1320         * paragraph.[Ch]: adjust
1321
1322 2004-02-03  Alfredo Braunstein  <abraunst@lyx.org>
1323
1324         * lyxfind.C (find): fix argument order in call to ::find
1325
1326 2004-02-02  André Pönitz  <poenitz@gmx.net>
1327
1328         * cursor.[Ch]: remove direct access to anchor
1329
1330         * text.C: remove findText() hack
1331
1332 2004-02-02  Alfredo Braunstein  <abraunst@lyx.org>
1333
1334         * iterators.[Ch] (lockPath): remove in favour of...
1335         * BufferView.[Ch] (setCursor): this addition
1336         * BufferView.C (putSelectionAt): adjust
1337         * undo.C (performUndoOrRedo): adjust
1338         * lyxfunc.C (dispatch): adjust
1339
1340 2004-02-02  Alfredo Braunstein  <abraunst@lyx.org>
1341
1342         * iterators.C (lockPath): add a missing slice
1343         * undo.C (performUndoOrRedo): remove redundant positioning code
1344
1345 2004-02-01  Lars Gullik Bjonnes  <larsbj@gullik.net>
1346
1347         * vc-backend.C (scanMaster): ";" -> ';'
1348
1349 2004-01-31  Lars Gullik Bjonnes  <larsbj@gullik.net>
1350
1351         * lyxtextclasslist.C (less_textclass_avail_desc): inherit from
1352         std::binary_function
1353
1354         * lyxtextclass.C (compare_name): rename to...
1355         (LayoutNamesEqual): ...this
1356
1357         * lyxlex_pimpl.C (compare_tags): inherit from
1358         std::binary_function, put back into anon namespace
1359
1360         * lyxfind.C (MatchString): inherig from std::binary_function
1361         (findChange): use empty() istead of !size()
1362
1363         * format.C (FormatNamesEqual): new functor
1364         (getFormat): use it
1365         (getNumber): use it
1366         (add): use it
1367         (erase): use it
1368         (setViewer): use it
1369
1370         * converter.C (compare_Converter): rename to...
1371         (ConverterEqual): ...this, and fixup a bit.
1372         (getConverter): use it, and make function const
1373         (getNumber): use it, and make function const
1374         (add): use it
1375         (erase): use it:
1376
1377         * bufferlist.C: add using boost::bind
1378
1379         * MenuBackend.C (MenuNamesEqual): new functor
1380         (hasMenu): use it, and make function const
1381         (hasSubmenu): use nested bind to get rid of compare_memfun.
1382
1383 2004-01-30  André Pönitz  <poenitz@gmx.net>
1384
1385         * BufferView_pimpl.C:
1386         * cursor.C:
1387         * cursor.h:
1388         * cursor_slice.[Ch]:
1389         * lyxfunc.C:
1390         * lyxtext.h:
1391         * paragraph_funcs.C:
1392         * paragraph_funcs.h:
1393         * rowpainter.C:
1394         * text.C:
1395         * text2.C:
1396         * text3.C: move some of the edit(x,y) handling to the insets
1397         some coordinate changes.
1398
1399 2004-01-28  Lars Gullik Bjonnes  <larsbj@gullik.net>
1400
1401         * text.C: add using statements for std::advance and std::distance
1402
1403         * paragraph.C: add using statement for std::distance
1404
1405         * lyxfind.C: add using statement for std::advance
1406
1407         * cursor.C (region): remove std:: from swap
1408         (openable): use nucleus in stead of operator->
1409
1410         * BufferView.C: add using statements for std::distance and std::swap
1411
1412 2004-01-27  Lars Gullik Bjonnes  <larsbj@gullik.net>
1413
1414         * iterators.C: Remove the pimple, move the needed structures to
1415         the header file. Create accessor for the positions stack.
1416         (asPosIterator): remove function
1417
1418         * PosIterator.C (PosIterator): move constructors to top of file
1419         (PosIterator): reimplement the constructor taking a ParIterator in
1420         terms of setFrom.
1421         (setFrom): new function
1422         (operator!=): inline it
1423
1424 2004-01-26  Lars Gullik Bjonnes  <larsbj@gullik.net>
1425
1426         * lyxfind.C (replaceAll): use std::advance
1427
1428         * iterators.h: inherit from std::iterator.
1429
1430         * PosIterator.C (advance, distance): remove
1431         * PosIterator.h: interit from std::iterator.
1432
1433 2004-01-26  André Pönitz  <poenitz@gmx.net>
1434
1435         * BufferView.[Ch]:
1436         * BufferView_pimpl.[Ch]:
1437         * InsetList.[Ch]:
1438         * PosIterator.[Ch]:
1439         * buffer.h:
1440         * bufferview_funcs.C:
1441         * cursor.[Ch]:
1442         * cursor_slice.h:
1443         * factory.[Ch]:
1444         * iterators.[Ch]:
1445         * lyxfind.C:
1446         * lyxfunc.C:
1447         * lyxtext.h:
1448         * output_docbook.C:
1449         * output_latex.C:
1450         * output_linuxdoc.C:
1451         * output_plaintext.C:
1452         * paragraph.[Ch]:
1453         * paragraph_funcs.[Ch]:
1454         * paragraph_pimpl.[Ch]:
1455         * rowpainter.C:
1456         * tabular.C:
1457         * tabular.h:
1458         * text.C:
1459         * text2.C:
1460         * text3.C: more IU:  dumps most of the rest of the mathcursor
1461     implementation into cursor.[Ch]; "globalize" a bit of it.
1462
1463 2004-01-25  Angus Leeming  <leeming@lyx.org>
1464
1465         * lyxfunc.C (dispatch): Dialogs::showSearch is no more.
1466
1467 2004-01-19  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1468
1469         * LaTeXFeatures.h: add nice_ and nice() const
1470         * buffer.[Ch]: remove niceFile(), use LaTeXFeatures::nice() instead
1471
1472 2004-01-20  André Pönitz  <poenitz@gmx.net>
1473
1474         * BufferView.[Ch]:
1475         * BufferView_pimpl.C:
1476         * PosIterator.C:
1477         * bufferview_funcs.C:
1478         * cursor.[Ch]:
1479         * cursor_slice.[Ch]:
1480         * factory.C:
1481         * iterators.C:
1482         * lyx_cb.C:
1483         * lyxfind.C:
1484         * lyxfunc.C:
1485         * lyxtext.h:
1486         * rowpainter.C:
1487         * text.C:
1488         * text2.C:
1489         * text3.C:
1490         * undo.[Ch]: lots of IU. Shift selection stuff from the BufferView to
1491           LCursor and mathcursor parts to LCursor and InsetBase.
1492
1493 2004-01-15  André Pönitz  <poenitz@gmx.net>
1494
1495         * cursor_slice.[Ch]: add a few covienience functions
1496
1497         * funcrequest.[Ch]: remove BufferView * member
1498
1499         * BufferView_pimpl.C:
1500         * cursor.C:
1501         * factory.[Ch]:
1502         * lyxfind.[Ch]:
1503         * lyxfunc.C:
1504         * lyxtext.h:
1505         * text3.C:
1506         * undo.[Ch]: adjust to this and changed signature of Inset::priv_dispatch()
1507
1508 2004-01-14  Alfredo Braunstein  <abraunst@lyx.org>
1509
1510         * text.C (getWord): fix getWord (and thus LFUN_WORDSEL)
1511         * text3.C (dispatch): fix LFUN_WORD{RIGHT,LEFT}SEL
1512
1513 2004-01-13  André Pönitz  <poenitz@gmx.net>
1514
1515         * textcursor.[Ch]:
1516         * lyxtext.h: hide cursor and selection anchor behind accessor function
1517
1518         * BufferView.C:
1519         * BufferView_pimpl.[Ch]:
1520         * PosIterator.C:
1521         * bufferview_funcs.C:
1522         * cursor.h:
1523         * lyxfind.C:
1524         * lyxfunc.C:
1525         * text.C:
1526         * text2.C:
1527         * text3.C:
1528         * undo.C: adjust
1529
1530         * cursor.h:
1531         * cursor_slice.[Ch]: some integer type changes for inset unification
1532
1533         * lyxcursor.[hC]: remove, it's CursorSlice now.
1534
1535         * Makefile.am:
1536         * BufferView_pimpl.[Ch]:
1537         * bufferview_funcs.C:
1538         * cursor_slice.C:
1539         * lyxtext.h:
1540         * text.C:
1541         * text2.C:
1542         * text3.C:
1543         * textcursor.[Ch]: adjust
1544
1545 2004-01-08  Alfredo Braunstein  <abraunst@lyx.org>
1546
1547         * text2.C (undoSpan): add and use
1548         * text.C (breakParagraph): use undoSpan (fix bug 578)
1549         * lyxtext.h: adjust
1550
1551 2004-01-08  Angus Leeming  <leeming@lyx.org>
1552
1553         * BufferView_pimpl.C (MenuInsertLyXFile):
1554         * lyx_cb.C (WriteAs, getContentsOfAsciiFile):
1555         * lyxfunc.C (menuNew, open, doImport):
1556         FileFilterList change to the FileDialog open and save functions.
1557
1558 2004-01-07  Lars Gullik Bjonnes  <larsbj@gullik.net>
1559
1560         * ShareContainer.h: make isEqual and isUnique adaptable
1561
1562         * CutAndPaste.C: make resetOwnerAndChanges adaptable
1563
1564 2004-01-07  Angus Leeming  <leeming@lyx.org>
1565
1566         * LyXAction.C:
1567         * lfuns.h: add LFUN_WORD_FIND and LFUN_WORD_REPLACE.
1568
1569         * BufferView_pimpl.C (dispatch): act on these LFUNs.
1570
1571         * lyxfind.[Ch] (find2string, replace2string, find, replace): new
1572         functions replacing find, replace and replaceAll.
1573
1574         * lyxfunc.C (dispatch): invoke LFUN_WORD_FIND from a call to
1575         LFUN_WORDFIND(FORWARD|BACKWARD).
1576
1577 2004-01-07  Alfredo Braunstein  <abraunst@lyx.org>
1578
1579         * text.C (breakParagraph): remove an outdated #warning
1580
1581 2004-01-07  André Pönitz  <poenitz@gmx.net>
1582
1583         * lyxfind.C: somewhat clearer logic
1584
1585         * text.C: prevent crash in cursorX on unitialized row cache
1586
1587 2004-01-07  Alfredo Braunstein  <abraunst@lyx.org>
1588
1589         * lyxcursor.[Ch] (operator>): add
1590         * textcursor.C (selStart, selEnd): use std::min and std::max
1591
1592 2004-01-06  Lars Gullik Bjonnes  <larsbj@gullik.net>
1593
1594         * Chktex.C: include boost/format.hpp
1595
1596 2004-01-05  Lars Gullik Bjonnes  <larsbj@gullik.net>
1597
1598         * InsetList.C: replace functor MathcIt with adaptable functor
1599         InsetTablePosLess
1600         (insetIterator): modify accordingly
1601
1602         * BranchList.h: move the BranchNamesEqual functor here from...
1603         * BranchList.C: ... to here
1604
1605         * BranchList.C: new BranchListEqual fuctor, use it. Remove
1606         SameName and match.
1607         (add): replace a finding loop with std::find_if.
1608
1609 2003-12-31  Martin Vermeer  <martin.vermeer@hut.fi>
1610
1611         * output_docbook.C: moving LatexParam functionality into
1612         .layout files
1613
1614 2003-12-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1615
1616         * buffer.C: increment format to 229.
1617
1618 2003-12-28  Michael Schmitt  <michael.schmitt@teststep.org>
1619
1620         * LaTeXFeatures.C:
1621         * lyx_sty.[Ch]: remove minipageindent_def
1622
1623         * LyXAction.C:
1624         * factory.C:
1625         * lfuns.h:
1626         * lyxfunc.C:
1627         * text3.C: remove LFUN_INSET_MINIPAGE
1628
1629 2003-12-28  Angus Leeming  <leeming@lyx.org>
1630
1631         * text3.C (dispatch): output useful info on receipt of LFUN_GETLAYOUT.
1632
1633 2003-12-19  Alfredo Braunstein  <abraunst@lyx.org>
1634
1635         * text2.C (setParagraph): fix off-by-one crash
1636
1637 2003-12-18  Martin Vermeer  <martin.vermeer@hut.fi>
1638
1639         * output_docbook.C: header stuff for AGU
1640
1641 2003-12-17  Alfredo Braunstein  <abraunst@lyx.org>
1642
1643         * text2.C (redoCursor): remove
1644         * text.C:
1645         * text3.C:
1646         * BufferView_pimpl.C: remove calls to redoCursor and
1647         setCursor(cursor.par(), cursor.pos()) all around
1648
1649 2003-12-15  Angus Leeming  <leeming@lyx.org>
1650
1651         * buffer.C: up the format to 228.
1652
1653 2003-12-15  André Pönitz  <poenitz@gmx.net>
1654
1655         * cursor_slice.[Ch]: new class to cover texted and mathed's cursor
1656         slices
1657
1658         * Makefile.am:
1659
1660         * BufferView_pimpl.C:
1661         * cursor.[Ch]:
1662         * lyxcursor.[Ch]:
1663         * rowpainter.[Ch]:
1664         * lyxtext.h:
1665         * text.C:
1666         * text2.C:
1667         * text3.C: adjust
1668
1669 2003-12-15  Angus Leeming  <leeming@lyx.org>
1670
1671         * metricsinfo.C (ColorChanger): use LColor::getFromLyXName rather
1672         than getFromGUIName to manipulate the color.
1673
1674 2003-12-14  Angus Leeming  <leeming@lyx.org>
1675
1676         * BranchList.[Ch]: minimize the API.
1677         (Branch::getBranch, getColor): now return a 'const &'.
1678         (Branch::setSelected) now returns a bool set to true if the
1679         selection status changes.
1680         (BranchList::clear, size, getColor, setColor, setSelected,
1681         allBranches, allSelected, separator): removed.
1682         (BranchList::find): new functions, returning the Branch with
1683         the given name.
1684         (BranchList::add, remove): return a bool indicating that
1685         the operation was successful.
1686
1687         * InsetList.C (insetsOpenCloseBranch): much simplified thanks to a
1688         new InsetBranch::isBranchSlected member function.
1689
1690         * LColor.[Ch]: mimimize the API.
1691         (fill): renamed as addColor and made private.
1692         (setColor, getGUIName, getX11Name, getLaTeXName): the overloaded
1693         versions of these functions taking a string arg have been removed.
1694
1695         * bufferparams.C (readToken):
1696         * lyxfunc.C (dispatch):
1697         * lyxrc.C (read): changes due to the altered BranchList and
1698         LColor APIs.
1699
1700         * factory.C (createInset, readInset): changes due to altered
1701         InsetBranch c-tor.
1702
1703 2003-12-14  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1704
1705         * factory.C:
1706         * lyxfunc.C: remove insetminipage. "minipage-insert"
1707         now produces a frameless minipage box inset.
1708
1709 2003-12-12  Alfredo Braunstein  <abraunst@lyx.org>
1710
1711         * textcursor.[Ch] (selStart,selEnd): add new methods
1712         remove selection::start, end, use LyXCursor::operator<
1713         * lyxcursor.[Ch] (operator<): add
1714         * BufferView_pimpl.[Ch]: add new struct xsel_cache_
1715         * BufferView.[Ch] (unsetXSel): add
1716         * text2.C (clearSelection): use unsetXSel,adjust
1717         * text.C: adjust
1718         * text3.C: adjust
1719         * rowpainter.C: adjust
1720         * bufferview_funcs.C (put_selection_at): adjust
1721
1722 2003-12-12  Alfredo Braunstein  <abraunst@lyx.org>
1723
1724         * BufferView_pimpl.C: small coord. correction
1725
1726 2003-12-12  Alfredo Braunstein  <abraunst@lyx.org>
1727
1728         * BufferView_pimpl.C (workAreaDispatch): avoid crashing when
1729         dragging over the splash screen.
1730
1731 2003-12-11  Angus Leeming  <leeming@lyx.org>
1732
1733         * BufferView_pimpl.C (dispatch): remove LFUN_INSET_APPLY code
1734         as it is now handled in LyXText::dispatch.
1735
1736         * text3.C (doInsertInset): remove a level of nesting.
1737
1738 2003-12-11  Angus Leeming  <leeming@lyx.org>
1739
1740         * factory.C (createInset): changes due to the changed interface to
1741         InsetCommandMailer::string2params.
1742
1743 2003-12-10  Angus Leeming  <leeming@lyx.org>
1744
1745         * lyxfunc.C (dispatch): enable all inset dialogs to be opened with
1746         'dialog-show-new-inset <inset name>'
1747
1748 2003-12-10  Angus Leeming  <leeming@lyx.org>
1749
1750         * buffer.C: up the format to 227.
1751
1752         * factory.C: the box inset is now identified simply by 'Box'.
1753
1754 2003-12-10  Angus Leeming  <leeming@lyx.org>
1755
1756         * buffer.C: up the format to 226.
1757
1758         * factory.C: the note inset is now identified simply by 'Note'.
1759
1760 2003-12-08  Alfredo Braunstein  <abraunst@libero.it>
1761
1762         * lyxtext.h, text2.C (setLayout): don't use cursor to iterate,
1763         when a pit is enough. Standarize a couple of loops.
1764
1765 2003-12-05  Angus Leeming  <leeming@lyx.org>
1766
1767         * lyxfunc.C (dispatch): DIALOG_SHOW now handles "latexlog" and
1768         "vclog" explicitly, passing the appropriate "<logtype> <filename>"
1769         data to the re-worked "log" dialog.
1770
1771 2003-12-03  André Pönitz  <poenitz@gmx.net>
1772
1773         * PosIterator.C:
1774         * iterators.C:
1775         * lyxtext.h:
1776         * output_latex.C:
1777         * paragraph_funcs.C:
1778         * text.C:
1779         * text2.C: use Inset::getText instead of Inset::getParagraph
1780
1781 2003-12-03  André Pönitz  <poenitz@gmx.net>
1782
1783         * buffer.[Ch]:
1784         * lyxtext.h:
1785         * paragraph_funcs.[Ch]: consolidate parts of Buffer::read() and
1786         InsetText::read() as LyXText::read()
1787
1788 2003-12-02  Angus Leeming  <leeming@lyx.org>
1789
1790         * lyxlex.[Ch] (operator void const *): add the 'const' to the return
1791         type. Add a comment in the implementation that the function uses
1792         the stream's bad() function rather than fail() as the std::streams
1793         would do.
1794
1795 2003-12-02  André Pönitz  <poenitz@gmx.net>
1796
1797         * lyxlex.[Ch]: make interface more similar to std::stream
1798
1799         * lyxlex_pimpl.[Ch]: don't use '__' in identifiers
1800
1801 2003-12-01  Martin Vermeer  <martin.vermeer@hut.fi>
1802
1803         * lyxtextclass.[Ch]: add latexparam to CharStyle inset
1804
1805 2003-12-01  Michael Schmitt  <michael.schmitt@teststep.org>
1806
1807         * vspace.[Ch]: remove VSpace::NONE
1808
1809 2003-12-01  André Pönitz  <poenitz@gmx.net>
1810
1811         * buffer.[Ch]:
1812         * lyxtext.h: move ParagraphList member to LyXText
1813         rename LyXText::ownerParagraphs to LyXText::paragraph
1814
1815         * CutAndPaste.C:
1816         * bufferview_funcs.C:
1817         * iterators.[Ch]:
1818         * lyx_cb.C:
1819         * paragraph.C:
1820         * rowpainter.C:
1821         * tabular.C:
1822         * text.C:
1823         * text2.C:
1824         * text3.C: adjust
1825
1826         * lyxfunc.C: move LFUN_INSET_TOGGLE handling to insets.
1827
1828         * undo.C: fix cursor positioning
1829
1830 2003-12-01  John Levon  <levon@movementarian.org>
1831
1832         * BufferView_pimpl.C: fix a crash on exit with
1833         a buffer open
1834
1835 2003-11-30  Martin Vermeer  <martin.vermeer@hut.fi>
1836
1837         * BranchList.C: fix setSelected() method.
1838
1839 2003-11-28  André Pönitz  <poenitz@gmx.net>
1840
1841         * ParagraphParameters.[Ch]:
1842         * ParameterStruct.h: remove space above/below from Paragraph to
1843          InsetVSpace
1844
1845         * BufferView_pimpl.C:
1846         * factory.C:
1847         * lyxfunc.C:
1848         * lyxtext.h:
1849         * output_latex.C:
1850         * paragraph.C:
1851         * paragraph_funcs.C:
1852         * rowpainter.[Ch]:
1853         * text.C:
1854         * text2.C:
1855         * text3.C: adjust
1856
1857 2003-11-28  Martin Vermeer  <martin.vermeer@hut.fi>
1858
1859         * factory.C: Syntax change for CharStyles
1860
1861 2003-11-28  André Pönitz  <poenitz@gmx.net>
1862
1863         * BufferView.[Ch]:
1864         * BufferView.[Ch]:
1865         * buffer.[Ch]:
1866         * buffer.[Ch]: move LyXText member
1867
1868 2003-11-28  André Pönitz  <poenitz@gmx.net>
1869
1870         * BufferView.[Ch]: make LyXText * text a private member
1871
1872         * BufferView_pimpl.C:
1873         * cursor.C:
1874         * iterators.C:
1875         * lyx_cb.C:
1876         * lyxfind.C:
1877         * lyxtext.h:
1878         * rowpainter.[Ch]:
1879         * text.C:
1880         * text2.C:
1881         * undo.C: adjust
1882
1883         * output_plaintext.C: cleanup
1884
1885 2003-11-27  Martin Vermeer  <martin.vermeer@hut.fi>
1886
1887         * buffer.C:
1888         * lyxtextclass.[Ch]: parametrize SGML document header
1889
1890 2003-11-27  Martin Vermeer  <martin.vermeer@hut.fi>
1891
1892         * converter.[Ch]:
1893         * exporter.C: replace bool-valued Pdflatex() by FLAVOR-valued
1894         getFlavor().
1895
1896 2003-11-27  Alfredo Braunstein  <abraunst@lyx.org>
1897
1898         * text2.C (setFont): rework using PosIterator (no more recursive)
1899         (setCharFont): no more needed
1900         (setLayout): no more selection cursors fiddling (done by redoCursor)
1901         * text.C: cursorRight(bv)->cursorRight(true) (TODO: find and
1902         destroy remaining ones)
1903
1904 2003-11-26  Alfredo Braunstein  <abraunst@lyx.org>
1905
1906         * bufferview_funcs.[Ch]: split changeDepthAllowed from changeDepth
1907         * lyxtext.h: ditto
1908         * text2.C: same thing + updateCounters fix + redoCursor also adjusts
1909         selection cursors
1910         * lyxfunc.C: adjust
1911         * text3.C: adjust + re-allow multi par depth changes
1912         * textcursor.C: simplify a bit
1913
1914 2003-11-25  Martin Vermeer  <martin.vermeer@hut.fi>
1915
1916         * src/buffer.C:
1917         * src/lyxlayout.C:
1918         * src/lyxlayout.h:
1919         * src/lyxtext.h:
1920         * src/output_docbook.C:
1921         * src/output_latex.C:
1922         * src/paragraph.C:
1923         * src/paragraph.h:
1924         * src/sgml.C:
1925         * src/sgml.h:
1926         * src/text2.C: Introducing a number of tags parametrizing various
1927         XML formats that we may want to support
1928
1929 2003-11-25  André Pönitz  <poenitz@gmx.net>
1930
1931         * InsetList.[Ch] (begein, end): inline as suggested by profiler
1932
1933         * lyxtext.h (leftMargin/rightMargin): simplify interface
1934
1935         * rowpainter.C:
1936         * text.C:
1937         * text2.C:
1938         * text3.C: adjust
1939
1940 2003-11-24  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1941
1942         * lyxfunc.C (dispatch): propogate the bibtex databases from the
1943         master file to any child files. Fixes bug 546.
1944
1945 2003-11-24  Alfredo Braunstein  <abraunst@lyx.org>
1946
1947         * lyxfind.C (findNextChange): remove unneeded bv->text->init call
1948
1949 2003-11-24  André Pönitz  <poenitz@gmx.net>
1950
1951         * rowpainter.C: simplification
1952
1953         * text2.C (updateCounters): remove call to redoParagraph on
1954         changed labels as this is far too expensive.
1955
1956 2003-11-24  Alfredo Braunstein  <abraunst@lyx.org>
1957
1958         * converter.C (convert): fix a crash: this function gets
1959         called with buffer == 0 from importer code.
1960
1961 2003-11-22  Lars Gullik Bjonnes  <larsbj@gullik.net>
1962
1963         * text3.C (cursorPrevious): make sure that we do not compare
1964         iterators form different containers.
1965         (cursorNext): ditto
1966
1967         * rowpainter.C (paintSelection): make sure that we do not compare
1968         iterators from different containers.
1969
1970         * text3.C (dispatch): [PRIOR] make sure that we do not compare
1971         iterators from different ParagraphList containers.
1972         [NEXT] ditto
1973
1974         * text2.C (LyXText): change order of initialization slightly
1975         (operator=): new function. copy all variables except cache_par_
1976         (moveUp): make sure that we do not compare iterators from
1977         different ParagraphList constainers.
1978         (moveDown): ditto
1979
1980         * text.C (firstPar): new function
1981         (lastPar): new function
1982         (endPar): new function
1983
1984         * lyxtext.h: move things around and group public functions, public
1985         variables, private functions, private variables
1986
1987 2003-11-21  Michael Schmitt  <michael.schmitt@teststep.org>
1988
1989         * factory.C: change call to InsetERT constructor to avoid
1990         additional invocation of method status
1991         * text2.C (toggleInset): remove redundant update() call
1992         * InsetList.[Ch] (insetsOpenCloseBranch): Pass Buffer reference
1993         instead of a Bufferview pointer
1994
1995 2003-11-21  André Pönitz  <poenitz@gmx.net>
1996
1997         * rowpainter.C: simplification
1998
1999 2003-11-21  Alfredo Braunstein  <abraunst@lyx.org>
2000
2001         * text3.C (dispatch): make possible to extend a word/row selection
2002         with the mouse
2003
2004 2003-11-21  Alfredo Braunstein  <abraunst@lyx.org>
2005
2006         * lyxtext.h: x0_,y0_ -> xo_,yo_
2007         * text2.C (cursorUp, cursorDown): adjust + some cursorRow use
2008         * text3.C (checkInsetHit): fix coordinates using absolute xo_,yo_
2009         * rowpainter.C (paintRows): paint full paragraphs
2010
2011 2003-11-20  Alfredo Braunstein  <abraunst@lyx.org>
2012
2013         * text2.C (cursorUp, cursorDown): small fix (insettext::edit takes
2014         screen coordinates)
2015
2016 2003-11-20  Alfredo Braunstein  <abraunst@lyx.org>
2017
2018         * lyxtext.h: add x0_, y0_
2019         * text3.C (cursorPrevious, cursorNext): rewrite (using x0_, y0_)
2020         * text2.C (cursorDown, cursorUp): rewrite (using x0_, y0_)
2021
2022 2003-11-18  Alfredo Braunstein  <abraunst@lyx.org>
2023
2024         * text2.C (setCursorIntern): move the x_target update here *
2025         * text3.C: change some bv() to true/false in calls to
2026         cursorUp/Down/Right/Left
2027         * cursor.C: use helper function.
2028
2029 2003-11-17  Alfredo Braunstein  <abraunst@lyx.org>
2030
2031         * BufferView_pimpl.C: send LFUN_MOUSE_MOTION to the cursor
2032         * paragraph_funcs.[Ch]: correct comment
2033         * rowpainter.C: do not paint selections away from bv->cursor()
2034         Fix a long standing selection painting bug.
2035         * text3.C: generalize mouse-selection code to LyXTexts other that
2036         top one
2037         * textcursor.C: do not use y coords if we can use par offsets
2038
2039 2003-11-17  Alfredo Braunstein  <abraunst@lyx.org>
2040
2041         * lyxfunc.C (dispatch): add a missing LCursor::updatePos (fix
2042         cursor position after e.g. inset insert)
2043
2044 2003-11-16  Alfredo Braunstein  <abraunst@lyx.org>
2045
2046         * lyxfind.C (replace): adjust to locking removal + some
2047         code simplification
2048
2049 2003-11-14  Alfredo Braunstein  <abraunst@lyx.org>
2050
2051         * cursor.C (dispatch): dispatch to BufferView::dispatch at the end
2052         of the path
2053
2054 2003-11-14  Martin Vermeer  <martin.vermeer@hut.fi>
2055
2056         * lyxlayout.[Ch]:
2057         * output_docbook.C: XML sanitation: new layout
2058         parameters InnerTag and CommandDepth
2059
2060 2003-11-13  Martin Vermeer  <martin.vermeer@hut.fi>
2061
2062         * BufferView_pimpl.C:
2063         * factory.C:
2064         * text3.C: Fix the insertion and modification of button-style
2065         insets
2066
2067 2003-11-13  André Pönitz  <poenitz@gmx.net>
2068
2069         * InsetList.[Ch]: remove deleteLyXText
2070
2071         * paragraph.[Ch]: cache beginOfBody position
2072
2073         * Bidi.C:
2074         * text.C:
2075         * text2.C:
2076         * text3.C: remove superfluous update() calls
2077
2078         * vspace.C: cleanup
2079
2080 2003-11-13  Alfredo Braunstein  <abraunst@lyx.org>
2081
2082         * BufferView_pimpl.C (fitCursor): call screen().fitCursor()
2083         * BufferView.C (fitLockedInsetCursor): remove
2084         * cursor.[Ch] (getDim): add
2085         * text.C (getRowNearY): add faster version
2086         * text3.C: remove some update calls
2087
2088 2003-11-12  Martin Vermeer  <martin.vermeer@hut.fi>
2089
2090         * LaTeXFeatures.C:
2091         * LyXAction.C:
2092         * MenuBackend.C:
2093         * MenuBackend.h:
2094         * dispatchresult.h:
2095         * factory.C:
2096         * lfuns.h:
2097         * lyxfunc.C:
2098         * lyxtextclass.C:
2099         * lyxtextclass.h:
2100         * text3.C: The Character Style /XML short element patch.
2101
2102 2003-11-11  Martin Vermeer  <martin.vermeer@hut.fi>
2103
2104         * text3.C:
2105         * factory.C: Small step to solving 'unable to insert some insets'
2106         problem
2107
2108 2003-11-11  Alfredo Braunstein  <abraunst@lyx.org>
2109
2110         * cursor.[Ch] (updatePos): new function for updating the y
2111         position of the tip inset
2112         * bufferview_funcs.C (put_selection_at):
2113         * BufferView_pimpl.C (workAreaDispatch): rationalise update calls
2114
2115 2003-11-11  André Pönitz  <poenitz@gmx.net>
2116
2117         * text.C: remove big comment on invalid Paragraph pointers as it is
2118         not valid anymore
2119
2120 2003-11-11  André Pönitz  <poenitz@gmx.net>
2121
2122         * text_funcs.[Ch]: merge with ...
2123
2124         * text.C: ... this
2125
2126         * lyxtext.h:
2127         * text2.C:
2128         * text3.C: adjust
2129
2130         * Makefile.am: remove text_funcs.[Ch]
2131
2132 2003-11-11  Alfredo Braunstein  <abraunst@libero.it>
2133
2134         * cursor.C (getPos): return absolute cached y coord
2135
2136         * BufferView_pimpl.C (fitCursor): new simplistic code
2137         (workAreaDispatch): add a fitCursor call
2138
2139 2003-11-10  André Pönitz  <poenitz@gmx.net>
2140
2141         * BufferView.[Ch]:
2142         * BufferView_pimpl.[Ch]: merge update() and updateInset()
2143
2144 2003-11-10  André Pönitz  <poenitz@gmx.net>
2145
2146         * lfuns.h: new LFUN_FINISHED_LEFT, LFUN_FINISHED_RIGHT,
2147         LFUN_FINISHED_UP, LFUN_FINISHED_DOWN used in dispatch to
2148         indicate that the cursor needs to leave an inset
2149
2150         * lyxtext.h: remove inset locking
2151
2152         * cursor.[Ch]: re-implement functionality provided by inset locking
2153
2154         * BufferView.[Ch]:
2155         * BufferView_pimpl.[Ch]:
2156         * LyXAction.C:
2157         * bufferview_funcs.[Ch]:
2158         * factory.C:
2159         * funcrequest.[Ch]:
2160         * iterators.C:
2161         * lyx_cb.C:
2162         * lyxfind.C:
2163         * lyxfunc.C:
2164         * text.C:
2165         * text2.C:
2166         * text3.C:
2167         * undo.C: adjust
2168
2169 2003-11-07  Alfredo Braunstein  <abraunst@libero.it>
2170
2171         * PosIterator.[Ch]: replace the stack with a vector, add inset
2172         accesor
2173         * iterators.[C]: adjust
2174
2175 2003-11-06  Alfredo Braunstein  <abraunst@libero.it>
2176
2177         * lyxfind.C (replaceAll): mark the buffer dirty if something was
2178         replaced
2179         * paragraph_funcs.C (readParToken): put the correct id in the
2180         error item, not the id of the top paragraph
2181
2182 2003-11-06  Alfredo Braunstein  <abraunst@libero.it>
2183
2184         * iterators.[Ch] (ParIterator): new PosIterator-based ctor
2185         * bufferview_funcs.C (put_selection_at): use the above
2186
2187 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
2188
2189         * text2.C (deleteEmptyParagraphMechanism): fix n-th crash
2190
2191 2003-11-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2192
2193         * output_linuxdoc.h:
2194         * output_plaintext.h:
2195         * output.h:
2196         * output_docbook.h: add #include statements
2197
2198 2003-11-05  José Matos  <jamatos@lyx.org>
2199
2200         * output_docbook.[Ch]:
2201         * output_latex.[Ch]:
2202         * output_linuxdoc.[Ch]:
2203         * output_plaintext.[Ch]: New files for output formats.
2204         * output.[Ch]: New file for helper functions.
2205
2206         * buffer.[Ch]:
2207         * paragraph_funcs.[Ch]: output functions moved to new files.
2208
2209         * outputparams.h: rename of latexrunparams.h
2210
2211         * LaTeX.[Ch]:
2212         * buffer.[Ch]:
2213         * bufferlist.[Ch]:
2214         * converter.[Ch]:
2215         * exporter.C:
2216         * paragraph.[Ch]:
2217         * paragraph_funcs.[Ch]:
2218         * paragraph_pimpl.[Ch]:
2219         * tabular.[Ch]: rename ascii to plaintext
2220         and LatexRunParams to OutputParams.
2221
2222 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
2223
2224         * iterators.[Ch] (text): require bv argument
2225         * undo.C (recordUndo):
2226         * lyxfunc.C (dispatch):
2227         * bufferview_funcs.C (put_selection_at): adjust
2228
2229 2003-11-05  João Luis M. Assirati  <assirati@fma.if.usp.br>
2230
2231         * lyxsocket.C: export variables XEDITOR and LYXSOCKET
2232
2233 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
2234
2235         * lyxfunc.C (dispatch): make LFUN_GOTO_PARAGRAPH work with deep
2236         nestings
2237
2238 2003-11-04  André Pönitz  <poenitz@gmx.net>
2239
2240         * cursor.[Ch]: restructure
2241
2242         * BufferView.[Ch]:
2243         * BufferView_pimpl.[Ch]: new LCursor cursor_ member
2244
2245         * iterators.[Ch] (asCursor): remove
2246
2247         * lfuns.h: remove LFUN_INSET_EDIT
2248
2249         * lyxfunc.C:
2250         * tabular.C:
2251         * text.C:
2252         * text2.C:
2253         * text3.C: use Inset::edit() instead of dispatch(LFUN_INSET_EDIT)
2254
2255 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
2256
2257         * lyxfind.[Ch]: complete overhaul
2258         * BufferView_pimpl.C:
2259         * lyxfunc.C: adjust
2260         * paragraph.[Ch] (insert): add
2261
2262 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
2263
2264         * BufferView.[Ch]:
2265         * lyxtext.h:
2266         * text.C: remove dead spellcheck code
2267
2268 2003-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
2269
2270         * dispatchresult.h: add a val setter
2271
2272         * cursor.C (dispatch): use a tempvar for data_[i]
2273
2274 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
2275
2276         * PosIterator.[Ch]: compile fix
2277
2278 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
2279
2280         * text.C (cursorPar): deactivate the cursor cache
2281
2282 2003-11-03  Alfredo Braunstein  <abraunst@libero.it>
2283
2284         * undo.C (performUndoOrRedo): fix cursor positioning with lockPath
2285
2286 2003-11-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
2287
2288         * text3.C (dispatch): adjust for new DisptchResult semantics.
2289
2290         * lyxfunc.C (dispatch): handle update when return from
2291         Cursor::dispatch, adjust for new DispatchResult semantics.
2292
2293         * dispatchresult.h: drop NOUPDATE from dispatch_result_t. Make
2294         DispatchResult(true) mean to not update. Add class functions for
2295         setting dispatched and update, as well as reading.
2296
2297         * cursor.C (dispatch): don't handle update here
2298
2299 2003-11-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
2300
2301         * trans_mgr.h: store t1_ and t2_ in scoped_ptr
2302         * trans_mgr.C: adjust
2303
2304         * paragraph_funcs.C (readParToken): exception safety
2305
2306         * lyxvc.h: store the vcs pointer in a scoped_ptr
2307         * lyxvc.C: adjust
2308
2309         * lyxsocket.C (serverCallback): exception safety
2310
2311         * lyx_cb.C (AutoSaveBuffer): make it return a auto_ptr
2312
2313         * ispell.C (clone): make it return a auto_ptr
2314
2315         * factory.C (createInset): exception safety
2316         (readInset): exception safety
2317
2318         * bufferlist.C (newBuffer): exception safety
2319
2320         * Thesaurus.C (Thesaurus): use initialization for aik_
2321
2322         * MenuBackend.C (expandToc): exception safety.
2323
2324 2003-11-03  André Pönitz  <poenitz@gmx.net>
2325
2326         * buffer.C:
2327         * buffer.h:
2328         * bufferview_funcs.C: remove getInsetFromId()
2329
2330         * lyxcursor.[Ch]:
2331         * BufferView.[Ch]: move x_fix from LyXCursor to BufferView
2332
2333         * lyxfunc.C:
2334         * text2.C:
2335         * text3.C: adjust
2336
2337 2003-11-03  Alfredo Braunstein  <abraunst@libero.it>
2338
2339         * PosIterator.C (distance, advance): new
2340         * bufferview_funcs.[Ch] (put_selection_at): new
2341         * iterators.[Ch] (lockPath): new
2342
2343 2003-11-02  Alfredo Braunstein  <abraunst@libero.it>
2344
2345         * iterators.[Ch] (asPosIterator): added
2346         * buffer.[Ch] (pos_iterator_begin, pos_iterator_end): added
2347         * PosIterator.[Ch]: added
2348
2349 2003-11-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2350
2351         * text3.C:
2352         * lyxfunc.C:
2353         * cursor.C (dispatch):
2354         * BufferView_pimpl.C (dispatch): adjust for DispatchResult changes
2355
2356         * dispatchresult.h: remove UNDISPATCHED, DISPATCHED and
2357         DISPATCHED_NOUPDATE from dispatch_result_t, add NONE. Add a
2358         contructor, add a class function dispatched. Remove operator>=
2359
2360 2003-11-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2361
2362         * debug.C: only use the default constructor for debugstream
2363         (lyxerr) here.
2364
2365         * main.C (main): include debug.h and setup the lyxerr streambuf
2366         here.
2367
2368 2003-10-31  José Matos  <jamatos@lyx.org>
2369
2370         * paragraph_funcs.C (addDepth, asciiParagraph): move from buffer.C
2371
2372         * buffer.[Ch] (writeFileAscii, makeLinuxDocFile, makeDocBookFile):
2373         * paragraph.[Ch] (simpleLinuxDocOnePar, simpleDocBookOnePar, asString):
2374         * paragraph_funcs.[Ch] (linuxdocParagraphs, docbookParagraphs):
2375         * paragraph_pimpl.C (simpleTeXSpecialC):
2376         * tabular.[Ch] (linuxdoc, docbookRow, docbook, ascii):
2377         add LatexRunParams argument.
2378
2379         * exporter.C (Export): change call accordingly.
2380
2381         * latexrunparams.h: add new member to take care of the other backends.
2382 2003-10-30  José Matos  <jamatos@lyx.org>
2383
2384         * buffer.C (makeLinuxDocFile, makeDocBookFile):
2385         * paragraph_funcs.[Ch] (linuxdocParagraphs, docbookParagraphs):
2386         factorise code for paragraph output.
2387         * buffer.[Ch]:
2388         * paragraph.[Ch] (simpleLinuxDocOnePar, simpleDocBookOnePar):
2389         move functions.
2390
2391 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
2392
2393         * text3.C (dispatch):
2394         * lyxfunc.C (dispatch):
2395         * cursor.C (dispatch):
2396         * BufferView_pimpl.C (dispatch): explict DispatchResult ctor fallout.
2397
2398         * dispatchresult.h: make the dispatch_result_t ctor explicit
2399
2400 2003-10-29  Martin Vermeer  <martin.vermeer@hut.fi>
2401
2402         * sgml.[Ch]:
2403         * buffer.C: small refactoring of docbook stuff
2404
2405 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
2406
2407         * dispatchresult.h: remove FINISHED_POP as FINISHED has the same
2408         meaning.
2409
2410 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
2411
2412         * dispatchresult.h: rename DISPATCHED_POP to FINISHED_POP, remove
2413         operator dispatch_result_t, and operators for == != and >=
2414
2415         * cursor.C (dispatch): adjust for operator dispatch_result_t
2416         removal. comment out call to update
2417
2418         * BufferView_pimpl.C (dispatch): dont implicit covert to bool
2419
2420 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
2421
2422         * text3.C:
2423         * text2.C:
2424         * text.C:
2425         * lyxtext.h:
2426         * lyxfunc.C:
2427         * cursor.C:
2428         * BufferView_pimpl.C: dispatch_result -> DispatchResult changes.
2429         (dispatch):
2430
2431         * dispatchresult.h: new file, DispatchResult broken out of
2432         insets/insetbase.h
2433
2434         * Makefile.am (lyx_SOURCES): add dispatchresult.h
2435
2436 2003-10-28  Alfredo Braunstein  <abraunst@libero.it>
2437
2438         * text.C (rowBreakPoint): put a hack inside #if 0
2439
2440 2003-10-28  André Pönitz  <poenitz@gmx.net>
2441
2442         * lyxtext.h:
2443         * metricsinfo.C:
2444         * paragraph_funcs.C:
2445         * rowpainter.C:
2446         * text.C:
2447         * text2.C: general cleanup (lots of small stuff)
2448
2449 2003-10-28  Alfredo Braunstein  <abraunst@libero.it>
2450
2451         * text2.C (cursorEnd): simple fix to the "end key goes to one
2452         before the end on last row" bug
2453
2454 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
2455
2456         * text.C (backspace): fix the "zombie characters"
2457
2458 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
2459
2460         * lyxfunc.C (dispatch): small fix to toc navigation inside branches
2461
2462 2003-10-27  André Pönitz  <poenitz@gmx.net>
2463
2464         * lfuns.h: new LFUN_REPEAT, LFUN_INSERT_LINE, LFUN_INSERT_PAGEBREAK
2465
2466         * factory.C: handle new InsetPagebreak, InsetLine
2467
2468         * ParagraphParameters.h: remove [line|pagebreak]_[above|below]
2469         and move handling into new InsetPagebreak, InsetLine
2470
2471         * BufferView_pimpl.C:
2472         * LyXAction.C:
2473         * ParagraphParameters.C:
2474         * ParameterStruct.h:
2475         * lyxfunc.C:
2476         * lyxtext.h:
2477         * paragraph.C:
2478         * paragraph.h:
2479         * paragraph_funcs.C:
2480         * paragraph_pimpl.C:
2481         * rowpainter.C:
2482         * text.C:
2483         * text2.C:
2484         * text3.C: adjust
2485
2486 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
2487
2488         * text.C:
2489         * lyxrow_funcs.[Ch]:
2490         * Bidi.C:
2491         * paragraph.C:
2492         * lyxtext.h:
2493         * rowpainter.C:
2494         * text2.C:
2495         * text3.C: remove lastPos uses in favour of Row::endpos
2496
2497 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
2498
2499         * undo.C (performUndoOrRedo): fix two crashes by setting a
2500         cursor by hand and reordering some calls. Use bv->lockInset instead
2501         of inset->edit because the latter loses cursor information
2502
2503 2003-10-25  Alfredo Braunstein  <abraunst@libero.it>
2504
2505         * text.C (prepareToPrint): fix linebreak rowbreaking as suggested
2506         by Martin
2507         (rowBreakPoint): fix width. change point to point + 1.
2508         Add a missing check.
2509
2510 2003-10-25  Martin Vermeer  <martin.vermeer@hut.fi>
2511
2512         * MenuBackend.C:
2513         * lyxfunc.C: fix (at least partly) the problems
2514         with the Nav menu and headers inside branch insets
2515         reported by Kayvan
2516
2517 2003-10-24  Alfredo Braunstein  <abraunst@libero.it>
2518
2519         * paragraph.C (getChar): add strong asserts
2520
2521         * lyxrow_funcs.C (lastPos): remove hideous hack
2522
2523         * text.C (addressBreakPoint, rowBreakPoint): put endpos in place
2524         (fill): adjust to that (avoid an infinite loop)
2525
2526 2003-10-23  Alfredo Braunstein  <abraunst@libero.it>
2527
2528         * text3.C (cursorPrevious, cursorNext): fix 2 "dontlikes"
2529
2530 2003-10-23  André Pönitz  <poenitz@gmx.net>
2531
2532         * RowList_fwd.h: change list<> to vector<> to gain speed
2533         after suggestion from Alfredo
2534
2535 2003-10-23  Alfredo Braunstein  <abraunst@libero.it>
2536
2537         * lyxtext.h: move the bidi stuff from here...
2538         * text.C: and here
2539         * text2.C: and here
2540         * Bidi.[Ch]: ... to here
2541
2542 2003-10-23  André Pönitz  <poenitz@gmx.net>
2543
2544         * lyxtext.h:
2545         * text.C (isLastRow, isFirstRow): new functions
2546
2547         * paragraph.h: new width cache member
2548
2549         * rowpainter.C: replace RowList::iterator with Row & where possible
2550
2551         * lyxfunc.C: replace several view()->text with a single call
2552
2553         * toc.C: fix 'unused' warning
2554
2555 2003-10-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
2556
2557         * lyxlex_pimpl.C (setFile,setStream): be sure to use correct types
2558         when woring with stream::pos_type
2559         * paragraph_pimpl.C (simpleTeXSpecialChars): ditto
2560
2561 2003-10-22  André Pönitz  <poenitz@gmx.net>
2562
2563         * lyxtext.h:
2564         * text.C: use Row & instead of RowList::iterator
2565
2566         * lyxrow.h: rename end() to endpos()
2567
2568         * rowpainter.C:
2569         * text.C:
2570         * text2.C: adjust
2571
2572 2003-10-22  Angus Leeming  <leeming@lyx.org>
2573
2574         * buffer.[Ch] (fully_loaded): new member function, returning true
2575         only when the file has been loaded fully.
2576         Used to prevent the premature generation of previews and by the
2577         citation inset to prevent computation of the natbib-style label.
2578
2579         * buffer_funcs.C (newFile): set Buffer::fully_loaded once the
2580         templates are all set up.
2581
2582         * factory.C (createInset): remove call to InsetCitation::setLoadingBuffer.
2583
2584 2003-10-22  Martin Vermeer  <martin.vermeer@hut.fi>
2585
2586         * text.C: fixed an "oops" in the "is a bit silly"
2587         bug fix
2588
2589 2003-10-21  André Pönitz  <poenitz@gmx.net>
2590
2591         * FuncStatus.[Ch]: small stuff, whitespace
2592
2593         * lyxfont.[Ch]: operator<<() for debug reasons
2594
2595         * lyxfunc.C:
2596         * lyxrow_funcs.C:
2597         * lyxtext.h: whitespace, spelling
2598
2599         * paragraph.C: naming of variables
2600
2601         * text.C:
2602         * text2.C: small stuff
2603
2604
2605 2003-10-21  Martin Vermeer  <martin.vermeer@hut.fi>
2606
2607         * text.C: (1) finish off the inset display() work;
2608         (2) fix the "is a bit silly" bug (accessing char
2609         past end of par).
2610
2611 2003-10-20  Martin Vermeer  <martin.vermeer@hut.fi>
2612
2613         * text.C: re-introduce display() for insets, fixing the
2614         various bugs (stretch of line above, math inset
2615         positioning, ...)
2616
2617 2003-10-20  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2618
2619         * text.C (rightMargin): remove spurious semicolon
2620
2621         * lengthcommon.C: add empty unit_name* entries for UNIT_NONE (bug
2622         1415)
2623
2624 2003-10-18  Martin Vermeer  <martin.vermeer@hut.fi>
2625
2626         * text3.C: fix one crash due to wrong cursor def
2627
2628 2003-10-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
2629
2630         * vc-backend.C (scanMaster): make the regex static
2631
2632         * LaTeX.C (scanAuxFile): make the regexs static
2633
2634         * text3.C (doInsertInset, dispatch, dispatch):
2635         * text2.C (cursorUp, cursorDown):
2636         * text.C (selectNextWordToSpellcheck):
2637         * BufferView_pimpl.C (dispatch):
2638         * lyxfunc.C (dispatch):  localDispatch -> dispatch
2639
2640 2003-10-14  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2641
2642         * lyxsocket.C: include <cerrno>
2643
2644 2003-10-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
2645
2646         * lyxfunc.C (dispatch): remove textcache stuff
2647
2648         * bufferlist.C (release): remove textcache stuff
2649         (closeAll): ditto
2650
2651         * TextCache.C: delete file
2652         * TextCache.h: delete file
2653
2654         * Makefile.am (lyx_SOURCES): delete TextCache.C and TextCache.h
2655
2656         * BufferView_pimpl.C (buffer): remove textcache stuff, add a
2657         delete of the bv_->text.
2658         (resizeCurrentBuffer): remove texcache stuff
2659         (workAreaResize): ditto
2660
2661 2003-10-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
2662
2663         * lyxfunc.C (getStatus): also set flag disabled if it is a unknown
2664         action.
2665
2666 2003-10-16  André Pönitz  <poenitz@gmx.net>
2667
2668         * lyxrow.[Ch]:
2669         * paragraph.h:
2670         * rowpainter.C:
2671         * text.C:
2672         * text2.C:
2673         * text3.C: speed up by storing y positions per paragraph plus per-row
2674         offset instead of having a 'full' y position in the row.
2675
2676 2003-10-15  André Pönitz  <poenitz@gmx.net>
2677
2678         * iterators.[Ch]:
2679         * iterators.[Ch]:
2680         * undo.[Ch]: make undo aware of inner insets
2681
2682 2003-10-14  Angus Leeming  <leeming@lyx.org>
2683
2684         * lyx_main.[Ch]: make LyX a singleton class, accessible though the new
2685         static member functions LyX::ref() and LyX::cref.
2686         (lastfiles): new accessor functions for the new lastfiles_ member var.
2687         (addLyXView, views_): add a new LyXView to the list of views_.
2688         (updateInset): loop over all LyXViews to call their own updateInset
2689         member function, returning a pointer to the Buffer owning the inset.
2690
2691         * BufferView_pimpl.C (loadLyXFile):
2692         * MenuBackend.C (expandLastfiles):
2693         * bufferlist.C (MenuWrite, QuitLyX):
2694         lastfiles is no longer a global variable.
2695         Access through LyX::ref().lastfiles(), LyX::cref().lastfiles().
2696
2697         * boost.C (emergencyCleanup): LyX::emergencyCleanup is no longer a
2698         static function. Access through LyX::cref().emergencyCleanup().
2699
2700 2003-10-14  André Pönitz  <poenitz@gmx.net>
2701
2702         * iterators.[Ch]: new direct access to innermost LyXText and Inset
2703
2704         * undo.[Ch]: restoring part of 'undo in insets'
2705
2706         * Makefile.am:
2707         * undo_funcs.[Ch]: merge with undo.[Ch]
2708
2709         * tabular.C: small cleansing stuff
2710
2711 2003-10-14  Alfredo Braunstein  <abraunst@libero.it>
2712
2713         * paragraph_funcs.C (readParToken): report unknown insets as error
2714         boxes. Use the outer paragraph as location (also for unknown
2715         tokens).
2716
2717         * factory.C (readInset): do not abort on reading an unknown inset.
2718         Eat it and return 0.
2719
2720 2003-10-13  Angus Leeming  <leeming@lyx.org>
2721
2722         * lyx_main.C (LyX): remove call to setDisplayTranslator().
2723
2724         * lyxrc.C: displayTranslator is now a function,
2725         declared in GraphicsTypes.h.
2726
2727 2003-10-13  Joao Luis Meloni Assirati <assirati@fma.if.usp.br>
2728
2729         * format.C: new placeholder $$a to pass the socket address.
2730
2731         * bufferlist.[Ch]: new function getBufferFromTmp.
2732
2733         * lyxfunc.C: Modification of LFUN_GOTOFILEROW so that it can handle
2734           files in the temporary dir.
2735
2736 2003-10-13  Joao Luis Meloni Assirati <assirati@fma.if.usp.br>
2737
2738         * lyxsocket.[Ch]: new files. A simple local socket interface for lyx.
2739
2740         * Makefile.am: add lyxsocket.[Ch].
2741
2742         * lyx_main.C (error_handler): handle SIGPIPE.
2743
2744 2003-10-13  André Pönitz  <poenitz@gmx.net>
2745
2746         * BufferView_pimpl.C:
2747         * lyxtext.h:
2748         * text.C:
2749         * text2.C:
2750         * text3.C:
2751         * undo_funcs.[Ch]: use paroffset_type instead of
2752           ParagraphList::iterators to prevent multiple conversion
2753           (and get a more robust interface)
2754
2755 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
2756
2757         * lyxfunc.C (dispatch): RESULT -> dispatch_result
2758         * lyxtext.h: ditto
2759         * text3.C (dispatch): ditto
2760
2761 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
2762
2763         * LaTeX.C (handleFoundFile): move the static to smaller scope,
2764         move the onlyfile, use onlyfile instead of foundfile in a couple
2765         of places.
2766
2767         * DepTable.C (update): flush the error stream a bit more
2768
2769 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
2770
2771         * lyxserver.C (callback): adjust
2772
2773         * lyxfunc.C (getStatus): add a missing brace in commented code
2774         (ensureBufferClean): reindent
2775         (dispatch): delete version taking a string
2776
2777 2003-10-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
2778
2779         * LaTeX.C (deplog): move found file handlig from here...
2780         (handleFoundFile): .. to new function here.
2781         (deplog): make sure to discover several files mentioned on the
2782         same log line.
2783
2784 2003-10-10  André Pönitz  <poenitz@gmx.net>
2785
2786         * lyxfunc.C:
2787         * lyxtext.h:
2788         * tabular.C:
2789         * text.C:
2790         * text2.C:
2791         * text3.C: fix some of the tabular crashes
2792
2793 2003-10-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
2794
2795         * MenuBackend.C (binding): put debug message into Debug::KBMAP
2796
2797         * lyxlex_pimpl.C (setFile): put debug messages into Debug::LYXLEX.
2798
2799 2003-10-09  André Pönitz  <poenitz@gmx.net>
2800
2801         * lyxcursor.h: use paroffset_type instead of ParagraphList::iterator
2802
2803         * BufferView.C:
2804         * BufferView_pimpl.C:
2805         * bufferview_funcs.C:
2806         * lyx_cb.C:
2807         * lyxcursor.C:
2808         * lyxfind.C:
2809         * lyxfunc.C:
2810         * lyxtext.h:
2811         * text.C:
2812         * text2.C:
2813         * text3.C:
2814         * text_funcs.[Ch]:
2815         * textcursor.[Ch]:
2816         * undo_funcs.C: adjust
2817
2818 2003-10-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
2819
2820         * text2.C (incrementItemDepth): new function, use a backtracking
2821         algorithm to discover the correct item depth.
2822         (resetEnumCounterIfNeeded): new function, use a backtracking
2823         algorithm to discover if counter reset is needed.
2824         (setCounter): use them. Simplify a bit. Add different labels for
2825         different item depths for itemize.
2826
2827         * paragraph.C (Paragraph): remove initialization of enumdepth
2828         (operator=): ditto
2829
2830         * paragraph.h: get rid of enumdepth, and use itemdepth both for
2831         enumerate and itemize. Change the type of itemdepth to signed char.
2832
2833 2003-10-08  André Pönitz  <poenitz@gmx.net>
2834
2835         * lyxtext.h: make the paragraphs_ a pointer instead a ref to make the
2836           thing assignable.
2837         * text.C:
2838         * text2.C: adjust
2839
2840         * tabular.[Ch]: fix crash after 'row-insert'
2841
2842 2003-10-08  Angus Leeming  <leeming@lyx.org>
2843
2844         Fix doxygen warnings.
2845
2846         * CutAndPaste.[Ch] (availableSelections). Now returns a const vector.
2847         Remove CutAndPaste:: prefix from header file declaration.
2848
2849         * LColor.h (fill): remove LColor:: prefix from declaration.
2850
2851         * buffer.C (readParagraph, simpleLinuxDocOnePar, simpleDocBookOnePar):
2852         use lyx::depth_type rather than Paragraph::depth_type so that
2853         header file and .C file match.
2854
2855         * converter.h (intToFormat): remove Converters:: prefix from declaration.
2856
2857         * Spacing.h: \file Spacing.h -> \file src/Spacing.h
2858         * aspell.C: \file aspell_local.C -> \file aspell.C
2859         * gettext.C: \file gettext.C -> \file src/gettext.C
2860         * gettext.h: \file gettext.h -> \file src/gettext.h
2861         * lyxfont.C: \file lyxfont.C -> \file src/lyxfont.C
2862         * lyxfont.h: \file lyxfont.h -> \file src/lyxfont.h
2863         * text.C: \file text.C -> \file src/text.C
2864
2865         * toc.C: move comment so that doxygen is not confused.
2866
2867 2003-10-07  Angus Leeming  <leeming@lyx.org>
2868
2869         * factory.C (createInset): InsetExternal::Params -> InsetExternalParams
2870
2871 2003-10-07  Jürgen Spitzmüller <j.spitzmueller@gmx.de>
2872
2873         * aspell.C:
2874         * aspell_local.h: add forgotten std::string's.
2875
2876 2003-10-07  Martin Vermeer <martin.vermeer@hut.fi>
2877
2878         * LaTeXFeatures.C:
2879         * LyXAction.C:
2880         * factory.C:
2881         * lfuns.h:
2882         * lyxfunc.C:
2883         * text3.C: The Box patch. Fancybox support, minipage, parbox
2884
2885 2003-10-07  Martin Vermeer <martin.vermeer@hut.fi>
2886
2887         * CutAndPaste.h:
2888         * DepTable.h:
2889         * FloatList.h:
2890         * LaTeXFeatures.h:
2891         * ParagraphParameters.h:
2892         * TextCache.h:
2893         * Thesaurus.h:
2894         * bufferlist.h:
2895         * exporter.h:
2896         * importer.h:
2897         * lastfiles.h:
2898         * lyxfind.h:
2899         * lyxfont.h:
2900         * lyxlex.h:
2901         * lyxtextclasslist.h:
2902         * messages.h:
2903         * paragraph.h:
2904         * paragraph_pimpl.C:
2905         * textcursor.h: add <string> and other small fixes to make Lars'
2906         std::string patch compile with STLport.
2907
2908 2003-10-06  Angus Leeming  <leeming@lyx.org>
2909
2910         * LColor.h: Add missing #include <string>.
2911
2912 2003-10-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
2913
2914         * All most all file in all subdirs: Make <string> be the prefered
2915         way of getting to std::string, add using declarations.
2916
2917 2003-10-06  André Pönitz  <poenitz@gmx.net>
2918
2919         * metricsinfo.C: initialize LyXFont before changing attribute.
2920         (fixes the 'math in \emph is upright' bug)
2921
2922 2003-10-06  André Pönitz  <poenitz@gmx.net>
2923
2924         * tabular.[Ch]: saner reinitialization, ret rid of LyXTabular::owner_
2925
2926 2003-10-06  Martin Vermeer  <martin.vermeer@hut.fi>
2927
2928         * graph.C:
2929         * paragraph_pimpl.C: Small fixes to build using STLport
2930
2931 2003-10-02  André Pönitz  <poenitz@gmx.net>
2932
2933         * lyxfunc.C:
2934         * text3.C: move handling of LFUN_DEPTH *; fix #1360
2935
2936 2003-10-01  André Pönitz  <poenitz@gmx.net>
2937
2938         * factory.C: assert early
2939
2940 2003-09-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
2941
2942         * lyx_main.C: remove the global debug object
2943
2944         * debug.h: adjust for new debugstream
2945
2946         * debug.C: adjust for new debugstream and keep the global debug
2947         object here.
2948
2949 2003-09-22  Angus Leeming  <leeming@lyx.org>
2950
2951         * paragraph_pimpl.h: add #include "lyxfont.h". Needed by earlier versions
2952         of g++ which otherwise complain that the scoped_ptr destructor can't delete
2953         an incomplete class LyXFont.
2954
2955 2003-09-22  Martin Vermeer  <martin.vermeer@hut.fi>
2956
2957         * factory.C: bug fix in branches
2958
2959 2003-09-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
2960
2961         * lyxfunc.C (processKeySym): adjust
2962         (dispatch): adjust
2963         (dispatch): change arg name from ev to func, adjust
2964         (sendDispatchMessage): ditto
2965
2966         * lyx_main.C (defaultKeyBindings): adjust keybindings
2967         (deadKeyBindings): ditto
2968
2969         * kbsequence.C (addkey): return a FuncRequest
2970
2971         * kbmap.h (kb_key): struct var FuncRequest instead of int action.
2972
2973         * kbmap.C (bind): take a FuncRequest as arg, adjust
2974         (read): adjust
2975         (lookup): adjust
2976         (defkey): change to take a FuncRequest as arg, adjust
2977         (findbinding): take a FuncRequest as arg, adjust.
2978
2979         * funcrequest.h (operator=): added
2980
2981         * funcrequest.C (FuncRequest): default kb_action changed from
2982         LFUN_UNKNOWN_ACTION to LFUN_NO_ACTION
2983
2984         * buffer.C (dispatch): simplify
2985         (dispatch): adjust to take a FuncRequest as arg, adjust
2986
2987         * boost.C (assertion_failed): change assertion message slightly
2988
2989         * ToolbarBackend.C (read): simplify
2990
2991         * MenuBackend.C (binding): adjust call to findbinding, add a
2992         message if no binding is found.
2993         (read): simplify
2994         (expandToc): correct by adding a empty FuncRequest
2995
2996         * LyXAction.C: include <boost/assert.hpp>
2997         (isPseudoAction): delete function
2998         (LookupFunc): change name to...
2999         (lookupFunc): this. change return type to FuncRequest.
3000         (getActionName): take kb_action as arg, simplify
3001         (funcHasFlag): add an assert, simplify.
3002
3003 2003-09-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
3004
3005         * toc.C (action): return a FuncRequest, simplify
3006
3007         * lyxfunc.C (processKeySym): adjust
3008         (getStatus): delete version that takes an int.
3009         (getStatus): adjust
3010         (dispatch): delete version that takes action as int
3011         (dispatch): adjust
3012         (sendDispatchMessage): simplify and adjust
3013
3014         * funcrequest.C (getArg): take unsigned int as arg
3015
3016         * ToolbarBackend.C (read): adjust
3017         (add): delete version that takes func as a string.
3018         (getIton): take a FuncRequest as arg
3019
3020         * MenuBackend.h (MenuItem): store a FuncRequest instead of an int
3021         action.
3022
3023         * MenuBackend.C (MenuItem): add a new construct that only takes a
3024         Kind, simplify the constructor use for submenus.
3025         (add): adjust
3026         (expandLastfiles): adjust
3027         (expandDocuments): adjust
3028         (expandFormats): adjust
3029         (expandFloatListInsert): adjust
3030         (expandFloatInsert): adjust
3031         (expandToc2,expandToc,expandPasteRecent,expandBranches): adjust
3032
3033         * LyXAction.h: remove typdefs pseudo_map, arg_item and arg_map.
3034         Remove class variables lyx_pseudo_map and lyx_arg_map
3035
3036         * LyXAction.C (searchActionArg): delete function
3037         (getPseudoAction): delete function
3038         (retrieveActionArg): delete function
3039         (LookupFunc): make it return kb_action, simplify.
3040         (getActionName): simplify
3041
3042         * factory.C (createInset): fix new bug
3043
3044 2003-09-19  Angus Leeming  <leeming@lyx.org>
3045
3046         * CutAndPaste.C (pasteSelection): remove fudge used to set the
3047         masterFilename_ parameter in the include inset.
3048
3049         * factory.C (createInset): changes due to the changes to InsetInclude.
3050
3051 2003-09-19  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
3052
3053         * paragraph.C: use appropriate alignment tags inside floats (bug 1290)
3054
3055 2003-09-18  Angus Leeming  <leeming@lyx.org>
3056
3057         * buffer.C:
3058         * BufferView.C: pass the buffer when calling Inset::getLabelList,
3059         Inset::fillWithBibKeys.
3060         * tabular.[Ch] (getLabelList): receive, pass on a Buffer const & arg.
3061
3062 2003-09-18  Angus Leeming  <leeming@lyx.org>
3063
3064         * LaTeXFeatures.[Ch]: append a '_' to the names of all private member
3065         variables.
3066         (ctor): pass and store a 'Buffer const &'
3067         (buffer): new member function.
3068
3069         * buffer.C (makeDocBookFile, makeLinuxDocFile, makeLaTeXFile): pass
3070         '*this' to the LaTeXFeatures ctor.
3071
3072 2003-09-18  Angus Leeming  <leeming@lyx.org>
3073
3074         * LColor.h:
3075         * lyxfont.C:
3076         * lyxfont.h:
3077         * lyxtext.h:
3078         * text.C: rename EnumLColor as LColor_color.
3079
3080 2003-09-18  Angus Leeming  <leeming@lyx.org>
3081
3082         * cursor.[Ch]: use the dispatch_result wrapper class DispatchResult to
3083         remove #include "insets/insetbase.h" from cursor.h.
3084
3085 2003-09-18  Angus Leeming  <leeming@lyx.org>
3086
3087         * paragraph.[Ch] (insetAllowed): use the InsetOld::Code wrapper class
3088         InsetOld_code to remove #include "inset.h".
3089
3090         * iterators.C: add #include "insets/inset.h"
3091
3092 2003-09-16  Martin Vermeer  <martin.vermeer@hut.fi>
3093
3094         * BufferView.C: remove more locking stuff that apparently doesn't
3095         do anything sensible.
3096
3097 2003-09-16  André Pönitz  <poenitz@gmx.net>
3098
3099         * paragraph.[Ch]:
3100         * paragraph_pimpl.[Ch]: un-pimpl Paragraph::(Pimpl::)text for a >10%
3101           performance boost.
3102
3103 2003-09-16  Angus Leeming  <leeming@lyx.org>
3104
3105         * lyxfont.h (LyXFont_size): a wrapper class for LyXFont::FONT_SIZE.
3106
3107         * paragraph.[Ch] (highestFontInRange): use LyXFont_size as function
3108         arg/return type.
3109
3110         * paragraph.h: remove #include "lyxfont.h". Forward declare
3111         LyXFont_size.
3112
3113 2003-09-16  Angus Leeming  <leeming@lyx.org>
3114
3115         * paragraph.C (IsInsetChar): new function in namespace anon, moved out
3116         of support/textutils.h.
3117         (isWord): move the contents of support/textutils.h's IsWordChar here.
3118
3119         * buffer.C:
3120         * lyxfind.C:
3121         * rowpainter.C:
3122         * text.C:
3123         * text2.C: add #include "paragraph.h".
3124
3125         * rowpainter.C:
3126         * text.C: replace IsInsetChar(c) with a direct test of Paragraph::META_INSET.
3127
3128 2003-09-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
3129
3130         * main.C:
3131         * lyx_main.C:
3132         * lyx_cb.C:
3133         * buffer.C:
3134         * LaTeX.C: use namespace alias for lyx::support::os
3135
3136 2003-09-16  Angus Leeming  <leeming@lyx.org>
3137
3138         * bufferparams.C:
3139         * bufferview_funcs.C:
3140         * factory.C:
3141         * lyxfunc.C:
3142         * paragraph_pimpl.C:
3143         * rowpainter.C:
3144         * text.C: add #include "LColor.h".
3145
3146 2003-09-16  Angus Leeming  <leeming@lyx.org>
3147
3148         * lyxfont.[Ch]: (setFamily, setSeries, setShape, setSize, setEmph,
3149         setUnderbar, setNoun, setNumber, setColor, setLanguage): no longer
3150         return LyXFont &.
3151         Store the FontBits::color variable as an int rather than as an
3152         LColor::colorso that we can move LColor.h out of the lyxfont.h header
3153         file.
3154
3155         * rowpainter.C (paintAppendixStart, paintPageBreak, paintLengthMarker):
3156         LyXFont::setColor, decSize no longer return a LyXFont &, so cannot
3157         string calls together.
3158
3159         * lyxrc.C: add #include "LColor.h".
3160
3161 2003-09-15  Angus Leeming  <leeming@lyx.org>
3162
3163         * bufferparams.[Ch]: store the pimpl_ as a copied_ptr, rather than as
3164         a cow_ptr.
3165
3166 2003-09-15  Angus Leeming  <leeming@lyx.org>
3167
3168         * LColor.h: add an EnumLColor wrapper for LColor::color.
3169
3170         * lyxfont.[Ch] (color, setColor, realColor):
3171         * lyxtext.h, text.C (backgroundColor):
3172         pass EnumLColor args to/from the functions, rather than LColor::color
3173         ones.
3174
3175         * lyxfont.h:
3176         * lyxtext.h: forward declare EnumLColor.
3177
3178         * lyx_main.C: add #include "LColor.h".
3179
3180 2003-09-15  Angus Leeming  <leeming@lyx.org>
3181
3182         * .cvsignore: add lyx-gtk.
3183
3184 2003-09-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
3185
3186         * Chktex.C
3187         * LaTeX.C
3188         * LaTeXFeatures.C
3189         * ParagraphParameters.C
3190         * Spacing.C
3191         * buffer.C
3192         * bufferparams.C
3193         * bufferview_funcs.C
3194         * chset.C
3195         * counters.C
3196         * funcrequest.C
3197         * lyxfont.C
3198         * lyxgluelength.C
3199         * lyxlength.C
3200         * paragraph.C
3201         * paragraph_funcs.C
3202         * text3.C
3203         * vc-backend.C: remove usage of STRCONV
3204
3205 2003-09-15  Angus Leeming  <leeming@lyx.org>
3206
3207         * rowpainter.C (paintLengthMarker, paintPageBreak, paintAppendixStart):
3208         explicitly define the color passed to the painter.
3209
3210 2003-09-15  Angus Leeming  <leeming@lyx.org>
3211
3212         * bufferparams.C (BufferParams): reorder member initializers to avoid
3213         compiler warning.
3214
3215 2003-09-15  Alfredo Braunstein  <abraunst@libero.it>
3216
3217         * CutAndPaste.C (pasteSelection): remove an outdated #warning
3218         * text.C (updateRowPositions): remove an unusual nop
3219
3220 2003-09-12  André Pönitz  <poenitz@gmx.net>
3221
3222         * BufferView_pimpl.C:
3223         * Bullet.C:
3224         * layout.h:
3225         * lyxfunc.C:
3226         * lyxlayout.[Ch]:
3227         * lyxtextclass.C:
3228         * rowpainter.C:
3229         * text.C:
3230         * text2.C:
3231         * Counters.[Ch]: finish the 'automatic counters' job
3232
3233 2003-09-12  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
3234
3235         * aspell.C: include <boost/assert.cpp> (compile fix)
3236
3237 2003-09-10  Rob Lahaye  <lahaye@snu.ac.kr>
3238
3239         * boost.C (assertion_failed): use lyx::support::abort instead of
3240         assert.
3241
3242 2003-09-10  Angus Leeming  <leeming@lyx.org>
3243
3244         * Makefile.am (lyx_SOURCES): replace ParagraphList.h and RowList.h
3245         with their _fwd progeny.
3246
3247 2003-09-09  Angus Leeming  <leeming@lyx.org>
3248
3249         134 files throughtout the source tree: replace 'using namespace abc;'
3250         directives with the appropriate 'using abc::xyz;' declarations.
3251
3252 2003-09-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
3253
3254         * boost.C (emergencyCleanup): moved here from LAssert.c
3255         (assertion_failed): new function, called by BOOST_ASSERT
3256
3257         * several files: change Assert to BOOST_ASSERT
3258
3259 2003-09-09  Angus Leeming  <leeming@lyx.org>
3260
3261         * buffer.[Ch]: Add an Impl class and move Buffer's member
3262         variables into it. As a result move several header files out of
3263         buffer.h.
3264
3265         Add header files to lots of .C files all over the tree as a result.
3266
3267 2003-09-09  Angus Leeming  <leeming@lyx.org>
3268
3269         * buffer.[Ch]: make Buffer's member variables private. Add
3270         accessor functions.
3271
3272         Lots of changes all over the tree as a result.
3273
3274 2003-09-08  Angus Leeming  <leeming@lyx.org>
3275
3276         * graph.C: #include <config.h>.
3277
3278 2003-09-08  Angus Leeming  <leeming@lyx.org>
3279
3280         * BranchList.C:
3281         * BufferView.C:
3282         * BufferView_pimpl.C:
3283         * CutAndPaste.C:
3284         * DepTable.C:
3285         * LaTeX.C:
3286         * LaTeXFeatures.C:
3287         * LyXAction.C:
3288         * MenuBackend.C:
3289         * TextCache.C:
3290         * aspell.C:
3291         * buffer.C:
3292         * bufferlist.C:
3293         * changes.C:
3294         * chset.C:
3295         * converter.C:
3296         * counters.C:
3297         * debug.C:
3298         * graph.C:
3299         * ispell.C:
3300         * lyx_cb.C:
3301         * lyxfind.C:
3302         * lyxfunc.C:
3303         * lyxlex_pimpl.C:
3304         * lyxrc.C:
3305         * lyxrow.C:
3306         * paragraph.C:
3307         * rowpainter.C:
3308         * texrow.C:
3309         * text.C:
3310         * text2.C:
3311         * toc.C: remove redundant using directives.
3312
3313 2003-09-07  Angus Leeming  <leeming@lyx.org>
3314
3315         * LaTeXFeatures.h: remove #include "support/types.h".
3316         * ToolbarBackend.h: remove #include <algorithm>.
3317         * changes.h: remove #include <ctime>.
3318         * debug.h: remove #include <iosfwd>.
3319         * graph.h: remove #include "support/std_string.h".
3320         * lyx_main.h: remove #include <csignal>.
3321         * lyxlex_pimpl.h: remove #include <fstream>.
3322         * sgml.h: remove #include <algorithm>, <utility>.
3323         * toc.h: remove #include "support/std_ostream.h".
3324         Add #include <iosfwd>.
3325
3326 2003-09-07  Angus Leeming  <leeming@lyx.org>
3327
3328         * vspace.[Ch] (length): returns a const & to a LyXGlueLength.
3329
3330         * converter.h: forward declare LatexRunParams.
3331         * encoding.h: remove #include "lyxrc.h".
3332         * lyxtext.h: remove #include "LColor.h".
3333         * lyxtextclass.h: remove #include "support/types.h".
3334         * trans.h: remove #include "tex-accent.h".
3335         * trans_mgr.h: remove #include "tex-accent.h".
3336         * insets/inset.h: remove #include "support/types.h", <vector>.
3337         * insets/insetcollapsable.h: remove #include "LColor.h".
3338         * insets/insetinclude.h: remove #include "dimension.h".
3339         * insets/insetlatexaccent.h: remove #include "dimension.h".
3340         * insets/insetoptarg.h:: remove #include "insettext.h".
3341         * insets/insettext.h: remove #include "dimension.h",
3342         <boost/shared_ptr.hpp>
3343
3344         * insets/renderers.h: add #include "dimension.h".
3345         * insets/updatableinset.h: add #include "support/types.h".
3346
3347         * many .C files: Associated changes.
3348
3349 2003-09-06  Angus Leeming  <leeming@lyx.org>
3350
3351         * Bullet.[Ch]: factorize all those #ifdef ENABLE_ASSERTIONS to just
3352         one, inside testInvariant.
3353
3354         * PrinterParams.C: new file.
3355         * PrinterParams.[Ch]: move the function bodies out of line.
3356
3357 2003-09-06  Angus Leeming  <leeming@lyx.org>
3358
3359         * ParagraphParameters.h: forward declare ParameterStruct rather than
3360         including its header file.
3361         (depth): moved out-of-line.
3362
3363 2003-09-06  Angus Leeming  <leeming@lyx.org>
3364
3365         * BufferView_pimpl.h:
3366         * kbmap.h:
3367         * kbsequence.h:
3368         * lyxfunc.h: forward declare LyXKeySym rather than
3369         #include "frontends/LyXKeySym.h".
3370
3371         * BufferView_pimpl.C:
3372         * kbmap.C:
3373         * kbsequence.C:
3374         * lyxfunc.C: associated changes.
3375
3376 2003-09-06  Angus Leeming  <leeming@lyx.org>
3377
3378         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
3379         As a result, can remove the #include "insets/inset.h" from BufferView.h
3380
3381 2003-09-06  Angus Leeming  <leeming@lyx.org>
3382
3383         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
3384         As a result, can remove the #include "insets/inset.h" from BufferView.h
3385
3386 2003-09-06  Angus Leeming  <leeming@lyx.org>
3387
3388         * buffer_funcs.C:
3389         * buffer.h:
3390         * bufferlist.C:
3391         * BufferView.C:
3392         * bufferview_funcs.C:
3393         * BufferView_pimpl.C:
3394         * CutAndPaste.C:
3395         * lyx_cb.C:
3396         * lyxfunc.C:
3397         * paragraph.h:
3398         * ParagraphParameters.C:
3399         * tabular.C:
3400         * text3.C:
3401         * toc.C:
3402         * undo_funcs.C:
3403         * frontends/controllers/ControlDocument.C:
3404         * insets/insetcaption.C: rearrange the #includes into some sort of
3405         coherent order.
3406
3407         * buffer.h: remove #includes ErrorList.h, undo.h
3408
3409 2003-09-06  Angus Leeming  <leeming@lyx.org>
3410
3411         * support/types.h: add a 'depth_type' typedef, used to store the
3412         nesting depth of a paragraph.
3413
3414         * paragraph.h:
3415         * ParameterStruct.h: use this lyx::depth_type typedef rather than
3416         defining explicitly.
3417
3418         * buffer.h:
3419         * paragraph_funcs.h:
3420         * ParagraphParameters.h:
3421         * sgml.h: use lyx::depth_type rather than Paragraph or
3422         ParameterStruct's depth_type.
3423
3424         * buffer.h
3425         * paragraph_funcs.h: no need to #include paragraph.h anymore.
3426
3427         * BufferView.C:
3428         * BufferView_pimpl.C:
3429         * CutAndPaste.C:
3430         * ParagraphParameters.C:
3431         * buffer_funcs.C:
3432         * bufferlist.C:
3433         * bufferview_funcs.C:
3434         * lyx_cb.C:
3435         * lyxfunc.C:
3436         * tabular.C:
3437         * text3.C:
3438         * toc.C:
3439         * undo_funcs.C:
3440         * frontends/LyXView.C:
3441         * frontends/controllers/ControlDocument.C:
3442         * frontends/controllers/ControlErrorList.C:
3443         * insets/insetbibitem.C:
3444         * insets/insetbranch.C:
3445         * insets/insetcaption.C:
3446         * insets/insetcollapsable.C:
3447         * insets/insetenv.C:
3448         * insets/insetert.C:
3449         * insets/insetfloat.C:
3450         * insets/insetfoot.C:
3451         * insets/insetfootlike.C:
3452         * insets/insetnewline.C:
3453         * insets/insetquotes.C:
3454         * insets/insettabular.C:
3455         * insets/insettext.C:
3456         * insets/insetwrap.C: must now explicitly #include "paragraph.h".
3457
3458         * frontends/controllers/ControlChanges.C: #include "changes.h".
3459
3460 2003-09-06  Angus Leeming  <leeming@lyx.org>
3461
3462         * ParagraphList_fwd.h: new file, forward-declaring Paragraph rather
3463         than #including paragraph.h.
3464
3465         * ParagraphList.h:
3466         * RowList.h: deleted. Superfluous.
3467
3468         * CutAndPaste.h:
3469         * iterators.h:
3470         * lyxcursor.h:
3471         * lyxtext.h:
3472         * text_funcs.h:
3473         * undo.h:
3474         * undo_funcs.h:
3475         * insets/inset.h:
3476         * insets/insettext.h: use ParagraphList_fwd.h rather than
3477         ParagraphList.h.
3478
3479         * paragraph.h: don't forward declare ParagraphList.
3480
3481         * buffer.h:
3482         * paragraph_funcs.h: #include ParagraphList_fwd.h and paragraph.h
3483         rather than ParagraphList.h. paragraph.h is still needed for the
3484         Paragraph::depth_type parameters.
3485
3486         * textcursor.h: enable it to compile stand-alone in light of the
3487         above changes.
3488
3489         * bufferview_funcs.C:
3490         * iterators.C:
3491         * lyxfunc.C:
3492         * lyxrow_funcs.C:
3493         * paragraph.C:
3494         * rowpainter.C:
3495         * text.C:
3496         * text2.C:
3497         * text3.C:
3498         * text_funcs.C:
3499         * textcursor.C:
3500         * undo.C:
3501         * frontends/controllers/ControlParagraph.C:
3502         * frontends/controllers/ControlTabular.C:
3503         * insets/insetmarginal.C:
3504         * insets/insetminipage.C:
3505         * insets/insetnote.C:
3506         * insets/insetoptarg.C: add header files needed to compile again.
3507
3508 2003-09-06  Angus Leeming  <leeming@lyx.org>
3509
3510         * RowList_fwd.h: new file, forward-declaring Row rather than
3511         #including lyxrow.h.
3512
3513         * lyxrow_funcs.h:
3514         * lyxtext.h:
3515         * paragraph.h:
3516         * insets/insettext.h: use it instead of RowList.h
3517
3518         * bufferview_funcs.C:
3519         * lyxfunc.C:
3520         * lyxrow_funcs.C:
3521         * paragraph.C:
3522         * rowpainter.C:
3523         * text.C:
3524         * text2.C:
3525         * text3.C: #include "RowList.h".
3526
3527 2003-09-05  Angus Leeming  <leeming@lyx.org>
3528
3529         * factory.C (createInset):
3530         * vspace.C (c-tor): replace sscanf call with an istringstream.
3531         * ispell.C: re-add missing HP/UX headers.
3532         * lyxserver.C: re-add missing  os2 headers.
3533
3534 2003-09-05  Martin Vermeer  <martin.vermeer@hut.fi>
3535
3536         * BranchList.C:
3537         * graph.C:
3538         * ispell.C:
3539         * lastfiles.C:
3540         * lyx_cb.C:
3541         * lyxserver.C:
3542         * texrow.C:
3543         * text3.C: re-add missing system headers, needed for 2.95.2.
3544
3545 2003-09-05  Angus Leeming  <leeming@lyx.org>
3546
3547         Changes most place everywhere due to the removal of using directives
3548         from support/std_sstream.h.
3549
3550 2003-09-05  Angus Leeming  <leeming@lyx.org>
3551
3552         Replace LString.h with support/std_string.h,
3553         Lsstream.h with support/std_sstream.h,
3554         support/LIstream.h with support/std_istream.h,
3555         support/LOstream.h with support/std_ostream.h.
3556
3557         Changes resulting throughout the tree.
3558
3559 2003-09-05  Angus Leeming  <leeming@lyx.org>
3560
3561         * sgml.h: ensure that the header file can be compiled stand-alone.
3562         * *.C: strip out redundant #includes. (320 in total.)
3563
3564 2003-09-04  Angus Leeming  <leeming@lyx.org>
3565
3566         * LaTeXFeatures.C (getMacros): move the output of the preamble_snippets
3567         here (from getPackages).
3568
3569         * debug.[Ch]: add a new EXTERNAL tag.
3570
3571 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
3572
3573         * text2.C (cursorEnd): simplify
3574         (setCursor): adjust
3575         (getColumnNearX): adjust
3576
3577         * text.C (computeBidiTables): adjust
3578         (fill): adjust
3579
3580         * rowpainter.C (paintChars): adjust
3581         (paintSelection): adjust
3582         (paintChangeBar): adjust
3583         (paintText): adjust
3584
3585         * lyxrow_funcs.C (lastPrintablePos): remove, all users now call
3586         lastPos instead.
3587         (numberOfSeparators): adjust
3588
3589 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
3590
3591         * LyXAction.C:
3592         * box.[Ch]:
3593         * lfuns.h:
3594         * lyxfunc.C:
3595         * text3.C: Restricts the mouse click functionality
3596         of insets like bibtex, include, toc and floatlist to the visible
3597         button, and allows the use of LFUN_INSET_SHOW_DIALOG to bring
3598         up the dialogs. Cursor has to be in front of the inset (i.e.
3599         start of row) for this to function.
3600
3601 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
3602
3603         * bufferview_funcs.C (currentState): output row information
3604
3605 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
3606
3607         * bufferview_funcs.C (currentState): output paragraph position
3608
3609 2003-09-04  Angus Leeming  <leeming@lyx.org>
3610
3611         * FloatList.h: move out #include "Floating.h".
3612         * LaTeX.h: move out #include "DepTable.h".
3613         * LyXAction.h: move out #include "funcrequest.h".
3614         * buffer.h: move out #include "author.h", "iterators.h".
3615         * bufferparams.h: move out #include "LaTeXFeatures.h", "texrow.h".
3616         * lyx_main.h: move out #include "errorlist.h".
3617         * lyxfunc.h: move out #include "FuncStatus.h".
3618         * lyxtext: move out #include "lyxcursor.h".
3619         * paragraph_pimpl.h: move out #include "counters.h".
3620
3621 2003-09-03  Angus Leeming  <leeming@lyx.org>
3622
3623         * LaTeXFeatures.[Ch]: replace the externalPreambles string with a
3624         preamble_snippets list, enabling us to add snippets to the preamble
3625         only if the snippet was not there already.
3626
3627 2003-09-04  Angus Leeming  <leeming@lyx.org>
3628
3629         * Chktex.C, converter.C, lyx_cb.C: add #include "support/lyxlib.h".
3630
3631 2003-09-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
3632
3633         * lyxfunc.C (dispatch): if fitCursor did something be sure to
3634         update
3635
3636 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
3637
3638         * BranchList.C: point fix, earlier forgotten
3639
3640 2003-09-02  Angus Leeming  <leeming@lyx.org>
3641
3642         * box.C (contains): renamed from 'contained' after a fantastic
3643         amount of hot air.
3644
3645 2003-09-02  John Levon  <levon@movementarian.org>
3646
3647         * BufferView.C:
3648         * lyxcursor.h:
3649         * lyxcursor.C:
3650         * lyxfunc.C:
3651         * lyxfunc.h: remove cursor.i[x]y(), it no longer differs
3652
3653 2003-09-02  John Levon  <levon@movementarian.org>
3654
3655         * text2.C: simplification of cursorEnd(), including partial
3656         fix for bug 1376
3657
3658 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
3659
3660         * buffer.C (readFile): add a space
3661
3662 2003-09-02  Alfredo Braunstein  <abraunst@libero.it>
3663
3664         * BufferView_pimpl.C (update): remove bogus fitCursor() call
3665
3666 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
3667
3668         * buffer.C (readFile): new function, take a filename and a
3669         ParagraphList::iterator
3670         (readFile): adjust
3671         (readFile): adjust, make it private. don't use setStream, make
3672         lyx2lyx use a temporary file. Some simplificaton. Make the Alerts
3673         always contain the filename.
3674
3675         * BufferView.C (insertLyXFile): simplify and make it work for
3676         gzipped files.
3677
3678 2003-08-30  John Levon  <levon@movementarian.org>
3679
3680         * Makefile.am: fix dist (from Kayvan)
3681
3682 2003-08-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
3683
3684         * most files: change to use const Buffer refs
3685
3686 2003-08-27  André Pönitz  <poenitz@gmx.net>
3687
3688         * BufferView.[Ch]: remove getParentText, implement getParentLanguage
3689         on top of ownerPar().
3690
3691 2003-08-27  John Levon  <levon@movementarian.org>
3692
3693         * funcrequest.C: properly initialise POD members
3694
3695 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
3696
3697         * lyxtext.h (top_y): move top_y from here
3698         * text.C:
3699         * text2.C:
3700         * text3.C:
3701         * BufferView.[Ch]:
3702         * BufferView_pimpl.[Ch]: to here
3703         * frontends/screen.C:
3704         * insets/insettabular.C:
3705         * insets/insettext.C: adjust
3706         * rowpainter.[Ch] (paintRows): remove LyXText & argument
3707
3708 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
3709
3710         * BufferView.[Ch]:
3711         * BufferView_pimpl.[Ch] (updateInset): add an InsetOld * argument
3712
3713 2003-08-26  André Pönitz  <poenitz@gmx.net>
3714
3715         * paragraph_func.[Ch] (outerPar): new function
3716
3717         * paragraph.C:
3718         * paragraph_funcs.C:
3719         * paragraph_funcs.h:
3720         * paragraph_pimpl.C:
3721         * text2.C: remove Inset::par_owner
3722
3723 2003-08-25  Martin Vermeer  <martin.vermeer@hut.fi>
3724
3725         * lyxrow_funcs.C:
3726         * lyxtext.h:
3727         * text.C:
3728         * text2.C: eliminates the needFullRow/display() stuff
3729         altogether, putting the logic in metrics/draw in the insets.
3730
3731 2003-08-25  Alfredo Braunstein  <abraunst@libero.it>
3732
3733         * text2.C (redoParagraphInternal, redoParagraphs):
3734         * text.C (redoParagraph): add a call to updateRowPositions at the
3735         end of each 'metrics-like' call. Remove all others.
3736         (getRow): remove the 'y-computing' version.
3737         (getRowNearY): do not compute nor return the real y. Solve the
3738         'y < 0' problem and simplify.
3739
3740 2003-08-22  Angus Leeming  <leeming@lyx.org>
3741
3742         * *.[Ch]: clean-up of licence and author blurbs.
3743         Also move config.h out of a few .h files and into a few .C files.
3744
3745 2003-08-22  André Pönitz  <poenitz@gmx.net>
3746
3747         * lyxrow.[Ch]: add x_ and *fill_ members
3748
3749         * lyxtext.h:
3750         * text.C:
3751         * rowpainter.C:
3752         * text2.C: adjust/remove prepareToPrint() calls
3753
3754 2003-08-22  André Pönitz  <poenitz@gmx.net>
3755
3756         * lyxrow.[Ch]: add  end_ member
3757
3758         * lyxrow_funcs.C: use LyXRow::end_
3759
3760         * lyxtext.h (singleWidth): add LyXFont parameter
3761
3762         * rowpainter.C:
3763         * text2.C: adjust LyXText::singleWidth() calls
3764
3765         * text.C (redoParagraph): simplify row breaking logic
3766
3767
3768 2003-08-19  André Pönitz  <poenitz@gmx.net>
3769
3770         * funcrequest.C: initialize button_ member
3771
3772         * text3.C:
3773         * rowpainter.[Ch]: interface consolidation
3774
3775 2003-08-18  André Pönitz  <poenitz@gmx.net>
3776
3777         * BufferView.C:
3778         * BufferView_pimpl.C:
3779         * lyxfind.C:
3780         * paragraph_funcs.C:
3781         * rowpainter.C:
3782         * text3.C: remove LyXScreen::draw() and fitCursor calls
3783
3784         * BranchList.h: remove spurious semicolons
3785
3786         * MenuBackend.C: fix branchlist related crash
3787
3788 2003-08-17  Martin Vermeer  <martin.vermeer@hut.fi>
3789
3790         * BranchList.[Ch]:
3791         * InsetList.[Ch]:
3792         * LColor.[Ch]:
3793         * LyXAction.C:
3794         * Makefile.am:
3795         * MenuBackend.[Ch]:
3796         * bufferparams.[Ch]:
3797         * factory.C:
3798         * lfuns.h:
3799         * lyxfunc.C:
3800         * text3.C: implements the 'branch inset'
3801         idea. This allows the output of various versions of a document
3802         from a single source version, selectively outputing or suppressing
3803         output of parts of the text.
3804         This implementation contains a 'branch list editor' in a separate
3805         tab of the document settings dialog. Branches are user definable
3806         and have a "display colour" to distinguish them on-screen.
3807
3808         ColorHandler was somewhat cleaned up.
3809         (1) make possible a dynamically growing LColor list by allowing
3810         the graphic context cache to grow along (vector);
3811         (2) eliminate an IMHO unnecessary step in colour allocation.
3812
3813 2003-08-15  Kayvan A. Sylvan <kayvan@sylvan.com>
3814
3815         * BufferView_pimpl.C: compile fix
3816
3817 2003-08-15  André Pönitz  <poenitz@gmx.net>
3818
3819         * rowpainter.C: remove extra metrics calls
3820
3821         * lyxtext.h: merge the two constructors into a single one,
3822           pass reference to owner's par list
3823
3824         * BufferView_pimpl.C:
3825         * text.C:
3826         * text2.C: adjust
3827
3828 2003-08-15  André Pönitz  <poenitz@gmx.net>
3829
3830         * lyxrow_funcs.[Ch]:
3831         * lyxtext.h:
3832         * paragraph.h:
3833         * paragraph_funcs.C:
3834         * rowpainter.C:
3835         * text.C:
3836         * text2.C:
3837         * text3.C:
3838         * text_funcs.C: split LyXText::rowlist_ into individual
3839         Paragraph::rows_ chunks
3840
3841         * BufferView.[Ch]:
3842         * BufferView_pimpl.[Ch]:
3843         * lyxfind.C:
3844         * lyxtext.h:
3845         * text3.C: remove toggleSelection()
3846
3847 2003-08-12  Michael Schmitt  <michael.schmitt@teststep.org>
3848
3849         * bufferlist.C: beautify two alerts (shorter text of buttons)
3850         * buffer.C: Remove redundant ' ' from message
3851         * tabular.h:
3852         * tabular.C: rename LYX_VALIGN_CENTER" to LYX_VALIGN_MIDDLE";
3853         rename M_VALIGN_CENTER to M_VALIGN_MIDDLE;
3854         rename VALIGN_CENTER to VALIGN_MIDDLE
3855
3856 2003-08-11  André Pönitz  <poenitz@gmx.net>
3857
3858         * lyxtext.h (getPar):
3859         * text.C: new function
3860
3861 2003-08-11  André Pönitz  <poenitz@gmx.net>
3862
3863         * Makefile.am:
3864         * tracer.[Ch]: remove unneeded files
3865
3866         * InsetList.[Ch]: remove resizeInsetsLyXText()
3867
3868         * lyxtext.h:
3869         * text.C:
3870         * text2.C:
3871         * text3.C: merge insertParagraphs() and appendParagraph()
3872         remove breakAgain(), update()
3873
3874         * BufferView_pimpl.[Ch]:
3875         * bufferview_funcs.[Ch]:
3876         * lyxfunc.C:
3877         * paragraph.[Ch]:
3878         * rowpainter.C:
3879         * tabular.C: adjust after text & InsetList changes.
3880
3881 2003-08-08  André Pönitz  <poenitz@gmx.net>
3882
3883         * text.C (insertChar, backspace): replace rowlist fiddling
3884         with rebreak of full par
3885
3886         * lyxtext.h:
3887         * text.C (breakAgainOneRow, redoHeightOfParagraph,
3888         checkParagraph, updateInset): removed
3889
3890 2003-08-07  André Pönitz  <poenitz@gmx.net>
3891
3892         * paragraph.C:
3893         * text3.C: merge some LFUN handlers, remove dead code
3894
3895 2003-08-06  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3896
3897         * .cvsignore: add lyx-xforms, lyx-qt, version.C-tmp and stamp-version
3898
3899 2003-08-05  Alfredo Braunstein  <abraunst@libero.it>
3900
3901         * text2.C (DEPM): fix part of bug 1255 and 1256
3902
3903 2003-08-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3904
3905         * BufferView_pimpl.C (workAreaDispatch): change to use
3906         LyXView::dispatch instead of BufferView::Pimpl::dispatch for lfuns
3907         that are no mouse related.
3908
3909 2003-08-05  André Pönitz  <poenitz@gmx.net>
3910
3911         * BufferView.[Ch]:
3912         * BufferView_pimpl.[Ch]:
3913         * bufferview_funcs.C:
3914         * text2.C:
3915         * text3.C: rip out "deep update"
3916
3917         * textcursor.[Ch] (last_sel_cursor): remove unused member
3918
3919 2003-08-04  André Pönitz  <poenitz@gmx.net>
3920
3921         * BufferView.[Ch]:
3922         * BufferView_pimpl.[Ch]:
3923         * ParagraphParameters.C:
3924         * bufferview_funcs.C:
3925         * lyx_cb.C:
3926         * lyxfind.C:
3927         * lyxfunc.C:
3928         * text.C:
3929         * text2.C:
3930         * text3.C: replace "complicated" BufferView::update(...) calls with
3931         simpler ones.
3932
3933         * BufferView.[Ch]: remove now unneeded BufferView::UpdateCodes
3934
3935 2003-08-02  Kayvan Sylvan  <kayvan@sylvan.com>
3936
3937         * Makefile.am (lyx_SOURCES): add paper.h
3938
3939 2003-08-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3940
3941         * Makefile.am: move things around so that both lyx-qt and
3942         lyx-xforms can be built (according to --with-frontend). Then lyx
3943         is a symbolic link to lyx-[firstfrontend]
3944
3945 2003-08-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
3946
3947         * Always use std::endl with lyxerr
3948
3949 2003-08-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
3950
3951         * BufferView_pimpl.C: _Always_ use std::endl with lyxerr
3952
3953 2003-08-01  André Pönitz  <poenitz@gmx.net>
3954
3955         * BufferView.[Ch]:
3956         * BufferView_pimpl.[Ch]:
3957         * lyxfunc.C:
3958         * text3.C: merge BufferView::repaint() and BufferView::update()
3959
3960 2003-08-01  José Matos  <jamatos@lyx.org>
3961
3962         * buffer.[Ch]: file_format is no longer a buffer data element.
3963
3964 2003-08-01  André Pönitz  <poenitz@gmx.net>
3965
3966         * BufferView.C:
3967         * lyxtext.h:
3968         * text.C:
3969         * text2.C: make redoParagraph more independent of current cursor
3970
3971         * lyxtext.h (need_update, needUpdate, postPaint, clearPaint):
3972         * text.C:
3973         * text2.C: remove unneeded members
3974
3975 2003-07-30  André Pönitz  <poenitz@gmx.net>
3976
3977         * paragraph.[Ch] (copyIntoMinibuffer): removed unused function
3978
3979         * paragraph.[Ch] (cutIntoMinibuffer, insertFromMinibuffer):
3980           create a single function...
3981
3982         * paragraph_funcs.C (moveItem): ... here.
3983
3984         * text.C:
3985           lyxtext.h (LyXText::workWidth(InsetOld*)) remove. unused.
3986
3987 2003-07-30  Martin Vermeer  <martin.vermeer@hut.fi>
3988
3989         * LColor.[Ch]: Add comment and greyedout logical colors.
3990
3991 2003-07-30  André Pönitz  <poenitz@gmx.net>
3992
3993         * tabular.C: don't use Assert too heavily. This crashes where it
3994           shouldn't
3995
3996 2003-07-30  Alfredo Braunstein  <abraunst@libero.it>
3997
3998         * lyxfunc.C (dispatch): do not mark the buffer dirty if the action
3999         is disabled (bug 1232)
4000
4001 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
4002
4003         * factory.C: limited 'arg' scope
4004
4005 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
4006
4007         * factory.C: fixed Note submenu issues
4008
4009 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
4010
4011         * factory.C: submenu for Note/Comment/Greyedout
4012
4013 2003-07-29  Alfredo Braunstein  <abraunst@libero.it>
4014
4015         * lyx_main.C (LyX):
4016         * BufferView_pimpl.C (loadLyXFile): fix to bugs 1287 and 1297 + ws
4017
4018 2003-07-29  Martin Vermeer  <martin.vermeer@hut.fi>
4019
4020         * LaTeXFeatures.C:
4021         * lyx_sty.[Ch]:h: Implement a newenvironment in preamble for
4022         greyedout. Patch provided by Jürgen Spitzmüller.
4023
4024 2003-07-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4025
4026         * kbmap.C (read): fix error message when reading bind files
4027
4028 2003-07-29  Angus Leeming  <leeming@lyx.org>
4029
4030         * BufferView.[Ch] (ChangeCitationsIfUnique): This function most
4031         certainly does not do what it purports to do. I am doing it, and
4032         us, a favour by killing it.
4033
4034 2003-07-28  José Matos  <jamatos@lyx.org>
4035
4036         * buffer.C (readBody, do_writeFile):
4037         * paragraph.C(readParagraph): \end_document replaces \the_end.
4038
4039 2003-07-29  André Pönitz  <poenitz@gmx.net>
4040
4041         * BufferView.[Ch]:
4042         * BufferView_pimpl.[Ch]:
4043         * lyxfunc.C:
4044         * text2.C:
4045         * text3.C:
4046         * textcursor.[Ch]: remove toggleToggle & Co
4047
4048 2003-07-28  José Matos  <jamatos@fep.up.pt>
4049
4050         * buffer.C (readParagraph):
4051         * params_func (readParToken, readParagraph):
4052         * paragraph.C (write): \layout -> \begin_layout.
4053
4054 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
4055
4056         * lyxlex_pimpl.C (setFile): clean up slightly.
4057
4058         * bufferparams.h: add compressed var
4059
4060         * buffer_funcs.C (readFile): adjust for LyXLex change
4061         (newFile): ditto + simplify
4062
4063         * buffer.C (writeFile): handle writing of compressed files
4064
4065         * buffer.[Ch] (readFile): begin LyXLex here, remove one argument.
4066         Check if the file is compressed and set a bufferparm if so.
4067
4068         * Makefile.am (lyx_LDADD): remove explicit -lz
4069
4070 2003-07-28  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4071
4072         * buffer.C (do_writeFile, makeLaTeXFile, makeLinuxDocFile,
4073         makeDocBookFile): put the real LyX version in the first line of
4074         the file
4075
4076         * version.h:
4077         * version.C.in: remove lyx_docversion
4078
4079         * tabular.C (write_attribute): add a template-based version to
4080         write enums properly
4081
4082 2003-07-28  André Pönitz  <poenitz@gmx.net>
4083
4084         * lyxtext.h:
4085         * text.C:
4086         * text2.C:
4087         * text3.C: use doubles again for x-coordinates. They are needed.
4088
4089 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
4090
4091         * messages.C (getLocaleDir): use lyx_localedir()
4092
4093         * lyxlex_pimpl.C (setFile): compress stuff
4094
4095         * buffer.C (writeFile): add some compression stuff
4096         (do_writeFile): new func, dont call expliti close... will this
4097         breake anything?
4098
4099         * Makefile.am (lyx_LDADD): add -lz
4100
4101 2003-07-28  José Matos  <jamatos@fep.up.pt>
4102
4103         * buffer.C: increment file format.
4104         * paragraph_funcs (readParagraph, readParToken):
4105         * paragraph.C (readParagraph): add \end_layout.
4106
4107 2003-07-27  Angus Leeming  <leeming@lyx.org>
4108
4109         * Makefile.am: remove special casing for configure-time setting of
4110         LYX_DIR, TOP_SRCDIR and LOCALEDIR.
4111
4112         * lyx_main.C (init): remove all Jean-Marc's magic setting of
4113         system_lyxdir, build_lyxdir and user_lyxdir into the support lib.
4114
4115 2003-07-26  André Pönitz  <poenitz@gmx.net>
4116
4117         * paragraph_func.[Ch]:
4118         * paragraph.C (realizeFont): inline it whereever it is used
4119
4120         * rowpainter.C:
4121         * text.C:
4122         * text2.C:
4123         * text3.C: remove Buffer * parameter from a bunch of get*Font functions
4124
4125
4126 2003-07-26  André Pönitz  <poenitz@gmx.net>
4127
4128         *       lyxtext.h:
4129         * text.C:
4130         * text2.C: get rid of LyXText::need_break_row
4131
4132 2003-07-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
4133
4134         * toc.[Ch]: put namespace toc inside namespace lyx
4135
4136         * MenuBackend.C (expandToc2): adjust for lyx::toc
4137         (expandToc): ditto
4138
4139         * lyxfunc.C (dispatch): adjust for lyx::find
4140
4141         * lyxfind.[hC]: get rid of namespace lyxfind introduce namespace
4142         lyx::find instead. Reorganize a bit.
4143         (LyXReplace): rename to replace
4144         (LyXFind): rename to find
4145
4146         * BufferView_pimpl.C (trackChanges): adjust for lyx::find
4147         (dispatch): ditto
4148
4149 2003-07-26  André Pönitz  <poenitz@gmx.net>
4150
4151         * text.C (setHeightOfRow): restrict scope of temporary variable
4152
4153         * paragraph_funcs.C (readParToken): remove USE_CAPTION  compatibility
4154           code (never has been used?)
4155
4156 2003-07-27  Asger Alstrup  <alstrup@local>
4157
4158         * text.C (fill): Optimise algorithm to exploit that we can reuse
4159         the LyXFont for many characters.
4160         (setHeightOfRow): Same thing.
4161         (rowBreakPoint): Same thing.
4162
4163 2003-07-26  Asger Alstrup  <alstrup@local>
4164
4165         * text2.C (metrics): change a brain-dead algorithm to a smarter one.
4166
4167         * text.C (singleWidth): Spurious font copying in hot-spot
4168         singleWidth avoided. Reorder tests for arabic for efficiency.
4169
4170         * text.C (fill): handle empty paragraphs better.
4171
4172 2003-07-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4173
4174         * ispell.C:
4175         * encoding.h: add includes
4176
4177         * lyxrc.C: remove reading of bind files
4178
4179         * lyx_main.C (init): setup bindings and menus only if we have a
4180         gui.
4181
4182         * kbmap.C (read): new method. Do the actual reading of bind
4183         files.
4184
4185         * converter.C (dvipdfm_options):
4186         * bufferparams.C:
4187         * lyxrc.C (read):
4188         (output): adapt PAPER_* enums.
4189
4190         * lyxrc.h: include paper.h instead of bufferparams.h (mucho lighter)
4191
4192         * bufferparams.h: remove paper-related enums from there
4193
4194         * paper.h: New file. A trivial header file to hold paper-related
4195         enums. It should later expand to contain many paper-related
4196         horrors access.
4197
4198         * lyxrc.C: declare extern displayTranslator
4199
4200 2003-07-27  José Matos  <jamatos@fep.up.pt>
4201
4202         * tabular.[Ch] (linuxdoc): add support for tables and figures
4203         (linuxdoc).
4204
4205 2003-07-27  José Matos  <jamatos@fep.up.pt>
4206
4207         * buffer.[Ch] (makeLaTeXFile): changed name of arguments for
4208         consistency in both functions.
4209         * bufferlist.C (updateIncludedTeXfiles): change client to comply.
4210
4211 2003-07-26  Asger Alstrup  <alstrup@local>
4212
4213         * rowpainter.C (paintRows): Change algorithm to work directly on
4214         the insets rather than asking every character in the document
4215         whether its an inset.
4216
4217 2003-07.26  Alfredo Braunstein  <abraunst@libero.it>
4218
4219         * buffer.C (openFileWrite): factorize some code
4220
4221 2003-07-26  Angus Leeming  <leeming@lyx.org>
4222
4223         * lyx_cb.C:
4224         * lyx_main.[Ch]: replace occurances of system_tempdir with
4225         os::getTmpDir().
4226
4227 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
4228
4229         * rename Inset to InsetOld
4230
4231 2003-07-25  Asger Alstrup  <alstrup@diku.dk>
4232
4233         * undo_funcs.h: Removed setCursorParUndo to simplify things a bit.
4234         Renamed setUndo family to recordUndo. Renamed FINISH to ATOMIC
4235         which I think is a bit clearer. EDIT is gone, since it was
4236         premature optimisation, and broken for mathed anyway.
4237         * undo_funcs.C (performUndoOrRedo): Cleaned up and made it work
4238         with cursor positioning in insets as well (math insets still do not
4239         work, but that's a different story anyway.) It mysteriously
4240         crashes sometimes with undo in the first paragraph, but I'm fairly
4241         confident that this is a compiler bug.
4242
4243 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
4244
4245         * paragraph.C (Paragraph): adjust for new clone return type
4246         (operator==): ditto
4247         (copyIntoMinibuffer): ditto
4248
4249 2003-07-25  Asger Alstrup  <alstrup@lyx.org>
4250
4251         * undo_funcs.C (textHandleUndo): Fix undo crash in first paragraph
4252         by not having a special case, and always doing a full rebreak of
4253         the document after undo.
4254
4255 2003-07-23  Angus Leeming  <leeming@lyx.org>
4256
4257         * factory.C (createInset): InsetExternal::setParams now takes a
4258         Buffer const * arg.
4259
4260 2003-07-23  Angus Leeming  <leeming@lyx.org>
4261
4262         * factory.C (createInset): changed interface to the external and
4263         graphics mailers' string2params functions.
4264
4265 2003-07-23  Angus Leeming  <leeming@lyx.org>
4266
4267         * factory.C (createInset): pass a
4268         Buffer const * parameter to InsetExternalMailer's string2params.
4269
4270 2003-07-22  John Levon  <levon@movementarian.org>
4271
4272         * Thesaurus.h: include the right aiksaurus header
4273
4274 2003-07-21  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4275
4276         * MenuBackend.C (expand): check menu shortcuts unconditionally
4277
4278 2003-07-21  Angus Leeming  <leeming@lyx.org>
4279
4280         * factory.C (createInset): pass a
4281         buffer_path parameter to InsetGraphicsMailer's string2params.
4282
4283 2003-07-21  Angus Leeming  <leeming@lyx.org>
4284
4285         * BufferView_pimpl.C (buffer):
4286         * buffer.C (d-tor):
4287         * lyx_main.C (LyX):
4288         * lyxfunc.C (dispatch):
4289         * lyxrc.C (setDefaults, read, output): use namespace lyx::graphics
4290         rather than the grfx shortcut.
4291
4292 2003-07-21  André Pönitz  <poenitz@gmx.net>
4293
4294         * rowpainter.C: remove unused variables
4295
4296         * tabular_funcs.C:
4297         * tabular_funcs.h: move to tabular.C
4298         * Makefile.am: adjust
4299
4300         * tabular.[Ch]: basic optical cleaning
4301
4302         * author.h: pass references, not values
4303
4304 2003-07-18  André Pönitz  <poenitz@gmx.net>
4305
4306         * lyxtext.h:
4307         * metricsinfo.C:
4308         * metricsinfo.h:
4309         * rowpainter.C:
4310         * text.C:
4311         * text2.C:
4312         * text3.C: two-phase drawing for InsetText and InsetTabular
4313         some float -> int changes.
4314
4315 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
4316
4317         * lyx_main.C: fix the fix
4318
4319 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
4320
4321         * lyx_main.C: fix a crash in batch mode if no files specified
4322         * converter.C: ws
4323
4324 2003-07-17  Alfredo Braunstein  <abraunst@libero.it>
4325
4326         * format.[Ch] (papersize): moved to BufferParams
4327         * converter.[Ch] (dvips_options): moved to BufferParams
4328         (dvipdfm_options): moved to anon namespace
4329         * bufferparams.[Ch]: added above functions.
4330
4331 2003-07-17  André Pönitz  <poenitz@gmx.net>
4332
4333         * lyxtext.h:
4334         * rowpainter.C:
4335         * text2.C: don't call inset->update() anymore
4336
4337         * metricsinfo.[Ch]: add convenience constructor
4338
4339 2003-07-16  André Pönitz  <poenitz@gmx.net>
4340
4341         * lyxcursor.[Ch]:
4342         * lyxfunc.[Ch]:
4343         * text.C:
4344         * text2.C: replace the LyXCursor::irow_ member with
4345          on-demand computation of the value
4346
4347 2003-07-16  John Levon  <levon@movementarian.org>
4348
4349         * lyxfunc.C: support LFUN_INSET_SETTINGS for Note
4350
4351 2003-07-15  André Pönitz  <poenitz@gmx.net>
4352
4353         * text.C:
4354         * text2.C: remove no more needed refresh_row
4355
4356 2003-07-15  André Pönitz  <poenitz@gmx.net>
4357
4358         * lyxtext.h:
4359         * rowpainter.C:
4360         * text2.C:
4361         * text3.C: refresh_status tristate -> need_update bool
4362
4363 2003-07-15  Alfredo Braunstein  <abraunst@libero.it>
4364
4365         * lyxtext.h (init): remove reinit argument (act as if always true)
4366         * text2.C: adjust to that
4367
4368 2003-07-14  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
4369
4370         * bufferview_funcs.[Ch]: introduce function replaceSelection()
4371         * text3.C: use it to delete selections in some cases
4372         (bugs 441, 673, 702, 954).
4373
4374 2003-07-14  André Pönitz  <poenitz@gmx.net>
4375
4376         * rowpainter.[Ch]: reduce interface
4377
4378 2003-07-14  André Pönitz  <poenitz@gmx.net>
4379
4380         * BufferView_pimpl.C:
4381         * text2.C: adjust after removing unused BufferView * argument
4382
4383 2003-07-14  Alfredo Braunstein  <abraunst@libero.it>
4384
4385         * text2.C (init): fix a crash fired on resize
4386
4387 2003-07-11  Alfredo Braunstein  <abraunst@libero.it>
4388
4389         * buffer.[Ch]: added new closing signal
4390         * BufferView_pimpl.[Ch]: connect/disconnect to new signal
4391         * lyxfunc.C: removed BufferView::buffer(0) call now handled in
4392         BufferView::Pimpl via the closing the signal
4393
4394 2003-07-10  Alfredo Braunstein  <abraunst@libero.it>
4395
4396         * buffer.[Ch]: take out all bv-related from buffer
4397         * BufferView.C:
4398         * BufferView_pimpl.[Ch]: connect to new signals
4399         * CutAndPaste.C: removed useless asserts
4400         * bufferview_funcs.[Ch] (resizeInsets): moved from buffer
4401         * lyxvc.[Ch]:
4402         * vc-backend.[Ch]:
4403         * lyxfunc.C: moved view-related funciontality from vc here
4404         * paragraph.C: removed outdated comments
4405         * text.C: ws
4406
4407 2003-07-10  André Pönitz  <poenitz@gmx.net>
4408
4409         * BufferView_pimpl.C:
4410         * tabular.h:
4411         * tabular_funcs.C:
4412         * text.C:
4413         * text2.C: remove InsetText::InnerCache, clean up consequences
4414
4415 2003-07-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
4416
4417         * ispell.C: fix two typos in error messages
4418
4419 2003-07-08  Martin Vermeer  <martin.vermeer@hut.fi>
4420
4421         * Extend Note inset to other forms of annotation like Comment
4422         and Greyedout. Right button click gives dialog.
4423
4424         Files modified or added (+):
4425
4426         * insetnote.[Ch]
4427         * FormNote.[Ch]      +
4428         * ControlNote.[Ch]   +
4429         * form_note.fd       +
4430         * Makefile.am in frontends/xforms, frontends/xforms/forms,
4431         frontends/controllers
4432         * xforms/Dialogs.C
4433         * factory.C
4434
4435 2003-07-01  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
4436
4437         * aspell.C: add missing namespace lyx::support
4438
4439 2003-07-07  Alfredo Braunstein  <abraunst@libero.it>
4440
4441         * BufferView.[Ch] (newFile): Add
4442         * BufferView_pimpl.[Ch] (newFile, connectBuffer, disconnectBuffer): Add
4443         * LaTeX.[Ch] (message): added this signal and use it
4444         * buffer.[Ch] (busy, message): added these signals and use them
4445         * buffer_funcs.[Ch]: rename parseErrors to bufferErrors
4446         * converter.C:
4447         * exporter.C:
4448         * format.C:
4449         * importer.C: use buffer signals instead of direct bv calling
4450         * lyx_cb.[Ch] (ShowMessage): removed
4451         * lyx_main.C:
4452         * lyxfunc.C:
4453         * paragraph_funcs.C:
4454         * text2.C: use buffer signals
4455
4456 2003-07-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
4457
4458         * introduce namespace lyx::graphics
4459
4460 2003-07-02  André Pönitz  <poenitz@gmx.net>
4461
4462         * BufferView_pimpl.C (workAreaDispatch): tell the FuncRequest who we are
4463
4464 2003-07-01  André Pönitz  <poenitz@gmx.net>
4465
4466         * text.C:
4467         * text2.C:
4468         * text3.C:
4469         * text_funcs.[Ch]:
4470         * textcursor.h:
4471         * lyxtext.h: shuffle pure paragraph/cursor related cursor movement from
4472           text*.C to text_func.C
4473
4474 2003-07-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4475
4476         * introduce namespace lyx::support
4477
4478 2003-06-30  André Pönitz  <poenitz@gmx.net>
4479
4480         * Chktex.C:
4481         * funcrequest.C:
4482         * lyxtext.h:
4483         * text.C: re-enable --with-included-string
4484
4485 2003-06-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
4486
4487         * textcursor.C: add <config.h>
4488
4489         * text.C (getWord): remove const from word_location arg
4490
4491         * lyxvc.C (getLogFile): fix const type order
4492
4493         * lyxtext.h: remove const from word_location arg, add arg name
4494
4495         * lyxlayout.h: currect type on labeltype.
4496
4497         * importer.C: correct \file
4498
4499         * converter.C (intToFormat): use std:: on ret val, ws changes
4500
4501         * bufferlist.h: correct \file
4502
4503         * buffer.C (makeLinuxDocFile): fix const type order
4504         (makeDocBookFile): ditto
4505         (fillWithBibKeys): use std:: on stdlib args.
4506
4507         * CutAndPaste.C: fix authors.
4508         (availableSelections): use std:: on return vector
4509
4510 2003-06-27  André Pönitz  <poenitz@gmx.net>
4511
4512         * BufferView_pimpl.C:
4513         * bufferview_funcs.C:
4514         * lyxcursor.C:
4515         * lyxcursor.h:
4516         * lyxfunc.C:
4517         * lyxtext.h:
4518         * rowpainter.C:
4519         * text.C:
4520         * text2.C:
4521         * text3.C: remove LyXCursor::row_ member
4522
4523         * lyxtext.h:
4524         * text.C: rename fullRebreak() to partialRebreak() and implement
4525           a fullRebreak() that really bereks fully
4526
4527         * textcursor.h: new struct for cursor-related data
4528
4529 2003-06-26  Alfredo Braunstein  <abraunst@lyx.org>
4530
4531         * lyx_main.C (LyX): get full path of document loaded on the
4532         command line
4533
4534 2003-06-26  André Pönitz  <poenitz@gmx.net>
4535
4536         * lyxcursor.[Ch]: move rarely used operator==,!= out of line
4537           remove unused/broken operator>,<,>=.
4538
4539         *       text.C: remove only use of broken operator<= in an Assert().
4540
4541 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
4542
4543         * BufferView.[Ch] (getErrorList): removed unneeded forward declare,
4544         moved errorlist_.clear to showErrorList
4545
4546 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
4547
4548         * converter.C (scanLog, runLaTeX):
4549         * buffer.C (makeLinuxDocFile, makeDocBookFile, runChkTeX):
4550         move the bv->showErrorList call to the callers
4551         * lyxfunc.C: i.e. here...
4552         * text2.C: and here
4553         * BufferView.[Ch] (setErrorList, resetErrorList): both removed
4554         * exporter.[Ch] (Backends, BufferFormat): the first was moved to anon
4555         namespace, the second to...
4556         * buffer_funcs (BufferFormat, parseErrors): added
4557         * errorlist.C (ErrorList(TeXErrors const &)): removed
4558
4559 2003-06-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4560
4561         * ToolbarBackend.C (getIcon): complain when icon cannot be found
4562
4563 2003-06-24  "Garst R. Reese" <reese@isn.net>
4564
4565         * debug.C: fix typo
4566
4567 2003-06-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4568
4569         * lyx_main.C (init): honor LYX_DIR_14x and LYX_USERDIR_14x
4570
4571         * version.C.in: change docversion to 1.4
4572
4573 2003-06-22  Alfredo Braunstein  <abraunst@libero.it>
4574
4575         * buffer.C: fix a bug just introduced
4576
4577 2003-06-21  Alfredo Braunstein  <abraunst@libero.it>
4578
4579         * buffer.[Ch]: added the parseError signal and use it, removed
4580         sgmlError
4581         * BufferView.[Ch] (addError): moved to ...
4582         * BufferView_pimpl.[Ch] (addError, loadLyXFile): ... here. Attach
4583         to the Buffer::parseError signal to catch (guess what) parse errors
4584         * lyx_main.[Ch] (printError,LyX): added gui-less parsing error feedback
4585
4586 2003-06-19  Alfredo Braunstein  <abraunst@libero.it>
4587
4588         * bufferlist.[Ch] (loadLyXFile, readFile, newFile): removed the
4589         ability to create a buffer and to return an existing one from
4590         the list. Moved these functions to...
4591         * buffer_funcs.[Ch]: added
4592         * BufferView.[Ch] (loadLyXFile): added
4593         * BufferView_pimpl.[Ch] (loadLyXFile): Added. Does the guessing
4594         job removed from bufferlist::loadLyXFile.
4595         * buffer.C (setReadOnly): make it work without view
4596         (i.e added an if (users))
4597
4598 2003-06-19  Angus Leeming  <leeming@lyx.org>
4599
4600         * lfuns.h:
4601         * LyXAction.C (init):
4602         * lyxfunc.C (getStatus, dispatch): remove 14 LFUNs, replacing them
4603         with LFUN_DIALOG_SHOW <name> <data>.
4604
4605 2003-06-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4606
4607         * CutAndPaste.C (availableSelections): small compilation fix for
4608         ancient (gcc 2.9x) compilers
4609
4610 2003-06-18  Lars Gullik Bjønnes  <larsbj@gullik.net>
4611
4612         * text3.C (cursorNext): add tmp var
4613
4614         * text2.C (updateCounters): for function calling out of for clause
4615         (replaceSelectionWithString): ditto
4616         (insertStringAsParagraphs): ditto
4617         (getColumnNearX): add tmp var
4618         (setCursorFromCoordinates): add tmp var
4619         (cursorDownParagraph): add tmp var
4620         (deleteEmptyParagraphMechanism): add tmp var
4621
4622         * text.C (insertChar): add tmp var
4623
4624         * rowpainter.C (paintDepthBar): add tmp var
4625
4626         * CutAndPaste.C (availableSelections): potentially check all
4627         paragraphs in a cut to fill the shown strings.
4628
4629 2003-06-18  André Pönitz  <poenitz@gmx.net>
4630
4631         * kbmap.[Ch]: use vector<> instead of list<>
4632
4633 2003-06-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
4634
4635         * text3.C (dispatch): handle arg to LFUN_PASTE, call
4636         pasteSelection with index
4637
4638         * text2.C (pasteSelection): modify, call pasteSelection with index
4639
4640         * paragraph.C (asString): reimplement version with no interval to
4641         call the one with interval.
4642
4643         * lyxtext.h: add index arg to pasteSelection
4644
4645         * MenuBackend.C (MenuItem): handle PasteRecent
4646         (Menu::read::Menutags): add md_pasterecent
4647         (read): handle it
4648         (expandPasteRecent): new function
4649         (expand): use it
4650
4651         * MenuBackend.h: add PasteRecent to MenuItem::Kind
4652
4653         * CutAndPaste.C: get rid of some stale comments. Add typdefe for
4654         the limited stack
4655         (availableSelections): new function
4656
4657 2003-06-17  Angus Leeming  <leeming@lyx.org>
4658
4659         * lyxfunc.C (dispatch): s/showMathPanel/show("mathpanel")/
4660
4661 2003-06-17  Angus Leeming  <leeming@lyx.org>
4662
4663         * lfuns.h:
4664         * LyXAction.C (init): new LFUN_DIALOG_SHOW.
4665
4666         * lyxfunc.C (dispatch): invoke it.
4667
4668 2003-06-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4669
4670         * iterators.C (operator++, ParPosition): reintroduce some
4671         const_cast for the benefit of older compilers.
4672
4673 2003-06-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4674
4675         * text3.C (dispatch): do not modify clipboard when doing
4676         LFUN_BACKSPACE, LFUN_BACKSPACE_SKIP, LFUN_DELETE or
4677         LFUN_DELETE_SKIP on a selection selection
4678
4679 2003-06-16  André Pönitz  <poenitz@gmx.net>
4680
4681         * BufferView.C:
4682         * buffer.C:
4683         * buffer.h:
4684         * paragraph.C:
4685         * tabular.[Ch]: IU of clone() and getLabelList();
4686
4687 2003-06-13  André Pönitz  <poenitz@gmx.net>
4688
4689         * tabular.h: compactification
4690
4691 2003-06-12  André Pönitz  <poenitz@gmx.net>
4692
4693         * tabular.C:
4694         * tabular.h:
4695         * tabular_funcs.h: some renaming plus whitespace
4696
4697 2003-06-12  André Pönitz  <poenitz@gmx.net>
4698
4699         * BufferView.C:
4700         * BufferView_pimpl.C:
4701         * CutAndPaste.C:
4702         * buffer.C:
4703         * iterators.[Ch]:
4704         * lyxfunc.C:
4705         * text.C:
4706         * toc.C: Return a Paragraph & for ParIterator::operator*()
4707
4708 2003-06-11  John Levon  <levon@movementarian.org>
4709
4710         * lyx_main.C:
4711         * ToolbarBackend.h:
4712         * ToolbarBackend.C: add "Toolbars" section and
4713         put the flags there
4714
4715 2003-06-10  Angus Leeming  <leeming@lyx.org>
4716
4717         * lfuns.h:
4718         * LyXAction.C (init): new LFUN_EXTERNAL_EDIT.
4719
4720         * lyxfunc.C (dispatch): invoke it.
4721
4722 2003-06-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
4723
4724         * main.C: protect <ios> with HAVE_IOS
4725         (main): protect sync_with_stdio with HAVE_IOS
4726
4727 2003-06-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
4728
4729         * text2.C (cutSelection): adjust
4730         (pasteSelection): adjust
4731
4732         * messages.C: handle get of empty string
4733
4734         * main.C (main): use sync_with_stdio(false)
4735
4736         * lyxfunc.C (dispatch): adjust
4737
4738         * lyx_cb.[Ch] (MenuWrite): remove unneeded BufferView arg
4739         (WriteAs): remove unneeded BufferView arg.
4740
4741         * bufferparams.h: use correct types on papersize, papersize2 and
4742         paperpackage.
4743
4744         * bufferparams.C (readToken): adjust for type
4745         (writeLaTeX): add missing cases to switch.
4746
4747         * bufferlist.C (quitWriteBuffer): adjust
4748         (close): adjust
4749
4750         * buffer.C (asciiParagraph): remove some commented code.
4751
4752         * CutAndPaste.C: remove current_view extern variable.
4753         (cutSelection): add BufferParams arg.
4754         (eraseSelection): add BufferParams arg.
4755         (pasteSelection): add Buffer const & arg
4756
4757 2003-06-07  John Levon  <levon@movementarian.org>
4758
4759         * buffer.C:
4760         * paragraph_funcs.C:
4761         * paragraph_pimpl.C:
4762         * text.C:
4763         * text2.C:
4764         * paragraph.h:
4765         * paragraph.C: allow InsetERT to freely space lines,
4766         and some consolidation of code
4767
4768 2003-06-06  José Matos  <jamatos@fep.up.pt>
4769
4770         * buffer.C (makeDocBookFile): fix bug #821
4771
4772 2003-06-06  Alfredo Braunstein  <abraunst@libero.it>
4773
4774         * BufferView_pimpl.C (dispatch): use Dialogs::visible
4775
4776 2003-06-04  Angus Leeming  <leeming@lyx.org>
4777
4778         * buffer.C: bump format to 224.
4779
4780 2003-06-05  André Pönitz  <poenitz@gmx.net>
4781
4782         * text2.C (redoParagraphs): remove two const_cast<>
4783
4784 2003-06-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
4785
4786         * ParagraphList.h: remove last remnants of NO_STD_LIST
4787
4788 2003-06-03  Angus Leeming  <leeming@lyx.org>
4789
4790         * factory.C (createInset): small change to the way InsetExternal's params
4791         are set.
4792
4793 2003-06-04  André Pönitz  <poenitz@gmx.net>
4794
4795         * buffer.h: use Undo directly instead of shared_ptr<Undo>
4796
4797         * paragraph_pimpl.h:
4798         * paragraph.[Ch]: some Inset -> UpdatableInset changes
4799
4800         * undo.[Ch]: use ParagraphList instead of vector<Paragraph>
4801
4802         * undo_funcs.C: make some simple cases of undo work again
4803
4804 2003-06-03  John Levon  <levon@movementarian.org>
4805
4806         * ispell.C: HPUX doesn't have sys/select.h
4807         (from Albert Chin)
4808
4809 2003-06-03  John Levon  <levon@movementarian.org>
4810
4811         * CutAndPaste.C: update tabular and include inset
4812         buffer references
4813
4814         * buffer.h:
4815         * paragraph.h:
4816         * paragraph.C: remove owningBuffer(), don't pass Buffer
4817         to clone()
4818
4819         * factory.C: insetGraphicsParams changed
4820
4821 2003-06-02  John Levon  <levon@movementarian.org>
4822
4823         * LyXAction.C:
4824         * factory.C:
4825         * lfuns.h:
4826         * lyxfunc.C:
4827         * text3.C: remove insetparent
4828
4829 2003-06-02  John Levon  <levon@movementarian.org>
4830
4831         * buffer.h:
4832         * buffer.C: fix inset_iterator.end(), move out of line
4833         (bug 1149)
4834
4835 2003-06-01  John Levon  <levon@movementarian.org>
4836
4837         * text3.C: use a proper cut/paste when doing inset
4838         insert (from Jürgen Spitzmüller)
4839
4840 2003-06-01  John Levon  <levon@movementarian.org>
4841
4842         * factory.C: accept "\bibtex" not "\BibTeX" (bug 1018)
4843
4844 2003-05-30  André Pönitz  <poenitz@gmx.net>
4845
4846         * rowpainter.C: unify second drawing phase
4847
4848 2003-05-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
4849
4850         * trans_mgr.C: remove one case of current_view
4851
4852         * text2.C (cursorBottom): delete NO_STD_LIST stuff
4853
4854         * paragraph_funcs.h: remove paragraph.h include
4855
4856         * paragraph.h: delete NO_STD_LIST stuff
4857
4858         * paragraph.C (Paragraph): delete NO_STD_LIST stuff
4859
4860         * buffer.h: remove paragraph.h include
4861
4862         * ParagraphList.C: delete file
4863
4864         * Makefile.am (lyx_SOURCES): remove ParagraphList.C
4865
4866         * toc.C (getTocList): adjust
4867
4868         * paragraph_pimpl.C (validate): adjust
4869
4870         * paragraph_funcs.C (optArgInset): use const_iterator, adjust
4871
4872         * paragraph.C (Paragraph): adjust
4873         (getPositionOfInset): use const_iterator, adjust
4874         (bibitem): use const_iterator, adjust
4875         (setInsetOwner): adjust
4876
4877         * iterators.C (operator++): adjust
4878
4879         * InsetList.[Ch]: Replace selfmade iterator with standard
4880         vector::iterator also introduce const_iterator. Remove getPos,
4881         getInset and setInset from InsetTable. Adjust accordingly.
4882
4883         * BufferView.C (lockInset): adjust
4884         (ChangeInsets): adjust
4885
4886         * tabular.[Ch]: delete commented same_id functions
4887
4888 2003-05-28  John Levon  <levon@movementarian.org>
4889
4890         * lyxfunc.C: fix LFUN_ESCAPE (bug 1055)
4891
4892 2003-05-28  André Pönitz  <poenitz@gmx.net>
4893
4894         * metricsinfo.[Ch]: remove 'fullredraw' member
4895
4896 2003-05-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
4897
4898         * lyxtextclass.C (operator): remove caching.
4899
4900 2003-05-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
4901
4902         * text3.C: adjust
4903
4904         * text2.C (cursorBottom): adjust
4905         (setCounter): use ParagraphList::find, adjust
4906
4907         * text.C (workWidth): use ParagraphList::find, adjust
4908
4909         * lyxcursor.C (LyXCursor): adjust
4910
4911         * buffer.C (inset_iterator): adjust
4912
4913         * ParagraphList.h: make iterator(value_type) private, make
4914         ParagraphList a friend of iterator.
4915
4916         * ParagraphList.C (find): new function
4917
4918         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
4919
4920 2003-05-27  André Pönitz  <poenitz@gmx.net>
4921
4922         * dimension.[Ch]: a -> asc, d -> des, w -> wid
4923
4924 2003-05-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4925
4926         * lyxfont.C (latexWriteStartChanges): fix character count for \noun
4927
4928 2003-05-26  John Levon  <levon@movementarian.org>
4929
4930         * LyXAction.C: LFUN_ESCAPE should be ReadOnly
4931
4932 2003-05-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
4933
4934         * remove same_id from function signatures, adjust.
4935
4936 2003-05-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
4937
4938         * undo_funcs.C (createUndo): use the id functions directly, adjust.
4939
4940         * paragraph_pimpl.C (Pimpl): get rid of same_ids parameter
4941
4942         * paragraph.C (Paragraph): get rid of same_ids parameter
4943
4944         * ParagraphList.C (insert): adjust
4945         (push_back): adjust
4946
4947 2003-05-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
4948
4949         * paragraph_funcs.C (breakParagraph): adjust
4950         (breakParagraphConservative): adjust
4951
4952         * buffer.C (readParagraph): adjust
4953
4954         * ParagraphList.C (insert): take a reference instead of a pointer
4955         (insert): adjust
4956
4957         * paragraph.[Ch] (id): new function
4958
4959         * bufferlist.C (newFile): adjust
4960
4961         * ParagraphList.C (ParagraphList): adjust
4962         (assign): adjust
4963         (push_back): take a reference instead of a pointer.
4964
4965         * paragraph.h: add NO_STD_LIST define, remove NO_NEXT define.
4966
4967         * paragraph.C: remove all NO_NEXT node add some NO_STD_LIST parts
4968         instead.
4969
4970         * ParagraphList.h: degenerate to std::list if NO_STD_LIST is not
4971         set else use old code.
4972
4973         * ParagraphList.C: remove all NO_NEXT code and only compile this
4974         code of NO_STD_LIST is set.
4975
4976 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
4977
4978         * BufferView_pimpl.C:
4979         * TextCache.C:
4980         * TextCache.h:
4981         * bufferlist.C:
4982         * errorlist.h:
4983         * format.C:
4984         * format.h:
4985         * graph.C:
4986         * lyxfunc.C:
4987         * lyxrc.C:
4988         * graphics/GraphicsConverter.C:
4989         * graphics/PreviewLoader.C: header adjustment
4990
4991 2003-05-23  Angus Leeming  <leeming@lyx.org>
4992
4993         * LaTeXFeatures.[Ch] (useBabel): new method.
4994         * bufferparams.C (writeLaTeX): use it.
4995
4996 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
4997
4998         * ParagraphList.h (set): remove unused function.
4999
5000 2003-05-23  André Pönitz  <poenitz@gmx.net>
5001
5002         * BufferView.C:
5003         * BufferView_pimpl.C:
5004         * buffer.C:
5005         * buffer.h:
5006         * lyxfunc.C:
5007         * undo_funcs.C: setUndo reworked
5008
5009         * iterators.[Ch]: add access to topmost ParagraphList
5010
5011         * lyxtext.[Ch] (workWidth): add a const
5012
5013 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
5014
5015         * texrow.[Ch] (increasePos): remove function
5016         * exporter.C (export): removed unused var and outdated comment
5017
5018 2003-05-23  Angus Leeming  <leeming@lyx.org>
5019
5020         * latexrunparams.h: rename fragile as moving_arg.
5021         * paragraph.C (simpleTeXOnePar): ditto.
5022         * paragraph_pimpl.C (simpleTeXSpecialChars): ditto.
5023
5024 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
5025
5026         * undo_funcs.C (textHandleUndo): comment out next/previous stuff
5027         (createUndo): ditto
5028         (textUndoOrRedo): comment out a currently unused var.
5029
5030         * paragraph.h (NO_NEXT): enable NO_NEXT
5031
5032         * lyxfunc.C (dispatch): remove LFUN_REMOVEERRORS
5033
5034         * lfuns.h: remove LFUN_REMOVEERRORS and adjust lfun numbers.
5035
5036         * exporter.C (Export): adjust for removeAutoInsets removal.
5037
5038         * buffer.C (runChktex): adjust for removeAutoInsets removal.
5039
5040         * LyXAction.C (init): remove LFUN_REMOVEERRORS
5041
5042         * BufferView.[Ch] (removeAutoInsets): delete function
5043
5044 2003-05-22  Angus Leeming  <leeming@lyx.org>
5045
5046         * latexrunparams.h: add a free_spacing variable.
5047
5048         * paragraph.[Ch] (simpleTeXOnePar): further fragile clean-up; no need
5049         to pass moving_arg, as the data is stored in runparams.fragile.
5050
5051         * paragraph_funcs.C (TeXOnePar): no longer pass free_spacing arg
5052         to Inset::latexOptional or to simpleTeXOnePar.
5053
5054         * paragraph_pimpl.C (simpleTeXSpecialChars): no longer pass
5055         free_spacing arg to Inset::latexOptional.
5056
5057         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
5058         free_spacing arg.
5059
5060 2003-05-22  Angus Leeming  <leeming@lyx.org>
5061
5062         * latexrunparams.h: add fragile and use_babel variables.
5063
5064         * bufferparams.[Ch] (writeLaTeX): return use_babel.
5065         * buffer.C (makeLaTeXFile): store this returned value in
5066         runparams.use_babel, thus passing it to the inset::latex methods.
5067
5068         * paragraph.C (simpleTeXOnePar): no need to pass 'moving_arg' to
5069         simpleTeXSpecialChars as it is now stored in runparams.fragile.
5070
5071         * paragraph_funcs.[Ch] (TeXOnePar, latexParagraphs): TeXOnePar no
5072         longer has a fragile arg, as it is stored in runparams.fragile.
5073
5074         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars): no longer has a
5075         moving_arg parameter as the data is stored in runparams.fragile.
5076
5077         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
5078         a fragile parameter as the data is stored in runparams.fragile.
5079
5080 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
5081
5082         * paragraph.C (Paragraph): initialize next_par_ and prev_par_
5083
5084 2003-05-22  Angus Leeming  <leeming@lyx.org>
5085
5086         * latexrunparams.h: add a 'bool nice' which defaults to false.
5087
5088         * buffer.[Ch] (makeLaTeXFile): remove the nice parameter as it is
5089         now encapsulated within runparams.
5090
5091         * bufferlist.C (updateIncludedTeXfiles):
5092         * exporter.C (Export): ensuing change to the calls to makeLaTeXFile.
5093
5094 2003-05-22  Angus Leeming  <leeming@lyx.org>
5095
5096         * latexrunparams.h: new file containing struct LatexRunParams.
5097         * Makefile.am: add new file.
5098
5099         * LaTeX.[Ch] (c-tor, run):
5100         * buffer.[Ch] (makeLaTeXFile):
5101         * bufferlist.[Ch] (updateIncludedTeXfiles):
5102         * converter.C (convert, scanLog):
5103         * converter.[Ch] (runLaTeX):
5104         * exporter.C (Export):
5105         * paragraph.[Ch] (simpleTeXOnePar):
5106         * paragraph_funcs.C (TeXEnvironment, TeXOnePar, TeXDeeper):
5107         * paragraph_funcs.[Ch] (latexParagraphs):
5108         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars):
5109         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow, latex):
5110         pass around a LatexRunParams parameter.
5111
5112 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
5113
5114         * paragraph.[Ch]: remove unused constructor
5115
5116         * ParagraphList.C (erase): new function, taking two iterators
5117
5118 2003-05-22  André Pönitz  <poenitz@gmx.net>
5119
5120         * undo_funcs.C: remove duplicated code
5121
5122         * iterator.[Ch]: operator=
5123
5124 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
5125
5126         * tabular.C (SetMultiColumn): ws changes
5127
5128         * rowpainter.C (paintFirst): get rid of a ->previous
5129
5130         * lyx_cb.C (getPossibleLabel): parlist simplification
5131
5132         * BufferView.C (ChangeInsets): simplify slightly.
5133
5134 2003-05-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
5135
5136         * LyXAction.C: new lfun space-insert, kill protected-space-insert
5137         * lfuns.h: new LFUN_SPACE
5138         * lyxfunc.C: protected space has a new lfun
5139         * paragraph_funcs.C: read new space insets
5140         * text3.C:
5141         * factory.C: handle new space insets
5142
5143 2003-05-22  André Pönitz  <poenitz@gmx.net>
5144
5145         * BufferView.C:
5146         * BufferView_pimpl.C:
5147         * buffer.[Ch]:
5148         * lyxfunc.C:
5149         * undo_funcs.C: return a ParIterator from getParFromID.
5150
5151         * iterators.[Ch]: add two const's
5152
5153 2003-05-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
5154
5155         * toc.C (getTocList): adjust
5156
5157         * iterators.[Ch]: rework for parlist
5158
5159         * buffer.C (par_iterator_begin): adjust
5160         (par_iterator_end): adjust
5161
5162         * CutAndPaste.C (SwitchLayoutsBetweenClasses): adjust
5163
5164         * BufferView.C (removeAutoInsets): adjust
5165         (ChangeInsets): adjust
5166
5167 2003-05-21  Alfredo Braunstein  <abraunst@libero.it>
5168
5169         * text.C (top_y): fix bug 1110
5170
5171 2003-05-08  Alfredo Braunstein  <abraunst@libero.it>
5172
5173         * errorlist.[Ch]: added
5174         * buffer.C:
5175         * BufferView.[Ch]:
5176         * BufferView_pimpl.C:
5177         * CutAndPaste.[Ch]: get rid of InsetError users, use ErrorList
5178         instead
5179
5180 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
5181
5182         * Makefile.am: ensure that lyx is relinked upon changes to the
5183         various "convenience" libs.
5184
5185 2003-05-20  Angus Leeming  <leeming@lyx.org>
5186
5187         * Makefile.am (lyx_SOURCES): move format.[Ch] and graph.[Ch] so that
5188         files are compiled in alphabetical order again.
5189
5190         * gettext.h: #ifndef _GETTEXT_H_ -> #ifndef GETTEXT_H.
5191
5192 2003-05-19  Angus Leeming  <leeming@lyx.org>
5193
5194         * gettext.[Ch]: remove "char const * _(char const *)".
5195
5196 2003-05-19  André Pönitz  <poenitz@gmx.net>
5197
5198         * dimension.[Ch]: promote from mathed/dimension.[Ch]
5199
5200         * Makefile.am:
5201         * BufferView.C:
5202         * DepTable.h:
5203         * LaTeXFeatures.C:
5204         * buffer.C:
5205         * lyxfont.C:
5206         * lyxlex.h:
5207         * paragraph_funcs.C: dimensions() instead of ascend/descend/width
5208
5209 2003-05-19  André Pönitz  <poenitz@gmx.net>
5210
5211         * buffer.C:
5212         * lyxlayout.[Ch]:
5213         * lyxtextclass.[Ch]:
5214         * paragraph.C:
5215         * paragraph_funcs.[Ch]:
5216         * text2.C:
5217         * text3.C: more insetenv work
5218
5219 2003-05-16  Alfredo Braunstein  <abraunst@libero.it>
5220
5221         * ParagraphParameters.C (params2string): small bug fixed
5222
5223 2003-05-16  André Pönitz  <poenitz@gmx.net>
5224
5225         * debug.C:
5226         * bufferview_funcs.C: patch from Kornel Benko to prevent
5227           crash when _(...) is called twice in a statement
5228
5229 2003-05-16  André Pönitz  <poenitz@gmx.net>
5230
5231         * BufferView.C:
5232         * lyxfunc.C:
5233         * text.C:
5234         * text2.C:
5235         * text3.C:
5236         * undo_funcs.C: edit() -> LFUN_INSET_EDIT
5237
5238 2003-05-14  Alfredo Braunstein  <abraunst@libero.it>
5239
5240         * lyx_main.C (init): remove spurious static_cast
5241
5242 2003-05-14  André Pönitz  <poenitz@gmx.net>
5243
5244         * BufferView.C: fix format string
5245
5246 2003-05-12  Alfredo Braunstein  <abraunst@libero.it>
5247
5248         * BufferView.[Ch] (insertErrors): removed
5249         * BufferView.[Ch] (showErrorList): added
5250         * buffer.C (runChkTeX):
5251         * converter.C (scanLog): call showErrorList instead of inserterrors
5252
5253 2003-05-13  André Pönitz  <poenitz@gmx.net>
5254
5255         * BufferView_pimpl.C:
5256         * buffer.C:
5257         * bufferview_func.C:
5258         * MenuBackend.C:
5259         * lyxfunc.C:
5260         * lyxrc.C:
5261         * tex-accent.C:
5262         * text3.C:
5263         * toc.C:
5264         * tabular_funcs.h: tostr() from its own header
5265
5266         * ParagraphParameters.C:
5267         * ToolbarBackend.C:
5268         * bufferparams.C:
5269         * format.C:
5270         * lyxlex_pimpl.C:
5271         * text3.C: STRCONV()
5272
5273 2003-05-12  André Pönitz  <poenitz@gmx.net>
5274
5275         * BufferView.C:
5276         * BufferView_pimpl.C:
5277         * CutAndPaste.C:
5278         * LaTeX.C:
5279         * LaTeXFeatures.C:
5280         * ParagraphParameters.C:
5281         * buffer.C:
5282         * bufferlist.C:
5283         * bufferparams.C:
5284         * bufferview_funcs.C:
5285         * converter.C:
5286         * counters.C:
5287         * debug.C:
5288         * exporter.C:
5289         * format.C:
5290         * importer.C:
5291         * lyx_cb.C:
5292         * lyx_main.C:
5293         * lyxfont.C:
5294         * lyxfunc.C:
5295         * lyxvc.C:
5296         * paragraph.C:
5297         * paragraph_funcs.C:
5298         * tabular.C:
5299         * tabular_funcs.C:
5300         * text2.C:
5301         * text3.C:  boost::format -> bformat  all over the place
5302
5303
5304 2003-05-09  André Pönitz  <poenitz@gmx.net>
5305
5306         * LColor.[Ch]: Pimpl the #include <map> away
5307
5308 2003-05-09  John Levon  <levon@movementarian.org>
5309
5310         * bufferlist.C: never remove emergency saves
5311
5312 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
5313
5314         * Makefile.am: better lib building
5315
5316 2003-05-07  Lars Gullik Bjønnes  <larsbj@gullik.net>
5317
5318         * texrow.[Ch]: remove dependency on Paragraph and just store a id
5319         instead.
5320         * paragraph_pimpl.C (simpleTeXBlanks): adjust
5321         (simpleTeXSpecialChars): adjust
5322         (simpleTeXSpecialChars): adjust
5323         * paragraph.C (simpleTeXOnePar): adjust
5324         * buffer.C (makeLaTeXFile): adjust
5325
5326         * Makefile.am (BOOST_LIBS): allow boost as system lib.
5327
5328         * text2.C (changeDepth): parlist cleanup
5329         (getColumnNearX): ditto
5330
5331         * rowpainter.C (getLabelFont): parlist cleanup
5332
5333         * bufferlist.C (newFile): parlist cleanup
5334
5335         * CutAndPaste.C (eraseSelection): parlist cleanup
5336
5337         * BufferView_pimpl.C (trackChanges): parlist cleanup
5338         (dispatch): ditto
5339
5340         * BufferView.C (lockInset): parlist cleanup.
5341         (ChangeInsets): ditto
5342
5343 2003-05-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
5344
5345         * CutAndPaste.h: Update file header.
5346
5347         * CutAndPaste.C: Update file header.
5348         Store the parts cut out of the Document in a limited_stack.
5349         (copySelection): adjust
5350         (pasteSelection): new function, takes the index in the limited stack.
5351         (nrOfParagraphs): adjust
5352         (SwitchLayoutsBetweenClasses): Change to take a ParagraphList&,
5353         simplify error inset insertion.
5354         (checkPastePossible): adjust
5355
5356 2003-05-06  John Levon  <levon@movementarian.org>
5357
5358         * text2.C: don't cast wrap inset to float
5359
5360 2003-05-05  André Pönitz  <poenitz@gmx.net>
5361
5362         * iterator.C:
5363         * undo_funcs.C: use getParagraphs() instead of getFirstParagraph()
5364
5365         * buffer.[Ch]: new function hasParWithId() to help to get rid of a
5366           few naked Paragraph *.
5367
5368 2003-05-02  Michael Schmitt  <michael.schmitt@teststep.org>
5369
5370         * bufferparams.C: Output warning if a document with missing
5371         TeX document class is loaded
5372         * exporter.C: Disable TeX exports if the document class is missing
5373         * lyxtextclass.C:
5374         * lyxtextclass.h:
5375         * lyxtextclasslist.C: Handle new textclass.lst format; new method
5376         isTeXClassAvailable()
5377
5378 2003-05-03  John Levon  <levon@movementarian.org>
5379
5380         * BufferView.h:
5381         * BufferView.C: remove showLockedInsetCursor(), showCursor(),
5382         explicit cursor show/hide
5383
5384         * BufferView_pimpl.h:
5385         * BufferView_pimpl.C: hide cursor before dispatching. Show cursor
5386         after a cursor move lfun. Simplify cursorToggle(). Remove show/hideCursor().
5387
5388         * lyxfunc.C: hide cursor before dispatching.
5389
5390         * lyx_cb.C:
5391         * lyxfind.C:
5392         * text.C:
5393         * text3.C: remove explicit cursor hides
5394
5395 2003-05-02  André Pönitz  <poenitz@gmx.net>
5396
5397         * buffer.[Ch]: two instances of Paragraph * -> ParagraphList::iterator
5398
5399         * undo_funcs.C:
5400         * undo.[Ch]: rely on std::vector<Paragraph *> instead of manually
5401           linked lists
5402
5403         * text2.C: tiny whitespace
5404
5405 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
5406
5407         * undo_funcs.C: almost only ws changes.
5408
5409         * ParagraphList.C (splice): just return if pl is empty.
5410
5411 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
5412
5413         * ParagraphList.C (splice): new function.
5414
5415         * CutAndPaste.C (pasteSelection): use it
5416
5417 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5418
5419         * CutAndPaste.C (pasteSelection): remove the last next and
5420         previous from this file.
5421
5422 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5423
5424         * CutAndPaste.C (pasteSelection): more clean up, user proper
5425         ParagraphList functions for pasteing.
5426
5427         * ParagraphList.C (insert): new function, three arg insert
5428
5429 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5430
5431         * ParagraphList.C (insert): new function, three arg insert
5432
5433         * CutAndPaste.C (pasteSelection): work on the simple_cut_clone,
5434         not on paragraphs.
5435
5436 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5437
5438         * CutAndPaste.C (pasteSelection): copy paragraphlist the nice way.
5439
5440 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5441
5442         * CutAndPaste.C (pasteSelection): remove some unneeded code.
5443
5444 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5445
5446         * CutAndPaste.C (resetOwnerAndChanges): new helper functor
5447         (copySelection): clean up a bit.
5448         (pasteSelection): use make_pair
5449
5450         * ParagraphList.C (ParagraphList): implement copy constructor
5451         (operator=): implement, base on copy constructor.
5452         (assign): new func
5453
5454         * paragraph.C (erase): return a bool
5455
5456         * paragraph_pimpl.C (erasePos): remove function, move contents...
5457         (erase): ... here. Return a bool.
5458         (erase): call erase instead of erasePos.
5459
5460 2003-04-30  Alfredo Braunstein  <abraunst@libero.it>
5461
5462         * ParagraphList.h: define PitPosPair
5463         * CutAndPaste.C (copySelection, pasteSelection): big rework, use
5464         ParagraphList, fix a bug on pasting multiple pars
5465         * text2.C: change interface to C&P
5466
5467 2003-04-30  André Pönitz  <poenitz@gmx.net>
5468
5469         * undo_func.C: revert part of yesterday's patch 2
5470
5471 2003-04-30  John Levon  <levon@movementarian.org>
5472
5473         * LColor.C: s/tabular/table/
5474
5475 2003-04-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
5476
5477         * text3.C (dispatch): do not convert iterator -> pointer
5478         * undo_funcs.C (setCursorParUndo): ditto
5479         * text_funcs.C (transposeChars): ditto
5480
5481         * text2.C (setLayout): ws changes only
5482
5483         * text.C (breakParagraph): do not convert iterator -> pointer
5484         (insertChar): ditto
5485         (acceptChange): ditto
5486         (rejectChange): ditto
5487         (changeCase): ditto
5488         (Delete): ditto
5489         (backspace): ditto
5490
5491         * BufferView.C (lockedInsetStoreUndo): do not convert iterator ->
5492         pointer
5493
5494 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
5495
5496         * text3.C (gotoInset): YABG (yet another bad getChar)
5497
5498 2003-04-29  André Pönitz  <poenitz@gmx.net>
5499
5500         * paragraph.h: make operator= private unimplemented as long as
5501           it is unusable
5502
5503         * ParagraphList.C: whitespace
5504
5505         * paragraph.[Ch]:
5506         * paragraph_pimpl.[Ch]:
5507         * paragraph_funcs.C:
5508         * CutAndPaste.C:
5509         * undo_funcs.C: whitespace + Paragraph *  -> Paragraph (const) &
5510
5511         * text2.C:
5512           undo_funcs.[Ch]: Paragraph * -> ParagraphList::iterator
5513
5514 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
5515
5516         * CutAndPaste.[Ch] (cutSelection): big rework, some bugs fixed
5517         * paragraph.[Ch] (erase):
5518         * paragraph_pimpl.[Ch] (erase): change return type and value
5519         * text2.C (cutSelection): some rework
5520
5521 2003-04-28  John Levon  <levon@movementarian.org>
5522
5523         * bufferlist.C: changes for unsaved changes dialog
5524
5525 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
5526
5527         * bufferlist.C (newFile): set language (messages_) for new
5528         documents also.
5529
5530         * buffer.C (readFile): ws changes only.
5531
5532 2003-04-28  André Pönitz  <poenitz@gmx.net>
5533
5534         * undo_funcs.C:
5535         * lyxfunc.C:
5536         * buffer.[Ch]:
5537         * BufferView_pimpl.C:
5538         * BufferView.C: getParFromID related ParagraphList::iterator changes
5539
5540 2003-04-28  André Pönitz  <poenitz@gmx.net>
5541
5542         * tabular.[Ch]: part of Lars' Paragraph * -> ParagraphList::iterator
5543           Changes
5544
5545 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
5546
5547         * messages.C: remove one more localedir class variable.
5548
5549 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
5550
5551         * messages.C (getLocaleDir): singleton generation function
5552         (Pimpl): use it.
5553         (Messages): add a default constructor.
5554
5555         * main.C (main): do not setup localedir here, do not call
5556         gettext_init.
5557
5558         * gettext.C (_): use it.
5559         (gettext_init): delete funciton
5560
5561 2003-04-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
5562
5563         * gettext.C (getLyXMessages): new singleton generating function.
5564
5565         * buffer.C (updateDocLang): adjust
5566
5567         * Makefile.am (messages.o): add target
5568         (main.o): remove target
5569
5570 2003-04-27  John Levon  <levon@movementarian.org>
5571
5572         * bufferlist.C:
5573         * lyx_cb.C:
5574         * lyxfunc.C:
5575         * lyxvc.C: specify cancel button in Alert::prompt
5576
5577 2003-04-26  John Levon  <levon@movementarian.org>
5578
5579         * text3.C:
5580         * lyxfunc.C:
5581         * lfuns.h:
5582         * LyXAction.C: add LFUN_INSET_SETTINGS
5583
5584         * lyxfunc.C: don't enable tabular-feature when there's
5585         just any locking inset
5586
5587 2003-04-26  John Levon  <levon@movementarian.org>
5588
5589         * bufferlist.C: re-add Cancel to buffer close question
5590
5591         * lyxfunc.C: fix import UI a bit
5592
5593 2003-04-25  John Levon  <levon@movementarian.org>
5594
5595         * gettext.C: remove the broken asserts for now
5596
5597 2003-04-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
5598
5599         * messages.C: make case where setlocale cannot comply work better.
5600
5601         * buffer.C (updateDocLang): new function
5602         (changeLanguage): use it
5603         (readFile): use it
5604
5605         * text2.C (setCounter): use B_ a bit.
5606
5607         * lyxlayout.C (Read): be sure to trim the label strings.
5608
5609         * messages.C (Messages): fix typo in comment
5610
5611         * buffer.C (readFile): set message_ after file is loaded.
5612         (makeDocBookFile): remove double return
5613         (changeLanguage): reset message_ upon language change.
5614         (B_): new func, use this to get translated buffer strings.
5615
5616         * main.C: add myself and Jean Marc as authors.
5617
5618 2003-04-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
5619
5620         * messages.[hC]: pimplify Messages, and three different pimpls to be
5621         used in different circumstances.
5622
5623         * gettext.[Ch]: change for use with new message code.
5624
5625 2003-04-24 André Pönitz <poenitz@gmx.net>
5626
5627         * factory.C: support for eqref
5628
5629 2003-04-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
5630
5631         * messages.[Ch]: add missing char
5632
5633         * Makefile.am (lyx_SOURCES): add messages.[Ch]
5634
5635         * messages.[Ch]: New files
5636
5637 2003-04-18  John Levon  <levon@movementarian.org>
5638
5639         * BufferView.h:
5640         * BufferView.C:
5641         * BufferView_pimpl.C:
5642         * lfuns.h:
5643         * LyXAction.C:
5644         * lyxtext.h:
5645         * text2.C: remove layout-copy/paste (bug 778)
5646
5647 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
5648
5649         * text2.C (redoParagraphs): eliminate good_prevrit, rewrite a loop
5650
5651 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
5652
5653         * bufferlist.C (quitWriteBuffer): WriteAs and MenuWrite return true
5654         if they succeed. Act accordingly.
5655
5656 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
5657
5658         * text2.C (setCharFont): adjust
5659         (setCounter): adjust
5660         (insertStringAsLines): adjust
5661
5662         * text.C (leftMargin): adjust
5663         (setHeightOfRow): adjust
5664
5665         * rowpainter.C (paintFirst): adjust
5666         (paintLast): adjust
5667
5668         * paragraph_funcs.C (depthHook): ParagraphList::iterators
5669         (outerHook): ditto
5670         (isFirstInSequence): ditto
5671         (getEndLabel): ditto
5672         (outerFont): adjust
5673
5674         * paragraph.C (getParLanguage): comment out some hard stuff.
5675
5676         * buffer.C (insertStringAsLines): take a ParagraphList as arg
5677         (sgmlError): ditto
5678         (simpleDocBookOnePar): ditto
5679         (makeDocBookFile): use ParagraphList::iterator
5680
5681         * CutAndPaste.C (pasteSelection): adjust
5682
5683 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
5684
5685         * text2.C (getFont): adjust
5686         (getLayoutFont): adjust
5687         (getLabelFont): adjust
5688
5689         * paragraph_funcs.C (TeXOnePar): adjust
5690
5691         * buffer.C (simpleLinuxDocOnePar): adjust
5692         (simpleDocBookOnePar): adjust
5693
5694         * CutAndPaste.C (pasteSelection): adjust
5695
5696         * BufferView.C (getEncoding): adjust
5697
5698         * paragraph_funcs.C (outerFont): prepare for a ParagraphList arg.
5699
5700 2003-04-16  John Levon  <levon@movementarian.org>
5701
5702         * lyxfind.C: use parlist stuff for search/changes
5703
5704 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
5705
5706         * undo_funcs.C (textHandleUndo): ajust (rather big adsjust this one)
5707
5708         * text2.C (deleteEmptyParagraphMechanism): adjust
5709
5710         * text2.[Ch] (ownerParagraph): delete func (both of them
5711
5712 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5713
5714         * text_funcs.C (transposeChars): use ParagraphList::iterator here.
5715
5716 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5717
5718         * ParagraphList.C: prepare for NO_NEXT
5719
5720 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5721
5722         * text2.C (getFont): adjust
5723         (getLayoutFont): adjust
5724         (getLabelFont): adjust
5725
5726         * paragraph.C (getFont): adjust
5727         (getLabelFont): adjust
5728         (getLayoutFont): adjust
5729
5730         * paragraph_funcs.[Ch] (realizeFont): remove unneeded arguments.
5731
5732 2003-04-15  John Levon  <levon@movementarian.org>
5733
5734         From Angus Leeming
5735
5736         * lyx_main.C: handle Include in .ui files
5737
5738 2003-04-15  John Levon  <levon@movementarian.org>
5739
5740         * MenuBackend.C: make the doc files length shorter
5741
5742         * ToolbarBackend.h:
5743         * ToolbarBackend.C: handle toolbar placement flags,
5744         Minibuffer
5745
5746 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5747
5748         * paragraph_pimpl.C (simpleTeXSpecialChars): take a outerfont arg,
5749         adjust
5750
5751         * paragraph_funcs.C (TeXOnePar): adjust
5752
5753         * paragraph.C (getLabelFont): add outerfont arg, adjust
5754         (getLayoutFont): ditto
5755         (simpleTeXOnePar): adjust
5756
5757         * paragraph_pimpl.C (realizeFont): delete func
5758
5759 2003-04-14  Alfredo Braunstein  <abraunst@libero.it>
5760
5761         * text2.C (beforeFullRowInset): added a bad getchar check, removed
5762         row argument, constify cur argument.
5763
5764 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5765
5766         * text2.C (getFont): adjust
5767         (getLayoutFont): adjust
5768         (getLabelFont): adjust
5769
5770         * paragraph_funcs.C (TeXOnePar): adjust
5771         (outerFont): new func...
5772         (realizeFont): ...moved out from here, changed this to facilitate
5773         transition
5774
5775         * paragraph.C (getFont): take outerfont as arg, adjust
5776         (simpleTeXOnePar): add outerfont arg, adjust
5777
5778         * buffer.C (simpleLinuxDocOnePar): adjust
5779         (simpleDocBookOnePar): adjust
5780
5781         * CutAndPaste.C (pasteSelection): adjust
5782
5783         * BufferView.C (getEncoding): adjust
5784
5785 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
5786
5787         * text2.C (setCharFont): adjust
5788         (setCounter): adjust
5789
5790         * text.C (leftMargin): adjust
5791         (setHeightOfRow): adjust
5792
5793         * rowpainter.C (paintFirst): adjust
5794         (paintLast): adjust
5795
5796         * paragraph_pimpl.C (realizeFont): adjust
5797
5798         * paragraph.C (isFirstInSequence): move from here...
5799         * paragraph_funcs.C (isFirstInSequence): ...to here
5800
5801         * paragraph.C (outerHook): move from here...
5802         * paragraph_funcs.C (outerHook): ...to here
5803
5804         * paragraph.C (depthHook): move from here...
5805         * paragraph_funcs.C (depthHook): ...to here
5806
5807         * paragraph.C (getEndLabel): move from here...
5808         * paragraph_funcs.C (getEndLabel): ...to here
5809
5810         * text2.C (realizeFont): move from here...
5811         * paragraph_funcs.C (realizeFont): ...to here
5812
5813 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
5814
5815         * text3.C (gotoNextInset): use separate tmp vars for par and pos.
5816
5817 2003-04-14  Angus Leeming  <leeming@lyx.org>
5818
5819         * LColor.[Ch]: scrap LColor mathcursor.
5820
5821 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
5822
5823         * lyxlex.[Ch] (text): delete function
5824         * trans.C (Load): adjust
5825         * paragraph_funcs.C (readParToken): adjust
5826
5827 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
5828
5829         * lyxlex_pimpl.h: get rid of LEX_MAX_BUFF, change buff to be a
5830         vector<char> instead of a char[].
5831
5832         * lyxlex_pimpl.C (getString): adjust
5833         (next): adjust
5834         (lex): use getString
5835         (eatLine): adjust
5836         (nextToken): adjust
5837
5838         * lyxlex.C (text): use pimpl_->getString()
5839         (getBool): ditto
5840         (findToken): ditto
5841
5842 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
5843
5844         * text2.C (getInset): temp vars for cursor.par() and cursor.pos()
5845         (makeFontEntriesLayoutSpecific): temp var for par.size()
5846         (setLayout): temp var for ownerParagraphs().end()
5847         (fullRebreak): temp var for rows().end()
5848         (selectionAsString): temp var for boost::next(startpit), realize
5849         that the while really is a regular for loop.
5850         (cursorEnd): temp vars for cursor.row(), lastPos ++, only call
5851         setCursor in one place.
5852         (setParagraph): temp vr for ownerParagraphs().end()
5853         (updateCounters): make the while loop a for loop
5854         (cutSelection): temp var for ownerParagraphs().end()
5855         (updateInset): make the do {} while() a regular for loop
5856         (getCursorX): use temp vars
5857         (setCurrentFont): use temp vars
5858         (getColumnNearX): use temp vars
5859
5860 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
5861
5862         * text.C (transformChar): use temp var for getChar
5863         (computeBidiTables): use temp var for row->par()
5864         (fill): move temp vars for row->par() and pit->layout() earlier in
5865         the function.
5866         (labelFill): use temp var for row->par()
5867         (setHeightOfRow): do not allow rit to be RowList::end, get rid of
5868         asc and desc, realize that pit never changes and that firstpit is
5869         just a duplicate and not needed. Exchange rit->par() with pit in a
5870         lot of places.
5871         (breakAgain): use a temp var for boost::next(rit)
5872         (breakAgainOneRow): ditto
5873         (breakParagraph): use a temp var for rows().begin()
5874         (prepareToPrint): move nlh into minimal scope, use temp var for rit->par()
5875         (cursorRightOneWord): use temp var for cursor.par() and
5876         cursor.pos(), remove usage of tmpcursor.
5877         (cursorLeftOneWord): use temp var for cursor.par() and
5878         cursor.pos() only set cur at end of function.
5879
5880 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
5881
5882         * text.C, text2.C: exchange all usage of Paragraph::next with
5883         boost::next(ParagraphList::iterator)
5884
5885         * CutAndPaste.C (cutSelection): change 2. arg to a Paragraph*
5886
5887         * text2.C (cursorTop): simplify implementation
5888         (cursorBottom): ditto
5889         (setParagraph): use ParagraphList::iterator
5890         (setCurrentFont): adjust
5891         (getColumnNearX): adjust
5892         (cursorRight): adjust
5893         (cursorLeft): remove usage of Paragraph::previous
5894         (cursorUpParagraph): ditto
5895         (deleteEmptyParagraphMechanism): slight cleanup
5896
5897         * text.C (isBoundary): take a Paragraph const & instead of a
5898         pointer as arg.
5899         (addressBreakPoint): ditto
5900         (leftMargin): remove usage of Paragraph::previous.
5901         (setHeightOfRow): ditto
5902         (cursorLeftOneWord): ditto
5903         (selectNextWordToSpellcheck): ditto
5904         (Delete): ditto
5905         (backspace): ditto
5906         (breakParagraph): remove one usage of Paragraph::next
5907         (redoParagraph): ditto
5908         (acceptChange): ditto
5909         (insertChar): adjust
5910         (rowBreakPoint): adjust
5911
5912         * bufferview_funcs.C (toggleAndShow): adjust
5913
5914 2003-04-11  Alfredo Braunstein  <abraunst@libero.it>
5915
5916         * lyxrow.[Ch]: add a cached y position to a Row and Row::y()
5917         methods to access it.
5918         * lyxtext.h:
5919         * text.C: Added updateRowPositions to compute all row positions.
5920         Make top_y and getRowNearY() to use the cached y position
5921
5922 2003-04-11  John Levon  <levon@movementarian.org>
5923
5924         * text.C (rowBreakPoint): reintroduce the labelEnd
5925         checks, code copied from the row fill stuff. Deep voodoo.
5926
5927         * text.C (fill): add a comment and debugging for the
5928         next poor soul.
5929
5930 2003-04-11  John Levon  <levon@movementarian.org>
5931
5932         * text.C: make sure fullrow insets get wrapped to the next line,
5933         even when they're in a manual label
5934
5935 2003-04-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
5936
5937         * text2.C (insertParagraph): make it take ParagraphList::iterator
5938         as arg.
5939         (setLayout): make it return ParagraphList::iterator
5940         (redoParagraphs): ditto
5941         (setCounter): ditto
5942         (checkParagraph): ditto
5943
5944         * text.C (getRow): make getrow take ParagraphList::iterator as arg
5945
5946         * text2.C: adjust several funcs.
5947         (realizeFont): take a ParagraphList::iterator as arg.
5948         (getLayoutFont): ditto
5949         (getLabelFont): ditto
5950         (setCharFont): ditto
5951
5952         * text.C: adjust several funcs.
5953
5954 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
5955
5956         * text.C (selectNextWordToSpellcheck): don't accidentally
5957         skip insets
5958
5959 2003-04-10  John Levon  <levon@movementarian.org>
5960
5961         * ToolbarBackend.C (getIcon): special handling for
5962         LFUN_MATH_DELIM
5963
5964 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
5965
5966         * text2.C (cursorRight): a getChar assert fixed
5967
5968 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
5969
5970         * text2.C (getFont): change to take a ParagraphList::iterator
5971         instead of Paragraph*
5972         Adjust several functions.
5973
5974         * text.C (transformChar): change to take a ParagraphList::iterator
5975         instead of Paragraph*
5976         (singleWidth): ditto
5977         Adjust several functions.
5978
5979         * rowpainter.C: adjust several functions
5980         * rowpainter.h:store a ParagraphList::iterator and not a
5981         Paragraph&.
5982
5983
5984 2003-04-09  John Levon  <levon@movementarian.org>
5985
5986         * lyxfunc.C:
5987         * lfuns.h:
5988         * LyXAction.h:
5989         * LyXAction.C: remove LFUN_APROPOS, LFUN_GETTIP,
5990         and the "help" bits as well
5991
5992 2003-04-09  John Levon  <levon@movementarian.org>
5993
5994         * ToolbarBackend.h:
5995         * ToolbarBackend.C: allow multiple toolbars
5996
5997 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
5998
5999         * undo_funcs.C (setCursorParUndo): adjust
6000
6001         * text_funcs.C (transposeChars): adjust
6002
6003         * text3.C (gotoNextInset): adjust
6004         (dispatch): adjust
6005
6006         * text2.C (setLayout): adjust
6007         (changeDepth): adjust
6008         (setFont): adjust
6009         (redoParagraphs): adjust
6010         (selectionAsString): adjust
6011         (setParagraph): adjust
6012         (insertInset): adjust
6013         (cutSelection): adjust
6014         (copySelection): adjust
6015         (pasteSelection): adjust
6016         (insertStringAsLines): adjust
6017         (updateInset): adjust
6018         (setCursor): change to take a ParagraphList::iterator parameter
6019         (setCursorIntern): change to take a ParagraphList::iterator parameter
6020         (setCurrentFont): adjust
6021         (cursorLeft): adjust
6022         (cursorRight): adjust
6023         (deleteEmptyParagraphMechanism): adjust
6024
6025         * text.C (breakParagraph): adjust
6026         (insertChar): adjust
6027         (acceptChange): adjust
6028         (rejectChange): adjust
6029         (selectNextWordToSpellcheck): adjust
6030         (changeCase): adjust
6031         (Delete): adjust
6032         (backspace): adjust
6033
6034         * lyxfind.C (SearchForward): adjust
6035         (SearchBackward): adjust
6036         (nextChange): adjust
6037
6038         * lyxcursor.C (par): adjust
6039
6040         * lyxcursor.h: store a ParagraphList::iterator instead of a
6041         Paragraph*
6042
6043         * lyx_cb.C (getPossibleLabel): adjust
6044
6045         * bufferview_funcs.C (toggleAndShow): adjust
6046
6047         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
6048         (dispatch): adjust
6049
6050         * BufferView.C (removeAutoInsets): adjust
6051         (lockedInsetStoreUndo): adjust
6052
6053 2003-04-09  John Levon  <levon@movementarian.org>
6054
6055         * ToolbarBackend.C: try icon without argument
6056         if with argument fails
6057
6058 2003-04-08  John Levon  <levon@movementarian.org>
6059
6060         * ToolbarBackend.h:
6061         * ToolbarBackend.C: add getIcon(), handle tooltip,
6062         and change from "Icon" to "Item".
6063
6064 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
6065
6066         * BufferView.C (lockInset): another bad getchar crunched
6067
6068 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
6069
6070         * text2.C (changeDepth): do not setUndo on test_only (make undo work
6071         again)
6072
6073 2003-04-05  Alfredo Braunstein  <abraunst@libero.it>
6074
6075         * lyxfind.C (searchForward, searchBackwards): bug 782
6076
6077 2003-04-07  John Levon  <levon@movementarian.org>
6078
6079         * paragraph.C: remove dead comment
6080
6081         * text.C: remove troublesome depth-fiddling code
6082         in leftMargin() and rightMargin() (bug 1017)
6083
6084         * text.C: fix breaking of rows in nested lists
6085         (bug 1004)
6086
6087         * text2.C (updateCounters): fix up depth values
6088         (bug 1013)
6089
6090 2003-04-07  John Levon  <levon@movementarian.org>
6091
6092         * BufferView_pimpl.C: clear message when doc finishes resizing,
6093         and after a mouse event
6094
6095         * lyxfunc.C: clear message after exiting inset
6096
6097 2003-04-07  John Levon  <levon@movementarian.org>
6098
6099         * bufferview_funcs.C: show math status not outside
6100         status in the statusbar
6101
6102 2003-04-07  John Levon  <levon@movementarian.org>
6103
6104         * lyxfunc.C: note status changed after a depth change
6105
6106 2003-04-04  Angus Leeming  <leeming@lyx.org>
6107
6108         * LaTeX.h: move AuxInfo operator==, != out of line.
6109         Remove LaTeX virtual destructor; nothing derives from it.
6110         Move operator()() out of public area and rename it startscript().
6111         Change protected for private.
6112
6113 2003-04-04  Angus Leeming  <leeming@lyx.org>
6114
6115         * lyxfunc.C:
6116         * text2.C: remove unneeded #includes.
6117
6118 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
6119
6120         * text2.C (dEPM): fix the heigth of the next row
6121
6122 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
6123
6124         * text.C: squashed an invalid getChar requester + some ws changes
6125
6126 2003-04-03  John Levon  <levon@movementarian.org>
6127
6128         * bufferview_funcs.h:
6129         * bufferview_funcs.C:
6130         * lyxfunc.C:
6131         * lyxtext.h:
6132         * text2.C: make getStatus work for the env depth lfuns
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: parlistize decDepth(), by merging it with incDepth()
6141
6142 2003-04-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
6143
6144         * lyxrow.h: store a ParagraphList::iterator instead of a
6145         Paragraph* and adjust other class functions to suit.
6146
6147         * lyxrow_funcs.C, text.C, text2.C, text3.C: adjust because of the
6148         above.
6149
6150 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
6151
6152         * text2.C (setCursor): do not anchor to cursor row for the time being
6153
6154 2003-04-02  John Levon  <levon@movementarian.org>
6155
6156         * LyXAction.C:
6157         * lfuns.h:
6158         * lyx_main.C:
6159         * lyxtext.h:
6160         * text.C:
6161         * text3.C: rename the "tab" lfuns. Remove tab support from normal text
6162
6163 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
6164
6165         * paragraph.h: make ParagraphList and ParagraphList::iterator
6166         friends of Paragraph.
6167
6168         * buffer.C (makeLinuxDocFile): move towards ParagraphList
6169
6170         * ParagraphList.C: Use the private next_ and previous_ from
6171         Paragraph.
6172
6173 2003-04-01  John Levon  <levon@movementarian.org>
6174
6175         * ToolbarBackend.h:
6176         * ToolbarBackend.C:
6177         * Makefile.am: rename, remove defaults gunk
6178
6179         * MenuBackend.h:
6180         * MenuBackend.C: remove defaults gunk
6181
6182         * Languages.h:
6183         * Languages.C: remove defaults gunk
6184
6185         * lyx_main.h:
6186         * lyx_main.C: error out if files couldn't be found.
6187
6188 2003-04-02  John Levon  <levon@movementarian.org>
6189
6190         * text2.C: make incDepth() use parlist
6191
6192 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
6193
6194         * undo_funcs.C (firstUndoParagraph): adjust
6195
6196         * text3.C (gotoInset): adjust
6197         (dispatch): adjust, and rewrite loop.
6198
6199         * text2.C (init): adjust, and rewrite loop.
6200         (redoParagraphs): adjust
6201         (updateInset): adjust, and rewrite loop.
6202         (deleteEmptyParagraphMechanism): adjust
6203
6204         * tabular.C (LyXTabular): adjust
6205         (SetMultiColumn): adjust
6206         (TeXRow): adjust
6207
6208         * lyxtext.[Ch] (ownerParagraph): delete function
6209         (ownerParagraphs): new function returns a ParagraphList.
6210
6211         * BufferView.C (removeAutoInsets): adjust
6212         (insertErrors): adjust
6213         (setCursorFromRow): adjust
6214
6215 2003-04-01  Angus Leeming  <leeming@lyx.org>
6216
6217         * BufferView_pimpl.C (buffer): ensure that the Layout is correct
6218         in the frontends.
6219
6220 2003-04-02  John Levon  <levon@movementarian.org>
6221
6222         * lyxtext.h:
6223         * text.C:
6224         * Makefile.am:
6225         * text_funcs.h:
6226         * text_funcs.C: make transposeChars a free function
6227
6228         * lyxrow_funcs.C: remove wrong comment
6229
6230 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
6231
6232         * lyxtext.h: adjust
6233         * rowpainter.C: adjust
6234         * text.C: adjust
6235         * text2.C: adjust
6236         * text3.C: adjust
6237
6238         * lyxrow_funcs. [Ch]: new files
6239
6240         * lyxrow.[Ch]: remove next and previous pointers
6241         (next,previous): remove accessor functions
6242         (isParEnd): move to lyxrow_funcs
6243         (lastPos): move to lyxrow_funcs
6244         (nextRowIsAllInset): move to lyxrow_funcs
6245         (lastPrintablePos): move to lyxrow_funcs
6246         (numberOfSeparators): move to lyxrow_funcs
6247         (numberOfHfills): move to lyxrow_funcs
6248         (numberOfLabelHfills): move to lyxrow_funcs
6249         (hfillExpansion): move to lyxrow_funcs
6250
6251         * lyxfunc.C: adjust
6252
6253         * bufferview_funcs.C (toggleAndShow): adjust
6254
6255         * RowList.h: Remove class RowList from file leave just a
6256         std::list<Row>.
6257
6258         * RowList.C: delete file
6259
6260         * Makefile.am (lyx_SOURCES): remove RowList.C, add lyxrow_funcs.C
6261         and lyxrow_funcs.h
6262
6263 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
6264
6265         * text3.C (cursorPrevious): adjust
6266         (cursorNext): adjust
6267         (dispatch): adjust
6268
6269         * text2.C (redoHeightOfParagraph): adjust
6270         (redoDrawingOfParagraph): adjust
6271         (setCursor): adjust
6272
6273         * text.C (breakParagraph): adjust
6274         (insertChar): adjust
6275         (backspace): adjust
6276
6277         * rowpainter.C (RowPainter): adjust
6278         (leftMargin): simplify and adjust
6279         (most rowpainter functions): adjust.
6280
6281         * rowpainter.h: store the row as RowList::iterator not as Row*
6282
6283         * lyxcursor.C (row): taka RowList::iterator as arg
6284         (irow): ditto
6285
6286         * lyxcursor.h: make the LyXCursor store RowList::iterators instead
6287         of Row*.
6288
6289 2003-04-01  Angus Leeming  <leeming@lyx.org>
6290
6291         * bufferview_funcs.C (string2font): rewrite so that it no longer uses
6292         stuff like bool Bool.
6293
6294 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
6295
6296         * text2.C (redoParagraphs): fix a bug (introduced by myself) and
6297         rewrite a loop
6298
6299 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
6300
6301         * text2.C (redoParagraphs): rewrite (with help from Alfredo) for
6302         RowList::iterator.
6303
6304         * lyxtext.h (rows): drop one version and leve a const variant that
6305         returns a RowList::iterator.
6306
6307 2003-03-31  Angus Leeming  <leeming@lyx.org>
6308
6309         * text.C (fill): ensure that the signature is the same as that in the
6310         header file.
6311
6312 2003-03-31  Lars Gullik Bjønnes  <larsbj@gullik.net>
6313
6314         * text2.C (redoParagraphs): adjust
6315         (updateCounters): adjust
6316         (checkParagraph): adjust
6317         (getColumnNearX): adjust and reformat a bit.
6318
6319         * text.C (top_y): adjust
6320         (workWidth): adjust
6321         (leftMargin): adjust
6322         (prepareToPrint): adjust
6323         (getRow): adjust
6324         (getRowNearY): adjust
6325
6326         * lyxtext.h: make rowlist_ mutable.
6327
6328         * RowList.h: add const_iterator
6329         * RowList.C: adjust for RowList::const_iterator.
6330
6331         * text2.C (getCursorX): make it take a RowList::iterator as arg,
6332         adjust.
6333
6334 2003-03-31  John Levon  <levon@movementarian.org>
6335
6336         * lyxrc.h:
6337         * lyxrc.C: moved pdf_mode and use_gui to elsewhere
6338
6339         * lyx_main.C: set default fonts from using lyx_gui funcs
6340
6341         * exporter.C: pdf_mode moved from lyxrc
6342
6343         * lyx_cb.C:
6344         * lyxfunc.C: changes from above
6345
6346 2003-03-31  John Levon  <levon@movementarian.org>
6347
6348         * lyx_main.C: fix to the last fix
6349
6350 2003-03-31  John Levon  <levon@movementarian.org>
6351
6352         * bufferlist.C: "Load original" -> "Load Original"
6353
6354         * converter.C:
6355         * exporter.C:
6356         * importer.C:
6357         * lyx_main.C:
6358         * format.C: more Alert cleanups
6359
6360 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
6361
6362         * text2.C (removeParagraph): make it take a RowList::iterator as
6363         arg, adjust.
6364         (getColumnNearX): make it take a RowList::iterator as arg, adjust.
6365         (postRowPaint): make it take a RowList::iterator as arg, adjust.
6366
6367         * text.C (anchor_row): make it take a RowList::iterator as arg,
6368         adjust.
6369         (computeBidiTables): make it take a const reference to Row instead
6370         of Row pointer, adjust.
6371         (leftMargin): make it take a RowList::iterator as arg, adjust.
6372         (rowBreakPoint): adjust
6373         (breakAgainOneRow): make it take a RowList::iterator as arg,
6374         adjust.
6375         (prepareToPrint): make it take a RowList::iterator as arg, adjust.
6376
6377         * bufferview_funcs.C (toggleAndShow): adjust
6378
6379 2003-03-30  John Levon  <levon@movementarian.org>
6380
6381         * Makefile.am:
6382         * BoostFormat.h:
6383         * boost-inst.C: moved to support
6384
6385         * several files: changes as a result
6386
6387 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
6388
6389         * text2.C (LyXText): adjust.
6390         (init): adjust
6391         (removeRow): make it take a RowList::iterator as arg, adjust.
6392         (fullRebreak): adjust
6393         (deleteEmptyParagraphMechanism): adjust
6394         (clearPaint): adjust
6395         (postPaint): adjust
6396
6397         * text.C (top_y): adjust
6398         (setHeightOfRow): make it take a RowList::iterator as arg, adjust.
6399         (breakAgain): make it take a RowList::iterator as arg, adjust.
6400         (breakParagraph): adjust
6401         (insertChar): adjust
6402         (backspace): adjust
6403
6404         * lyxtext.h: make anchor_row_ be a RowList::iterator, ditto
6405         need_break_row, and refresh_row.
6406
6407         * text3.C (dispatch): adjust
6408
6409         * text2.C (checkParagraph): adjust
6410         (setCursor): adjust
6411         (setCursorFromCoordinates): adjust
6412
6413         * text.C (top_y): adjust
6414         (workWidth): adjust
6415         (getRow): make it return a RowList::iterator, adjust
6416         (getRowNearY): make it return a RowList::iterator, adjust
6417
6418         * text2.C (init): adjust
6419         (insertRow): remove function
6420         (insertParagraph): adjust
6421         (redoParagraphs): adjust
6422         (fullRebreak): adjust
6423         (updateCounters): adjust
6424
6425         * text.C (top_y): rewrite to use RowList iterators.
6426         (top_y): adjust
6427         (setHeightOfRow): rewrite to sue RowList iterators.
6428         (appendParagraph): adjust
6429         (breakAgain): adjust
6430         (breakAgainOneRow): adjust
6431         (breakParagraph): adjust
6432         (getRow): adjust
6433         (getRowNearY): adjust, and remove commented code.
6434
6435         * lyxtext.h (firstRow): delete function
6436         (lastRow): delete function
6437         (rows): new function (const and non-const versions.)
6438         (insertRow): delete function
6439
6440         * lyxrow.[Ch] (Row): new constructor taking a par and a pos
6441
6442 2003-03-29  John Levon  <levon@movementarian.org>
6443
6444         * BufferView_pimpl.C: always update scrollbar top
6445         because pasting text when we're anchored could mean we
6446         miss an update altogether
6447
6448 2003-03-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
6449
6450         * text2.C (init): use rowlist_.end() and not 0.
6451         (insertRow): change to take a RowList::iterator as arg, adjust
6452         for this.
6453         (insertParagraph): change to take a RowList::iterator as arg,
6454         adjust for this.
6455         (redoParagraphs): remove some debug msgs.
6456
6457         * text.C (appendParagraph): change to take a RowList::iterator
6458         arg, adjust for this.
6459         (breakAgain): add an assert
6460         (breakAgainOneRow): ditto
6461
6462 2003-03-29  John Levon  <levon@movementarian.org>
6463
6464         * text2.C: do not clear selection after inc/decDepth
6465         (bug 550)
6466
6467 2003-03-29  John Levon  <levon@movementarian.org>
6468
6469         * BufferView.C:
6470         * buffer.C: fix broken strerrors according to Lars
6471
6472 2003-03-29  John Levon  <levon@movementarian.org>
6473
6474         * converters.C: more Alert cleanups
6475
6476 2003-03-29  John Levon  <levon@movementarian.org>
6477
6478         * bufferview_funcs.C: remove pointless Alert
6479
6480         * buffer.C: fix confusing error message when
6481         a template is chmoded 000
6482
6483 2003-03-29  John Levon  <levon@movementarian.org>
6484
6485         * BufferView.C:
6486         * BufferView.h:
6487         * BufferView_pimpl.C: Alert fixes
6488
6489         * Makefile.am:
6490         * tabular.C:
6491         * tabular-old.C: remove unused table compat reading
6492
6493 2003-03-29  John Levon  <levon@movementarian.org>
6494
6495         * BufferView.C:
6496         * buffer.C:
6497         * lyx_cb.h:
6498         * lyx_cb.C: more Alert cleanups
6499
6500         * lyxfunc.C: don't allow chktex if not latex document
6501
6502 2003-03-29  John Levon  <levon@movementarian.org>
6503
6504         * lyx_cb.C:
6505         * BufferView.C:
6506         * buffer.C: warnings pushed down from support/,
6507         kill err_alert
6508
6509 2003-03-29  John Levon  <levon@movementarian.org>
6510
6511         * lyxfunc.C: safety check for C-r (revert)
6512
6513 2003-03-29  John Levon  <levon@movementarian.org>
6514
6515         * bufferlist.h:
6516         * bufferlist.C: several UI fixes using Alert::prompt.
6517         Fix the pointless looping quit code. Fix stupid revert
6518         behaviour (bug 938)
6519
6520         * lyxvc.h:
6521         * lyxvc.C:
6522         * lyx_cb.C: use Alert::prompt
6523
6524         * lyx_main.C: remove a silly question
6525
6526         * lyxfunc.C: remove a couple of silly questions,
6527         use Alert::prompt
6528
6529 2003-03-28  John Levon  <levon@movementarian.org>
6530
6531         * text2.C: fix bug 974 (End on empty par)
6532
6533 2003-03-28  John Levon  <levon@movementarian.org>
6534
6535         * BufferView_pimpl.C:
6536         * LyXAction.C:
6537         * lfuns.h: remove do-nothing math greek lfuns
6538
6539 2003-03-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
6540
6541         * lyxgluelength.h (isValidGlueLength): add default arg on
6542         parameter 2. Remove default arg from friend in class.
6543
6544         * lyxlength.h (isValidLength): add default arg on parameter 2.
6545         Remove default arg from friend in class.
6546
6547         * text2.C (LyXText): adjust, initialize refresh_row.
6548         (init): adjust
6549         (removeRow): adjust
6550         (insertRow): adjust
6551         (insertParagraph): adjst
6552         (redoParagraphs): adjust
6553         (fullRebreak): adjust
6554         (updateCounters): adjust
6555         (deleteEmptyParagraphMechanism): first attempt at fixing a
6556         crashing bug.
6557
6558         * text.C (top_y): adjust
6559         (setHeightOfRow): adjust
6560         (getRow): adjust
6561         (getRowNearY): adjust
6562
6563         * lyxtext.h: include RowList.h
6564         (~LyXText): not needed anymore, deleted.
6565         (firstRow): modify for RowList
6566         (lastRow): new function
6567         Delete firstrow and lastrow class variables, add a Rowlist
6568         rowlist_ class variable.
6569
6570         * lyxrow.C (lastPos): use empty() and not !size() to check if a
6571         paragraph is empty.
6572
6573         * RowList.C (insert): fix case where it == begin().
6574
6575 2003-03-26  Angus Leeming  <leeming@lyx.org>
6576
6577         * BufferView_pimpl.C (dispatch): changes to the Dialogs interface for
6578         the thesaurus dialog.
6579
6580 2003-03-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
6581
6582         * Makefile.am (lyx_SOURCES): add RowList.[Ch]
6583
6584         * RowList.[Ch]: new files
6585
6586         * ParagraphList.C (erase): handle the case where it == begin
6587         correctly.
6588
6589 2003-03-25  John Levon  <levon@movementarian.org>
6590
6591         * Makefile.am:
6592         * aspell_local.h:
6593         * aspell.C: add new aspell support
6594
6595         * lyxrc.h:
6596         * lyxrc.C: Make use_pspell be use_spell_lib. Always
6597         have it accessible.
6598
6599 2003-03-25  Angus Leeming  <leeming@lyx.org>
6600
6601         * lfuns.h:
6602         * LyXAction.C (init): new LFUN_INSET_INSERT.
6603
6604         * BufferView_pimpl.C (dispatch): split out part of the
6605         LFUN_INSET_APPLY block LFUN_INSET_INSERT.
6606
6607         * factory.C (createInset): act on LFUN_INSET_INSERT rather than
6608         LFUN_INSET_APPLY.
6609
6610 2003-03-25  Angus Leeming  <leeming@lyx.org>
6611
6612         * lyxfunc.C (dispatch): changes to the Dialogs interface.
6613
6614 2003-03-25  Alfredo Braunstein  <abraunst@libero.it>
6615
6616         * text2.C:
6617         * text3.C: remove useless row->height(0)
6618
6619 2003-03-25  John Levon  <levon@movementarian.org>
6620
6621         * lyxtext.h:
6622         * text2.C:
6623         * text3.C: rename the refreshing stuff to better names
6624
6625 2003-03-24  John Levon  <levon@movementarian.org>
6626
6627         * BufferView_pimpl.h:
6628         * BufferView_pimpl.C: update layout choice on a mouse
6629         press/release
6630
6631 2003-03-23  John Levon  <levon@movementarian.org>
6632
6633         * Makefile.am: fix commandtags.h reference
6634
6635 2003-03-22  John Levon  <levon@movementarian.org>
6636
6637         * BufferView_pimpl.C:
6638         * lyxtext.h:
6639         * rowpainter.C:
6640         * rowpainter.h:
6641         * text.C:
6642         * text2.C: remove CHANGED_IN_DRAW, it cannot happen now
6643
6644 2003-03-21  Alfredo Braunstein  <abraunst@libero.it>
6645
6646         * lyxtext.h:
6647         * text.C: take the rtl methods out of line
6648
6649 2003-03-21 André Pönitz <poenitz@gmx.net>
6650
6651         * metricsinfo.[Ch]: new files containing structures to be passed around
6652         during the two-phase-drawing...
6653
6654 2003-03-21 André Pönitz <poenitz@gmx.net>
6655
6656         * lyxtextclass.C: read 'environment' tag.
6657
6658 2003-03-20  Alfredo Braunstein  <abraunst@libero.it>
6659
6660         * text2.C (removeRow): fix bug 964
6661
6662 2003-03-20  John Levon  <levon@movementarian.org>
6663
6664         * rowpainter.C:
6665         * text.C:
6666         * text2.C: paint cleanups. Inset::update() dropped font
6667         parameter
6668
6669 2003-03-19  John Levon  <levon@movementarian.org>
6670
6671         * lyxfunc.C: only fitcursor/markDirty if available()
6672
6673 2003-03-19  John Levon  <levon@movementarian.org>
6674
6675         * commandtags.h: rename to ...
6676
6677         * lfuns.h: ... this, and renumber / cleanup
6678
6679 2003-03-19  John Levon  <levon@movementarian.org>
6680
6681         * lyxfunc.C: mark buffer dirty if we executed a "dirtying" lfun.
6682         fit the cursor after an lfun
6683
6684         * BufferView.h:
6685         * BufferView.C:
6686         * BufferView_pimpl.h:
6687         * BufferView_pimpl.C: remove BufferView::FITCUR/CHANGE
6688
6689         * LyXAction.C: layout-character should have ReadOnly
6690
6691         * ParagraphParameters.C:
6692         * buffer.C:
6693         * bufferview_funcs.C:
6694         * lyx_cb.C:
6695         * lyxfind.C:
6696         * lyxtext.h:
6697         * text.C:
6698         * text2.C:
6699         * text3.C:
6700         * undo_funcs.C: changes from above
6701
6702 2003-03-18  John Levon  <levon@movementarian.org>
6703
6704         * BufferView_pimpl.C (scrollDocView): add updateLayoutChoice(),
6705         remove it from update()
6706
6707         * lyxfunc.C: update layout choice after an lfun
6708
6709         * text3.C: remove extra updateLayoutChoice()s
6710
6711 2003-03-18  John Levon  <levon@movementarian.org>
6712
6713         * text.C: top_y change means full repaint, fix
6714         a drawing bug with cursor movement
6715
6716 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
6717
6718         * lyxtext.h:
6719         * text.C:
6720         * text2.C: anchor row on setCursor
6721
6722 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
6723
6724         * lyxtext.h: remove almost all mutable keywords
6725         * text.C:
6726         * text2.C:
6727         * text3.C: remove const keywords accordingly
6728
6729 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
6730
6731         * paragraph_funcs.C (TeXDeeper): reduce number of args, move into
6732         anon namespace
6733         (TeXEnvironment): ditto
6734         (TeXOnePar): ditto
6735
6736 2003-03-17  John Levon  <levon@movementarian.org>
6737
6738         * text.C (rowBreakPoint): remove attempt to fix displayed
6739         math insets inside a manual label
6740
6741 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
6742
6743         * lyxtext.h: remove BufferView* as first arg from almost all class
6744         functions.
6745         * other files: adjust.
6746
6747 2003-03-17  John Levon  <levon@movementarian.org>
6748
6749         * lyxtext.h:
6750         * undo_funcs.C:
6751         * text2.C: more paint cleanups
6752
6753         * BufferView_pimpl.C: screen prototype changed, use postPaint etc.
6754
6755         * rowpainter.h:
6756         * rowpainter.C: remove "smart" background painting code
6757
6758 2003-03-16  John Levon  <levon@movementarian.org>
6759
6760         * lyxtext.h:
6761         * text.C:
6762         * text2.C:
6763         * text3.C: add helper functions for setting refresh_row/y
6764
6765 2003-03-14  Kayvan Sylvan  <kayvan@sylvan.com>
6766
6767         * paragraph_pimpl.C (simpleTeXSpecialChars): Added fix for the
6768         newline inset which *can* get inserted in the pass_thru layouts.
6769         This is primarily for literate documents.
6770
6771 2003-03-14  Dekel Tsur  <dekelts@tau.ac.il>
6772
6773         * buffer.C: increment LYX_FORMAT to 223
6774
6775 2003-03-14 André Pönitz <poenitz@gmx.net>
6776
6777         * textclass.h: prepare for environment handling, ws changes
6778         * lyxlayout.C: read latexheader and latexfooter tags
6779
6780 2003-03-14  John Levon  <levon@movementarian.org>
6781
6782         * text2.C: rewrite ::status() a bit
6783
6784 2003-03-13  John Levon  <levon@movementarian.org>
6785
6786         * lyxtext.h: add some docs
6787
6788 2003-03-13  John Levon  <levon@movementarian.org>
6789
6790         * lyxtext.h:
6791         * text.C:
6792         * text2.C:
6793         * text3.C: remove pointless 2nd arg to setHeightOfParagraph()
6794
6795 2003-03-13  John Levon  <levon@movementarian.org>
6796
6797         * text3.C: fix appendix redrawing
6798
6799 2003-03-13  John Levon  <levon@movementarian.org>
6800
6801         * text.C (setHeightOfRow):
6802         * rowpainter.h:
6803         * rowpainter.C: make appendix mark have the text
6804           "Appendix" so the user knows what it is
6805
6806         * LColor.h:
6807         * LColor.C: s/appendixline/appendix/ from above
6808
6809 2003-03-13  John Levon  <levon@movementarian.org>
6810
6811         * paragraph_pimpl.C: fix Andre's backing out of the strong assertion
6812
6813         * text.C: fix a getChar(pos) bug properly
6814
6815 2003-03-13  Angus Leeming  <leeming@lyx.org>
6816
6817         * commandtags.h:
6818         * LyXAction.C (init): new LFUNs PARAGRAPH_APPLY and PARAGRAPH_UPDATE.
6819         Probably only temporary. Let's see how things pan out.
6820
6821         * BufferView.C (unlockInset):
6822         * BufferView_pimpl.C (fitCursor):
6823         replace Dialogs::updateParagraph with dispatch(LFUN_PARAGRAPH_UPDATE).
6824
6825         * BufferView_pimpl.C (dispatch): code for LFUNs LAYOUT_PARAGRAPH,
6826         PARAGRAPH_UPDATE, PARAGRAPH_APPLY.
6827
6828         * ParagraphParameters.[Ch] (setParagraphParams, params2string):
6829         new functions that convert ParagraphParameters to and from a string.
6830
6831         * lyxfunc.C (dispatch): move LFUN_LAYOUT_PARAGRAPH to
6832         BufferView::Pimpl's dispatch.
6833         In LFUN_ESCAPE, dispatch LFUN_PARAGRAPH_UPDATE.
6834
6835 2003-03-13 André Pönitz <poenitz@gmx.net>
6836
6837         * lyxfunc.C:
6838         * text3.C:
6839         * factory.C: make it aware of InsetEnv
6840
6841 2003-03-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
6842
6843         * text2.C (setCursor): never ask for one past last
6844         (setCursor): add some debugging messages.
6845
6846         * text.C (singleWidth): never ask for one past last
6847         (singleWidth): ditto
6848         (leftMargin): ditto
6849         (rightMargin): ditto
6850         (rowBreakPoint): ditto
6851         (setHeightOfRow): ditto
6852         (prepareToPrint): ditto
6853
6854         * rowpainter.C (paintBackground): never ask for one past last
6855         (paintText): never ask for one past last
6856
6857         * paragraph_pimpl.C (getChar): make the assert stricter, never
6858         allow the one past last pos to be taken
6859
6860         * paragraph.C (getChar): ws changes only
6861
6862         * lyxrow.C (nextRowIsAllInset): never ask for one past last
6863         (numberOfSeparators): ditto
6864         (numberOfHfills): ditto
6865
6866 2003-03-12  John Levon  <levon@movementarian.org>
6867
6868         * author.h:
6869         * author.C:
6870         * bufferparams.h:
6871         * bufferparams.C:
6872         * paragraph_funcs.C: fix per-buffer authorlists
6873
6874 2003-03-12  John Levon  <levon@movementarian.org>
6875
6876         * text.C: fix newline in right address
6877
6878 2003-03-12  Angus Leeming  <leeming@lyx.org>
6879
6880         * BufferView_pimpl.C (dispatch): remove LFUNs from switch as they
6881         duplicate those in LyXFunc::dispatch.
6882
6883         * commandtags.h:
6884         * LyXAction.C:
6885         * ToolbarDefaults.C:
6886         rename LFUN_FREE as LFUN_FONTFREE_APPLY.
6887         Add LFUN_FONTFREE_UPDATE.
6888
6889         * lyxfunc.C (dispatch): code for LFUN_FREEFONT_APPLY,
6890         LFUN_FREEFONT_UPDATE, LFUN_LAYOUT_CHARACTER.
6891
6892         * bufferview_func.[Ch]: several new functions to facilliate
6893         transfer of data to and from the character dialog.
6894
6895 2003-03-12  John Levon  <levon@movementarian.org>
6896
6897         * buffer.C:
6898         * paragraph.h:
6899         * paragraph.C:
6900         * paragraph_funcs.C:
6901         * paragraph_pimpl.C:
6902         * sgml.C:
6903         * tabular.C:
6904         * text.C:
6905         * text3.C: remove META_NEWLINE in favour of an inset
6906
6907         * rowpainter.h:
6908         * rowpainter.C: remove paintNewline (done by inset)
6909
6910 2003-03-12  John Levon  <levon@movementarian.org>
6911
6912         * paragraph_pimpl.C: complain about bad getChar()s
6913         for a while at least
6914
6915 2003-03-12  John Levon  <levon@movementarian.org>
6916
6917         * buffer.h:
6918         * buffer.C: move paragraph read into a separate function,
6919         a little renaming to reflect that.
6920
6921         * bufferparams.h:
6922         * bufferparams.C: remove the author_ids map, not necessary now
6923
6924         * factory.h:
6925         * factory.C: moved Buffer::readInset to here
6926
6927         * paragraph_funcs.h:
6928         * paragraph_funcs.C: readParagraph free function moved from
6929         buffer.C
6930
6931         * tabular.C: name change
6932
6933 2003-03-12  John Levon  <levon@movementarian.org>
6934
6935         * buffer.C:
6936         * ParagraphParameters.C: move par params input to
6937         a read() method
6938
6939         * lyxlex_pimpl.C: make nextToken()/next() after a pushToken()
6940         behave like a normal read from the stream wrt reading
6941         a line vs. a \\token
6942
6943 2003-03-12  John Levon  <levon@movementarian.org>
6944
6945         * paragraph.C:
6946         * ParagraphParameters.h:
6947         * ParagraphParameters.C: move output code to a
6948         ::write() method
6949
6950 2003-03-12  John Levon  <levon@movementarian.org>
6951
6952         * BufferView.C (insertLyXFile):
6953         * buffer.h:
6954         * buffer.C:
6955         * tabular.C: use a parlist iterator for creating the
6956           document.
6957
6958 2003-03-12  John Levon  <levon@movementarian.org>
6959
6960         * buffer.C: make current_change static local not
6961           static file-scope
6962
6963 2003-03-12  John Levon  <levon@movementarian.org>
6964
6965         * buffer.C: fix insertStringAsLines for change tracking
6966
6967 2003-03-12  John Levon  <levon@movementarian.org>
6968
6969         * BufferView.C:
6970         * tabular.C:
6971         * buffer.h:
6972         * buffer.C:
6973         * bufferparams.h:
6974         * bufferparams.C: move author list into params. Rename some
6975           functions. Move the header reading into a separate token
6976           loop. Move the header token reading into BufferParams.
6977
6978 2003-03-12  John Levon  <levon@movementarian.org>
6979
6980         * changes.C: put debug inside lyxerr.debugging() checks
6981
6982 2003-03-11 André Pönitz <poenitz@gmx.net>
6983
6984         * factory.C: make it aware of InsetHFill
6985
6986 2003-03-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6987
6988         * buffer.C (latexParagraphs): move function from here...
6989         * paragraph_funcs.C (latexParagraphs): ...to here, and adjust
6990         args.
6991
6992 2003-03-10  Angus Leeming  <leeming@lyx.org>
6993
6994         * LyXAction.C (init): fix bug in poplating array with multiple entries
6995         with the same LFUN (spotted by JMarc).
6996
6997 2003-03-10  John Levon  <levon@movementarian.org>
6998
6999         * text.C:
7000         * text2.C: move getColumnNearX() near its
7001         only call site
7002
7003 2003-03-10  John Levon  <levon@movementarian.org>
7004
7005         * text.C: fix break before a minipage
7006
7007 2003-03-10  John Levon  <levon@movementarian.org>
7008
7009         * text.C: fix the last commit
7010
7011 2003-03-09  John Levon  <levon@movementarian.org>
7012
7013         * lyxtext.h:
7014         * text.C:
7015         * text2.C: clean up nextBreakPoint (now rowBreakPoint). Fix
7016         bug 365 (don't break before insets unless needed). Don't
7017         return a value > last under any circumstances.
7018
7019 2003-03-09  Angus Leeming  <leeming@lyx.org>
7020
7021         * BufferView_pimpl.C (trackChanges, dispatch): call
7022         Dialogs::show("changes") rather than Dialogs::showMergeChanges().
7023
7024 2003-03-09  Angus Leeming  <leeming@lyx.org>
7025
7026         * lyxfunc.C (dispatch): call Dialogs::show("about") rather
7027         than Dialogs::showAboutlyx().
7028
7029 2003-03-09  Angus Leeming  <leeming@lyx.org>
7030
7031         * factory.C (createInset): call Dialogs::show("tabularcreate") rather
7032         than Dialogs::showTabularCreate().
7033
7034 2003-03-09  John Levon  <levon@movementarian.org>
7035
7036         * lyxtext.h:
7037         * text.C:
7038         * text2.C: 3rd arg to nextBreakPoint was always the same.
7039           Use references.
7040
7041 2003-03-08  John Levon  <levon@movementarian.org>
7042
7043         * lyxrow.C:
7044         * paragraph.C:
7045         * paragraph.h:
7046         * rowpainter.C:
7047         * text.C:
7048         * text2.C: Remove the "main" bit from the "main body"
7049           notion.
7050
7051 2003-03-08  John Levon  <levon@movementarian.org>
7052
7053         * text.C (leftMargin): The left margin of an empty
7054         manual label paragraph should not include the label width
7055         string length.
7056
7057         * text.C (prepareToPrint): don't attempt to measure hfills
7058         for empty manual label paragraphs - the answer should be 0
7059
7060 2003-03-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
7061
7062         * CutAndPaste.C: remove commented code and reindent.
7063
7064 2003-03-08  John Levon  <levon@movementarian.org>
7065
7066         * lyxfunc.h:
7067         * lyxfunc.C: move reloadBuffer()
7068
7069         * BufferView.h:
7070         * BufferView.C: to here
7071
7072         * lyxvc.C: add comment
7073
7074         * vc-backend.h:
7075         * vc-backend.C: call bv->reload() to avoid
7076           getStatus() check on MENURELOAD
7077
7078 2003-03-07  Dekel Tsur  <dekelts@tau.ac.il>
7079
7080         * LaTeX.C (run): Fix a bug where the DVI file was not updated due
7081         to an old format .dep file.
7082
7083 2003-03-07  Angus Leeming  <leeming@lyx.org>
7084
7085         * text3.C (dispatch): remove the 'gross hack' of calling inset->edit
7086         when the LFUN_MOUSE_RELEASE should have been handled by
7087         inset->localDispatch.
7088
7089 2003-03-07  Angus Leeming  <leeming@lyx.org>
7090
7091         * BufferView_pimpl.C (dispatch):
7092         * LyXAction.C (init):
7093         * ToolbarDefaults.C (init):
7094         * commandtags.h:
7095         * lyxfunc.C (getStatus):
7096         remove LFUN_INSET_GRAPHICS.
7097
7098         * factory.C (createInset): add "graphics" to LFUN_INSET_APPLY.
7099
7100 2003-03-07  Angus Leeming  <leeming@lyx.org>
7101
7102         * commandtags.h:
7103         * LyXAction.C (init):
7104         * lyxfunc.C (getStatus): remove LFUN_REF_INSERT.
7105
7106         * lyxfunc.C (getStatus): add LFUN_DIALOG_SHOW_NEW_INSET to switch.
7107
7108         * commandtags.h:
7109         * LyXAction.C: add LFUN_INSET_DIALOG_UPDATE.
7110
7111         * lyxfunc (dispatch): on LFUN_DIALOG_UPDATE, pass the 'open' inset's
7112         localDispatch method LFUN_INSET_DIALOG_UPDATE.
7113
7114 2003-03-07  Angus Leeming  <leeming@lyx.org>
7115
7116         * lyxfunc.C (dispatch): add "include" to LFUN_SHOW_NEW_INSET and
7117         remove "ert".
7118
7119 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
7120
7121         * ParagraphList.C (front): new function
7122         (back): implement
7123
7124 2003-03-06  Alfredo Braunstein  <abraunst@libero.it>
7125
7126         * lyxtext.h (top_y): added these 2 methods, and private vars top_row_
7127         and top_row_offset_. removed var first_y.
7128         * text.C (top_y):
7129         * text2.C (LyXText, removeRow):
7130         * text3.C:
7131         * BufferView_pimpl.C:
7132         use these methods instead of using first_y
7133
7134 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
7135
7136         * text2.C (pasteSelection): adjust for checkPastePossible
7137
7138         * CutAndPaste.C: remove Paragraph * buf and replace with
7139         ParagraphList paragraphs.
7140         (DeleteBuffer): delete
7141         (cutSelection): change the tc type to textclass_type
7142         (copySelection): change the tc type to textclass_type
7143         (copySelection): adjust for ParagraphList
7144         (pasteSelection): change the tc type to textclass_type
7145         (pasteSelection): adjust for Paragraphlist
7146         (nrOfParagraphs): simplify for ParagraphList
7147         (checkPastePossible): simplify for ParagraphList
7148         (checkPastePossible): remove unused arg
7149
7150         * ParagraphList.C (insert): handle the case where there are no
7151         paragraphs yet.
7152
7153         * CutAndPaste.h: make CutAndPaste a namespace.
7154
7155         * text3.C (dispatch): adjust
7156
7157         * text.C (breakParagraph): add a ParagraphList as arg
7158
7159         * paragraph_funcs.C (breakParagraph): change to take a
7160         BufferParams and a ParagraphList as args.
7161         (breakParagraphConservative): ditto
7162         (mergeParagraph): ditto
7163         (TeXDeeper): add a ParagraphList arg
7164         (TeXEnvironment): ditto
7165         (TeXOnePar): ditto
7166
7167         * buffer.C (readLyXformat2): adjust
7168         (insertStringAsLines): adjust
7169         (latexParagraphs): adjust
7170
7171         * CutAndPaste.C (cutSelection): use 'true' not '1' as truth value.
7172         (cutSelection): adjust
7173         (pasteSelection): adjust
7174
7175         * BufferView_pimpl.C (insertInset): adjust
7176
7177 2003-03-05  Angus Leeming  <leeming@lyx.org>
7178
7179         * commandtags.h:
7180         * LyXAction.C (init):
7181         * BufferView_pimpl.C (dispatch):
7182         * lyxfunc.C (getStatus):
7183         remove LFUN_CHILD_INSERT.
7184
7185         * factory.C (createInset): add "include" to LFUN_INSET_APPLY.
7186
7187 2003-03-05  Angus Leeming  <leeming@lyx.org>
7188
7189         * commandtags.h:
7190         * LyXAction.C (init):
7191         * src/factory.C (createInset):
7192         * lyxfunc.C (getStatus):
7193         * text3.C (dispatch):
7194         remove LFUN_INSET_EXTERNAL and LFUN_INSERT_URL
7195
7196         * factory.C (createInset): add "external" to LFUN_INSET_APPLY.
7197
7198 2003-03-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
7199
7200         * ParagraphList.C (insert): handle insert right before end()
7201         (erase): fix cases where it can be first or last paragraph.
7202
7203 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
7204
7205         * paragraph_funcs.C (TeXEnvironment): remove all usage of
7206         Paragraph::next and Paragraph::previous
7207         (TeXOnePar): ditto
7208
7209         * text.C (breakParagraph): adjust
7210
7211         * paragraph_funcs.C (breakParagraph): take a Buffer* instead of a
7212         BufferParams& as arg.
7213         (breakParagraph): use ParagraphList::insert
7214         (breakParagraphConservative): take a Buffer* instead of a
7215         BufferParams& as arg.
7216         (breakParagraphConservative): use ParagraphList::insert.
7217
7218         * buffer.C (insertStringAsLines): un-const it
7219         (insertStringAsLines): adjust
7220
7221         * ParagraphList.C (insert): new function
7222
7223         * CutAndPaste.C (pasteSelection): adjust
7224
7225         * text.C (backspace): adjust
7226
7227         * tabular.C (SetMultiColumn): adjust
7228
7229         * CutAndPaste.C (cutSelection): adjust
7230         (pasteSelection): adjust
7231
7232         * tabular.C (SetMultiColumn): make it take a Buffer* instead of a
7233         Buffer const * as arg
7234
7235         * ParagraphList.C (erase): new function
7236         * paragraph_funcs.C (mergeParagraph): use it
7237         (mergeParagraph): make it take a Buffer* instead of a
7238         BufferParams* as arg
7239
7240         * paragraph_funcs.C (breakParagraph): take ParagraphList::iterator
7241         as arg
7242         (breakParagraphConservative): ditto
7243
7244         * paragraph.h: remove the breakParagraph friend
7245
7246         * paragraph.C (eraseIntern): new function
7247         (setChange): new function
7248
7249         * paragraph_funcs.C (mergeParagraph): make it take a
7250         ParagraphList::iterator instead of a Paragraph *, adjust
7251         accordingly.
7252
7253         * paragraph.h: move an #endif so that the change tracking stuff
7254         also works in the NO_NEXT case.
7255
7256 2003-03-04  Angus Leeming  <leeming@lyx.org>
7257
7258         * commandtags.h:
7259         * LyXAction.C: new LFUN_INSET_MODIFY.
7260
7261         * BufferView_pimpl.C (dispatch): if an inset is found to be open
7262         on LFUN_INSET_APPLY, pass LFUN_INSET_MODIFY to its localDispatch.
7263
7264 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
7265
7266         * several files: ws changes only
7267
7268         * paragraph_funcs.C (TeXOnePar): take ParagraphList::iterator as args
7269         (TeXEnvironment): ditto
7270         (TeXDeeper): ditto
7271
7272         * buffer.C (makeLaTeXFile): adjust
7273         (latexParagraphs): make it take ParagraphList::iterator as args
7274
7275 2003-03-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
7276
7277         * buffer.C (latexParagraphs): adjust
7278
7279         * paragraph.C (TeXOnePar): move function...
7280         (optArgInset): move function...
7281         (TeXEnvironment): move function...
7282         * paragraph_pimpl.C (TeXDeeper): move function...
7283         * paragraph_funcs.C: ...here
7284
7285         * tabular.C (UseParbox): rewrite to use ParagraphList iterators.
7286
7287 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
7288
7289         * buffer.C (readInset): remove compability code for old Figure and
7290         InsetInfo insets
7291
7292 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
7293
7294         * buffer.C: ws changes
7295         (readInset):
7296
7297         * BufferView_pimpl.C: ditto
7298         * author.C: ditto
7299         * buffer.h: ditto
7300         * bufferlist.h: ditto
7301         * changes.h: ditto
7302         * lyxfunc.C: ditto
7303
7304 2003-02-28  Alfredo Braunstein <abraunst@libero.it>
7305
7306         * converter.[Ch]: split into itself +
7307         * graph.[Ch]
7308         * format.[Ch]
7309         * Makefile.am: += graph.[Ch] + format.[Ch]
7310         * MenuBackend.C
7311         * buffer.C
7312         * exporter.C
7313         * importer.C
7314         * lyx_main.C
7315         * lyxfunc.C
7316         * lyxrc.C: added #include "format.h"
7317
7318 2003-02-27  Angus Leeming  <leeming@lyx.org>
7319
7320         * BufferView_pimpl.C (dispatch): call a real, LyX dialog to insert
7321           a label.
7322
7323         * factory.C (createInset): add "label" to the factory.
7324
7325         * lyx_cb.[Ch] (getPossibleLabel): rewrite MenuInsertLabel to return the
7326           string and do no more.
7327
7328 2003-02-27  Angus Leeming  <leeming@lyx.org>
7329
7330         * commandtags.h:
7331         * LyXAction.C (init):
7332         * factory.C (createInset):
7333         * BufferView_pimpl.C (dispatch):
7334           collapse LFUN_XYZ_APPLY to LFUN_INSET_APPLY.
7335
7336         * lyxfunc.C (getStatus): remove LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY.
7337
7338         * lyxfunc.C (dispatch):
7339         * text3.C (dispatch): pass name to params2string.
7340
7341 2003-02-26  Angus Leeming  <leeming@lyx.org>
7342
7343         * BufferView_pimpl.C (dispatch): collapse the various LFUN_XYZ_APPLY
7344           blocks together.
7345           Rearrange the ~includes. Strip out the unnecessary ones.
7346
7347         * factory.C (createInset): reformat.
7348           create new insets for the various LFUN_XYZ_APPLY lfuns.
7349
7350 2003-02-26  John Levon  <levon@movementarian.org>
7351
7352         * lyxrow.h:
7353         * lyxrow.C: add isParStart,isParEnd helpers
7354
7355         * paragraph.h: make isInserted/DeletedText take refs
7356
7357         * paragraph_funcs.h:
7358         * paragraph_funcs.C: remove #if 0'd code
7359
7360         * lyxtext.h:
7361         * text3.C:
7362         * text2.C:
7363         * text.C: use lyxrow helpers above.
7364           Move draw and paint routines to RowPainter.
7365           Make several methods use refs not pointers.
7366           Make backgroundColor() const.
7367           Add markChangeInDraw(), isInInset().
7368           Merge changeRegionCase into changeCase.
7369           Make workWidth() shouldn't-happen code into an Assert.
7370
7371         * rowpainter.h:
7372         * rowpainter.C: new class for painting a row.
7373
7374         * vspace.h:
7375         * vspace.C: make inPixels take a ref
7376
7377 2003-02-26  Angus Leeming  <leeming@lyx.org>
7378
7379         * BufferView_pimpl.C (dispatch): use InsetCommand::localDispatch for
7380         LFUN_REF_APPLY.
7381
7382 2003-02-25  John Levon  <levon@movementarian.org>
7383
7384         * ispell.C: give the forked command a more accurate name
7385
7386 2003-02-22  John Levon  <levon@movementarian.org>
7387
7388         * toc.h:
7389         * toc.C: make TocItem store an id not a Paragraph *
7390           (bug #913)
7391
7392 2003-02-21  Angus Leeming  <leeming@lyx.org>
7393
7394         * commandtags.h: Retire LFUN_CITATION_INSERT, LFUN_CITATION_CREATE,
7395           LFUN_INSERT_BIBTEX, LFUN_BIBTEX_STYLE, LFUN_BIBDB_ADD, LFUN_BIBDB_DEL.
7396           Bring to life LFUN_DIALOG_SHOW_NEW_INSET, LFUN_DIALOG_SHOW_NEXT_INSET,
7397           LFUN_DIALOG_UPDATE, LFUN_DIALOG_HIDE, LFUN_DIALOG_DISCONNECT_INSET,
7398           LFUN_BIBITEM_APPLY, LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY,
7399           LFUN_INDEX_APPLY, LFUN_REF_APPLY, LFUN_TOC_APPLY, LFUN_URL_APPLY,
7400
7401         * BufferView_pimpl.C (dispatch):
7402         * LyXAction.C (init):
7403         * factory.C (createInset):
7404         * lyxfunc.C (getStatus, dispatch):
7405         * text3.C (dispatch): retire old LFUNs and bring new ones to life.
7406
7407 2003-02-21  Angus Leeming  <leeming@lyx.org>
7408
7409         * BufferView_pimpl.C (MenuInsertLyXFile):
7410         * lyx_cb.C (WriteAs, getContentsOfAsciiFile):
7411         * lyxfunc.C (menuNew, open, doImport):
7412           no longer pass a LyXView & to fileDlg.
7413
7414 2003-02-21  Angus Leeming  <leeming@lyx.org>
7415
7416         * BufferView_pimpl.C: replace insetbib.h with insetbibtex.h.
7417         * LyXAction.C: change, BIBKEY to BIBITEM.
7418         * buffer.C: replace insetbib.h with insetbibitem.h and insetbibtex.h.
7419         Change InsetBibKey to InsetBibitem.
7420         Change BIBKEY_CODE to BIBITEM_CODE.
7421         * commandtags.h: change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
7422         * factory.C: replace insetbib.h with insetbibitem.h.
7423         Change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
7424         * paragraph.C: replace insetbib.h with insetbibitem.h.
7425         * paragraph.[Ch]: change InsetBibKey to InsetBibitem.
7426         Change bibkey() to bibitem().
7427         * text.C: remove insetbib.h.
7428         * text2.C: replace insetbib.h with insetbibitem.h.
7429         change bibkey() to bibitem().
7430         * text3.C: remove insetbib.h.
7431         change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
7432
7433 2003-02-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7434
7435         * lyxrc.C (output): enclose user email in quotes (in case there are
7436         several words)
7437
7438 2003-02-18  John Levon  <levon@movementarian.org>
7439
7440         * buffer.h: add std::
7441
7442 2003-02-17  John Levon  <levon@movementarian.org>
7443
7444         * SpellBase.h:
7445         * ispell.h:
7446         * ispell.C:
7447         * pspell.h:
7448         * pspell.C: reworking. Especially in ispell, a large
7449           number of clean ups and bug fixes.
7450
7451         * lyxfunc.C: fix revert to behave sensibly
7452
7453 2003-02-17 André Pönitz <poenitz@gmx.net>
7454
7455         * LyXAction.C:
7456         * commandtags.h: new LFUN_INSERT_BIBKEY
7457
7458         * layout.h:
7459         * lyxlayout.C:
7460         * buffer.C:
7461         * factory.C:
7462         * text.C:
7463         * text2.C:
7464         * text3.C:
7465         * paragraph.[Ch]:
7466         * paragraph_func.C: remove special bibkey handling
7467
7468 2003-02-17  John Levon  <levon@movementarian.org>
7469
7470         * text.C (Delete): fix case where delete at the end of
7471           the very first paragraph would not merge the pars
7472
7473 2003-02-17  John Levon  <levon@movementarian.org>
7474
7475         * lyxrow.C: fix lastPrintablePos()
7476
7477 2003-02-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7478
7479         * bufferparams.C (writeLaTeX): add a std:here
7480
7481         * buffer.C: and remove a using directive there
7482
7483 2003-02-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7484
7485         * buffer.C (makeLaTeXFile): move the code that generates the
7486           preamble...
7487
7488         * bufferparams.C (writeLaTeX): ... in this new method
7489
7490         * LaTeXFeatures.C (getEncodingSet): make const
7491           (getLanguages): make const
7492
7493         * MenuBackend.C (binding): returns the binding associated to this
7494           action
7495           (add): sets the status of each item by calling getStatus. Adds
7496           some intelligence.
7497           (read): add support for OptSubMenu
7498           (expand): remove extra separator at the end of expanded menu
7499
7500 2003-02-15  John Levon  <levon@movementarian.org>
7501
7502         * BufferView.C:
7503         * BufferView_pimpl.C:
7504         * bufferlist.h:
7505         * bufferlist.C: remove pointless BufferStorage bloat. Remove
7506           inset code that had no actual effect. Remove unneeded status
7507           code.
7508
7509 2003-02-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7510
7511         * buffer.C (makeLaTeXFile): fix counting of number of line feeds
7512           in preamble
7513
7514 2003-02-14  Michael Schmitt <michael.schmitt@teststep.org>
7515
7516         * text.C (drawLengthMarker): also draw an arrow marker for
7517           symbolic lengths (medskip...)
7518
7519 2003-02-14  John Levon  <levon@movementarian.org>
7520
7521         * tabular.h:
7522         * tabular.C: better method names
7523
7524 2003-02-14  John Levon  <levon@movementarian.org>
7525
7526         * BufferView_pimpl.C:
7527         * bufferlist.C:
7528         * buffer.C:
7529         * converter.C:
7530         * lyx_cb.C:
7531         * lyxfunc.C: change prohibit/allowInput to busy(bool), as
7532           it's a more accurate name. Remove some pointless uses.
7533
7534 2003-02-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7535
7536         * text2.C (LyXText): change order of initilizers to shut off
7537           warnings
7538
7539 2003-02-14  John Levon  <levon@movementarian.org>
7540
7541         * buffer.C: use ParIterator for getParFromID()
7542
7543         * paragraph.h:
7544         * paragraph.C:
7545         * paragraph_pimpl.h:
7546         * paragraph_pimpl.C: remove unused getParFromID()
7547
7548 2003-02-14  John Levon  <levon@movementarian.org>
7549
7550         * buffer.C: remove some very old #if 0'd parse code
7551
7552 2003-02-13  John Levon  <levon@movementarian.org>
7553
7554         * text.h:
7555         * text.C:
7556         * text2.C: move hfillExpansion(), numberOfSeparators(),
7557           rowLast(), rowLastPrintable(), numberofHfills(),
7558           numberOfLabelHfills() ...
7559
7560         * lyxrow.h:
7561         * lyxrow.C: ... to member functions here.
7562
7563         * paragraph.h:
7564         * paragraph.C:
7565         * lyxtext.h:
7566         * text.C: remove LyXText::beginningOfMainBody(), and call
7567           p->beginningOfMainBody() directly. Move the check for
7568           LABEL_MANUAL into the latter.
7569
7570         * text.h:
7571         * text.C:
7572         * text2.C:
7573         * vspace.C:
7574         * BufferView.h:
7575         * BufferView.C: make defaultHeight() be a free defaultRowHeight()
7576
7577         * text.h:
7578         * text.C:
7579         * text2.C:
7580         * text3.C:
7581         * frontends/screen.C: move bv_owner private, introduce isTopLevel()
7582           to make it clear we're testing for outmost-lyxtext vs. inset's lyxtext
7583
7584 2003-02-13  John Levon  <levon@movementarian.org>
7585
7586         * CutAndPaste.C: remove debug
7587
7588 2003-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7589
7590         * paragraph.C (asString): remove two unused variables
7591
7592         * lyxtextclass.C (readTitleType):
7593           (Read):
7594           (LyXTextClass): handle new members titletype_ and titlename_
7595
7596         * buffer.C (latexParagraphs): honor LyXTextClass::titletype
7597
7598 2003-02-09  John Levon  <levon@movementarian.org>
7599
7600         * buffer.h:
7601         * buffer.C: replace hand-coded list with a map for the dep clean
7602
7603 2003-02-08  John Levon  <levon@movementarian.org>
7604
7605         * LaTeX.C: consolidate code into showRunMessage() helper
7606
7607 2003-02-08  John Levon  <levon@movementarian.org>
7608
7609         * lyxfind.C:
7610         * lyxtext.h:
7611         * text2.C:
7612         * BufferView.C: change setSelectionOverString() to setSelectionRange()
7613           and pass the size in explicitly
7614
7615         * BufferView_pimpl.h:
7616         * BufferView_pimpl.C:
7617         * BufferView.h:
7618         * BufferView.C: add getCurrentChange()
7619
7620         * BufferView_pimpl.h:
7621         * BufferView_pimpl.C: handle change lfuns
7622
7623         * CutAndPaste.C: merge the cut and copy code. Rework the cut code
7624           for changes. Mark pasted paragraphs as new.
7625
7626         * support/lyxtime.h:
7627         * support/lyxtime.C:
7628         * DepTable.C: abstract time_t as lyx::time_type
7629
7630         * LColor.h:
7631         * LColor.C: add colours for new text, deleted text, changebars
7632
7633         * LaTeXFeatures.C: add dvipost as a simple feature. Make the color
7634           package use "usenames" option.
7635
7636         * commandtags.h:
7637         * lyxfunc.C:
7638         * LyXAction.C: add change lfuns
7639
7640         * Makefile.am:
7641         * author.h:
7642         * author.C: author handling
7643
7644         * buffer.h:
7645         * buffer.C: add a per-buffer author list, with first entry as
7646           current author. Handle new .lyx tokens for change tracking. Output
7647           author list to .lyx file. Output dvipost stuff to .tex preamble.
7648           Bump lyx format to 222.
7649
7650         * bufferlist.h:
7651         * bufferlist.C: add setCurrentAuthor() to reset current author details
7652           in all buffers.
7653
7654         * bufferparams.h:
7655         * bufferparams.C: add param for tracking
7656
7657         * bufferview_funcs.C: output change info in minibuffer
7658
7659         * Makefile.am:
7660         * changes.h:
7661         * changes.C: add change-tracking structure
7662
7663         * debug.h:
7664         * debug.C: add CHANGES debug flag
7665
7666         * lyxfind.h:
7667         * lyxfind.C: add code for finding the next change piece
7668
7669         * lyxrc.h:
7670         * lyxrc.C: add user_name and user_email
7671
7672         * lyxrow.h:
7673         * lyxrow.C: add a metric for the top of the text line
7674
7675         * lyxtext.h:
7676         * text.C: implement accept/rejectChange()
7677
7678         * lyxtext.h:
7679         * text.C: paint changebars. Paint new/deleted text in the chosen
7680         colours. Strike through deleted text.
7681
7682         * paragraph.h:
7683         * paragraph.C:
7684         * paragraph_pimpl.h:
7685         * paragraph_pimpl.C: output change markers in .lyx and .tex. Pass
7686           in the current change to the insert functions. Rework erase to
7687           mark text as deleted, adding an eraseIntern() and a range-based
7688           erase(). Implement per-paragraph change lookup and
7689           accept/reject.
7690
7691         * paragraph_funcs.C: Fixup paste for change tracking.
7692
7693         * tabular.C: mark added row/columns as new.
7694
7695         * text.C: fix rowLast() to never return -1. Don't allow
7696           spellchecking of deleted text. Track transpose changes. Don't
7697           allow paragraph break or merge where appropriate.
7698
7699         * text2.C: leave cursor at end of selection after a cut.
7700
7701 2003-02-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7702
7703         * text.C (getLengthMarkerHeight):
7704         (drawLengthMarker): make the `symbolic' lengths (small/med/big)
7705         visible on screen too.
7706
7707 2003-02-07  John Levon  <levon@movementarian.org>
7708
7709         * text.C: s/LYX_PAPER_MARGIN/PAPER_MARGIN/g
7710
7711 2003-02-05  Angus Leeming  <leeming@lyx.org>
7712
7713         * lyxserver.C (read_ready): revert my patch of 11 September last year
7714         as it sends PC cpu through the roof. Presumably this means that
7715         the lyxserver will no longer run on an Alpha...
7716
7717 2003-01-30  Angus Leeming  <leeming@lyx.org>
7718
7719         * factory.C (createInset): create an InsetCommandParam of type "index"
7720         and use it to 'do the right thing'.
7721
7722         * text2.C (getStringToIndex): ensure that cursor position is always
7723         reset to the reset_cursor position.
7724
7725 2003-01-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7726
7727         * lyxfunc.C (getStatus): "buffer-export custom" should never be
7728         disabled.
7729
7730 2003-01-20  Michael Schmitt <michael.schmitt@teststep.org>
7731
7732         * bufferview.C:
7733         * lyxcb.C:
7734         * lyxfunc.C: Output messages with identical spelling, punctuation,
7735         and spaces
7736
7737 2003-01-22  Michael Schmitt  <Michael.Schmitt@teststep.org>
7738
7739         * MenuBackend.C (expandFormats): List only viewable export formats
7740         in "View" menu
7741
7742         * buffer.C (parseSingleLyXformat2Token): Fix misleading error
7743         message
7744
7745         * lyxfunc.C (getStatus): Make sure that formats other than
7746         "fax" can also be disabled
7747
7748 2003-01-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7749
7750         * text3.C (dispatch): put the lfuns that insert insets in 3
7751         groups, and call doInsertInset with appropriate arguments.
7752         (doInsertInset): new function, that creates an inset and inserts
7753         it according to some boolean parameters.
7754
7755 2003-01-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
7756
7757         * buffer.C (readFile): remember to pass on 'par' when calling
7758         readFile recursively.
7759
7760 2003-01-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7761
7762         * MenuBackend.C (expandFormats): add "..." to import formats.
7763
7764 2003-01-15  Dekel Tsur  <dekelts@tau.ac.il>
7765
7766         * paragraph.C (asString): Remove XForms RTL hacks.
7767
7768 2003-01-13  Alfredo Braunstein <abraunst@libero.it>
7769         * buffer.C: fix typo
7770
7771 2003-01-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
7772
7773         * Makefile.am (LIBS): delete var
7774         (lyx_LDADD): add @LIBS@ here instead.
7775
7776 2003-01-08  Michael Schmitt <Michael.Schmitt@teststep.org>
7777
7778         * Clarify the meaning of "wheel mouse jump"
7779
7780 2003-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7781
7782         * lyxfunc.C (getStatus): fix disabling of cut/paste of cells in a
7783         tabular in a float
7784
7785 2003-01-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7786
7787         * importer.C (Loaders): do not preallocate 3 elements in the
7788         vector, since one ends up with 6 elements otherwise
7789
7790 2002-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7791
7792         * DepTable.C (write): write the file name as last element of the
7793         .dep file (because it may contain spaces)
7794         (read): read info in the right order
7795
7796 2003-01-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7797
7798         * paragraph_pimpl.C (simpleTeXBlanks):
7799         (simpleTeXSpecialChars):
7800         * paragraph.C (simpleTeXOnePar): make `column' unsigned.
7801
7802         * tabular.C (latex): add some missing case statements. Reindent.
7803
7804         * MenuBackend.C (expandToc): remove unused variable.
7805
7806 2003-01-06  Michael Schmitt <Michael.Schmitt@teststep.org>
7807
7808         * LColor.C:
7809         * LaTeX.C:
7810         * LyXAction.C:
7811         * MenuBackend.C:
7812         * buffer.C:
7813         * exporter.C:
7814         * lyxfunc.C:
7815         * lyxrc.C: fix inconsistent usage of spaces, colons, capitalization,
7816         and the like.
7817
7818 2003-01-05  John Levon  <levon@movementarian.org>
7819
7820         * BufferView.h:
7821         * BufferView.C: add getEncoding()
7822
7823         * kbsequence.h:
7824         * kbsequence.C: do not store last keypress
7825
7826         * lyxfunc.h:
7827         * lyxfunc.C: store last keypress here instead. Pass encoding
7828           to getISOEncoded()
7829
7830 2002-12-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7831
7832         * lyx_main.C (init): remove annoying error message when following
7833         symbolic links (bug #780)
7834
7835 2002-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7836
7837         * text.C (insertChar):
7838         * lyxrc.C (getDescription): remove extra spaces
7839
7840 2002-12-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7841
7842         * lyxrc.C (getDescription): remove extra spaces
7843
7844 2002-12-20  John Levon  <levon@movementarian.org>
7845
7846         * text3.C: hack fix for page up/down across tall rows
7847
7848 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7849
7850         * text2.C (pasteEnvironmentType): avoid crash if layout-copy has
7851         not been invoked
7852
7853 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7854
7855         * lyxfunc.C (getStatus): query lyx_gui::getStatus() to catter for
7856         unimplemented lfuns. Make LFUN_THESAURUS_ENTRY status unknown if
7857         thesaurus is not compiled in
7858
7859 2002-12-17  Alfredo Braunstein <abraunst@libero.it>
7860
7861         * lyxfunc.C: correct  inversion of WORDFINDBACK/FORWARD
7862
7863 2002-12-16  Angus Leeming  <leeming@lyx.org>
7864
7865         * lyxrc.[Ch]:
7866         * lyx_main.C (init): remove override_x_deadkeys stuff.
7867
7868 2002-12-12  John Levon  <levon@movementarian.org>
7869
7870         * lyxfunc.C: use LyXKeySym->isText() as last-ditch
7871           insert. Only remove shift modifier under strict
7872           circumstances.
7873
7874 2002-12-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
7875
7876         * MenuBackend.C (expandToc): fix crash.
7877
7878 2002-12-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
7879
7880         * MenuBackend.C (expandToc): gettext on float names.
7881
7882 2002-12-03  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
7883
7884         * lyxlength.[Ch]: set default unit to UNIT_NONE,
7885         implement bool empty() [bug 490]
7886
7887 2002-12-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
7888
7889         * text2.C, CutAndPaste.C: use BoostFormat.h not boost/format.hpp
7890
7891 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
7892
7893         * several files: ws changes
7894
7895 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
7896
7897         * text2.C (setCounter): clean up a bit, use boost.format.
7898         (updateCounters): initialize par upon declaration.
7899
7900         * CutAndPaste.C (SwitchLayoutsBetweenClasses): set the layout also
7901         if the layout exists. We do not just store the layout any more.
7902         (SwitchLayoutsBetweenClasses): use boost.format
7903
7904 2002-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7905
7906         * converter.C (convert): if from and to files are the same, use a
7907         temporary files as intermediary
7908
7909 2002-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7910
7911         * commandtags.h:
7912         * LyXAction.C (init): remove LFUN_VECTOR (bug 662)
7913
7914 2002-11-27  Dekel Tsur  <dekelts@tau.ac.il>
7915
7916         * lyxrc.[Ch]: Add {roman,sans,typewriter}_font_foundry variables.
7917
7918 2002-11-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
7919
7920         * tabular.C (asciiPrintCell): use string(size, char) instead of
7921         explicit loop.
7922
7923         * sgml.C (openTag): fix order of arguments to string constructor
7924         (closeTag): ditto
7925
7926         * lyxfunc.C (dispatch): use boost.format
7927
7928         * lots of files: change "c" -> 'c'
7929
7930 2002-11-25  Dekel Tsur  <dekelts@tau.ac.il>
7931
7932         * encoding.C: Patch from Isam Bayazidi: Fix Arabic shaping.
7933
7934 2002-11-25  Angus Leeming  <leeming@lyx.org>
7935
7936         * BoostFormat.h: wrap code inside #ifdef __GNUG__ block.
7937
7938         * lyx_main.C (init): compile fix.
7939
7940 2002-11-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
7941
7942         * lyx_cb.C (start): boost.formatify
7943         do not include <iostream>
7944
7945         * lengthcommon.C: ws only
7946
7947         * boost-inst.C,BoostFormat.h: add more explict instantations
7948
7949 2002-11-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
7950
7951         * lots of files: handle USE_BOOST_FORMAT
7952
7953 2002-11-21  John Levon  <levon@movementarian.org>
7954
7955         * pspell.C: fix compile
7956
7957 2002-11-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7958
7959         * lyxfunc.C (dispatch): use boost::format
7960         (open): ditto
7961         (doImport): ditto
7962
7963         * lyxfont.C (stateText): use boost::format
7964
7965         * lyx_main.C (LyX): use boost::format
7966         (init): ditto
7967         (queryUserLyXDir): ditto
7968         (readRcFile): ditto
7969         (parse_dbg): ditto
7970         (typedef boost::function): use the recommened syntax.
7971
7972         * importer.C (Import): use boost::format
7973
7974         * debug.C (showLevel): use boost::format
7975
7976         * converter.C (view): use boost::format
7977         (convert): ditto
7978         (move): ditto
7979         (scanLog): ditto
7980
7981         * bufferview_funcs.C (currentState): use boost::format
7982
7983         * bufferlist.C (emergencyWrite): use boost::format
7984
7985         * buffer.C (readLyXformat2): use boost::format
7986         (parseSingleLyXformat2Token): ditto
7987
7988         * Makefile.am (lyx_SOURCES): add BoostFormat.h and boost-inst.C
7989
7990         * LaTeX.C (run): use boost::format
7991
7992         * Chktex.C (scanLogFile): use boost::format
7993
7994         * BufferView_pimpl.C (savePosition): use boost::format
7995         (restorePosition): ditto
7996         (MenuInsertLyXFile): ditto
7997
7998         * BoostFormat.h: help file for explicit instation.
7999
8000 2002-11-21  Dekel Tsur  <dekelts@tau.ac.il>
8001
8002         * tabular.C (latex): Support for block alignment in fixed width
8003         columns.
8004
8005 2002-11-17  John Levon  <levon@movementarian.org>
8006
8007         * BufferView_pimpl.C:
8008         * lyx_cb.C:
8009         * lyxfunc.C: split filedialog into open/save
8010
8011 2002-11-08  Juergen Vigna  <jug@sad.it>
8012
8013         * undo_funcs.C (textHandleUndo): fixed problems with undo introduced
8014         by my last patch (hopefully).
8015
8016 2002-11-08  John Levon  <levon@movementarian.org>
8017
8018         * iterators.h:
8019         * iterators.C:
8020         * buffer.h:
8021         * buffer.C:
8022         * paragraph.h:
8023         * paragraph.C:
8024         * toc.h:
8025         * toc.C: ParConstIterator, and use it (from Lars)
8026
8027 2002-11-07  Ben Stanley  <bds02@uow.edu.au>
8028
8029         * lyxtextclass.[Ch]: revise and add doxygen comments
8030
8031 2002-11-07  John Levon  <levon@movementarian.org>
8032
8033         * text.C: fix progress value for spellchecker
8034
8035         * toc.C: fix navigate menu for insetwrap inside minipage
8036
8037         * paragraph_funcs.C: added FIXME for suspect code
8038
8039 2002-11-07  John Levon  <levon@movementarian.org>
8040
8041         * BufferView_pimpl.C: fix redrawing of insets
8042           on buffer switch
8043
8044 2002-11-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8045
8046         * text2.C (updateCounters): fix bug 668
8047
8048 2002-11-04  Dekel Tsur  <dekelts@tau.ac.il>
8049
8050         * text3.C (dispatch): Do not make the buffer dirty when moving the
8051         cursor.
8052
8053 2002-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
8054
8055         * vc-backend.C: STRCONV
8056         (scanMaster): ditto
8057
8058         * text2.C (setCounter): STRCONV
8059
8060         * paragraph.C (asString): STRCONV
8061
8062         * lyxlength.C (asString): STRCONV
8063         (asLatexString): ditto
8064
8065         * lyxgluelength.C (asString): STRCONV
8066         (asLatexString): ditto
8067
8068         * lyxfunc.C (dispatch): STRCONV
8069         (open): ditto
8070
8071         * lyxfont.C (stateText): STRCONV
8072
8073         * importer.C (Import): STRCONV
8074
8075         * counters.C (labelItem): STRCONV
8076         (numberLabel): ditto
8077         (numberLabel): remove unused ostringstream o
8078
8079         * chset.C: STRCONV
8080         (loadFile): ditto
8081
8082         * bufferview_funcs.C (currentState): STRCONV
8083
8084         * buffer.C (readFile): STRCONV
8085         (asciiParagraph): ditto
8086         (makeLaTeXFile): ditto
8087
8088         * Spacing.C (writeEnvirBegin): STRCONV
8089
8090         * LaTeXFeatures.C (getLanguages): STRCONV
8091         (getPackages): ditto
8092         (getMacros): ditto
8093         (getBabelOptions): ditto
8094         (getTClassPreamble): ditto
8095         (getLyXSGMLEntities): ditto
8096         (getIncludedFiles): ditto
8097
8098         * LaTeX.C: STRCONV
8099         (run): ditto
8100         (scanAuxFile): ditto
8101         (deplog): ditto
8102
8103         * LString.h: add the STRCONV macros
8104
8105         * BufferView_pimpl.C (savePosition): STRCONV
8106         (restorePosition): ditto
8107         (MenuInsertLyXFile): ditto
8108
8109         * vc-backend.C (scanMaster): change from submatch[...] to
8110         submatch.str(...)
8111
8112         * funcrequest.C: include config.h
8113
8114         * factory.C: include config.h
8115
8116         * chset.C (loadFile): change from submatch[...] to submatch.str(...)
8117
8118         * box.C: include config.h
8119
8120         * LaTeX.C (scanAuxFile): change from submatch[...] to
8121         submatch.str(...)
8122         (deplog): ditto
8123
8124 2002-10-25  Angus Leeming  <leeming@lyx.org>
8125
8126         * BufferView_pimpl.C (cursorToggle): remove reapSpellchecker hack.
8127
8128         * ispell.[Ch] (setError): new method.
8129         * ispell.C (c-tor): move out child process into new class LaunchIspell.
8130         Use setError() insetead of goto END.
8131
8132         * lyx_cb.C (AutoSave): move out child process into new class
8133         AutoSaveBuffer.
8134
8135 2002-10-30  John Levon  <levon@movementarian.org>
8136
8137         * text3.C: make start appendix undoable
8138
8139 2002-10-24  Dekel Tsur  <dekelts@tau.ac.il>
8140
8141         * lyxlength.C (inPixels): Fix returned value.
8142
8143         * paragraph.C (TeXOnePar): Fix bug with language changes in nested
8144         environment.
8145
8146 2002-10-24  Angus Leeming  <leeming@lyx.org>
8147
8148         * lyxgluelength.h: no need to forward declare BufferParams
8149         or BufferView, so don't.
8150
8151 2002-10-21  John Levon  <levon@movementarian.org>
8152
8153         * BufferView.C: menuUndo ->undo, redo
8154
8155         * BufferView.h: document, remove dead, make some methods private
8156
8157         * paragraph_funcs.h:
8158         * paragraph_funcs.C:
8159         * CutAndPaste.C: s/pasteParagraph/mergeParagraph
8160
8161         * buffer.h:
8162         * buffer.C:
8163         * sgml.h:
8164         * sgml.C: move sgml open/close tag into sgml.C
8165
8166         * bufferview_funcs.h: unused prototype
8167
8168         * lyxfunc.h:
8169         * lyxfunc.C: remove unused
8170
8171         * lyxtext.h:
8172         * text.C: remove unused
8173
8174 2002-10-21  John Levon  <levon@movementarian.org>
8175
8176         * BufferView.h:
8177         * BufferView.C:
8178         * BufferView_pimpl.h:
8179         * BufferView_pimpl.C: fix mouse wheel handling based on
8180           patch from Darren Freeman
8181
8182 2002-10-09  Dekel Tsur  <dekelts@tau.ac.il>
8183
8184         * lyx_main.C (queryUserLyXDir): Fix automatic reconfiguration.
8185
8186 2002-10-17  Dekel Tsur  <dekelts@tau.ac.il>
8187
8188         * lyxlength.C (inPixels): Fix hanfling of negative length.
8189         Fix LyXLength::MU case.
8190
8191 2002-10-16  John Levon  <levon@movementarian.org>
8192
8193         * buffer.C: remove \\protected_separator parsing done by lyx2lyx now
8194
8195 2002-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8196
8197         * converter.C (view): add support for $$i (file name) and $$p
8198         (file path) for the viewer command. If $$i is not specified, then
8199         it is appended to the command (for compatibility with old syntax)
8200
8201 2002-10-14  Juergen Vigna  <jug@sad.it>
8202
8203         * undo_funcs.C (textHandleUndo): alter the order in which the
8204         new undopar is added to the LyXText, as we have to set first
8205         the right prev/next and then add it as otherwise the rebuild of
8206         LyXText is not correct. Also reset the cursor to the right paragraph,
8207         with this IMO we could remove the hack in "redoParagraphs()".
8208
8209 2002-10-09  Angus Leeming  <leeming@lyx.org>
8210
8211         * Bufferview_pimpl.C (dispatch): call InsetCitation::setLoadingBuffer
8212         to turn off an optimisation if a new inset is to be inserted.
8213
8214 2002-10-11 André Pönitz <poenitz@gmx.net>
8215
8216         * lyxtext.h: make some functions public to allow access
8217         from inset/lyxtext for handling LFUN_PRIOR/NEXT
8218
8219 2002-10-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8220
8221         * text3.C (dispatch): when changing layout, avoid an infinite loop
8222         [bug #652]
8223
8224 2002-10-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8225
8226         * lyxrc.C (read): treat a viewer or converter command of "none" as
8227         if it were empty.
8228
8229         * MenuBackend.C (expandFormats): for an update, also allow the
8230         formats that are not viewable
8231
8232         * lyx_main.C (queryUserLyXDir): re-run automatically the configure
8233         script if it is newer than the lyxrc.defaults in user directory
8234
8235 2002-10-07 André Pönitz <poenitz@gmx.net>
8236
8237         * text.C: Vitaly Lipatov's small i18n fix
8238
8239 2002-09-25  Angus Leeming  <leeming@lyx.org>
8240
8241         * ispell.h: doxygen fix.
8242
8243 2002-09-25  Dekel Tsur  <dekelts@tau.ac.il>
8244
8245         * buffer.h (readFile): Add a new argument to the method, to allow
8246         reading of old-format templates.
8247
8248 2002-09-24  Dekel Tsur  <dekelts@tau.ac.il>
8249
8250         * toc.C (getTocList): Get TOC from InsetWrap.
8251
8252 2002-09-16  John Levon  <levon@movementarian.org>
8253
8254         * lyxfunc.C: check tabular for cut/copy too
8255
8256 2002-09-12  John Levon  <levon@movementarian.org>
8257
8258         * LyXAction.C: tidy
8259
8260         * factory.h:
8261         * factory.C: add header
8262
8263         * paragraph_funcs.h:
8264         * paragraph_funcs.C: cleanup
8265
8266 2002-09-11  John Levon  <levon@movementarian.org>
8267
8268         * PrinterParams.h: odd/even default to true
8269
8270 2002-09-12  Rob Lahaye  <lahaye@snu.ac.kr>
8271
8272         * PrinterParams.h: update printer parameters for new xforms dialog
8273
8274 2002-09-11  Angus Leeming  <leeming@lyx.org>
8275
8276         * lyxserver.C (read_ready): re-write to make it more transparent
8277         and to make it work in coherent fashion under Tru64 Unix.
8278
8279 2002-09-11  André Pönitz <poenitz@gmx.net>
8280
8281         * commandtags.h:
8282         * LyXAction.C:
8283         * text3.C: implement LFUN_WORDSEL
8284
8285 2002-09-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
8286
8287         * lyxtextclass.h: don't include FloatList.h, forward declare instead.
8288         make floatlist_ a boost::shared_ptr<FloatList>
8289
8290         * lyxtextclass.C: include FloatList.h
8291         (LyXTextClass): initialize floatlist_
8292         (TextClassTags): add TC_NOFLOAT
8293         (Read): match "nofloat" to TC_NOFLOAT and use it.
8294         (readFloat): modify call to floatlist_
8295         (floats): ditto
8296         (floats): ditto
8297
8298         * FloatList.[Ch] (FloatList): remove commented out float
8299         initialization.
8300         (erase): new function
8301
8302 2002-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8303
8304         * MenuBackend.C (expandToc): fix crash when there is no document
8305         open
8306
8307 2002-09-10  Dekel Tsur  <dekelts@tau.ac.il>
8308
8309         * many files: Add insetwrap.
8310
8311 2002-09-09  John Levon  <levon@movementarian.org>
8312
8313         * text2.C: remove confusing and awkward depth wraparound
8314
8315 2002-09-09  John Levon  <levon@movementarian.org>
8316
8317         * BufferView_pimpl.C: Don't use empty arg for LFUN_CHILD_INSERT
8318
8319         * buffer.h:
8320         * buffer.C: remove getIncludeonlyList()
8321
8322         * paragraph.C:
8323         * lyxfunc.C: remove headers
8324
8325 2002-09-09  Juergen Vigna  <jug@sad.it>
8326
8327         * text.C (getColumnNearX): fix form Michael this is most
8328         probably a cut&paste bug.
8329
8330 2002-09-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
8331
8332         * remove all INHERIT_LANG and INHERIT_LANGUAGE commented code
8333
8334         * LaTeXFeatures.C (useLayout): let tclass and lyt be a const
8335         references, ws changes.
8336
8337         * text2.C (init): update counters after init
8338         (insertParagraph): no need to set counter on idividual paragraphs.
8339         (setCounter): access the counters object in the textclass object
8340         on in the buffer object.
8341         (updateCounters): ditto
8342
8343         * lyxtextclass.C: include counters.h, add variable ctrs_ as
8344         shared_ptr<Counters> to avoid loading counters.h in all
8345         compilation units.
8346         (LyXTextClass): initialize ctrs_
8347         (TextClassTags): add TC_COUNTER, and ...
8348         (Read): use it here.
8349         (CounterTags): new tags
8350         (readCounter): new function
8351         (counters): new funtion
8352         (defaultLayoutName): return a const reference
8353
8354         * counters.C (Counters): remove contructor
8355         (newCounter): remove a couple of unneeded statements.
8356         (newCounter): simplify a bit.
8357         (numberLabel): some small formatting changes.
8358
8359         * buffer.[Ch]: remove all traces of counters, move the Counters
8360         object to the LyXTextClass.
8361
8362 2002-09-06  Alain Castera  <castera@in2p3.fr>
8363
8364         * tabular.C: uses \tabularnewline; uses >{...} construct from array
8365         package to set the horizontal alignment on fixed width columns.
8366
8367         * lyx_sty.C:
8368         * lyx_sty.h: added tabularnewline macro def.
8369
8370         * LaTeXFeatures.C: added NeedTabularnewline macro feature
8371
8372 2002-09-06  John Levon  <levon@movementarian.org>
8373
8374         * LyXAction.C: tooltips for sub/superscript
8375
8376         * MenuBackend.C: a bit more verbose
8377
8378         * lyxfunc.C: tiny clean
8379
8380         * undo_funcs.C: document undo_frozen
8381
8382 2002-09-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
8383
8384         * counters.C (Counters): add missing algorithm counter.
8385
8386         * text2.C (setCounter): lookup the counter with layouts latexname
8387         instead of by section number.
8388         (setCounter): use a hackish way to lookup the correct enum
8389         counter.
8390         a float name->type change
8391         reset enum couners with counter name directly instead of depth value.
8392
8393         * counters.C (Counters): remove the push_backs, change to use the
8394         float type not the float name.
8395         (labelItem): remove unused string, float name->type change
8396
8397         * counters.h: don't include vector, loose the enums and sects vectors
8398
8399 2002-09-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
8400
8401         * lyxtextclass.C (TextClassTags): add TC_FLOAT
8402         (Read): add float->TC_FLOAT to textclassTags
8403         (Read): and handle it in the switch
8404         (readFloat): new function
8405
8406         * FloatList.C (FloatList): comment out the hardcoded float
8407         definitions.
8408
8409         * lyxlayout.h: ws change.
8410
8411 2002-08-29  Dekel Tsur  <dekelts@tau.ac.il>
8412
8413         * buffer.C (readFile): Look for lyx2lyx in LYXDIR/lyx2lyx/
8414
8415 2002-09-03  Angus Leeming  <leeming@lyx.org>
8416
8417         * BufferView_pimpl.h: qualified name is not allowed in member
8418         declaration: WorkArea & Pimpl::workarea() const;
8419
8420         * factory.C: added using std::endl directive.
8421
8422         * text3.C: added using std::find and std::vector directives.
8423
8424 2002-08-29  André Pönitz <poenitz@gmx.net>
8425
8426         * lyxtext.h:
8427         * text2.C: remove unused member number_of_rows
8428
8429         * Makefile.am:
8430         * BufferView2.C: remove file, move contents to...
8431         * BufferView.C: ... here
8432
8433         * BufferView_pimpl.C:
8434         * factory.C: move more inset creation to factory
8435
8436         * vspace.C: avoid direct usage of LyXText, ws changes
8437
8438         * BufferView.[Ch]:
8439                 don't provide direct access to WorkArea, use two simple
8440                 acessors haveSelction() and workHeight() instead
8441
8442
8443 2002-08-29  John Levon  <levon@movementarian.org>
8444
8445         * BufferView_pimpl.C (dispatch): do not continue when
8446           no buffer
8447
8448 2002-08-28  André Pönitz <poenitz@gmx.net>
8449
8450         * commandtags.h: new LFUN_MOUSE_DOUBLE, LFUN_MOUSE_TRIPLE
8451
8452         * BufferView.h:
8453         * BufferView_pimpl.[Ch] move work area mouse event to LFUNs
8454
8455 2002-08-28  Rob Lahaye  <lahaye@snu.ac.kr>
8456
8457         * buffer.C: increment LYX_FORMAT to 221
8458
8459         * lyxrc.[Ch]: declare display_graphics as grfx::DisplayType and use
8460         grfx::displayTranslator.find(foo); include graphics/GraphicsTypes.h.
8461
8462         * lyxrc.C: use more "if (...) { } else { }" style (John's advice).
8463
8464         * lyx_main.C: call once the setDisplayTranslator(); is that okay here?
8465
8466 2002-08-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8467
8468         * factory.C (createInset): use LyXTextClass::floats
8469
8470         * MenuBackend.C (expandFloatListInsert):
8471         (expandFloatInsert):
8472         (expandToc):
8473
8474         * text2.C (setCounter):
8475
8476         * LaTeXFeatures.C (useFloat):
8477         (getFloatDefinitions):
8478
8479         * BufferView_pimpl.C (dispatch): use LyXTextClass::floats()
8480
8481         * lyxtextclass.[Ch]: rename layoutlist to layoutlist_; add
8482         floatlist_, with accessor floats().
8483
8484         * FloatList.h: remove global FloatList
8485
8486 2002-08-26  André Pönitz <poenitz@gmx.net>
8487
8488         * paragraph.[Ch]: Martin's patch for the \end_deeper bug
8489
8490         * BufferView.h:
8491         * BufferView2.C:
8492         * BufferView_pimpl.C:
8493         * text3.C: mun hanfling of LFUN_CUT/COPY/PASTE to LyXText
8494
8495 2002-08-25  John Levon  <levon@movementarian.org>
8496
8497         * LyXAction.C: fix margin note description
8498
8499 2002-08-24  John Levon  <levon@movementarian.org>
8500
8501         * buffer.C:
8502         * bufferlist.C:
8503         * bufferview_funcs.C:
8504         * lyxfont.C:
8505         * undo_funcs.C: cleanups
8506
8507         * lyxfunc.C: disable CUT/COPY when no selection
8508
8509 2002-08-23  Rob Lahaye  <lahaye@snu.ac.kr>
8510
8511         * lyxlength.[Ch]: use better (three letters) mnemonics for percentage units
8512         in "enum UNIT"; e.g. PTW for Percent of TextWidth
8513
8514         * lyxrc.C: graphics display is now monochrome|grayscale|color|none.
8515         Add backward compatibility to "mono", "gray" and "no".
8516
8517 2002-08-24  Dekel Tsur  <dekelts@tau.ac.il>
8518
8519         * buffer.C (readFile): Always run lyx2lyx if file_format < LYX_FORMAT
8520         (and file_format >= 200).
8521
8522 2002-08-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8523
8524         * lyxlayout.C (Read): treat LT_OPTARGS as an integer, not a bool
8525
8526 2002-08-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8527
8528         * lyxfunc.C (getStatus): handle LFUN_INSET_OPTARG
8529
8530 2002-08-20  Martin Vermeer  <martin.vermeer@hut.fi>
8531
8532         * BufferView_pimpl.C:
8533         * LyXAction.C:
8534         * buffer.C:
8535         * commandtags.h:
8536         * lyxfunc.C:
8537         * paragraph.[Ch]:
8538         * text2.C:
8539         * insets/insetoptarg.[Ch]: Added "optional argument" collapsible
8540         inset and code to make it  work with the paragraph code. The inset
8541         can be anywhere in the paragraph, but will only do the expected
8542         thing in LaTeX if the layout file contains the parameter line
8543                         OptionalArgs    1
8544         (or more generally, a nonzero value) for that layout.
8545
8546 2002-08-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
8547
8548         * paragraph.h: remove the declaration of undefined counters class
8549         function.
8550
8551 2002-08-22  Martin Vermeer <martin.vermeer@hut.fi>
8552
8553         * text2.C (setCounter):  fixed enumeration mis-count as reported by
8554         Dr. Richard Hawkins.
8555
8556 2002-08-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8557
8558         * paragraph_funcs.h: remove some unneeded includes
8559
8560         * text.C (backspace): pasteParagraph now in global scipe
8561
8562         * CutAndPaste.C (cutSelection): pasteParagraph now in global scope
8563         (pasteSelection): ditto
8564
8565         * paragraph.[Ch] (pasteParagraph): move function to global scope ...
8566         * paragraph_funcs.C (pasteParagraph): ... here
8567
8568 2002-08-20  André Pönitz <poenitz@gmx.net>
8569
8570         * commandtags.h: new LFUNs for swapping/copying table row/colums
8571
8572         * LyXAction.C:
8573         * lyxfunc.C: support for new lfuns
8574
8575 2002-08-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
8576
8577         * tabular.C:
8578         * buffer.[Ch]: remove NO_COMPABILITY stuff
8579
8580 2002-08-20  Lars Gullik Bjønnes  <larsbj@gullik.net>
8581
8582         * boost.C (throw_exception): new file, with helper function for
8583         boost compiled without exceptions.
8584
8585         * paragraph.h:
8586         * lyxlength.C:
8587         * buffer.C:
8588         * ParameterStruct.h:
8589         * ParagraphParameters.[Ch]: remove NO_PEXTRA_REALLY stuff
8590
8591         * bufferlist.C (emergencyWriteAll): use boost bind
8592
8593         * BufferView_pimpl.C (moveCursorUpdate): remove inline
8594
8595         * text.C: include paragraph_funcs.h
8596         (breakParagraph): breakParagraph is now in global scope
8597
8598         * paragraph_funcs.[Ch]: new files
8599
8600         * paragraph.C (breakParagraph,breakParagraphConservative): move to
8601         global scope
8602
8603         * buffer.C: include paragraph_funcs.h
8604         (insertStringAsLines): breakParagraph is now in global scope
8605
8606         * Makefile.am (lyx_SOURCES): add paragraph_funcs.h and
8607         paragraph_funcs.C
8608
8609         * CutAndPaste.C: include paragraph_funcs.h
8610         (cutSelection): breakParagraphConservative is now in global scope
8611         (pasteSelection): ditto
8612
8613         * buffer.h: declare oprator== and operator!= for
8614         Buffer::inset_iterator
8615
8616         * bufferlist.C (emergencyWrite): don't use fmt(...)
8617
8618         * text3.C: add using std::endl
8619
8620         * BufferView.C (moveCursorUpdate): remove default arg
8621
8622 2002-08-20  André Pönitz <poenitz@gmx.net>
8623
8624         * buffer.[Ch]: move inline functions to .C
8625
8626         * BufferView2.C:
8627         * BufferView_pimpl.C:
8628         * text.C:
8629         * buffer.[Ch]: use improved inset_iterator
8630
8631         * buffer.C:
8632         * paragraph.[Ch]: write one paragraph at a time
8633
8634 2002-08-20  Dekel Tsur  <dekelts@tau.ac.il>
8635
8636         * BufferView_pimpl.C (dispatch): Insert insetbibtex with "plain"
8637         style if style is not specified.
8638
8639 2002-08-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8640
8641         * text2.C (setCounter): when searching for right label for a
8642         caption, make sure to recurse to parent insets (so that a caption
8643         in a minipage in a figure float works) (bug #568)
8644
8645 2002-08-20  André Pönitz <poenitz@gmx.net>
8646
8647         * text3.C: new file for LyXText::dispatch() and helpers
8648
8649         * BufferView.[Ch]: move text related stuff to LyXText::dispatch()
8650
8651         * funcrequest.[Ch]: add message() do avoid direct access to LyXFunc
8652
8653 2002-08-19  André Pönitz <poenitz@gmx.net>
8654
8655         * lyxtext.h:
8656         * text.C: new LyXText::dispatch()
8657
8658         * BufferView_pimpl.C: move handling of LFUN_APPENDIX to LyXText
8659
8660 2002-08-18  Dekel Tsur  <dekelts@tau.ac.il>
8661
8662         * text.C (paintRowSelection): Fix code for rows with both RTL & LTR text.
8663
8664         * BufferView_pimpl.C (smartQuote): Insert typewriter quotes in
8665         Hebrew text.
8666
8667 2002-08-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8668
8669         * Makefile.am: use $(variables) instead of @substitutions@
8670
8671 2002-08-15  André Pönitz <poenitz@gmx.net>
8672
8673         * lyxfunc.C:
8674         * BufferView_pimpl.C: streamlining mathed <-> outer world
8675         interaction
8676
8677         * commandtags.h:
8678         * LyXAction.C: remove unused LFUN_MATH
8679
8680 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
8681
8682         * paragraph.[Ch]: add some NO_NEXT ifdefs.
8683
8684 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
8685
8686         * paragraph.C (Paragraph): reformat a bit
8687         (cutIntoMinibuffer): use builtin InsetList function instad of
8688         doing it manually.
8689         (getInset): ditto
8690
8691         * buffer.C: include boost/bind.hpp, add using std::for_each
8692         (writeFileAscii): use ParagraphList iterators
8693         (validate): use for_each for validate traversal of paragraphs
8694         (getBibkeyList): use ParagraphList iterators
8695         (resizeInsets): use for_each to resizeInsetsLyXText for all
8696         paragraphs.
8697         (getParFromID): use ParagraphList iterators
8698
8699         * BufferView2.C (lockInset): use paragraph list and iterators
8700
8701 2002-08-14  John Levon  <levon@movementarian.org>
8702
8703         * lyxserver.C: remove spurious xforms include
8704
8705 2002-08-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8706
8707         * lyxfunc.C (getStatus): disable math-extern outside of math mode
8708
8709 2002-08-13  André Pönitz <poenitz@gmx.net>
8710
8711         * LyXAction.[Ch]:
8712         * lyxfunc.C: further cleaning
8713
8714 2002-08-13  André Pönitz <poenitz@gmx.net>
8715
8716         * funcrequest.h: new constructor
8717
8718         * funcrequest.C: move stuff here from .h
8719
8720         * Makefile.am:
8721         * BufferView_pimpl.C:
8722         * LyXAction.C:
8723         * toc.C:
8724         * lyxfunc.C: subsequent changes
8725
8726         * lyxfunc.h: new view() member function
8727
8728         * lyxfunc.C: subsequent changes
8729
8730 2002-08-13  Angus Leeming  <leeming@lyx.org>
8731
8732         * BufferView2.C:
8733         * BufferView_pimpl.C:
8734         * buffer.C:
8735         * converter.C:
8736         * importer.C:
8737         * lyxfunc.C:
8738         * lyxvc.C:
8739         * toc.C:
8740         * vc-backend.C:
8741         changes due to the changed LyXView interface that now returns references
8742         to member variables not pointers.
8743
8744 2002-08-13  Angus Leeming  <leeming@lyx.org>
8745
8746         * WordLangTuple (word, lang_code): return references to strings,
8747         not strings.
8748
8749         * BufferView.h:
8750         * SpellBase.h:
8751         * lyxtext.h: forward-declare WordLangTuple.
8752
8753         * BufferView2.C:
8754         * ispell.C:
8755         * pspell.C:
8756         * text.C: #include "WordLangTuple.h".
8757
8758         * lyxtext.h:
8759         * text.C: (selectNextWordToSpellcheck): constify return type.
8760
8761 2002-08-12  Martin Vermeer <martin.vermeer@hut.fi>
8762
8763         * buffer.C:
8764         * buffer.h:
8765         * lyxtext.h:
8766         * paragraph.C:
8767         * paragraph_pimpl.h:
8768         * text.C:
8769         * text2.C:
8770         * undo_funcs.C: replaced per-paragraph counter logic by per-buffer, as
8771         suggested by Angus.
8772         Made updateCounter always count from start of buffer, and removed
8773         second argument (par).
8774         Reverted floats number display to '#'. Perhaps I'll try again when the
8775         code base is sanitized a bit.
8776
8777 2002-08-12  Angus Leeming  <leeming@lyx.org>
8778
8779         * buffer.[Ch] (getLabelList): constify.
8780
8781 2002-08-07  André Pönitz <poenitz@gmx.net>
8782
8783         * commandtags.h: new LFUN_MOUSE_(PRESS|MOTION|RELEASE)
8784
8785         * funcrequest.h: extension to keep mouse (x,y) position
8786
8787 2002-08-12  Juergen Vigna  <jug@sad.it>
8788
8789         * BufferView2.C (insertErrors): forbid undo when inserting error
8790         insets.
8791
8792         * CutAndPaste.C (SwitchLayoutsBetweenClasses): ditto
8793
8794 2002-08-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
8795
8796         * ParagraphList.[Ch]: new files
8797
8798         * Makefile.am (lyx_SOURCES): add ParagraphList.[Ch]
8799
8800         * BufferView2.C (lockInset): ParagraphList changes
8801         * toc.C: ditto
8802         * text2.C: ditto
8803         * bufferlist.C: ditto
8804         * buffer.h: ditto
8805         * buffer.C: ditto
8806
8807 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
8808
8809         * paragraph_pimpl.h: remove inclusion of boost/array.hpp, remove
8810         unused class variable counter_,
8811
8812         * paragraph.[Ch] (getFirstCounter): delete unused function
8813
8814         * counters.C: include LAssert.h
8815         (reset): add a new function with no arg, change other version to
8816         not have def. arg and to not allow empty arg.
8817
8818         * text2.C (setCounter): remove empty arg from call to Counters::reset
8819
8820 2002-08-11  John Levon  <levon@movementarian.org>
8821
8822         * Makefile.am: add WordLangTuple.h
8823
8824 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
8825
8826         * paragraph.C, ToolbarDefaults.h, kbsequence.h, lyx_main.C,
8827         lyxfunc.C lyxlex_pimpl.C: ws changes only.
8828
8829         * insets/insettext.C: InsetList changes
8830
8831         * graphics/GraphicsSupport.C (operator()): InsetList changes
8832
8833         * toc.C (getTocList): InsetList changes
8834
8835         * paragraph_pimpl.[Ch]: InsetList changes
8836
8837         * paragraph.[Ch]: InsetList changes
8838
8839         * buffer.C (inset_iterator): InsetList changes
8840         (setParagraph): ditto
8841         * buffer.h (inset_iterator): ditto
8842         * iterators.C (operator++): ditto
8843         * iterators.h: ditto
8844
8845         * Makefile.am (lyx_SOURCES): add InsetList.C and InsetList.h
8846
8847         * InsetList.[Ch]: new files, most InsetList handling moved out of
8848         paragraph.C.
8849
8850         * BufferView2.C (removeAutoInsets): InsetList changes
8851         (lockInset): ditto
8852         (ChangeInsets): ditto
8853
8854 2002-08-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
8855
8856         * paragraph_pimpl.h (empty): new function
8857
8858         * paragraph.[Ch] (empty): new function
8859
8860         * other files: use the new Paragraph::empty function
8861
8862 2002-08-09  John Levon  <levon@movementarian.org>
8863
8864         * lyxtext.h: remove unused refresh_height
8865
8866 2002-08-09  John Levon  <levon@movementarian.org>
8867
8868         * Makefile.am:
8869         * sgml.h:
8870         * sgml.C:
8871         * buffer.C:
8872         * paragraph.h:
8873         * paragraph.C: move sgml char escaping out of paragraph
8874
8875         * paragraph.h:
8876         * paragraph.C: remove id setter
8877
8878         * buffer.C:
8879         * paragraph.C:
8880         * paragraph_pimpl.C: remove dead tex_code_break_column
8881
8882         * bufferview_funcs.C: small cleanup
8883
8884         * lyxfunc.C: remove dead proto
8885
8886         * lyxtext.h: make some stuff private. Remove some dead stuff.
8887
8888         * lyxgluelength.C: make as[LyX]String() readable
8889
8890 2002-08-08  John Levon  <levon@movementarian.org>
8891
8892         * LyXAction.h:
8893         * LyXAction.C:
8894         * MenuBackend.C:
8895         * ToolbarDefaults.C:
8896         * lyxfunc.C:
8897         * lyxrc.C:
8898         * toc.C: lyxaction cleanup
8899
8900 2002-08-08  John Levon  <levon@movementarian.org>
8901
8902         * BufferView2.C: small cleanup
8903
8904         * lyxfind.h:
8905         * lyxfind.C: move unnecessary header into the .C
8906
8907 2002-08-08  John Levon  <levon@movementarian.org>
8908
8909         * funcrequest.h: just tedious nonsense
8910
8911         * lyx_main.h:
8912         * lyx_main.C: cleanups
8913
8914         * buffer.C:
8915         * vspace.C: remove dead header lyx_main.h
8916
8917 2002-08-07  Angus Leeming  <leeming@lyx.org>
8918
8919         * Paragraph.[Ch]:
8920         * paragraph_pimpl.h:
8921         Forward declare class Counters in paragraph.h by moving the ctrs member
8922         variable into Paragraph::Pimpl.
8923         (counters): new method, returning a reference to pimpl_->ctrs.
8924
8925         * text2.C: ensuing changes.
8926
8927 2002-08-07  John Levon  <levon@movementarian.org>
8928
8929         * BufferView_pimpl.C (resizeCurrentBuffer): update scrollbar
8930
8931         * BufferView_pimpl.C: announce X selection on double/triple
8932           click
8933
8934         * lyx_main.C: use correct bool in batch dispatch
8935
8936         * counters.h: srcdocs (from Martin Vermeer and Angus Leeming)
8937
8938 2002-08-07  André Pönitz <poenitz@gmx.net>
8939
8940         * funcrequest.h: new class to wrap a kb_action and its argument
8941
8942         * BufferView.[Ch]:
8943         * BufferView_pimpl[Ch]:
8944         * LaTeX.C:
8945         * LyXAction.[Ch]:
8946         * lyxfunc.[Ch]:
8947         * lyxrc.C: subsequent changes
8948
8949
8950 2002-08-07  John Levon  <levon@movementarian.org>
8951
8952         * BufferView_pimpl.C (redoCurrentBuffer): fix screen update when
8953           document options change.
8954
8955 2002-08-06  Martin Vermeer  <martin.vermeer@hut.fi>
8956
8957         * counters.[Ch]
8958         * text2.C
8959         * paragraph.[Ch]
8960         * makefile.am: move counters functionality over from
8961         text2.C/paragraph.[Ch] to counters.[Ch], and make proper C++.
8962
8963 2002-08-06  John Levon  <levon@movementarian.org>
8964
8965         * WordLangTuple.h: new file for word + language code tuple
8966
8967         * SpellBase.h:
8968         * pspell.h:
8969         * pspell.C:
8970         * ispell.h:
8971         * ispell.C:
8972         * lyxtext.h:
8973         * text.C:
8974         * text2.C:
8975         * BufferView.h:
8976         * BufferView2.C: use WordLangTuple
8977
8978         * layout.h:
8979         * buffer.C: remove very dead LYX_LAYOUT_DEFAULT
8980
8981 2002-08-06  John Levon  <levon@movementarian.org>
8982
8983         * lyx_main.C: fix cmdline batch handling
8984
8985 2002-08-06  André Pönitz <poenitz@gmx.net>
8986
8987         * lyxrc.C: set default for show_banner to true
8988
8989 2002-08-06  John Levon  <levon@movementarian.org>
8990
8991         * pspell.C: fix a crash, and allow new aspell to work
8992
8993 2002-08-06  John Levon  <levon@movementarian.org>
8994
8995         * lyxfunc.C:
8996         * kbmap.C: small cleanup
8997
8998         * vspace.h:
8999         * vspace.C: add const
9000
9001 2002-08-05  John Levon  <levon@movementarian.org>
9002
9003         * LyXAction.C: back to tabular-insert
9004
9005 2002-08-04  John Levon  <levon@movementarian.org>
9006
9007         * BufferView.h:
9008         * BufferView.C: cosmetic change
9009
9010         * BufferView_pimpl.C: s/IGNORE_CODE/NOTE_CODE/
9011
9012         * bufferlist.C:
9013         * buffer.h:
9014         * buffer.C:
9015         * lyxcb.h:
9016         * lyxcb.C:
9017         * lyxserver.C:
9018         * lyxvc.C:
9019         * vc-backend.C:
9020         * BufferView2.C: purge all "Lyx" not "LyX" strings
9021
9022         * lyxcursor.h:
9023         * lyxcursor.C: attempt to add some documentation
9024
9025         * lyxfunc.C:
9026         * commandtags.h:
9027         * LyXAction.C:
9028         * ToolbarDefaults.C:
9029         * BufferView_pimpl.C: remove LFUN_DIALOG_TABULAR_INSERT and
9030           merge with LFUN_TABULAR_INSERT
9031
9032         * Makefile.am:
9033         * SpellBase.h:
9034         * ispell.h:
9035         * ispell.C:
9036         * pspell.h:
9037         * pspell.C: split up i/pspell implementations into separate
9038           files, many cleanups
9039
9040         * lyxlex.C: unrevert, with a proper fix for prefix.length() == 0
9041
9042         * text2.C: some cleanup
9043
9044         * lyxfunc.C: don't check for isp_command == "none" any more, it
9045           didn't make any sense
9046
9047 2002-08-06      Martin Vermeer <martin.vermeer@hut.fi>
9048
9049         * counters.[Ch]
9050         * text2.C
9051         * paragraph.[Ch]
9052         * makefile.am: move counters functionality over
9053         from text2.C/paragraph.[Ch] to counters.[Ch], and
9054         make proper C++.
9055 2002-08-02  John Levon  <levon@movementarian.org>
9056
9057         * buffer.C: s/lyxconvert/lyx2lyx/
9058
9059 2002-08-02  Angus Leeming  <leeming@lyx.org>
9060
9061         * lyxlex.C: revert John's change as it breaks reading of the user
9062         preamble.
9063
9064 2002-08-02  Angus Leeming  <leeming@lyx.org>
9065
9066         * importer.C (Import):
9067         * lyxfunc.C (moveCursorUpdate, dispatch, view_status_message):
9068         changes due to LyXView::view() now returning a boost::shared_ptr.
9069
9070 2002-08-02  John Levon  <levon@movementarian.org>
9071
9072         * lyxlex.C: small cleanup
9073
9074 2002-08-02  John Levon  <levon@movementarian.org>
9075
9076         * text2.C (status): small cleanup, no logic change
9077
9078 2002-08-01  John Levon  <levon@movementarian.org>
9079
9080         * buffer.h:
9081         * buffer.C (writeFile): don't output alerts, caller
9082           handles this
9083
9084         * bufferlist.C:
9085         * lyx_cb.C: from above
9086
9087         * lyxfunc.C: allow to open non-existent files
9088
9089 2002-07-31  John Levon  <levon@movementarian.org>
9090
9091         * lyxserver.C: don't let incidental errors get
9092           in the way (errno)
9093
9094 2002-07-30  John Levon  <levon@movementarian.org>
9095
9096         * lyxfunc.C: disable character dialog in ERT inset (partial fix)
9097
9098 2002-07-30  John Levon  <levon@movementarian.org>
9099
9100         * lyxserver.h:
9101         * lyxserver.C: remove I/O callback too
9102
9103 2002-07-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9104
9105         * lyxfunc.C (getStatus): disable LFUN_LATEX_LOG when there is no
9106         log.
9107
9108 2002-07-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
9109
9110         * many files: strip,frontStrip -> trim,ltrim,rtrim
9111
9112 2002-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
9113
9114         * PrinterParams.h: remove extern containsOnly, and include
9115         support/lstrings.h instead.
9116
9117         * LaTeX.C (scanAuxFile): modify because of strip changes
9118         (deplog): ditto
9119         * buffer.C (makeLaTeXFile): ditto
9120         * bufferparams.C (writeFile): ditt
9121         * lyxfont.C (stateText): ditto
9122         * lyxserver.C (read_ready): ditto
9123         * vc-backend.C (scanMaster): ditto
9124
9125         * BufferView_pimpl.h: ws changes
9126
9127         * BufferView_pimpl.C: inlude boost/signals/connection.hpp
9128
9129 2002-07-26  André Pönitz <poenitz@gmx.net>
9130
9131         * kb_sequence.C: remove unnedred usings
9132
9133 2002-07-26  Juergen Vigna  <jug@sad.it>
9134
9135         * lyxfind.C (LyXReplace): we have to check better if the returned
9136         text is not of theLockingInset()->getLockingInset().
9137
9138 2002-07-25  Juergen Vigna  <jug@sad.it>
9139
9140         * lyxfind.C (LyXReplace): don't replace if we don't get the
9141         right LyXText.
9142
9143         * undo_funcs.C (createUndo): remove debugging code.
9144
9145 2002-07-25  Dekel Tsur  <dekelts@tau.ac.il>
9146
9147         * buffer.C (parseSingleLyXformat2Token): Use default placement
9148         when reading old floats.
9149
9150         * FloatList.C (FloatList): Change the default placement of figure
9151         and tables to "tbp".
9152
9153 2002-07-25  John Levon  <moz@compsoc.man.ac.uk>
9154
9155         * MenuBackend.C: using std::max
9156
9157 2002-07-25  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9158
9159         * MenuBackend.C (expandToc):
9160         (expandToc2): code moved from xforms menu frontend. It is now
9161         generic and TOCs are transparent to menu frontends.
9162
9163 2002-07-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9164
9165         * toc.C (getTocList): protect against buf=0
9166
9167         * MenuBackend.C (expand): move from Menu to MenuBackend; pass a
9168         Menu as first parameter. Now, this calls itself recursively to
9169         expand a whole tree (this will be useful for TOC handling)
9170         (expandFloatInsert): remove 'wide' version of floats
9171
9172         * MenuBackend.h (submenuname): returns the name of the submenu.
9173         (submenu): returns the submenu itself, provided it has been
9174         created by MenuBackend::expand
9175
9176 2002-07-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9177
9178         * paragraph_pimpl.C (simpleTeXSpecialChars): close fonts before
9179         insets which have noFontChange == true. (bug #172)
9180
9181 2002-07-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9182
9183         * BufferView_pimpl.C: add connection objects and use them...
9184         (Pimpl): here.
9185
9186 2002-07-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9187
9188         * MenuBackend.C (expandLastfiles):
9189         (expandDocuments):
9190         (expandFormats):
9191         (expandFloatListInsert):
9192         (expandFloatInsert):
9193         (expand): split expand in parts
9194
9195 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
9196
9197         * lyx_gui.C: use lyx_gui::exit()
9198
9199 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
9200
9201         * LyXAction.C: show the failing pseudo action
9202
9203 2002-07-22  Dekel Tsur  <dekelts@tau.ac.il>
9204
9205         * buffer.C (readFile): Run the lyxconvert script in order to read
9206         old files.
9207
9208 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
9209
9210         * LyXAction.C:
9211         * commandtags.h:
9212         * lyxfunc.C: remove LFUN_ADD_TO_TOOLBAR
9213
9214 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
9215
9216         * LyXAction.C:
9217         * commandtags.h:
9218         * lyxfunc.C: remove LFUN_TOOLBAR_PUSH
9219
9220 2002-07-22  Herbert Voss  <voss@lyx.org>
9221
9222         * lengthcommon.C:
9223         * lyxlength.[Ch]: add support for the vertical lengths
9224
9225 2002-07-21  John Levon  <moz@compsoc.man.ac.uk>
9226
9227         * toc.[Ch]: std:: fixes
9228
9229 2002-07-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9230
9231         * lyxrc.C: do not include lyx_main.h
9232
9233         * LaTeXFeatures.h: use a list<string> instead of a vector<string>
9234         for layouts
9235
9236         * lyxrc.C:
9237         * encoding.C:
9238         * bufferlist.C:
9239         * BufferView2.C: include "lyxlex.h"
9240
9241         * tabular.h:
9242         * bufferparams.h: do not #include "lyxlex.h"
9243
9244         * lyxtextclasslist.C (Add): remove method
9245         (classlist): renamed to classlist_
9246
9247         * paragraph_pimpl.C:
9248         * paragraph.C:
9249         * text2.C:
9250         * CutAndPaste.C:
9251         * bufferview_funcs.C:
9252         * bufferlist.C:
9253         * text.C:
9254         * LaTeXFeatures.C:
9255         * buffer.C:
9256         * toc.C (getTocList): use BufferParams::getLyXTextClass
9257
9258         * toc.C (getTocList): use InsetFloat::addToToc
9259
9260         * toc.[Ch]: new files, containing helper functions to handle table
9261         of contents
9262
9263         * lyxfunc.C (dispatch): no need to remove spaces around command
9264         given as a string
9265         (getStatus): handle LFUN_SEQUENCE by returning the status of the
9266         first command of the sequence; it is not very clever, but I do not
9267         have a better idea, actually
9268
9269         * LyXAction.C (LookupFunc): make sure to remove space at the
9270         beginning and end of the command
9271
9272 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9273
9274         * MenuBackend.C (getMenubar): new method: return the menubar of
9275         this menu set
9276         (read): treat differently reading of menu and menubar (in
9277         particular, the menubar has no name now)
9278         (Menu::menubar): remove
9279
9280         * lyxfunc.C (dispatch): add 'done' message to minibuffer when
9281         saving is finished
9282
9283 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
9284
9285         * BufferView_pimpl.C (workAreaButtonRelease): Fix opening of
9286         a bibitem inset in a RTL paragraph.
9287
9288 2002-07-20  John Levon  <moz@compsoc.man.ac.uk>
9289
9290         * paragraph_pimpl.C: constify
9291
9292         * BufferView_pimpl.C:
9293         * LaTeX.C:
9294         * lyxfunc.C: fix dispatch in a nicer way
9295
9296 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9297
9298         * lyxfunc.C (dispatch):
9299         * BufferView_pimpl.C:
9300         * BufferView_pimpl.h:
9301         * BufferView.C:
9302         * BufferView.h: rename Dispatch() to dispatch()
9303
9304         * LaTeXFeatures.C (useLayout): honor LyXLayout::depends_on()
9305
9306         * lyxlayout.C (Read): honor DependsOn tag
9307
9308         * lyxlayout.[Ch] (depends_on): new method
9309
9310         * version.C.in: update lyx_docversion
9311
9312         * LaTeXFeatures.C (getMacros): only define \LyX when needed
9313
9314         * paragraph.C (validate): remove from here...
9315         * paragraph_pimpl.C (validate): ... and move here
9316         (isTextAt): make it const
9317
9318         * buffer.C (getLists): ws cleanup
9319
9320 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
9321
9322         * language.C (read): Use iso8859-1 encoding in latex_lang
9323         (this prevents LyX from crashing when using iso10646-1 encoding).
9324
9325 2002-07-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9326
9327         * text2.C (toggleInset): if cursor is inside an inset, close the
9328         inset and leave cursor _after_ it
9329
9330 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
9331
9332         * lyxfunc.C: move minibuffer completion handling out of here
9333
9334 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
9335
9336         * BufferView_pimpl.C:
9337         * LaTeX.C: fix dispatch calls
9338
9339 2002-07-19  Dekel Tsur  <dekelts@tau.ac.il>
9340
9341         * text.C (drawChars): Fix Arabic text rendering.
9342
9343 2002-07-18  John Levon  <moz@compsoc.man.ac.uk>
9344
9345         * LyXAction.C:
9346         * commandtags.h:
9347         * lyxfunc.C: remove message-push/pop
9348
9349         * lyxserver.C:
9350         * lyxfunc.h:
9351         * lyxfunc.C: rationalise some code by removing verboseDispatch
9352           in favour of a bool argument to dispatch()
9353
9354 2002-07-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9355
9356         * lyx_main.C (init): make sure to read symlinks as absolute paths
9357
9358 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
9359
9360         * lyxfunc.h:
9361         * lyxfunc.C: no need for commandshortcut to be a member
9362
9363 2002-07-15  André Pönitz <poenitz@gmx.net>
9364
9365         * converter.C: add support for $$s (scripts from lib/scripts dir)
9366         * lyx_main.C: white space
9367
9368 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
9369
9370         * bufferlist.C:
9371         * lyxrc.h:
9372         * lyxrc.C: remove second exit confirmation
9373
9374 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
9375
9376         * BufferView.h:
9377         * BufferView.C:
9378         * BufferView2.C:
9379         * BufferView_pimpl.h:
9380         * BufferView_pimpl.C:
9381         * lyxfunc.C: s/setState/switchKeyMap/, s/showState/view_state_changed/
9382
9383 2002-07-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9384
9385         * MenuBackend.C (expand): add numeric shortcuts to document menu
9386
9387         * lyxrc.C (getDescription): remove RC_NEW_ASK_FILENAME
9388
9389 2002-07-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9390
9391         * lyxfont.C (setLyXFamily):
9392         (setLyXSeries):
9393         (setLyXShape):
9394         (setLyXSize):
9395         (setLyXMisc):
9396         (lyxRead):
9397         * debug.C (value):
9398         * buffer.C (asciiParagraph): use ascii_lowercase
9399
9400 2002-07-15  Mike Fabian  <mfabian@suse.de>
9401
9402         * lyxlex_pimpl.C (search_kw):
9403         * lyxlex.C (getLongString):
9404         * converter.h (operator<):
9405         * converter.C (operator<):
9406         * buffer.C (parseSingleLyXformat2Token):
9407         (asciiParagraph):
9408         * ToolbarDefaults.C (read):
9409         * MenuBackend.C (checkShortcuts):
9410         (read):
9411         * LColor.C (getFromGUIName):
9412         (getFromLyXName): use the compare_ascii_no_case instead of
9413         compare_no_case, because in turkish, 'i' is not the lowercase
9414         version of 'I', and thus turkish locale breaks parsing of tags.
9415
9416 2002-07-16  Angus Leeming  <leeming@lyx.org>
9417
9418         * BufferView_pimpl.C (buffer): Previews::generateBufferPreviews
9419         now takes a Buffer const & argument.
9420
9421 2002-07-15  John Levon  <moz@compsoc.man.ac.uk>
9422
9423         * BufferView.C (resize): check there's a buffer to resize
9424
9425 2002-07-14  John Levon  <moz@compsoc.man.ac.uk>
9426
9427         * lyxfunc.C: remove dead code
9428
9429         * lyxserver.h:
9430         * lyxserver.C: use lyx_guii::set_read_callback
9431
9432 2002-07-13  Dekel Tsur  <dekelts@tau.ac.il>
9433
9434         * lyxfunc.C (dispatch): Correct cursor behaviour when exiting
9435         an inset in a RTL paragraph.
9436
9437 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
9438
9439         * lyxfunc.C: repaint after a font size update
9440
9441 2002-07-15  André Pönitz <poenitz@gmx.net>
9442
9443         * lyxlength.C: inBP should be able to return negative values
9444
9445 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
9446
9447         * lyxfunc.C: use lyx_gui::update_fonts()
9448
9449 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
9450
9451         * lyxfunc.C: use lyx_gui::update_color()
9452
9453 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
9454
9455         * bufferlist.C:
9456         * lyxfunc.h:
9457         * lyxfunc.C:
9458         * lyxrc.h:
9459         * lyxrc.C: remove file->new asks for name option, and let
9460           buffer-new take an argument
9461
9462 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
9463
9464         * BufferView_pimpl.C: remove unneeded extra repaint()
9465
9466 2002-07-10  John Levon  <moz@compsoc.man.ac.uk>
9467
9468         * LyXAction.C: allow command-sequence with NoBuffer
9469
9470         * lyxfunc.C: don't insist on trailing ';' for command-sequence
9471
9472 2002-07-10  Angus Leeming  <leeming@lyx.org>
9473
9474         * lyxrc.[Ch]: preview_scale_factor should be a float not an int.
9475
9476 2002-07-09  Angus Leeming  <leeming@lyx.org>
9477
9478         * lyxrc.[Ch]: added preview_hashed_labels and preview_scale_factor.
9479
9480 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
9481
9482         * lengthcommon.h: whitespace
9483
9484         * lyxfunc.C: update scrollbar after goto paragraph
9485
9486         * lyxtext.h: factor out page break drawing, and fix it so
9487           page break/added space paints as selected nicely
9488
9489 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
9490
9491         * BufferView_pimpl.C: add FIXMEs, clean up a little
9492
9493 2002-07-09  André Pönitz <poenitz@gmx.net>
9494
9495         * lyxfont.[Ch]: support for wasy symbols
9496
9497 2002-07-08  André Pönitz <poenitz@gmx.net>
9498
9499         * BufferView_pimpl.C: apply John's patch for #93.
9500
9501 2002-07-05  Angus Leeming  <leeming@lyx.org>
9502
9503         * BufferView_pimpl.C (buffer): generate previews if desired.
9504
9505         * LColor.h: add "preview" to the color enum.
9506
9507         * LColor.C (LColor): add a corresponding entry to the items array.
9508
9509         * buffer.C (~Buffer): remove any previewed LaTeX snippets associated
9510         with this buffer.
9511
9512 2002-07-05  Angus Leeming  <leeming@lyx.org>
9513
9514         * buffer.[Ch] (makeLaTeXFile): create two methods where there was one.
9515         The body of the code is now in the method that is passed an ostream &
9516         rather than a file name.
9517         Pass an additional only_preamble parameter, useful for the forthcoming
9518         preview stuff.
9519
9520 2002-07-03  André Pönitz <poenitz@gmx.net>
9521
9522         * lyxfunc.C: simplify getStatus() a bit for math stuff
9523
9524 2002-07-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9525
9526         * BufferView_pimpl.C (workAreaResize): add an unconditional repaint.
9527
9528 2002-06-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9529
9530         * text.C (changeRegionCase): do not change case of all the
9531         document when region ends at paragraph end (bug #461)
9532
9533 2002-07-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9534
9535         * paragraph.C (startTeXParParams):
9536         (endTeXParParams): add \protect when necessary
9537
9538 2002-06-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9539
9540         * BufferView_pimpl.C (workAreaExpose): remove warning
9541
9542 2002-06-27  Angus Leeming  <leeming@lyx.org>
9543
9544         * Makefile.am: add lyxlayout_ptr_fwd.h.
9545
9546 2002-06-26  André Pönitz <poenitz@gmx.net>
9547
9548         * lyxrc.[Ch]: introduce \preview, revive half-dead \show_banner
9549
9550 2002-06-25  Angus Leeming  <leeming@lyx.org>
9551
9552         * lyxfunc.C (dispatch): Comment out the call to
9553         grfx::GCache::changeDisplay. The method no longer exists now that the
9554         pixmap generation part of the graphics loader has been moved into
9555         InsetGraphics.
9556
9557 2002-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9558
9559         * text2.C: layout as layout
9560
9561         * text.C: layout as layout
9562
9563         * tabular.C (OldFormatRead): layout as layout
9564
9565         * paragraph_pimpl.C (TeXDeeper): layout as layout
9566         (realizeFont): layout as layout
9567
9568         * paragraph.C (writeFile): layout as layout
9569         (validate): layout as layout
9570         (getFont): layout as layout
9571         (getLabelFont): layout as layout
9572         (getLayoutFont): layout as layout
9573         (breakParagraph): layout as layout
9574         (stripLeadingSpaces): layout as layout
9575         (getEndLabel): layout as layout
9576         (getMaxDepthAfter): layout as layout
9577         (applyLayout): layout as layout
9578         (TeXOnePar): layout as layout
9579         (simpleTeXOnePar): layout as layout
9580         (TeXEnvironment): layout as layout
9581         (layout): layout as layout
9582         (layout): layout as layout
9583
9584         * lyxtextclass.C (compare_name): new functor to work with
9585         shared_ptr, layout as layout
9586         (Read): layout as layout
9587         (hasLayout): layout as layout
9588         (operator): layout as layout
9589         (delete_layout): layout as layout
9590         (defaultLayout): layout as layout
9591
9592         * lyxlayout_ptr_fwd.h: new file
9593
9594         * lyxlayout.C (Read): layout as layout
9595
9596         * lyx_cb.C (MenuInsertLabel): layout as layout
9597
9598         * bufferlist.C (newFile): layout as layout
9599
9600         * buffer.C (readLyXformat2): layout as layout
9601         (parseSingleLyXformat2Token): layout as layout
9602         (insertStringAsLines): layout as layout
9603         (asciiParagraph): layout as layout
9604         (latexParagraphs): layout as layout
9605         (makeLinuxDocFile): layout as layout
9606         (simpleLinuxDocOnePar): layout as layout
9607         (makeDocBookFile): layout as layout
9608         (simpleDocBookOnePar): layout as layout
9609         (getLists): layout as layout
9610
9611         * LaTeXFeatures.C (getTClassPreamble): layout as layout
9612
9613         * CutAndPaste.C (cutSelection): layout as layout
9614         (pasteSelection): layout as layout
9615         (SwitchLayoutsBetweenClasses): layout as layout
9616
9617         * BufferView_pimpl.C (Dispatch): layout as layout
9618         (smartQuote): layout as layout
9619
9620         * BufferView2.C (unlockInset): layout as layout
9621
9622 2002-06-24  André Pönitz <poenitz@gmx.net>
9623
9624         * lyxfunc.C: fix #487
9625
9626 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
9627
9628         * lyxrc.h:
9629         * lyxrc.C:
9630         * lyxfunc.C: remove display_shortcuts, show_banner
9631
9632 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
9633
9634         * Buffer_pimpl.C: oops, update on resize
9635
9636 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
9637
9638         * buffer.C:
9639         * converter.C:
9640         * exporter.C:
9641         * lyxfunc.C:
9642         * BufferView.h:
9643         * BufferView.C: use repaint()
9644
9645         * BufferView_pimpl.h:
9646         * BufferView_pimpl.C: s/updateScreen()/repaint()/
9647           as it's a clearer description. Remove superfluous
9648           redraws.
9649
9650 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
9651
9652         * text.C: fix bug 488. Not ideal, but getting
9653           getWord() to work properly for the insets that
9654           matter is more difficult ...
9655
9656 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
9657
9658         * BufferView_pimpl.C:
9659         * LyXAction.C:
9660         * commandtags.h:
9661         * lyxfunc.C: remove the six million index lyxfuncs to just
9662           one, and DTRT (bug 458)
9663
9664 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
9665
9666         * BufferView.h:
9667         * BufferView.C:
9668         * BufferView_pimpl.h:
9669         * BufferView_pimpl.C: clean up resize() stuff,
9670           and unnecessary updateScreen()s
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:
9678         * lyxfind.h:
9679         * lyxfind.C:
9680         * minibuffer.C: remove focus management of workarea,
9681           not needed. Use screen's greyOut()
9682
9683 2002-06-17  Herbert Voss  <voss@lyx.org>
9684
9685         * converter.C: (convert) do not post a message, when converting
9686         fails, let the calling function decide what to do in this case
9687
9688 2002-06-18  John Levon  <moz@compsoc.man.ac.uk>
9689
9690         * lyxfunc.C: tidy up a little
9691
9692 2002-06-16    <alstrup@diku.dk>
9693
9694         * BufferView_pimpl.C (Pimpl): Use WorkAreaFactory.
9695         Got rid of FORMS_H_LOCATION include. Now we are
9696         GUII.
9697
9698 2002-06-15  LyX Development team  <lyx@rilke>
9699
9700         * buffer.[Ch] (sgmlOpenTag):
9701         (sgmlCloseTag): Added support for avoiding pernicious mixed
9702         content. Return number of lines written.
9703
9704         (makeLinuxDocFile):
9705         (makeDocBookFile): Fixed calls to sgml*Tag.
9706         Simple white space clean.
9707
9708         (simpleDocBookOnePar): Simple white space clean.
9709
9710         * tabular.[Ch] (docBook): Renamed to docbook and got another
9711         argument to related with the pernicious mixed content.
9712
9713         (docbookRow): Fixed calls for docbook inset method.
9714
9715 2002-06-15  Lyx Development team  <larsbj@birdstep.com>
9716
9717         * lyxfunc.[Ch]: Use LyXKeySym instead of KeySym,
9718         so it's X11 independent.
9719
9720         * kb*.[Ch]: ditto.
9721
9722         * BufferView_pimpl.[Ch] (workAreaKeyPress): ditto.
9723
9724 2002-06-15  Lyx Development team  <lyx@electronia>
9725
9726         * intl.h: Renamed getTrans to getTransManager.
9727
9728 2002-06-14  Angus Leeming  <leeming@lyx.org>
9729
9730         * Makefile.am: nuke forgotten stl_string_fwd.h.
9731
9732 2002-06-12  Angus Leeming  <leeming@lyx.org>
9733
9734         * stl_string_fwd.h: unused and non-compliant anyway. Nuked.
9735
9736 2002-06-13  Angus Leeming  <leeming@lyx.org>
9737
9738         * LaTeX.C:
9739         * vspace.C: wrap using std::sscanf inside a CXX_GLOBAL_CSTD block.
9740
9741 2002-06-12  Andrew Zabolotny  <zap@cobra.ru>
9742
9743         * kbmap.C (getiso): add support for cyrillic and greek
9744
9745 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9746
9747         * BufferView.h:
9748         * BufferView.C:
9749         * BufferView_pimpl.h:
9750         * BufferView_pimpl.C: move bogus scrolling logic
9751           to xforms
9752
9753 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9754
9755         * lyxfunc.C:
9756         * BufferView_pimpl.C: view->resize() change
9757
9758 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9759
9760         * BufferView_pimpl.C: topCursorVisible
9761           prototype change
9762
9763 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9764
9765         * Makefile.am:
9766         * lyx_gui.h:
9767         * lyx_gui.C: move to frontends/
9768
9769         * main.C:
9770         * lyx_main.h:
9771         * lyx_main.C: changes from above
9772
9773 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9774
9775         * intl.C:
9776         * intl.h:
9777         * kbmap.C:
9778         * kbsequence.C:
9779         * lyx_cb.C:
9780         * lyx_main.C: minor tidy
9781
9782 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9783
9784         * BufferView_pimpl.h:
9785         * BufferView_pimpl.C:
9786         * BufferView.h:
9787         * BufferView.C: make painter() const,
9788           remove dead code
9789
9790         * BufferView2.C: use screen() accessor
9791
9792         * lyx_main.h:
9793         * lyx_main.C: some minor cleanup
9794
9795 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9796
9797         * BufferView_pimpl.h:
9798         * BufferView_pimpl.C: remove enter/leaveView,
9799           use workHeight()
9800
9801 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9802
9803         * BufferView.h:
9804         * BufferView.C:
9805         * BufferView2.C:
9806         * BufferView_pimpl.h:
9807         * BufferView_pimpl.C: only construct screen once,
9808           rename
9809
9810         * lyxrc.C: remove pointless comment
9811
9812 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
9813
9814         * BufferView.h:
9815         * BufferView.C: remove active() and belowMouse()
9816
9817         * BufferView_pimpl.h:
9818         * BufferView_pimpl.C: use workarea() not workarea_,
9819           and make it use a scoped_ptr instead
9820
9821 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
9822
9823         * lyx_gui.C: add debug message on BadWindow
9824
9825 2002-06-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9826
9827         * sp_spell.C: fdopen is not part of the C++ standard.
9828
9829         * paragraph.C (InsetIterator): use >= instead of ==
9830
9831 2002-06-07  Angus Leeming  <leeming@lyx.org>
9832
9833         Fixes needed to compile with Compaq cxx 6.5.
9834         * BufferView_pimpl.C:
9835         * DepTable.C:
9836         * buffer.C:
9837         * converter.C:
9838         * encoding.C:
9839         * lyx_gui.C:
9840         * lyx_main.C:
9841         * lyxtextclasslist.C:
9842         * minibuffer.C:
9843         * sp_spell.C:
9844         * tabular_funcs.C:
9845         * vc-backend.C:
9846         all c-library variables have been moved into namespace std. Wrap
9847         using std::xyz declarations inside a #ifndef CXX_GLOBAL_CSTD block.
9848
9849         * lyxlength.C:
9850         * tabular-old.C:
9851         * tabular.C:
9852         Add a using std::abs declaration.
9853
9854         * kbmap.h (modifier_pair):
9855         * paragraph.h (InsetTable, InsetList):
9856         * lyxfont.h (FontBits):
9857         type definition made public.
9858
9859         * bufferlist.C (emergencyWriteAll): the compiler complains that
9860         there is more than one possible lyx::class_fun template to choose from.
9861         I re-named the void specialisation as lyx::void_class_fun.
9862
9863         * lyxfont.C (FontBits' operator==, operator!=): taken out of class.
9864
9865         * tabular_funcs.C: lstrings.h must come before tabular_funcs.h or
9866         the compiler is is unable to find tostr in write_attribute.
9867
9868 2002-06-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9869
9870         * buffer.C (sgmlError): hide #warning
9871
9872 2002-06-05  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9873
9874         * xtl/*: get rid of xtl, which is not in use anyway
9875
9876         * LyXAction.C (init):
9877         * commandtags.h: remove BUFFER_PRINT and BUFFER_PARAMS_GET, which
9878         were unimplemented xtl experimentation
9879
9880 2002-06-04  André Pönitz <poenitz@gmx.net>
9881
9882         * lyxfunc.C: disable array operation on simple formulae
9883
9884 2002-06-03  John Levon  <moz@compsoc.man.ac.uk>
9885
9886         * converter.C: constify a bit
9887
9888 2002-06-02  John Levon  <moz@compsoc.man.ac.uk>
9889
9890         * lyx_gui.C: check xforms version correctly
9891
9892 2002-04-30  Herbert Voss  <voss@lyx.org>
9893
9894         * buffer.C (parseSingleLyXformat2Token): fix bug with ignored
9895         "keep" option
9896
9897 2002-05-31  John Levon  <moz@compsoc.man.ac.uk>
9898
9899         * lyxvc.C: fix bug 416 (make sure buffer is saved before
9900           attempt to register it with a VCS)
9901
9902 2002-05-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9903
9904         * lyx_main.C (init): honor variables LYX_DIR_13x and
9905         LYX_USERDIR_13x
9906
9907 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
9908
9909         * buffer.h:
9910         * buffer.C:
9911         * lyx_main.C: fix a crash on bad command line,
9912           and give a useful exit status on error
9913
9914         * lyxfunc.C (doImport): allow -i lyx to work
9915
9916 2002-03-30  André Pönitz <poenitz@gmx.net>
9917
9918         * lyxfunc.C: mathed font changes
9919
9920 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
9921
9922         * LaTeX.C:
9923         * importer.h:
9924         * importer.C:
9925         * lyx_sty.h:
9926         * lyx_sty.C:
9927         * lyxlex.C:
9928         * lyxrow.h:
9929         * lyxtext.h:
9930         * paragraph.h:
9931         * paragraph.C:
9932         * texrow.h:
9933         * texrow.C:
9934         * text.C:
9935         * trans_mgr.h: srcdocs, and some minor cleanups
9936
9937 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9938
9939         * paragraph_pimpl.C (isTextAt): rewrite to be much faster (do not
9940         call getFont all the time)
9941
9942 2002-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9943
9944         * switch from SigC signals to boost::signals
9945
9946 2002-05-29  André Pönitz <poenitz@gmx.net>
9947
9948         * paragraph_pimpl.C (getChar): don't call size() too often...
9949
9950 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9951
9952         * paragraph_pimpl.C (insertChar): do not try to update tables when
9953         appending (pos == size())
9954
9955         * buffer.C (parseSingleLyXformat2Token): reorder a bit the tests
9956         in order to reduce drastically the number of comparisons needed to
9957         parse a large document
9958
9959 2002-05-29  André Pönitz <poenitz@gmx.net>
9960
9961         * text.C:
9962         * text2.C:
9963         * lyxtextclass.C:
9964         * sp_pspell.h:
9965         * textclasslist.[Ch]:
9966         * sp_ispell.h: whitespace change
9967
9968 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9969
9970         * lyxserver.C (callback): tentative fix of lyxserver. Does not use
9971         lyxaction directly now.
9972
9973 2002-05-27  John Levon  <moz@compsoc.man.ac.uk>
9974
9975         * trans.C:
9976         * lyxfont.C:
9977         * lyxvc.C: remove unused headers
9978
9979 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
9980
9981         * Makefile.am:
9982         * buffer.h:
9983         * undostack.h:
9984         * undostack.C:
9985         * undo_funcs.h:
9986         * undo_funcs.C: some cleanups. Use shared_ptr
9987           and a template for the undo stacks.
9988
9989 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
9990
9991         * BufferView_pimpl.h:
9992         * BufferView_pimpl.C:
9993         * kbmap.h:
9994         * kbmap.C:
9995         * kbsequence.h:
9996         * kbsequence.C:
9997         * lyxfunc.h:
9998         * lyxfunc.C:
9999         * text2.C: use key_state/mouse_state
10000
10001 2002-05-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10002
10003         * vc-backend.C (scanMaster): use boost regex and get rid of LRegex
10004         and LSubstring
10005
10006         * chset.C: change include order
10007         (loadFile): use boost regex and get rid of LRegex and LSubstring
10008
10009         * Makefile.am (BOOST_LIBS): new variable
10010         (lyx_LDADD): use it
10011
10012         * LaTeX.C: change include order.
10013         (scanAuxFile): use boost regex and get rid of LRegex and
10014         LSubstring
10015         (deplog): ditto
10016
10017 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
10018
10019         * ColorHandler.h:
10020         * ColorHandler.C:
10021         * FontInfo.h:
10022         * FontInfo.C: moved to frontends/xforms/
10023
10024         * FontLoader.h:
10025         * FontLoader.C: moved into frontends for GUIIzation
10026
10027         * Makefile.am:
10028         * lyx_gui.C:
10029         * lyxfont.C:
10030         * lyxfunc.C: changes from above
10031
10032 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
10033
10034         * LColor.C: remove spurious X include
10035
10036         * BufferView_pimpl.C:
10037         * Makefile.am:
10038         * font.h:
10039         * font.C:
10040         * text.C:
10041         * text2.C: move font metrics to frontends/
10042
10043 2002-05-24  Juergen Vigna  <jug@sad.it>
10044
10045         * undo_funcs.C (textHandleUndo): fix the cursor selection after
10046         setting the undo_cursor.
10047
10048         * ParagraphParameters.h: include local includes first.
10049
10050 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
10051
10052         * BufferView_pimpl.C:
10053         * BufferView_pimpl.h:
10054         * Makefile.am:
10055         * WorkArea.h:
10056         * WorkArea.C:
10057         * screen.C: move WorkArea into frontends/
10058
10059         * lyxscreen.h:
10060         * screen.C:
10061         * text.C:
10062         * BufferView.C:
10063         * BufferView2.C: move LyXScreen into frontends/
10064
10065         * lyxlookup.h:
10066         * lyxlookup.C:
10067         * lyx_gui.C: move lyxlookup into frontends/xforms/
10068
10069 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
10070
10071         * BufferView2.C:
10072         * BufferView_pimpl.C:
10073         * FontLoader.C:
10074         * LyXView.h:
10075         * LyXView.C:
10076         * Makefile.am:
10077         * WorkArea.C:
10078         * XFormsView.h:
10079         * XFormsView.C:
10080         * buffer.C:
10081         * bufferlist.C:
10082         * bufferview_funcs.C:
10083         * converter.C:
10084         * importer.C:
10085         * lyx_cb.C:
10086         * lyx_gui.C:
10087         * lyx_main.C:
10088         * lyx_find.C:
10089         * lyxfunc.C:
10090         * lyxvc.C:
10091         * minibuffer.C:
10092         * text.C:
10093         * text2.C:
10094         * trans.C:
10095         * vc-backend.C: move LyX/XFormsView into frontends/
10096
10097 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
10098
10099         * Makefile.am:
10100         * PainterBase.C:
10101         * PainterBase.h:
10102         * Painter.C:
10103         * Painter.h:
10104         * WorkArea.C:
10105         * WorkArea.h:
10106         * screen.C:
10107         * tabular.C:
10108         * text.C:
10109         * text2.C: move Painter to frontends/
10110
10111 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10112
10113         * buffer.C: comment out some some code that depend upon lyx_format
10114         < 220
10115
10116         * paragraph.h (NO_PEXTRA_REALLY): turn off all pextra
10117         * ParagraphParameters.h (NO_PEXTRA_REALLY): ditto
10118
10119         * buffer.h (NO_COMPABILITY): turn off compability
10120
10121         * ColorHandler.C: include scoped_array.hpp
10122
10123         * font.C: Use more specific smart_ptr header.
10124         * Painter.C: ditto
10125         * gettext.C: ditto
10126         * ShareContainer.h: ditto
10127         * lyx_main.h: ditto
10128         * kbmap.h: ditto
10129         * FontInfo.h: ditto
10130         * BufferView_pimpl.h: ditto
10131         * ColorHandler.h: ditto
10132
10133         * kbmap.C (defkey): change call to shared_ptr::reset
10134
10135 2002-05-21  Juergen Vigna  <jug@sad.it>
10136
10137         * buffer.C (insertErtContents): fix to insert ert asis if it is
10138         non empty. Skip it completely if it contains only whitespaces.
10139
10140 2002-05-15  John Levon  <moz@compsoc.man.ac.uk>
10141
10142         * BufferView_pimpl.C:
10143         * BufferView2.C: clear selection on paste (bug 393)
10144
10145 2002-05-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10146
10147         * DepTable.C: include ctime
10148
10149 2002-05-11  Dekel Tsur  <dekelts@tau.ac.il>
10150
10151         * buffer.C (latexParagraphs): Add new argument (moving_arg).
10152
10153 2002-05-14  Juergen Vigna  <jug@sad.it>
10154
10155         * text.C (breakParagraph): fixed function to honor the keepempty
10156         layout in the right maner and also to permit the right breaking
10157         algorithm on empty or non empyt keepempty paragraphs.
10158
10159         * paragraph.C (breakParagraph): we have to check also if the par
10160         is really empty (!size()) for isempty otherwise we do the wrong
10161         paragraph break.
10162
10163 2002-05-10  Juergen Vigna  <jug@sad.it>
10164
10165         * buffer.[Ch] : The following are only changes to the ert
10166         compatibility read reading old LaTeX layout and font stuff and
10167         convert it to ERTInsets.
10168
10169         * buffer.h: added isErtInset().
10170
10171         * buffer.C (struct ErtComp): add a fromlayout bool to check
10172         if we're inside a LaTeX layout.
10173         (isErtInset): new helper function.
10174         (insertErtContents): look for other ert insets before this one
10175         and insert the contents there, so that we don't have subsequent
10176         ERT insets with nothing between them. This way we create only one
10177         inset with multiple paragraphs. Also check if we don't insert only
10178         spaces ' ' as they are ignored anyway afterwards in the .tex file
10179         so if we have only spaces we will ignore this latex part in the
10180         new file.
10181         (parseSingleLyXformat2Token \\layout): better compatibility when
10182         reading layout-latex stuff.
10183         (parseSingleLyXformat2Token \\lang): put the insetERT in the right
10184         language tag.
10185         (parseSingleLyXformat2Token \\begin_inset): don't reset ert_comp
10186         stuff after reading the inset only get the information back from
10187         the stack.
10188
10189 2002-05-10  Dekel Tsur  <dekelts@tau.ac.il>
10190
10191         * buffer.C (makeLaTeXFile): Put language options after loading babel.
10192
10193         * LaTeXFeatures.C (getBabelOptions): New method.
10194
10195 2002-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10196
10197         * BufferView_pimpl.C (Dispatch): work around missing argument for
10198         'layout'
10199
10200 2002-05-08  Juergen Vigna  <jug@sad.it>
10201
10202         * text.C (leftMargin): handle paragraph leftindent.
10203
10204         * paragraph.C (writeFile): write the new \\leftindent tag.
10205         (validate): handle leftindent code.
10206         (TeXEnvironment): handle paragraphleftindent code again.
10207
10208         * lyx_sty.h: changed ParagraphIndent to ParagraphLeftIndent.
10209
10210         * buffer.C (parseSingleLyXformat2Token): added compatibility code
10211         for paragrap_extra indent code and new token \\leftindent.
10212         (latexParagraphs): handle the leftindent as environment.
10213
10214         * ParameterStruct.h: added leftindent support.
10215
10216         * ParagraphParameters.C (leftIndent): added support functions for
10217         the paragraph left indent.
10218
10219         * LaTeXFeatures.C: change paragraphindent to paragraphleftindent seems
10220         more appropriate.
10221
10222 2002-05-05  Dekel Tsur  <dekelts@tau.ac.il>
10223
10224         * paragraph.C (isRightToLeftPar): Return false for a paragraph
10225         inside insetERT.
10226
10227         * text.C (computeBidiTables): No bidi in insetERT.
10228
10229         * BufferView_pimpl.C (setState): Fix keymap handling inside insetERT
10230         in RTL documents.
10231
10232 2002-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10233
10234         * version.C.in: pre 5
10235
10236 2002-05-02  José Matos  <jamatos@fep.up.pt>
10237         * buffer.C (makeDocBookFile): white space changes, add newline to
10238         command styles.
10239         (simpleDocBookOnePar): protect <emphasis> inside a CDATA section.
10240
10241         * tabular.C (docBook): fix typo.
10242
10243 2002-05-03  Juergen Vigna  <jug@sad.it>
10244
10245         * screen.C (drawFromTo): recalculate the rowpointer if we had a
10246         change in LyXText as we can not be sure it was not freed.
10247         (drawOneRow): remove unused code.
10248
10249         * text.C (drawInset): redo the calculation of the need_break_row as
10250         it could have a row which was already freed.
10251         (draw): look at the return value of drawInset and return false if
10252         it also returned false.
10253         (paintRowText): look at the return value of draw and return false if
10254         it also returned false.
10255
10256         * lyxtext.h: added bool return type to drawInset() and draw() so that
10257         if we have a change in the row so that the rowbreak has to be redone
10258         we abort drawing as it will be called again.
10259
10260 2002-05-02  Juergen Vigna  <jug@sad.it>
10261
10262         * BufferView_pimpl.C (moveCursorUpdate): make repaint if we had
10263         a change in the maintext also if we're inside an inset.
10264         (Dispatch): set the cursor again after a break line and after the
10265         screen has been updated as it could be we're in a different row.
10266
10267         * text2.C (fixCursorAfterDelete): check to make sure we don't request
10268         to set the cursor behind the pargraph with > size().
10269         (setCursor): check also for the same paragraph when checking where
10270         to put the cursor if we have a NFR inset.
10271
10272         * buffer.C (parseSingleLyXformat2Token): move the compatibility
10273         parts of layout read further up as it still was in the wrong
10274         position.
10275
10276 2002-05-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10277
10278         * screen.C (drawFromTo): change sine fullRebreak always return
10279         true.
10280
10281         * buffer.C (parseSingleLyXformat2Token): reindent some
10282
10283         * BufferView_pimpl.C (update): change since fullRebreak always
10284         return true.
10285         (Dispatch): git rid of the last hardcoded "Standard"s.
10286
10287 2002-05-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10288
10289         * text2.[Ch] (fullRebreak): make it return void now that we always
10290         returned true.
10291
10292 2002-04-30  Juergen Vigna  <jug@sad.it>
10293
10294         * buffer.C (parseSingleLyXformat2Token): reset the font before the
10295         ert compatibility check for "latex" layout.
10296
10297 2002-04-29  Dekel Tsur  <dekelts@tau.ac.il>
10298
10299         * buffer.C (parseSingleLyXformat2Token): Fix reading of old format
10300         minipages: use col% instead of p%, and also use the current font.
10301         (makeLaTeXFile): Fix use babel condition.
10302         (parseSingleLyXformat2Token): Correct font when reading old floats.
10303
10304 2002-04-28  Dekel Tsur  <dekelts@tau.ac.il>
10305
10306         * BufferView_pimpl.C (Dispatch): Check that float type exists when
10307         inserting list of floats.
10308
10309 2002-04-25  Herbert Voss  <voss@lyx.org>
10310
10311         * MenuBackend.C (expand): don't add the graphics extensions to the
10312         export menu
10313
10314 2002-04-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10315
10316         * CutAndPaste.C (SwitchLayoutsBetweenClasses): when converting a
10317         non-existing layout, do not complain if it was the default layout
10318         of the original class (bug #342)
10319
10320 2002-04-24  Juergen Vigna  <jug@sad.it>
10321
10322         * BufferView_pimpl.C (workAreaButtonPress): fix handling of mouse-wheel
10323         (workAreaButtonRelease): don't do anything if it was a mouse-wheel
10324
10325 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
10326
10327         * buffer.C (getBibkeyList): If using \bibliography, return the
10328         option field with the reference itself. Enables us to provide natbib
10329         support when using \bibliography.
10330
10331 2002-04-23  Mike Ressler  <mike.ressler@alum.mit.edu>
10332
10333         * lyxtextclass.[Ch]: add layout keyword ProvidesNatbib.
10334
10335         * LaTeXFeatures.C: do not add \usepackage{natbib} to tex file if
10336         natbib is provided by the LaTeX class.
10337
10338 2002-04-23  Juergen Vigna  <jug@sad.it>
10339
10340         * BufferView_pimpl.[Ch]: remove use of wrong and unneeded insetSleep/
10341         Wakeup functions.
10342
10343         * BufferView.[Ch]: remove not needed insetSleep/Wakeup functions.
10344
10345 2002-04-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10346
10347         * lyxfunc.C (getStatus): LFUN_PROTECTED_SPACE is allowed in maths
10348
10349         * paragraph_pimpl.C (simpleTeXSpecialChars): remove bogus
10350         ensuremath around textordmasculine, textordfeminine and
10351         textdegree.
10352
10353 2002-04-19  Juergen Vigna  <jug@sad.it>
10354
10355         * BufferView_pimpl.C (resizeCurrentBuffer): resize the insets before
10356         reinitializing the buffer otherwise row-dimensions may be wrong.
10357         (update): reset also the selection cursors if they do exits otherwise
10358         their x/y positions may be wrong.
10359
10360         * text2.C (cursorDown): don't enter the inset if we came from a row
10361         above and are one row over the inset.
10362
10363         * lyxfunc.C (dispatch): update paragraph layout after LFUN_ESCAPE when
10364         really leaving an inset.
10365
10366 2002-04-18  Juergen Vigna  <jug@sad.it>
10367
10368         * BufferView_pimpl.C (Dispatch): fixed to change layout also if one
10369         of the selected paragraph does not have the selected layout also if
10370         the last one had!
10371
10372         * text2.C (setLayout): fixed bug which did not change last selected
10373         paragraph.
10374
10375         * tabular.C (OldFormatRead): check also for \\end_inset as Lars
10376         changed the read and substituted \\end_float with \\end_inset!
10377
10378         * BufferView_pimpl.C (cursorPrevious):
10379         (cursorNext): fixed to make it work with rows heigher than the work
10380         area without moving the cursor only the draw of the row.
10381         (workAreaMotionNotify): fix jumping over high rows.
10382
10383 2002-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10384
10385         * lyxtextclass.C (Read): fix bit adding, bug discovered by Mike
10386         Ressler.
10387
10388 2002-04-16  Juergen Vigna  <jug@sad.it>
10389
10390         * text2.C (setCursor): set also the irow().
10391         (setCursorFromCoordinates): fixed to set the (i) cursor values right!
10392         (cursorUp):
10393         (cursorDown): support for locking an inset if the x_fix value goes
10394         inside it. That way I can transverse insets too with cursor up/down.
10395
10396         * lyxrow.h: added irow helper function same as other (i) functions.
10397
10398         * BufferView_pimpl.C (cursorPrevious):
10399         (cursorNext): fixed for insets!
10400
10401 2002-04-15  Juergen Vigna  <jug@sad.it>
10402
10403         * BufferView_pimpl.C (insetDimensions): use ix/iy values for inset
10404         position otherwise it is wrong in some cases.
10405
10406         * lyxfunc.C (dispatch): fix FINISHED UP/DOWN to handle x position
10407         inside the inset before the call.
10408
10409 2002-04-16  Angus Leeming  <a.leeming@ic.ac.uk>
10410
10411         * buffer.[Ch] (getBibkeyList): make it const.
10412
10413 2002-04-12  Juergen Vigna  <jug@sad.it>
10414
10415         * BufferView_pimpl.C (workAreaMotionNotify): use new ix() cursor pos.
10416
10417         * text2.C (getCursorX): new helper function
10418         (setCursor): compute also ix_
10419         (setCursorFromCoordinates): set also ix.
10420
10421         * lyxcursor.h: added ix_ and helper functions.
10422
10423         * BufferView_pimpl.C (workAreaMotionNotify): forgot to use iy().
10424
10425         * buffer.C (insertStringAsLines): dont break paragraph if the this
10426         paragraph is inside an inset which does not permit it!
10427
10428         * text.C (breakParagraph): honor keepempty flag and break the paragraph
10429         also with no chars on this paragraph.
10430         (paintRowText): only paint stuff if it's inside the workarea!
10431
10432         * paragraph.C (breakParagraph): honor keepempty flag and break the
10433         paragraph always below not above.
10434
10435         * BufferView2.C (unlockInset): update the paragraph layout on inset
10436         unlock as we changed paragraph in such a case.
10437
10438         * lyxfind.C (LyXFind): clear the former selection if not found!
10439
10440         * text2.C (insertInset): freeze Undo after setUndo so that it is not
10441         again called in insertChar().
10442
10443         * text.C (leftMargin): return LYX_PAPER_MARGIN if this row contains
10444         an inset which uses the whole row!
10445         (rightMargin): ditto.
10446         (insertChar): force a rebreak if we inserted an inset!
10447
10448 2002-03-28  Herbert Voss  <voss@lyx.org>
10449
10450         * lyxlength.[Ch]: add inBP() to get the right PS-point
10451         units (BigPoint). With inPixels we have rounding errors
10452
10453 2002-04-11  Juergen Vigna  <jug@sad.it>
10454
10455         * text2.C (setCursorFromCoordinates): set iy to the right value.
10456         (setCursor): add check if row->previous exists!
10457
10458         * buffer.C (parseSingleLyXformat2Token): reset font after read of
10459         an old float_type as this was the case in the old code!
10460
10461         * paragraph.C (simpleTeXOnePar): fix closing of foreignlanguage tags.
10462
10463         * BufferView2.C (showLockedInsetCursor): use iy
10464         (fitLockedInsetCursor): ditto
10465
10466         * BufferView_pimpl.C (checkInset): use LyXCursor::iy for baseline of
10467         locked insets as there we have the right value now.
10468
10469         * lyxcursor.C: added iy_ variable and iy functions to set to the
10470         baseline of cursor-y of the locked inset.
10471
10472         * text2.C (setCursorFromCoordinates): set LyXCursor::iy.
10473         (setCursor): fixed for insets which need a full row.
10474
10475         * text.C (rowLastPrintable): don't ignore the last space when before
10476         an inset which needs a full row.
10477         (numberOfSeparators): use rowLastPrintable and <= last to honor a space
10478         as last character of a row when before a inset which needs a full row.
10479
10480 2002-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10481
10482         * version.C.in: update date
10483
10484         * text2.C (fullRebreak): try to always return true and see what
10485         happens...
10486
10487 2002-04-04  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10488
10489         * MenuBackend.C (expand): use Floating::listName
10490
10491         * FloatList.C (FloatList): add listName argument to the built-in
10492         floats
10493
10494         * Floating.[Ch]: add listName member, which is the 'List of XXX'
10495         text associated with the float.
10496
10497 2002-04-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10498
10499         * MenuBackend.C (expand): change label "Wide xxx" to "xxx (wide)".
10500
10501 2002-04-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10502
10503         * ShareContainer.h: add a couple of missing typenames.
10504
10505 2002-04-02  Angus Leeming  <a.leeming@ic.ac.uk>
10506
10507         * lyxrc.C (getDescription): use _() correctly rather than N_().
10508
10509 2002-03-28  Herbert Voss  <voss@lyx.org>
10510
10511         * lyxlength.C: compatibility stuff for < 1.1.6fix4 and
10512         "old" 1.2.0 files which use c%, l%, p% t% instead of text%, ...
10513
10514 2002-04-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10515
10516         * lyx_main.C (init): use environment variable LYX_DIR_12x instead
10517         of LYX_DIR_11x. Same for LYX_USERDIR_12x.
10518
10519 2002-03-29  Juergen Vigna  <jug@sad.it>
10520
10521         * lyxfunc.C (dispatch): add a missing fitCursor call.
10522
10523         * BufferView2.C (fitLockedInsetCursor): the inset needs to know if
10524         it was scrolled by a cursor move, so return the bool status.
10525
10526         * BufferView.C (fitCursor): return the bool flag also to the outside
10527         world as this is needed.
10528
10529         * screen.C (toggleToggle): don't subtract the offset if it's positive.
10530
10531         * BufferView_pimpl.C (workAreaButtonPress): just lock the inset don't
10532         call the edit() as it is not needed (and wrong) IMO.
10533         (workAreaButtonPress): set the screen_first variable before evt.
10534         unlock the inset as this may change screen_first and then we have
10535         a wrong y position for the click!
10536
10537 2002-03-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10538
10539         * MenuBackend.C (expand): another translation that I missed
10540
10541 2002-03-28  Juergen Vigna  <jug@sad.it>
10542
10543         * screen.C (toggleToggle): fix for insettexts y_offset on drawing.
10544
10545         * tabular.C (OldFormatRead): fix ert compatibility read inside cells.
10546
10547 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10548
10549         * lyxfunc.C (getStatus): return 'disabled' early for LFUN_NOACTION
10550
10551         * MenuBackend.C (expand): fix export/view/update when there is no
10552         document open.
10553
10554 2002-03-27  Herbert Voss  <voss@lyx.org>
10555
10556         * lengthcommon.C: change c%, l%, p% t% to col%, line%, page%
10557         and text%
10558
10559 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10560
10561         * bufferview_funcs.C (currentState): only show paragraph number
10562         for is DEVEL_VERSION is set.
10563
10564         * lyxfunc.C (dispatch): put warning in INFO channel
10565
10566         * MenuBackend.C (expand): translate the name of floats
10567
10568         * FloatList.C (FloatList): mark the float names for translation
10569
10570         * converter.C (convert): use LibScriptSearch
10571
10572 2002-03-26  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10573
10574         * MenuBackend.C (defaults): fix default menu (we might as well get
10575         rid of it...)
10576
10577 2002-03-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10578
10579         * lyxvc.C (registrer): register the file with CVS if it's in a CVS
10580         directory.
10581
10582 2002-03-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10583
10584         * lyxvc.C: reorder includes.
10585
10586 2002-03-25  John Levon  <moz@compsoc.man.ac.uk>
10587
10588         * BufferView_pimpl.C (updateScrollbar): update on buffer switch
10589           properly
10590
10591 2002-03-19  John Levon  <moz@compsoc.man.ac.uk>
10592
10593         * CutAndPaste.C: change layouts earlier on paste
10594           to avoid crashing when calling getFont()
10595
10596 2002-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
10597
10598         * PrinterParams.h: #include "lyxrc.h" and remove that bloody
10599         irritating #error.
10600
10601 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10602
10603         * WorkArea.C: remove 'Pending' debug message.
10604
10605         * most files: ws cleanup
10606
10607         * buffer.[Ch]: ws changes
10608
10609         * Makefile.am (LYX_CONV_LIBS): remove ld -r stuff.
10610
10611 2002-03-21  Juergen Vigna  <jug@sad.it>
10612
10613         * tabular.C (SetMultiColumn): collapse also the contents of the
10614         cells and set the last border right. Added a Buffer const * param.
10615
10616 2002-03-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10617
10618         * Makefile.am (LYX_CONV_LIBS): select libs depending on partial
10619         linking or not.
10620
10621 2002-03-19  Juergen Vigna  <jug@sad.it>
10622
10623         * text2.C (clearSelection): reset also xsel_cache.
10624
10625         * BufferView_pimpl.C (Dispatch): call WorkArea::haveSelection(false)
10626         where it needs to be called (John tells us to do so too :)
10627         (selectionLost): reset sel_cache.
10628
10629         * WorkArea.C (event_cb): leave ret to 0 (John tells us to do so :)
10630
10631 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10632
10633         * text2.C (setCursorIntern): put debuging code in INSETS channel
10634
10635 2002-03-19  André Pönitz <poenitz@gmx.net>
10636
10637         * lyxfunc.C: tiny whitespace change
10638
10639 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10640
10641         * ToolbarDefaults.C (init):
10642         * LyXAction.C (init):
10643         * commandtags.h:
10644         * BufferView_pimpl.C (Dispatch):
10645         * lyxfunc.C (dispatch): remove LFUN_DEPTH
10646
10647 2002-03-19  Allan Rae  <rae@lyx.org>
10648
10649         * exporter.C (Export): removeAutoInsets before doing anything else.
10650         While I've just introduced a dependency on BufferView this really is
10651         the best place to clean the buffer otherwise you need to cleanup in
10652         a dozen places before calling export or cleanup in a dozen functions
10653         that export calls.
10654
10655         * converter.C (runLaTeX):
10656         (scanLog): Better handling of removeAutoInsets and screen updates.
10657
10658         * lyxfunc.C (dispatch): small whitespace changes
10659
10660 2002-03-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10661
10662         * WorkArea.C (C_WorkAreaEvent): return a value.
10663         (event_cb): return 1 if we handled the event, 0 otherwise.
10664
10665         * lyx_gui.C (LyX_XErrHandler): don't abort on BadWindow
10666
10667 2002-03-18  Juergen Vigna  <jug@sad.it>
10668
10669         * tabular.C (LeftAlreadyDrawed): fixed for multicolumn borders.
10670         (GetAdditionalWidth): ditto.
10671         (RightLine): ditto.
10672         (LeftLine): ditto.
10673
10674         * BufferView2.C (copy): use getLyXText() so that we do it inside an
10675         inset if we're there actually (probably not used right now but this
10676         is the direction to go for unifying code).
10677         (paste): disable code to clear the selection.
10678
10679         * BufferView_pimpl.C (workAreaButtonPress): check also for a selection
10680         inside an InsetText and move the check further up as it is in the
10681         wrong place.
10682
10683         * text2.C (pasteSelection): set a selection over the pasted text.
10684
10685 2002-03-14  Kayvan A. Sylvan  <kayvan@sylvan.com>
10686
10687         * Makefile.am (lyx_DEPENDENCIES): Swap the order of libfrontend
10688         and libgraphics to build on Cygwin.
10689
10690 2002-03-15  Juergen Vigna  <jug@sad.it>
10691
10692         * CutAndPaste.C (SwitchLayoutsBetweenClasses): fix the wrong use of
10693         inserting an Inset into the paragraph. I know this is not the best
10694         fix but we already use current_view in CutAndPaste so we will remove
10695         all of it's using at the same time.
10696
10697         * buffer.C (sgmlError): deactivated function till it is rewritten in
10698         the right mode, now it can create problems.
10699
10700         * paragraph.C (isLineSeparator): check if getInset returns != 0,
10701         before accessing it.
10702
10703 2002-03-14  Juergen Vigna  <jug@sad.it>
10704
10705         * undo_funcs.C (textHandleUndo): do the right thing when updating
10706         the inset after the undo/redo.
10707
10708         * text2.C (setCursor): just some testcode for #44 not ready yet.
10709
10710         * undo_funcs.C (textHandleUndo): set the next() and previous()
10711         pointers of the paragraph to 0 before deleting otherwise we have
10712         problems with the Paragraph::[destructor].
10713
10714         * text.C (breakParagraph): IMO we should ALWAYS force a real undo
10715         on a paragraph insertion.
10716
10717 2002-03-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10718
10719         * buffer.C (asciiParagraph): use += operator for char append to
10720         string.
10721
10722         * paragraph.C (getFontSettings): compare >= not just >
10723         (highestFontInRange): ditto
10724         (setFont): ditto
10725
10726 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10727
10728         * paragraph.C: change several algorithm to be more appripriate for
10729         the problem domain. This is lookip in FontList and in the InsetList.
10730
10731 2002-03-13  André Pönitz <poenitz@gmx.net>
10732
10733         * commandtags.h:
10734         * LyXAction.C: remove unused LFUN_MATH_MACROARG
10735
10736 2002-03-06  John Levon  <moz@compsoc.man.ac.uk>
10737
10738         * commandtags.h:
10739         * LyXAction.C:
10740         * lyxfunc.C:
10741         * BufferView_pimpl.C: remove unused LFUN_CORE, LFUN_TEXT_INSET
10742
10743 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10744
10745         * Painter.C (display): anon helper function, adjust code for this
10746         change.
10747         (pixmap): remove function.
10748
10749         * Painter.h: remove private display variable.
10750
10751         * PainterBase.[Ch]: remove dummy[123] cruft, ws changes
10752
10753 2002-03-13  Angus Leeming  <a.leeming@ic.ac.uk>
10754
10755         * WorkArea.[Ch]: remove figinset_canvas cruft.
10756
10757 2002-03-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10758
10759         * lyxtextclass.C (operator): add one item cache optimization.
10760
10761         * bufferlist.h: doxy changes
10762
10763         * bufferlist.C: ws changes
10764
10765         * DepTable.[Ch] (ext_exist): place const in the right spot.
10766
10767         * BufferView_pimpl.C (resizeCurrentBuffer): further refine when to
10768         call resizeInsets.
10769         (workAreaExpose): call resizeInsets when the with BufferView changes.
10770         (Dispatch): adjust for protectedBlank removal
10771         (specialChar): call updateInset if the insert went ok.
10772
10773         * BufferView_pimpl.[Ch] (protectedBlank): remove func, use
10774         specialChar instead.
10775
10776         * BufferView2.C (ChangeInsets): remove warning add FIXME comment
10777
10778         * BufferView.h: doxy change
10779
10780         * Makefile.am (INCLUDES): remove @FRONTEND_INCLUDES@
10781
10782         * lyxtextclass.C (operator[]): remove non-const version
10783         (defaultLayout): remove non-const version
10784
10785 2002-03-12  Juergen Vigna  <jug@sad.it>
10786
10787         * BufferView_pimpl.C (resizeCurrentBuffer): only resize insets if we
10788         did resize the LyXText too.
10789
10790         * buffer.C (readLyXformat2): set layout information on newly allocated
10791         paragraphs.
10792
10793         * tabular.C (OldFormatRead): set layout information on the paragraph.
10794
10795 2002-03-12  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
10796
10797         * buffer.C (simpleDocBookOnePar): fix empty definition case for now.
10798
10799 2002-03-11  Juergen Vigna  <jug@sad.it>
10800
10801         * BufferView_pimpl.C (cursorPrevious): remove old cruft which is
10802         plainly wrong.
10803         (resizeCurrentBuffer): force also the insets to resize themselfes.
10804         (moveCursorUpdate): fixed up for InsetText.
10805
10806 2002-03-08  Angus Leeming  <a.leeming@ic.ac.uk>
10807
10808         * commandtags.h:
10809         * LyXAction.C: add LFUN_TOOLTIPS_TOGGLE, "toggle-tooltips"
10810         * lyxfunc.C (getStatus(LFUN_TOOLTIPS_TOGGLE)): set flag based on
10811         value of Dialogs::tooltipsEnabled().
10812         (dispatch(LFUN_TOOLTIPS_TOGGLE)): emit signal Dialogs::toggleTooltips.
10813
10814 2002-03-08  Juergen Vigna  <jug@sad.it>
10815
10816         * BufferView_pimpl.C (updateInset): update inset inside inset also
10817         if it isn't inside theLockingInset().
10818
10819 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10820
10821         * buffer.C (asciiParagraph): redo some of the word and line length
10822         handling.
10823         (getLists): look for Caption instead of caption.
10824
10825 2002-03-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10826
10827         * buffer.C (Buffer): initialize niceFile to true
10828         (makeLaTeXFile):
10829         (makeLinuxDocFile):
10830         (makeDocBookFile): make sure niceFile is true on exit
10831
10832 2002-03-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10833
10834         * buffer.C (makeLaTeXFile): escape ~ in \input@path
10835
10836 2002-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
10837
10838         * LyXSendto.C: remove.
10839         * LyXView.C (c-tor): clean-up Jürgen's #if 0 correctly.
10840         * lyx_gui.C: remove now-redundant comment.
10841         * ColorHandler.h: remove forward declaration of class WorkArea.
10842         * lyxfunc.C: remove #include "WorkArea.h".
10843
10844 2002-03-07  Juergen Vigna  <jug@sad.it>
10845
10846         * undo_funcs.C (textHandleUndo): fix problems when the paragraph
10847         got moved away with the DEPM and also set the inset_owner always
10848         right which before could have been omitted.
10849
10850 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10851
10852         * buffer.C (parseSingleLyXformat2Token): use default layout is the
10853         wanted layout is not found.
10854
10855 2002-03-07  Juergen Vigna  <jug@sad.it>
10856
10857         * CutAndPaste.C (cutSelection): another layout settings forgotten.
10858
10859 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10860
10861         * paragraph.C (breakParagraph): use default layout not layout of
10862         prev paragraph.
10863         (Paragraph): clear ParagraphParameters.
10864
10865 2002-03-06  Juergen Vigna  <jug@sad.it>
10866
10867         * buffer.C (parseSingleLyXformat2Token): changed "%" to "p%" as
10868         otherwise it would not be a valid lenght. Fixed a special case in
10869         the minipage compatibility read where we end the document with a
10870         minipage.
10871
10872         * text2.C (deleteEmptyParagraphMechanism): check if old_cursor.par()
10873         was set as it could be 0 for InsetTexts first entry.
10874
10875 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10876
10877         * paragraph.C (writeFile): if layout is empty write out
10878         defaultLayoutName().
10879
10880         * buffer.C (parseSingleLyXformat2Token): if we have a buggy .lyx
10881         file without named layout we set layout to defaultLayoutName().
10882
10883 2002-03-06  Juergen Vigna  <jug@sad.it>
10884
10885         * CutAndPaste.C (copySelection): set layout for new paragraph.
10886
10887         * text.C (prepareToPrint): leave ERT inset left aligned
10888         (leftMargin): don't indent paragraphs inside ERT insets
10889
10890 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10891
10892         * paragraph.C (breakParagraph): dont call clear do the work manually
10893
10894         * paragraph.[Ch] (clear): remove function
10895
10896 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10897
10898         * paragraph.C (Paragraph): dont call clear, the work has already
10899         been done.
10900
10901         * lyxtextclass.C (operator): assert if n is empty
10902
10903         * CutAndPaste.C (cutSelection): dont call Paragraph::clear, do the
10904         work manually instead.
10905
10906 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
10907
10908         * BufferView_pimpl.C: protect selectionLost against text == 0
10909
10910 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10911
10912         * text.C (breakParagraph): fix a setting layout to '0' problem.
10913
10914 2002-03-05  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
10915
10916         * buffer.C (makeLinuxDocFile, makeDocBookFile): take in account the
10917         final location of file, for the included files, and graphics.
10918
10919 2002-03-05  Juergen Vigna  <jug@sad.it>
10920
10921         * CutAndPaste.C (pasteSelection): fix the depth level on paste.
10922
10923 2002-03-04  Juergen Vigna  <jug@sad.it>
10924
10925         * lyx_cb.C (getContentsOfAsciiFile): new helper function.
10926
10927         * tabular.C (calculate_width_of_column_NMC): fixed to use also the
10928         last column of multicolumn cells.
10929         (SetWidthOfMulticolCell): recalculate NMC and real columns.
10930
10931 2002-03-04  Jose Abilio Oliveira Matos  <jamatos@novalis.fc.up.pt>
10932
10933         * exporter.C (Export): for linuxdoc and docbook the buffer is a nice
10934         file if it doesn't go to a temporary file.
10935
10936         * buffer.C (sgmlOpenTag):
10937         (sgmlCloseTag):  remove extra newline insertion.
10938
10939 2002-03-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10940
10941         * text.C (getRowNearY): comment out debug msg
10942
10943 2002-03-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10944
10945         * text2.C: first -> first_y
10946
10947         * text.C (getRowNearY): add some attemts at a possible
10948         optimization, not working.
10949
10950         * tabular.[Ch]: add BufferParams to several function so that newly
10951         created paragraph can be initialized to he default layotu for the
10952         buffers textclass.
10953
10954         * tabular-old.C (ReadOld): add buf->params to call of Init
10955
10956         * screen.C: rename text->first to text->first_y
10957
10958         * paragraph.C (breakParagraph): always set layout in the broken
10959         paragraph
10960
10961         * lyxtextclass.C (Read): remove lowercase
10962         (hasLayout): ditto
10963         (operator): ditto
10964         (delete_layout): ditto
10965
10966         * lyxtext.h: rename first -> first_y
10967
10968         * lyxlayout.C (Read): remove lowercase
10969         (name): ditto
10970         (setName): ditto
10971         (obsoleted_by): ditto
10972
10973         * bufferlist.C (newFile): set layout on first paragrpah of new buffers.
10974
10975         * buffer.C (insertErtContents): add params are to InsetERT
10976         (parseSingleLyXformat2Token): add code to check if a paragraphs
10977         layout really exist.
10978         (parseSingleLyXformat2Token): add params to several inset
10979         constructors
10980         (asciiParagraph): remove lowercase, do the layout comparisons with
10981         no_case
10982
10983         * BufferView_pimpl.C (cursorNext): first -> first_y
10984         (resizeCurrentBuffer): first -> first_y
10985         (updateScrollbar): first -> first_y
10986         (scrollCB): first -> first_y
10987         (workAreaMotionNotify): first -> first_y
10988         (workAreaButtonPress): first -> first_y
10989         (checkInsetHit): first -> first_y
10990         (cursorPrevious): first -> first_y
10991         (cursorNext): first -> first_y
10992         (Dispatch): add buffer_->params to severl inset contructors
10993
10994 2002-03-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10995
10996         * lyxlayout.C (Read): remove some debug info that I forgot.
10997
10998         * buffer.C (makeLaTeXFile): fix calling of LaTeXFeatures, and
10999         clean up the code slightly.
11000         (makeLinuxDocFile): ditto
11001         (makeDocBookFile): ditto
11002
11003         * text2.C: layout as string
11004
11005         * text.C: layout as string
11006
11007         * paragraph_pimpl.C: layout as string
11008
11009         * paragraph.[Ch]: layout as string
11010
11011         * lyxtextclasslist.[Ch]: layout as string
11012
11013         * lyxtextclass.[Ch]: layout as string
11014
11015         * lyxtext.h: layout as string
11016
11017         * lyxlayout.[Ch]: layout as string
11018
11019         * lyx_cb.C: layout as string
11020
11021         * bufferview_funcs.C: layout as string
11022
11023         * bufferparams.C: layout as string
11024
11025         * buffer.C: layout as string
11026
11027         * LyXView.[Ch]: layout as string
11028
11029         * LaTeXFeatures.[Ch]: layout as string
11030
11031         * CutAndPaste.C (SwitchLayoutsBetweenClasses): layout as string
11032
11033         * BufferView_pimpl.C: change current_layout to string, remove
11034         lyx::layout_type.
11035         (Dispatch):
11036         (smartQuote):
11037         (insertInset):
11038         (workAreaButtonRelease): layout as string
11039
11040         * BufferView2.C (unlockInset): adjust
11041
11042         * vspace.C (asLatexCommand): use an explict temp variable.
11043
11044 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
11045
11046         * Makefile.am: use FRONTEND_*
11047
11048 2002-03-01  Juergen Vigna  <jug@sad.it>
11049
11050         * tabular.C (SetWidthOfMulticolCell): changed to something better
11051         I hope but still work in progress.
11052         (recalculateMulticolumnsOfColumn): renamed function from
11053         recalculateMulticolCells as it is more appropriate now.
11054         (SetWidthOfCell): calculate multicols better.
11055
11056 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11057
11058         * minibuffer.C (MiniBuffer): reset timout to 6000, as it was before.
11059
11060         * lyxfunc.C (processKeySym): print sequence also if it is
11061         `deleted' (complete)
11062
11063         * kbsequence.C (print): print sequence even if it is deleted
11064         (complete would be a better word, actually).
11065
11066         * lyxfunc.C (dispatch): print complete options after a prefix key
11067
11068         * vspace.C (asLatexCommand): rewrite in a slightly different form.
11069
11070 2002-03-01  Martin Vermeer  <martin.vermeer@hut.fi>
11071
11072         * text2.C (setCharFont): eliminate setCharFont code duplication.
11073
11074 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11075
11076         * BufferView_pimpl.C (Dispatch): remove bogus handling of
11077         LFUN_TABULAR_FEATURE (bug #177)
11078
11079 2002-02-29 ;-)  Angus Leeming  <a.leeming@ic.ac.uk>
11080
11081         * Makefile.am: remove figure.h
11082
11083 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
11084
11085         * Bufferview_pimpl.C:
11086         * CutAndPasteC:
11087         * LaTeX.C:
11088         * LyXSendto.C:
11089         * buffer.C:
11090         * bufferlist.C:
11091         * converter.C:
11092         * language.C:
11093         * lyxfunc.C:
11094         * lyxvc.C:
11095         * paragraph.C:
11096         * text.C:
11097         * text2.C: remove #include "lyx_gui_misc.h".
11098
11099         * LaTeX.C: added #include <cstdio>
11100
11101 2002-02-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11102
11103         * paragraph.C (getMaxDepthAfter): new method. The maximal depth
11104         that the paragraph following this one can have.
11105
11106         * text2.C (incDepth): use Paragraph::getMaxDepthAfter
11107
11108         * vspace.C (asLatexCommand): fix bogus gcc warning
11109
11110         * Makefile.am (lyx_SOURCES): remove vms_defines.h
11111
11112 2002-02-27  Martin Vermeer  <martin.vermeer@hut.fi>
11113
11114         * text2.C (setLayout): get rid of redundant code
11115
11116 2002-02-26  Martin Vermeer  <martin.vermeer@hut.fi>
11117
11118         * text2.C (incDepth): make sure depth cannot be increased beyond
11119         reasonable values.
11120
11121 2002-02-20  Angus Leeming  <a.leeming@ic.ac.uk>
11122
11123         * lyxfunc.C (dispatch): act on LFUN_FORKS_SHOW and LFUN_FORKS_KILL.
11124         also call grfx::GCache::changeDisplay if the graphicsbg color changes.
11125
11126         * PainterBase.h (image):
11127         * Painter.[Ch] (image): now accepts a grfx::GImage const & rather than
11128         a LyXImage const *.
11129
11130 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
11131
11132         * BufferView.C:
11133         * BufferView.h:
11134         * BufferView_pimpl.C:
11135         * BufferView_pimpl.h:
11136         * LaTeXFeatures.C:
11137         * LyXAction.C:
11138         * LyXView.C:
11139         * Makefile.am:
11140         * UpdateList.h:
11141         * UpdateList.C:
11142         * buffer.C:
11143         * figure.h:
11144         * figureForm.C:
11145         * figureForm.h:
11146         * figure_form.C:
11147         * figure_form.h:
11148         * lyx_cb.C:
11149         * lyx_gui.C:
11150         * lyx_gui_misc.C:
11151         * lyxfunc.C:
11152         * sp_base.h:
11153         * sp_ispell.h:
11154         * sp_pspell.h:
11155         * sp_spell.C: remove fig inset, and the crap house of
11156           cards that follows it
11157
11158 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
11159
11160         * Makefile.am:
11161         * lyxserver.C:
11162         * os2_defines.h:
11163         * os2_errortable.h:
11164         * nt_defines.h: move .h into support/
11165
11166         * vms_defines.h: remove
11167
11168         * WorkArea.C: add space in debug output
11169
11170         * text2.C:
11171         * paragraph.C:
11172         * buffer.C: add WITH_WARNINGS
11173
11174         * vc-backend.h:
11175         * vc-backend.C:
11176         * bufferlist.C: s/retrive/retrieve/, add docs
11177
11178         * vspace.h:
11179         * vspace.C:
11180         * kbmap.h:
11181         * lyxlength.h:
11182         * lyxgluelength.h:
11183         * length_common.h:
11184         * chset.h:
11185         * chset.C: add docs
11186
11187         * lyxgui.C: add ID to X error handler
11188
11189         * lyxtestclass.c: fix typo
11190
11191 2002-02-26  Juergen Vigna  <jug@sad.it>
11192
11193         * tabular_funcs.C (write_attribute): changed so that some default
11194         attributes are not written at all.
11195         (getTokenValue): set default values before trying to read the
11196         value so we have the return value always set as default if we don't
11197         find the token we search for.
11198
11199         * tabular.C (Write): write bools as bools not as strings!
11200
11201 2002-02-22  Juergen Vigna  <jug@sad.it>
11202
11203         * BufferView_pimpl.C (workAreaButtonPress): call edit() before calling
11204         insetButtonPress for HIGHLY_EDITABLE_INSETS seems saner (fix #250).
11205
11206         * text.C (leftMargin): don't add an indent for paragraphs inside
11207         tabular cells (fix #208).
11208
11209 2002-02-21  José Matos  <jamatos@fep.up.pt>
11210
11211         * tabular.C (docBook): fixed support for long tables.
11212
11213 2002-02-20  Juergen Vigna  <jug@sad.it>
11214
11215         * text2.C (getFont): get the drawing font of the Inset if this
11216         paragraph is inside an inset (only important for InsetERT for now).
11217
11218         * buffer.C (insertErtContents): use new lanugage params in ERT
11219         constructor.
11220
11221         * CutAndPaste.C: commenting out seemingly uneeded code.
11222
11223 2002-02-19  Allan Rae  <rae@lyx.org>
11224
11225         * BufferView2.C (removeAutoInsets): fix remaining freed memory read.
11226         Iterators might be simple to use but they also get invalidated.
11227         (removeAutoInsets): renamed saved cursor tracking variables and added
11228         some comments to clarify what everything does.
11229
11230 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
11231
11232         * Chktex.C:
11233         * LaTeX.C:
11234         * LyXSendto.C:
11235         * converter.C:
11236         * lyx_cb.C:
11237         * vc-backend.C: Changes due to the renaming of support/syscall.[Ch] as
11238         support/systemcall.[Ch] and of class Systemcalls as class SystemCall.
11239
11240         * lyxfunc.C:
11241         * vc-backend.h: remove #include "support/syscall.h"
11242
11243         * LaTeX.C:
11244         * LyXSendto.C:
11245         * converter.C: rearrange #includes in Lars' approved fashion.
11246
11247         * LyXView.[Ch]: make autosave_timeout a pointer to Timeout. Can thus
11248         forward declare class Timeout in the header file.
11249
11250         * XFormsView.C: changes due to the above.
11251
11252         * minibuffer.[Ch]: make timer and stored_timer pointers to Timeout,
11253         similar to LyXView.
11254
11255         * commandtags.h: add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to the enum.
11256         * LyXAction.C (init): add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to items[]
11257
11258 2002-02-18  José Matos  <jamatos@fep.up.pt>
11259
11260         * buffer.C (simpleDocBookOnePar): if paragraph style is CDATA escapes
11261         insets contents.
11262
11263 2002-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
11264
11265         * a lot of small ws changes
11266         * add a lot of using std::XXX
11267         * use std construcs some places where approp.
11268         * use some exisint stuff from lyxfunctional where approp.
11269         * Make file changes to use partial linking (lets test this now...)
11270
11271 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
11272
11273         * Chktex.C:
11274         * buffer.C:
11275         remove #include "support/syscontr.h" as it's redundant. Always has been.
11276
11277         * Chktex.C:
11278         * LaTeX.C:
11279         * LyXSendto.C:
11280         * converter.C:
11281         * lyx_cb.C:
11282         * vc-backend.C:
11283         change Systemcalls::System to Systemcalls::Wait and
11284         change Systemcalls::SystemDontWait to Systemcalls::DontWait.
11285         No change of functionality, just reflects the stripped down Systemcalls
11286         class.
11287
11288 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
11289
11290         * debug.[Ch]: add a GRAPHICS type to the enum.
11291
11292 2002-02-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11293
11294         * text.C (nextBreakPoint): use Paragraph::isLineSeparator
11295
11296         * paragraph.C (isLineSeparator): call Inset::isLineSeparator if
11297         there is an inset.
11298
11299 2002-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11300
11301         * lyxfunc.C (getStatus): change the rules for LFUN_INSET_TOGGLE to
11302         match the changes below.
11303
11304         * text2.C (toggleInset): if there is not editable inset at cursor
11305         position, try to see if cursor is _inside_ a collapsable inset
11306         and close it.
11307
11308 2002-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11309
11310         * lyxfunc.C (getStatus): handle LFUN_SWITCHBUFFER so that the
11311         document menu has a nice checkbox
11312
11313 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11314
11315         * lyxlength.C (asLatexString): change PW to output as percent of
11316         \textwidth.
11317
11318         * lengthcommon.C: change '%' to 't%'
11319
11320         * lyxfunc.C (dispatch): a few comments from Martin
11321
11322 2002-02-06  John Levon  <moz@compsoc.man.ac.uk>
11323
11324         * WorkArea.h:
11325         * WorkArea.C:
11326         * BufferView_pimpl.h:
11327         * BufferView_pimpl.C: clear our selection when X tells us we've lost
11328           the X selection.
11329
11330 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11331
11332         * vspace.C (inPixels): fix compiler warning
11333
11334 2002-02-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11335
11336         * lyxfunc.C (getStatus): fix status message for disabled commands.
11337
11338 2002-02-01  John Levon  <moz@compsoc.man.ac.uk>
11339
11340         * BufferView_pimpl.C: fix crash on close buffer
11341         during selection (#227)
11342
11343 2002-01-27  Herbert Voss  <voss@lyx.org>
11344
11345         * buffer.C: link old Figure to new graphic inset
11346
11347 2002-01-26  Dekel Tsur  <dekelts@tau.ac.il>
11348
11349         * FontLoader.C (getFontinfo): Change the latex font names in order
11350         to match the names of type1inst.
11351
11352 2002-01-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11353
11354         * WorkArea.C (WorkArea): initialize the scrollbar bounds.
11355
11356         * DepTable.C (sumchange): do not evaluate end() on every iteratrion.
11357         (extchanged): ditto
11358         (ext_exist): ditto
11359         (remove_files_with_extension): ditto
11360         (remove_file): ditto
11361         (write): ditto
11362
11363         * BufferView_pimpl.C (updateScrollbar): do the right thing if the
11364         document is smaller than the work area height. Do not initialize
11365         static variables to 0.
11366
11367 2002-01-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11368
11369         * lyx_gui.C (init): give the toolbar tooltips a normal font.
11370
11371         * lyxfunc.C (getStatus): handle LFUN_LAYOUT like
11372         LFUN_LAYOUT_PARAGRAPHS.
11373
11374         * tabular.C (GetCellFromInset): new method. Finds an inset in a
11375         tabular. It is possible to provide a possible cell, which will
11376         typically be the actcell from the corresponding insettabular
11377
11378         * lyxfunc.C (getStatus): small cleanup; disable
11379         LFUN_LAYOUT_PARAGRAPHS in insets where forceDefaultParagraphs is
11380         true
11381
11382 2002-01-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11383
11384         * tabular.C (Validate): remove broken optimization (fixes bug #201)
11385
11386         * paragraph.C (startTeXParParams):
11387         (endTeXParParams): new methods. The LaTeX code to
11388         start/end paragraph formatting
11389         (simpleTeXOnePar): call startTeXParParams also when paragraph is
11390         empty (fixes bug #200)
11391
11392         * vspace.C (inPixels): adapt to the change below
11393         (inPixels): [later] more cleanups (remove unused variables)
11394
11395         * lyxlength.C (inPixels): change to use a width and a height as
11396         parameter.
11397
11398 2002-01-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11399
11400         * lyxlength.C (asLatexString): \pagewidth is not a LaTeX macro.
11401         Replaced with \paperwidth
11402
11403         * DepTable.C (insert): add std:: qualifier
11404
11405 2002-01-18  Allan Rae  <rae@lyx.org>
11406
11407         * text2.C (removeRow): add comment.  Should other refresh_?? vars be
11408         updated also?
11409
11410         * text.C (drawInset): Turned out I didn't know enough about how
11411         rebreaking worked.  This fixes most of the redraw problems.  I see
11412         an occasional cursor trail when a line is broken now and the cursor
11413         placement can seem out by a few pixels also after a rebreak.
11414
11415 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11416
11417         * buffer.C (parseSingleLyXformat2Token): update because minipage
11418         width is now a LyXLength
11419
11420         * lyxlength.C (inPixels): new method, extracted from VSpace::inPixels
11421
11422         * BufferView_pimpl.C (smartQuote): fix insertion of quote inset in
11423         math insets
11424
11425 2002-01-17  Juergen Vigna  <jug@sad.it>
11426
11427         * lyxfunc.C (dispatch): fixed PARAGRAPH_GOTO
11428
11429         * BufferView2.C (lockInset): call edit() so that theLockingInset()
11430         is set correctly and the inset is updated correctly.
11431
11432 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11433
11434         * CutAndPaste.C (pasteSelection): move the setInsetOwner call at
11435         the beginning of the loop.
11436
11437 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
11438
11439         * lyxrc.C: improve help for use_scalable_fonts
11440
11441 2002-01-17  Allan Rae  <rae@lyx.org>
11442
11443         * lyx_cb.C (ShowMessage): make sure we have a user and an owner.
11444
11445 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11446
11447         * CutAndPaste.C (pasteSelection): when pasting multiple paragraph,
11448         make sure to set their inset_owner to the right value (bug #171)
11449
11450 2001-12-12  Ben Stanley  <bds02@uow.edu.au>
11451
11452         * DepTable.h
11453         * DepTable.C: Implement mtime checking to reduce time spent doing
11454         CRCs.
11455
11456 2002-01-16  Juergen Vigna  <jug@sad.it>
11457
11458         * tabular.C (GetAdditionalHeight): one of error fixed.
11459
11460         * lyxrc.C (output): small fix in writing use_pspell.
11461
11462 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
11463
11464         * sp_base.h: #include LString.h
11465
11466 2002-01-16  Allan Rae  <rae@lyx.org>
11467
11468         * text2.C (removeRow): refresh_row needs a valid row.  Or does it?
11469         Can someone check this please?
11470
11471         * text.C (drawInset): It was possible that p.row would be removed by
11472         breakAgainOneRow upsetting a few other settings.  There may be another
11473         small tweak possible by setting need_break_row = 0 when p.row has been
11474         removed but I don't know enough about the logic here.
11475
11476 2002-01-15  Allan Rae  <rae@lyx.org>
11477
11478         * text.C (insertChar): removed conditional truism.
11479
11480         * BufferView2.C (removeAutoInsets): More tweaks.
11481         cur_par_prev could be a stray pointer.  Check for trailing empty line
11482         in case last line was cur_par and only had an error inset on it.
11483
11484 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11485
11486         * lyx_cb.C (MenuWrite): buffer->fileName is guaranteed to be
11487         absolute
11488
11489         * vc-backend.C (most methods):
11490         * exporter.C (Export):
11491         * converter.C (convert):
11492         (runLaTeX):
11493         * LyXSendto.C (SendtoApplyCB):
11494         * lyxfunc.C (dispatch):
11495         (menuNew):
11496         (open):
11497         (doImport):
11498         * lyx_cb.C (AutoSave):
11499         (InsertAsciiFile):
11500         * BufferView_pimpl.C (MenuInsertLyXFile):
11501         * buffer.C (runChktex): use Buffer::filePath().
11502
11503         * buffer.h: rename filename to filename_; rename filepath to
11504         filepath_ and make it private
11505         (filePath): new method
11506
11507         * buffer.C (writeFile): use fileName()
11508         (getLatexName):
11509
11510         * lyx_main.C (init): fix starting  of LyX when the binary is a
11511         link from so,ewhere else.
11512
11513         * minibuffer.C: include <cctype> for isprint
11514
11515 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
11516
11517         * buffer.C (parseSingleLyXformat2Token): changes associated with the
11518         change of InsetMinipage::width to InsetMinipage::pageWidth to avoid the
11519         name clash with InsetCollapsable's width function.
11520
11521 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11522
11523         * lastfiles.C: include <iterator>
11524
11525 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
11526
11527         * BufferView2.C (ChangeRefsIfUnique): use lyx::count rather than
11528         std::count.
11529
11530         * buffer.C (makeLaTeXFile): ditto.
11531         Also make loop operation more transparent.
11532
11533 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
11534
11535         * ToolbarDefaults.C: remove trailing comma closing namespace.
11536
11537         * WorkArea.h: remove WorkArea:: from declaration of event_cb.
11538
11539         * lyxfunc.[Ch]: clean-up declaration of verboseDispatch functions
11540         as in WorkArea.
11541
11542         * trans.C (Load): comment out unused variable, allowed.
11543
11544 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
11545
11546         * minibuffer.[Ch] (append_char): new method to recieve input from the
11547         drop-down completion browser. If a key was pressed, then recieve this
11548         char and append it to the existing string.
11549         (peek_event): modify the positioning data passed to the completion
11550         browser so that it can be placed above the minibuffer rather than below.
11551 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11552
11553         * LyXAction.C (init): alloe error-next for readonly documents.
11554
11555         * BufferView2.C (ChangeRefsIfUnique): use standard version of
11556         count.
11557
11558 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11559
11560         * bufferlist.C (readFile): create the buffer _after_ checking that
11561         the file exists.
11562
11563         * lyxfunc.C (verboseDispatch): fix handling of arguments
11564
11565         * lyxrc.C (setDefaults): do not initialize document_path to $HOME.
11566
11567         * lyxrc.C: use string::erase() instead of initializing to "".
11568
11569
11570 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
11571
11572         * BufferView_pimpl.h:
11573         * BufferView_pimpl.C:
11574         * WorkArea.h:
11575         * WorkArea.C:
11576         * text2.C: tell X when we have made a selection for copying
11577
11578 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11579
11580         * BufferView_pimpl.C (MenuInsertLyXFile):
11581         * lyxfunc.C (menuNew):
11582         (open):
11583         (doImport): add shortcuts to directory buttons
11584
11585         * BufferView_pimpl.C (workAreaButtonRelease): remove dead code (to
11586         open a float)
11587
11588         * lyxfunc.C (setStatusMessage):
11589         (getStatusMessage): new methods
11590         (getStatus):use setStatusMessage instead of setErrorMessage
11591         (dispatch): when function is disabled, set error message here
11592         [instead of in getStatus previously]
11593
11594         * BufferView_pimpl.C (workAreaButtonRelease): update
11595         toolbar/menubar here too.
11596
11597 2002-01-13  Allan Rae  <rae@lyx.org>
11598
11599         * BufferView2.C (removeAutoInsets): finished off earlier fix.
11600         Now seems indestructible.  Remaining task is to audit all other
11601         code affected by deleteEmptyParagraphMechanism.  One small quirk
11602         left is that an empty document with an error in the preamble can
11603         be made to report an error but no error box appears.  I don't know
11604         where it goes.
11605         (removeAutoInsets): Improved comments.
11606
11607 2002-01-13  John Levon  <moz@compsoc.man.ac.uk>
11608
11609         * Thesaurus.h:
11610         * Thesaurus.C: update for Aiksaurus 0.14
11611
11612 2002-01-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11613
11614         * text2.C (firstParagraph): removed member function, all uses
11615         replaces with ownerParagraph
11616         (redoParagraphs): here
11617         (updateInset): here
11618         (toggleAppendix): here
11619         * BufferView2.C (insertErrors): here
11620         (setCursorFromRow): here
11621
11622 2002-01-13  Allan Rae  <rae@lyx.org>
11623
11624         * BufferView2.C (removeAutoInsets): ensure we have a valid cursor if
11625         the old cursor is now invalid due to deleteEmptyParagraphMechanism.
11626         There is still a way to segfault this although you may have to do this
11627         multiple times: Have an InsetERT with an unknown command in it.
11628         View->DVI, move cursor between Error box and InsetERT and hit <Enter>,
11629         <down-arrow>, <Enter> again, View->DVI, BANG!
11630
11631         * text2.C (setCursor):
11632         (deleteEmptyParagraphMechanism):
11633         * lyxtext.h (setCursor):
11634         (deleteEmptyParagraphMechanism): return true if the paragraph was deleted.
11635         Making use of the return value may help fix other bugs.
11636
11637 2002-01-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11638
11639         * lyxfunc.C (dispatch): update toolbar/menubar after dispatching.
11640
11641         * LyXView.C (updateMenubar): call MenuBar::update here
11642         (updateToolbar): but not here
11643         (showState): do not update toolbar/menubar
11644
11645         * LyXAction.[Ch]: move isPseudoAction to the C file, since nobody
11646         should need to care about that.
11647
11648         * lyxfunc.C (verboseDispatch): simplify a bit
11649         (getStatus): have a version which takes a pseudoaction, and
11650         another which requires a (kb_action,string).
11651
11652         * LyXAction.C (retrieveActionArg): make it work also when action
11653         is not a pseudo-action.
11654         (getActionName): simplify a bit
11655         (helpText):
11656
11657 2002-01-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11658
11659         * lyxfunc.C (verboseDispatch): new families of methods with
11660         several ways to specify a command and a bool to indicate whether
11661         the command name and shortcut should be displayed in minibuffer
11662         (eventually, we could extend that to a finer bitmask like
11663         SHORTCUT|CMDNAME|CMDRESULT, or whatever).
11664         (dispatch): the pristine dispatch command which just, well,
11665         dispatchs! Note it still sets its result to minibuffer; I'm not
11666         sure we want that.
11667
11668         * lyxfunc.h: remove setHintMessage
11669
11670         * vc-backend.C: use LFUN_MENURELOAD instead of "buffer-reload"
11671
11672 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11673
11674         * BufferView_pimpl.C (specialChar): delete new inset if we have
11675         not been able to insert it.
11676
11677         * kbmap.C: revert to using int instead of kb_action, since all we
11678         are dealing with is pseudo-actions.
11679
11680         * LyXAction.C (searchActionArg): change to return int instead of
11681         kb_action, since the result is a pseudoaction.
11682
11683 2002-01-12  Dekel Tsur  <dekelts@tau.ac.il>
11684
11685         * buffer.C (insertErtContents): Fix (partially) the font bug.
11686
11687 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
11688
11689         * BufferView2.C (ChangeRefsIfUnique): use the HP version of std::count
11690         as the other one is broken on my machine!
11691
11692 2002-01-10  Martin Vermeer  <martin.vermeer@hut.fi>
11693
11694         * commandtags.h:
11695         * LyXAction.C: two new LFUNS, LFUN_FRAK and LFUN_ITAL.
11696
11697 2002-01-10  Angus Leeming  <a.leeming@ic.ac.uk>
11698
11699         * lyxrc.[Ch]: change names and descriptions of popup font variables to
11700         reflect their actual use. Provide compatibility code for older lyxrc
11701         files.
11702
11703         * lyx_gui.C (init): revoke change of 2002-01-07 of popup font style to
11704         FL_NORMAL_STYLE.
11705         change names of popup font variables in line with the changes to lyxrc.C
11706
11707 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11708
11709         * buffer.C (asciiParagraph): avoid outputing a word twice after
11710         an inset.
11711
11712         * lyxrc.C (getDescription): document that document_path and
11713         template_path can be empty.
11714
11715 2002-01-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11716
11717         * LaTeXFeatures.C (getMacros):
11718         * buffer.C (validate): rename feature "amsstyle" to "amsmath"
11719
11720         * buffer.C (makeLaTeXFile): remove test for "amsstyle" from here.
11721
11722         * LaTeXFeatures.C (useFloat): require "float" here instead of in
11723         getPackages.
11724         (getPackages): rename feature "floats" to "float". Use an array to
11725         iterate over 'simple' features (i.e. just a \usepackage). Add
11726         handling of "amsmath" (renamed from "amsstyle").
11727
11728 2001-12-29  Michael A. Koziarski  <michael@koziarski.org>
11729
11730         * LaTeXFeatures.C (require): Prevent duplicate entries in the
11731         features list.
11732
11733 2002-01-08  Angus Leeming  <a.leeming@ic.ac.uk>
11734
11735         * FuncStatus.C: small compile fix for DEC cxx. Doesn't like
11736         FuncStaus::FuncStatus & FuncStaus::some_method().
11737
11738 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
11739
11740         * FuncStatus.[Ch]: new files. This is a rewrite as a proper class
11741         of the func_satus stuff. Edited and massaged in various ways by
11742         JMarc.
11743
11744         * lyxfunc.C (getStatus): use FuncStatus
11745
11746 2002-01-08  Juergen Vigna  <jug@sad.it>
11747
11748         * text.C (nextBreakPoint): use function Inset::isChar().
11749
11750         * paragraph.C (TeXOnePar): use function
11751         Inset::forceDefaultParagraphs.
11752
11753         * buffer.C (latexParagraphs): use function
11754         Inset::forceDefaultParagraphs.
11755
11756 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
11757
11758         * lyx_gui.C (init): set the style of the menu popups to
11759         FL_BOLD_STYLE, thereby fixing bugzilla bug #32.
11760
11761 2002-01-07  Juergen Vigna  <jug@sad.it>
11762
11763         * text.C (setHeightOfRow): small fix
11764         (prepareToPrint): don't look at alignment if we don't have the place
11765         for doing it.
11766
11767 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
11768
11769         * box.C: New file. Move the Box methods and functions out of box.h,
11770         following Lars' suggestion.
11771
11772 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
11773
11774         * box.h: #include "support/LOstream.h", needed for inlined function.
11775
11776         * lyxtextclass.C:
11777         * lyxtextclasslist.C: added some using std declarations.
11778
11779 2002-01-06  John Levon  <moz@compsoc.man.ac.uk>
11780
11781         * box.h: make signed dimensions to allow insets wider than
11782           the screen (bug #162)
11783
11784         * BufferView_pimpl.C: add some insetHit debug
11785
11786 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
11787
11788         * vc-backend.C: add FIXME
11789
11790 2002-01-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11791
11792         * lyxfunc.C (getStatus): enable code for showing math font status
11793         in toolbar/menu.
11794
11795 2002-01-07  Juergen Vigna  <jug@sad.it>
11796
11797         * text.C (nextBreakPoint): removed debug output not needed anymore.
11798
11799 2002-01-06  Juergen Vigna  <jug@sad.it>
11800
11801         * text.C (nextBreakPoint): fixed up this function we had this bug
11802         since ever but now hopefully we break row better.
11803         (insertChar): we have to check if an inset is the next char as it
11804         could now happen that a large inset is causing a break.
11805
11806 2002-01-05  Juergen Vigna  <jug@sad.it>
11807
11808         * BufferView2.C (showLockedInsetCursor): don't draw the inset cursor
11809         if it doesn't like to be drawed.
11810
11811 2002-01-04  Juergen Vigna  <jug@sad.it>
11812
11813         * BufferView2.C (lockInset): forgot to set a cursor.
11814
11815         * lyxfunc.C (dispatch): add a finishUndo() in LFUN_ESCAPE.
11816
11817 2002-01-03  Martin Vermeer  <martin.vermeer@hut.fi>
11818
11819         * FormMathsPanel.C:
11820         * FormMathsPanel.h
11821         * MathsSymbols.C:
11822         * form_maths_panel.C:
11823         * form_maths_panel.h:
11824         * form_maths_panel.fd: implemented sub- and super- buttons in math
11825         panel.
11826
11827         * lyx_main.C: Revised hardwired bindings to allow original _ and ^
11828         (or ^ space) to be used as in TeX (req'd by André).
11829
11830         * lyxfunc.C: Allow ^ and _ again to be used both as
11831         super/subscript (mathed) and as themselves (in text).
11832
11833 2002-01-03  Allan Rae  <rae@lyx.org>
11834
11835         * LyXView.C (updateWindowTitle): Setup a short icon title of either
11836         "LyX" or the filename of the current buffer if it has one.  This is a
11837         modified form of John Levon's patch.
11838
11839         * XFormsView.C (setWindowTitle): also set icon title.
11840
11841         * LyXView.h (setWindowTitle): signature changed.
11842         * XFormsView.h (setWindowTitle): ditto.
11843
11844 2002-01-02  Juergen Vigna  <jug@sad.it>
11845
11846         * tabular.C (AppendColumn): hopefully fixed this memory access problem.
11847
11848 2001-12-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11849
11850         * screen.C (topCursorVisible): introduce a temp var for
11851         text->cursor.row(), handle the case where this row is null. (kindo
11852         hachish)
11853
11854         * text2.C (setCursor): add a couple of asserts.
11855
11856         * paragraph.h (inset_iterator): add -> operator
11857
11858         * paragraph.[Ch] (autoDeleteInsets): remove member function
11859
11860         * BufferView2.C (removeAutoInsets): rewrite to handle the old
11861         cursor pos correctly and handle inset deletion by itself.
11862         (insertErrors): move iterator declaration out of for expression
11863
11864         * lyxtextclass.C: add <algorithm>
11865
11866         * Makefile.am: added the new files to sources, removed layout.C
11867
11868         * layout.C: removed file
11869
11870         * layout.h: remove LYX_DUMMY_LAYOUT
11871
11872         * lyxtextclasslist.C (NumberOfLayout): do not special case dummy
11873         layout.
11874
11875         * lyxlayout.[Ch]:
11876         * lyxtextclass.[Ch]:
11877         * lyxtextclasslist.[Ch]: new files
11878
11879         * include order changes to a lot of files, also changes because of
11880         the six new files.
11881
11882 2001-12-27  Juergen Vigna  <jug@sad.it>
11883
11884         * buffer.C (asciiParagraph): more fixes.
11885
11886         * tabular.C (ascii): make ascii export support export of only the
11887         data separated by a column-delimiter.
11888         (ascii): better support for ascii export.
11889
11890         * buffer.C (asciiParagraph): rewrote to hopefully work as expected!
11891
11892 2001-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11893
11894         * tabular_funcs.C: use a "using std::getline" instead of the
11895         previous fix from Angus (necessary for cxx + lyxstring)
11896
11897 2001-12-24  Juergen Vigna  <jug@sad.it>
11898
11899         * BufferView_pimpl.C (tripleClick): fixed for InsetText.
11900
11901         * buffer.C (parseSingleLyXformat2Token): fixed 2 compatibility read
11902         problems. First check a minipage also if we have some ert-contents
11903         (not only on par->size(), second set the right depth of the paragraph
11904         on the relink to the root-paragraph-list!
11905
11906         * undo_funcs.C (textHandleUndo): fixed a stupid earlier wrong fix
11907         which then did not anymore update the main paragraphs on undo/redo!
11908
11909 2001-12-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11910
11911         * lyxfunc.C (getStatus): use func_status::toggle to simplify the
11912         code. Support all font-changing funcs (even those which are not in
11913         menu currently). Support for reporting font settings in
11914         mathed (disabled until Andre provides a function on mathed's side).
11915
11916         * func_status.h (toggle): small helper function to set toggle
11917         state on a flag.
11918
11919 2001-12-21  Angus Leeming  <a.leeming@ic.ac.uk>
11920
11921         * tabular_funcs.C: getline -> std::getline
11922
11923 2001-12-21  Juergen Vigna  <jug@sad.it>
11924
11925         * undo_funcs.C (textHandleUndo): fixed a case where tmppar3 is
11926         accessed and could be 0 (I couldn't generate this but it seems
11927         Michael could!).
11928
11929 2001-12-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11930
11931         * tabular_funcs.C: add LIstream.h, move write_attribute to..
11932         * tabular_funcs.h: here and include iosfwd
11933
11934 2001-12-20  Juergen Vigna  <jug@sad.it>
11935
11936         * undo_funcs.C (textHandleUndo): fixed crash when undo_cursor not
11937         inside inset but undo_par was.
11938
11939 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11940
11941         * Thesaurus.C: always include <config.h> in sources.
11942
11943         * Painter.h:
11944         * lyxlookup.h:
11945         * box.h: do not include <config.h> in header files
11946
11947         * text.C (paintLastRow): remove unused variable
11948
11949         * text.C (transformChar):
11950         (insertChar):
11951         * tabular-old.C (getTokenValue): use IsDigit instead of isdigit.
11952
11953         * Painter.C (text):
11954         * font.C (width): rewrite to use uppercase() instead of
11955         islower/toupper.
11956
11957         * lyxfind.C (IsStringInText): use uppercase instead of toupper.
11958
11959 2001-12-12  John Levon  <moz@compsoc.man.ac.uk>
11960
11961         * lyxfind.C: clean up of find failure position change
11962
11963 2001-12-20  Juergen Vigna  <jug@sad.it>
11964
11965         * Makefile.am (lyx_SOURCES): added tabular_funcs.[hC].
11966
11967         * tabular.C (isValidRow): added to check if we're in a LT-h/f row.
11968         (TeXRow): added to LaTeX a single tabular row.
11969         (TeXLongtableHeaderFooter): added to output LT-h/f data.
11970         (Latex): simplified and finally good LT-h/f support.
11971         (various_functions): just small adaptions for LT-h/f support.
11972
11973         * tabular_funcs.[hC]: added and moved here all not classfunctions
11974         of LyXTabular.
11975
11976 2001-12-19  Juergen Vigna  <jug@sad.it>
11977
11978         * tabular.[Ch]: better support for longtabular options (not finished
11979         yet!)
11980
11981 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11982
11983         * text.C (paintLastRow): use the label font instead of the font of
11984         the last character to compute the size of *_BOX. This makes more
11985         sense and avoids a crash with empty paragraphs.
11986         Use Painter::rectangle to draw EMPTY_BOX.
11987
11988 2001-12-19  Juergen Vigna  <jug@sad.it>
11989
11990         * undo_funcs.C (textHandleUndo): fixed setting of inset_owner of
11991         the paragraphs if the replaced paragraph is not the first one!
11992         Tried to delete not used paragraphs but does not work yet so for
11993         now it's inside #ifdef's and by default off!
11994
11995 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11996
11997         * MenuBackend.C: include "lyx_main.h" instead of declaring
11998         lastfiles (actually was declared as LastFiles* instead of a
11999         scoped_ptr).
12000
12001 2001-12-17  Juergen Vigna  <jug@sad.it>
12002
12003         * tabular.C (AppendColumn): applied John's fix
12004
12005 2001-12-15  John Levon  <moz@compsoc.man.ac.uk>
12006
12007         * BufferView.h:
12008         * BufferView.C:
12009         * BufferView_pimpl.h:
12010         * BufferView_pimpl.C: cleanup and fix of checkInsetHit().
12011
12012         * Makefile.am:
12013         * box.h: new start of class for above
12014
12015         * lyxfunc.C: ignore space-only minibuffer dispatches.
12016           Show the command name when it doesn't exist
12017
12018         * minibuffer.C: don't add empty lines to the history
12019
12020         * minibuffer.C: add a space on dropdown completion
12021
12022 2001-12-14  John Levon  <moz@compsoc.man.ac.uk>
12023
12024         * text.C: fix line above/below drawing in insets
12025
12026 2001-12-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12027
12028         * lyxlength.C (LyXLength): Initialize private variables.
12029
12030 2001-12-15  Dekel Tsur  <dekelts@tau.ac.il>
12031
12032         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Use buffer language
12033         when inserting error insets.
12034
12035 2001-12-13  Juergen Vigna  <jug@sad.it>
12036
12037         * undo_funcs.C (textRedo/Undo): fixed as the first paragraph was
12038         actually sometimes the before-paragraph.
12039         (setUndo): don't clear the redostack if we're not actually undoing!
12040
12041 2001-12-06  Juergen Vigna  <jug@sad.it>
12042
12043         * undo_funcs.C (textHandleUndo): well after John's hint I got here
12044         and fixed redoing of main paragraph, so we can use it now ;)
12045
12046         * text2.C (redoParagraphs): fixed a crash when having only 1 row!
12047
12048 2001-12-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12049
12050         * undo_funcs.C (textHandleUndo): undo undo leak fix below, as per
12051         Juergen's request
12052
12053 2001-12-13  André Pönitz <poenitz@gmx.net>
12054
12055         * undostack.[Ch]:
12056         * undo_func.C: minor cleanup
12057
12058 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12059
12060         * FontLoader.C (getFontinfo): only use symbol fonts with encoding
12061         -adobe-fontspecific. At least Mandrake and Redhat have a symbol
12062         font in urw-fonts package which is marked as -urw-fontspecific and
12063         does not work (incidentally, changing the encoding in the
12064         fonts.dir of this package to -adobe-fontspecific fixes the
12065         problem).
12066
12067         * undo_funcs.C (textHandleUndo): fix leak in undo, but now there
12068         is a crash when undoing first paragraph (Juergen, please take a
12069         look). THis does not mean the undo fix is wrong, just that it
12070         uncovers problems.
12071
12072         * text2.C (ownerParagraph): let the (int,Paragraph*) version call
12073         the (Paragraph*) version when needed instead of duplicating the
12074         code.
12075
12076         * text.C (workWidth): use Inset::parOwner to find out where the
12077         inset has been inserted. This is a huge performance gain for large
12078         documents with lots of insets. If Inset::parOwner is not set, fall
12079         back on the brute force method
12080
12081         * paragraph_pimpl.C (insertInset):
12082         * paragraph.C (Paragraph):
12083         (cutIntoMinibuffer): set parOwner of insets when
12084         inserting/removing them
12085
12086         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
12087
12088 2001-12-12  Martin Vermeer  <martin.vermeer@hut.fi>
12089
12090         * commandtags.h:
12091         * LyXAction.C:
12092         * lyx_main.C:
12093         * lyxfunc.C:
12094         * mathed/formulabase.C:
12095         * mathed/math_cursor.[Ch]:
12096         make sub/superscript into functions LFUN_SUB/SUPERSCRIPT.
12097
12098
12099 2001-12-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12100
12101         * lyxlength.[Ch] (operator!=): new function
12102
12103 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12104
12105         * text.C (workWidth): use Inset::parOwner to find out where the
12106         inset has been inserted. This is a huge performance gain for large
12107         documents with lots of insets. If Inset::parOwner is not set, fall
12108         back on the brute force method
12109
12110         * paragraph_pimpl.C (insertInset):
12111         * paragraph.C (Paragraph):
12112         (cutIntoMinibuffer): set parOwner of insets when
12113         inserting/removing them
12114
12115         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
12116
12117 2001-12-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12118
12119         * tabular-old.C (getTokenValue):
12120         * tabular.C (getTokenValue):
12121         (write_attribute): new versions for LyXLength
12122         (everywhere): adjust the use of widths
12123
12124         * tabular.h: change the type of widths from string to LyXLength
12125
12126 2001-12-11  Ben Stanley <bds02@uow.edu.au>
12127
12128         * paragraph.C: fixed missing line number count when exporting
12129         Environments to LaTeX file
12130
12131         * buffer.C: added informational message for checking line numbers.
12132
12133 2001-12-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12134
12135         * text2.C (deleteEmptyParagraphMechanism): if there is only one
12136         paragraph, do the 'double space' part, but not the 'empty
12137         paragraph' one.
12138
12139         * text.C (workWidth): small optimization
12140         (getLengthMarkerHeight): use minimal size for negative lengths.
12141
12142 2001-12-11  Dekel Tsur  <dekelts@tau.ac.il>
12143
12144         * lyxfont.C (GUIFamilyNames): Fix GUIFamilyNames array
12145
12146         * FontLoader.C (getFontinfo): Use "*-eufrak-medium"
12147
12148 2001-12-11  André Pönitz <poenitz@gmx.net>
12149
12150         * FontLoader.C:
12151         * lyxfont.[Ch]: support for fraktur font used by \mathfrak
12152
12153 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
12154
12155         * text2.C: keep selection on a setFont()
12156
12157 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
12158
12159         * lyx_cb.C: another bv->text misuse, from insert label
12160
12161 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
12162
12163         * kbsequence.h:
12164         * kbsequence.C: re-instate nmodifier mask
12165
12166 2001-12-12  Angus Leeming  <a.leeming@ic.ac.uk>
12167
12168         * lyx_main.h: make lyxGUI private.
12169
12170 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
12171
12172         * lyxfind.C: place the cursor correctly on failed search
12173
12174 2001-12-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12175
12176         * text.C (getLengthMarkerHeight): for small heights, the arrows
12177         are not always on top/bottom of the text
12178         (drawLengthMarker): smaller arrows; take the left margin in
12179         account; draw also vfills.
12180         (paintFirstRow):
12181         (paintLastRow): remove special code for vfill and standard spaces,
12182         since everything is handled in drawLengthMarker now.
12183
12184 2001-12-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12185
12186         * buffer.C (insertErtContents): try to handle font and language
12187         interaction a bit better.g
12188
12189         * ColorHandler.C (updateColor): change the hash to cover the whole
12190         LColor enum, ws cleanup
12191         (getGCLinepars): ditto
12192         (getGCLinepars): only lookup in the linecache once.
12193
12194 2001-12-07  Dekel Tsur  <dekelts@tau.ac.il>
12195
12196         * iterators.C (operator++): Make the iterator more robust
12197
12198         * BufferView2.C (removeAutoInsets): Use paragraph iterators
12199         (John's patch)
12200         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Ditto
12201
12202 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12203
12204         * lyxtext.h:
12205         * text.C: better added space drawing
12206
12207 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12208
12209         * LyXView.C:
12210         * BufferView2.C: fix layout combo update on inset unlock
12211
12212 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12213
12214         * Makefile.am: don't compile unused files
12215
12216 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12217
12218         * lyxfunc.C:
12219         * commandtags.h:
12220         * LyXAction.C: remove old LFUN_LAYOUTNO
12221
12222 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12223
12224         * paragraph_pimpl.h:
12225         * paragraph_pimpl.C: isTextAt() doesn't need font param
12226
12227 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12228
12229         * lyxlex.h:
12230         * lyxlex.C: little cleanup
12231
12232 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12233
12234         * BufferView_pimpl.C: fix insertAscii for insets
12235
12236 2001-12-05  Juergen Vigna  <jug@sad.it>
12237
12238         * CutAndPaste.C (pasteSelection): remove not allowed insets/chars and
12239         set the right font on the "multi" paragraph paste!
12240
12241 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12242
12243         * trans_decl.h:
12244         * trans_mgr.[Ch]:
12245         * trans.[Ch]:
12246         * lyxgluelength.C:
12247         * lyxlength.C: remove out-commented code.
12248
12249         * BufferView_pimpl:
12250         * CutAndPaste.C:
12251         * DepTable.C:
12252         * buffer.C:
12253         * chset.C:
12254         * lastfiles.C:
12255         * lyxlex.C:
12256         * lyxlex_pimpl.C:
12257         * lyxserver.C:
12258         * screen.C:
12259         * tabular-old.C:
12260         * tabular.C:
12261         * text.C:
12262         * trans_mgr.C:
12263         * vc-backend.C: change "while(" to "while ("
12264
12265         * lyxlength.[Ch]: add zero function to check if length is zero or
12266         not
12267         * lyxgluelength.C: use it
12268
12269 2001-12-05  Allan Rae  <rae@lyx.org>
12270
12271         * lyxlength.C: Attempted a fix for the abs(int) header selection.
12272         Works for 2.95.3, from what I understand of Garst's reports this should
12273         work for other g++ versions.  We're screwed if the abs(int) definition
12274         changed between bugfix releases of gcc.
12275
12276 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
12277
12278         * text.C: fix chapter label offset !
12279
12280 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
12281
12282         * lyxtext.h:
12283         * text.C: fix hfill at end of line, clean up
12284
12285 2001-12-04  Juergen Vigna  <jug@sad.it>
12286
12287         * undo_funcs.C (textHandleUndo): added a call to inset->update() so
12288         that we force an update of the inset and it's owners if neccessary.
12289
12290 2001-12-03  Juergen Vigna  <jug@sad.it>
12291
12292         * text.C (rowLast): simplified code
12293
12294 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
12295
12296         * lyxfunc.C: fix show options on timeout
12297
12298 2001-12-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12299
12300         * screen.C (topCursorVisible): scroll half a page when the cursor
12301         reached top of bottom of screen
12302
12303 2001-12-02  John Levon  <moz@compsoc.man.ac.uk>
12304
12305         * minibuffer.C: deactivate on loss of focus
12306
12307 2001-12-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12308
12309         * vspace.[Ch] (operator!=): add operator.
12310
12311 2001-12-01  John Levon  <moz@compsoc.man.ac.uk>
12312
12313         * BufferView_pimpl.C: refuse to open an inset when
12314         there's a selection.
12315
12316 2001-11-30  John Levon  <moz@compsoc.man.ac.uk>
12317
12318         * BufferView_pimpl.C: allow to click on RHS of full row insets
12319
12320 2001-11-30  Juergen Vigna  <jug@sad.it>
12321
12322         * tabular.C (LyXTabular): add a same_id to set the same id's in the
12323         insets for undo reasons.
12324
12325 2001-11-28  André Pönitz <poenitz@gmx.net>
12326
12327         * vspace.[Ch]: cosmetical changes
12328
12329 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
12330
12331         * LyXAction.h:
12332         * LyXAction.C:
12333         * lyxfunc.h:
12334         * lyxfunc.C:
12335         * kbmap.h:
12336         * kbmap.C:
12337         * lyxrc.C:
12338         * kbsequence.h:
12339         * kbsequence.C: part re-write of old kb code
12340
12341         * Painter.C:
12342         * WorkArea.C: remove Lgb_bug_find_hack
12343
12344 2001-11-30  José Matos <jamatos@fep.up.pt>
12345
12346         * buffer.C (makeDocBookFile): add a comment to point a hack.
12347         (simpleDocBookOnePar): changed a PAR::META_INSET to isInset().
12348         Fixed a double write of labels.
12349
12350 2001-11-29 Ben Stanley <bds02@uow.edu.au>
12351
12352         * LaTeX.C:
12353         * LaTeX.h Fixed bug in LaTeX class where it would not
12354         re-run latex if no depfiles were changed, but the .dvi was removed.
12355
12356 2001-11-28  André Pönitz <poenitz@gmx.net>
12357
12358         * all the files from the change on 2001/11/26:
12359         use lyx::layout_type instead of LyXTextClass::size_type
12360         use lyx::textclass_type instead of LyXTextClassList::size_type
12361
12362 2001-11-29  Juergen Vigna  <jug@sad.it>
12363
12364         * text.C: added support for paragraph::isFreeSpacing()
12365
12366         * buffer.C: same as above
12367
12368         * paragraph.h: inserted isFreeSpacing() function to enable
12369         FreeSpacing inside InsetERT.
12370
12371         * CutAndPaste.C (cutSelection/copySelection): set the inset_owner
12372         of the paragraph's in the cut/copy buffer to 0!
12373
12374         * text2.C (removeRow): remove the assert as it can!
12375
12376         * lyxtext.h: added helper function firstRow returning firstrow and
12377         made firstrow private again.
12378
12379         * BufferView2.C (lockInset): don't relock if we're already locked!
12380
12381         * text2.C (deleteEmptyParagraphMechanism): don't do anything if it's
12382         the only paragraph.
12383         (removeRow): added Assert::(firstrow)
12384
12385         * debug.C: forgot to add INSETTEXT here.
12386
12387 2001-11-28  Juergen Vigna  <jug@sad.it>
12388
12389         * sp_spell.C (initialize): changed error text to more general
12390         spellchecker command use (not only ispell!)
12391
12392         * bufferlist.C (qwriteAll): fixed "Cancel" button handling!
12393
12394         * debug.h: inserted one for debugging INSETTEXT (and InsetTabular)!
12395
12396 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
12397
12398         * vspace.C: initialise lyxgluelength on failure
12399
12400 2001-11-28  Allan Rae  <rae@lyx.org>
12401
12402         * text.C (paintLastRow): g++-2.95.3 and others don't like variable
12403         declaration & definition that looks like a function declaration.
12404
12405 2001-11-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12406
12407         * BufferView2.C (copy):
12408         (copyEnvironment): do not clear the selection when doing a copy.
12409
12410         * text.C (paintFirstRow): compilation fix
12411
12412 2001-11-27  Ben Stanley  <bds02@uow.edu.au>
12413
12414         * tabular.C (Latex): correct line count when writing latex.
12415
12416 2001-11-27  John Levon  <moz@compsoc.man.ac.uk>
12417
12418         * paragraph_pimpl.h:
12419         * paragraph_pimpl.C: tidy, and fix font-change in "LaTeX"
12420           bug a bit
12421
12422 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
12423
12424         * text.C:
12425         * LColor.h:
12426         * LColor.C: change vfillline->added_space
12427
12428         * text.C: add markers and text for added space
12429
12430         * vspace.C: fix comment
12431
12432 2001-11-28  André Pönitz <poenitz@gmx.net>
12433
12434         * paragraph.C: whitespace changes
12435         * all the other files from the change on 2001/11/26:
12436         change *::pos_type into lyx::pos_type
12437
12438 2001-11-27  Dekel Tsur  <dekelts@tau.ac.il>
12439
12440         * buffer.C (parseSingleLyXformat2Token): Set the language to the
12441         language of the document when inserting error insets.
12442
12443 2001-11-26  André Pönitz <poenitz@gmx.net>
12444
12445         * BufferView_pimpl.[Ch]:
12446         *       CutAndPaste.C:
12447         * buffer.[Ch]:
12448         * lyxcursor.[Ch]:
12449         * lyxfind.C:
12450         * lyxfunc.C:
12451         * lyxrow.[Ch]:
12452         * paragraph.[Ch]:
12453         * paragraph_pimpl.[Ch]:
12454         * sp_spell.C:
12455         * text.C:
12456         * text2.C: reduce header dependencies, introduce type for positions
12457
12458 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
12459
12460         * <various>: change to use Alert.h
12461
12462 2001-11-25  Dekel Tsur  <dekelts@tau.ac.il>
12463
12464         * buffer.C (parseSingleLyXformat2Token): Insert an error inset
12465         when encountering an unknown token.
12466         (readLyXformat2): Show an error message if there were unknown tokens.
12467
12468 2001-11-22  John Levon  <moz@compsoc.man.ac.uk>
12469
12470         * BufferView2.C:
12471         * BufferView_pimpl.C:
12472         * buffer.C:
12473         * paragraph.h:
12474         * text.C:
12475         * text2.C: use par->isInset()
12476
12477 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
12478
12479         * paragraph_pimpl.h:
12480         * paragraph_pimpl.C: cleanup
12481
12482 2001-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12483
12484         * text2.C (removeRow):
12485         * text.C (setHeightOfRow): remove useless (and costly) call to
12486         getRow.
12487
12488 2001-11-20  Allan Rae  <rae@lyx.org>
12489
12490         * paragraph.C (insertFromMinibuffer): Fix for inset related crashes.
12491         Now need Inset*::checkInsertChar() to return true for appropriate
12492         cases so that the characters in the minibuffer will actually be
12493         inserted.
12494
12495 2001-11-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12496
12497         * text.C: change the order of the includes.
12498         (workWidth): initialize it at once.
12499         (workWidth): make maxw unsigned
12500         (setHeightOfRow): remove unused variable (inset)
12501         (selectSelectedWord): remove unused variable (inset)
12502         (paintRowText): fix drawing of hfill characters, and clean up a bit.
12503
12504 2001-11-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12505
12506         * lyxserver.C (emergencyCleanup): do not try to close pipes if
12507         server is not running.
12508         (openConnection):
12509         (closeConnection): add debug info when server is disabled.
12510
12511         * ColorHandler.C (getGCForeground): send debug message to GUI
12512         channel.
12513
12514         * lyxrc.C: do not include lyxserver.h and tex-strings.h.
12515
12516         * kbmap.C (bind): modify because return conventions of
12517         kb_sequence::parse have changed.
12518
12519         * kbsequence.C (parse): only ignore spaces and not any stupid
12520         control character. This avoids tests like s[i] <= ' ', which are
12521         guaranteed to fail with 8bit characters and signed chars.
12522         Change return code to string::npos when there have been no error
12523         (0 was a bad idea when error is at first character)
12524
12525 2001-11-14  José Matos  <jamatos@fep.up.pt>
12526
12527         * buffer.h:
12528         * buffer.C (simpleDocBookOnePar): removed unused argument.
12529
12530 2001-11-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12531
12532         * text.C (selectNextWordToSpellcheck): do not test explicitely for
12533         insets which are part of a word. Paragraph::isLetter takes care of
12534         that now. Use Paragraph::isInset to identify insets.
12535         (selectSelectedWord): do not test for hyphenation break.
12536
12537         * BufferView_pimpl.C (smartQuote): use Inset::isSpace, so
12538         that protected spaces are considered as spaces.
12539
12540         * paragraph.C (isLetter): cleanup the code for ispell extras; use
12541         Inset::isLetter.
12542
12543 2001-11-12  John Levon  <moz@compsoc.man.ac.uk>
12544
12545         * lyxserver.h:
12546         * lyxserver.C: fix it. and small cleanup.
12547
12548 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
12549
12550         * BufferView_pimpl.C: use inline helpers
12551
12552         * LaTeXFeatures.h:
12553         * LaTeXFeatures.C: fix typos
12554
12555         * Spacing.h:
12556         * Spacing.C: move spacing_string into class
12557
12558         * ToolbarDefaults.C: move stuff into namespace anon
12559
12560         * layout.h: update enum
12561
12562         * lyxfunc.C: use better debug
12563
12564         * minibuffer.h: fix typo
12565
12566         * debug.h:
12567         * debug.C:
12568         * WorkArea.C: add and use Debug::WORKAREA
12569
12570         * lyxtext.h:
12571         * text.C:
12572         * text2.C: code re-organisation, inline helpers
12573
12574 2001-11-09  Michael A. Koziarski <michael@koziarski.org>
12575
12576         * Layout.C: replaced a few cases of std::vector.size() == 0 with
12577         std::vector.empty().
12578
12579 2001-11-09  Allan Rae  <rae@lyx.org>
12580
12581         * paragraph.C (TeXOnePar): remove old, now-irrelevent comments about
12582         '\n's after tables.  Tabular and ERT inset work now makes this no
12583         longer necessary.
12584
12585 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
12586
12587         * minibuffer.h:
12588         * minibuffer.C: fix crash, improve drop-down completion
12589
12590 2001-11-06  John Levon  <moz@compsoc.man.ac.uk>
12591
12592         * lyxserver.h:
12593         * lyxserver.C: invalidate fd's when doing endPipe()
12594
12595 2001-11-08  José Matos  <jamatos@fep.up.pt>
12596
12597         * buffer.C (sgmlLineBreak): renamed from linux_doc_line_break.
12598         (simpleDocBookOnePar): removed code made obsolete by the new inset code.
12599
12600         * paragraph.h:
12601         * paragraph.C (sgmlConvertChar): renamed from linuxDocConvertChar.
12602
12603 2001-11-07  José Matos  <jamatos@fep.up.pt>
12604
12605         * buffer.h:
12606         * buffer.C (sgmlError): linuxDocError renamed, and made public, added
12607         const qualifier.
12608
12609         * buffer.C (sgmlOpenTag):
12610         * buffer.C (sgmlCloseTag): removed debug info.
12611
12612         * buffer.h (sgmlOpenTag):
12613         * buffer.h (sgmlCloseTag): made public.
12614
12615 2001-11-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12616
12617         * buffer.C (saveParamsAsDefaults):
12618         * lyx_cb.C (MenuLayoutSave): remove
12619
12620         * LyXAction.C (init):
12621         * commandtags.h:
12622         * lyxfunc.C (dispatch): remove LFUN_LAYOUT_SAVE_DEFAULT.
12623
12624 2001-11-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12625
12626         * buffer.C (setPaperStuff): removed from here...
12627
12628         * bufferparams.C (setPaperStuff): ... and moved there.
12629
12630 2001-11-03  John Levon  <moz@compsoc.man.ac.uk>
12631
12632         * minibuffer.h:
12633         * minibuffer.C:
12634         * XFormsView.C: add support for drop-down completion
12635
12636 2001-11-03  Dekel Tsur  <dekelts@tau.ac.il>
12637
12638         * paragraph.C (TeXOnePar): Correct placement of \selectlanguage
12639         commands.
12640
12641 2001-10-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12642
12643         * gettext.C (locale_init): set LC_NUMERIC to "C" even if nls is
12644         disabled.
12645
12646 2001-10-30  John Levon  <moz@compsoc.man.ac.uk>
12647
12648         * lyx_main.C: change ref to known bugs
12649
12650 2001-10-30  Kayvan A. Sylvan  <kayvan@sylvan.com>
12651
12652         * LaTeXFeatures.C (getPackages): Use lyxskak.sty now instead
12653         to work around older babel problems.
12654
12655 2001-10-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
12656
12657         * LaTeXFeatures.[hC]: Now uses skak.sty for chess material.
12658
12659 2001-10-24  Juergen Vigna  <jug@sad.it>
12660
12661         * tabular-old.C (ReadOld): below variable changes reflected.
12662
12663         * tabular.[Ch]: added ltType struct for longtable header/footer
12664         defines and changed all instances where they are used. Added
12665         future support for double top/bottom rows.
12666
12667 2001-10-24  José Matos  <jamatos@fep.up.pt>
12668
12669         * buffer.h (docbookHandleCaption):
12670         * buffer.C (docbookHandleCaption): removed unused function.
12671         (makeDocBookFile): moved docbook supported version to v4.1.
12672
12673 2001-10-24  José Matos  <jamatos@fep.up.pt>
12674
12675         * tabular.h:
12676         * tabular.C (docbookRow): new function to export docbook code of a row.
12677         (DocBook): now honors the longtable flags.
12678
12679 2001-10-23  José Matos  <jamatos@fep.up.pt>
12680
12681         * LaTeXFeatures.h:
12682         * LaTeXFeatures.C (getLyXSGMLEntities): new function to get the name
12683         of the lyx defined sgml entities used in a docbook/linuxdoc document.
12684
12685         * buffer.C (makeLinuxDocFile):
12686         (makeDocBookFile): reworked the preamble, more clean, and with
12687         support for lyx defined entities. Changed the document declaration
12688         to be more XML friendly.
12689
12690         * tabular.C (DocBook): removed / terminator to be more SGML friendly,
12691         if we need to output XML that should be done with a filter.
12692
12693 2001-10-22  Juergen Vigna  <jug@sad.it>
12694
12695         * sp_pspell.h (class PSpell): add alive function needed in the
12696         controller to see if the spellchecker could be started.
12697
12698 2001-10-22  Juergen Vigna  <jug@sad.it>
12699
12700         * buffer.C (insertStringAsLines): modify the font for inserting
12701         chars in certain conditions by calling checkInsertChar(font).
12702
12703 2001-10-19  Juergen Vigna  <jug@sad.it>
12704
12705         * text.C (workWidth): use getRow instead of wrong algorithm.
12706         (setHeightOfRow): fix for MARGIN_RIGHT_ADDRESS_BOX
12707
12708 2001-10-19  John Levon  <moz@compsoc.man.ac.uk>
12709
12710         * lyxserver.h:
12711         * lyxserver.C:
12712         * lyx_main.h:
12713         * lyx_main.C: add emergencyCleanup (remove pipes on crash)
12714
12715 2001-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12716
12717         * text.C (workWidth): do not search for the exact row when
12718         margintype is not MARGIN_RIGHT_ADDRESS_BOX. This is an
12719         optimization for big documents.
12720
12721 2001-10-18  Juergen Vigna  <jug@sad.it>
12722
12723         * text.C (workWidth): new function with added Inset * parameter.
12724
12725 2001-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12726
12727         * text2.C (setCursorFromCoordinates): use Paragraph::size_type
12728
12729         * lyxtext.h: change type of refresh_pos to Paragraph::size_type;
12730         change return type of getColumnNearX.
12731
12732
12733         * text.C (changeRegionCase): use uppercase/lowercase instead of
12734         toupper/tolower.
12735         (leftMargin):
12736         (rightMargin): simplify code by factoring out the uses of
12737         textclasslist.
12738         (labelFill):
12739         (numberOfHfills):
12740         (setHeightOfRow):
12741         (appendParagraph): use Paragraph::size_type
12742
12743 2001-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12744
12745         * vspace.C (asLatexString): add a missing break
12746
12747 2001-10-15  Herbert Voss  <voss@perce.de>
12748
12749         * vspace.C (asLatexString): fix bug in output of string for l% and p%.
12750
12751 2001-10-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12752
12753         * lyxfunc.C (getStatus): disable thesaurus when aiksaurus library
12754         is not available.
12755
12756 2001-10-10  André Pönitz <poenitz@gmx.net>
12757
12758         * lyxfunc.C: removed greek_kb_flag.
12759
12760 2001-10-10  Herbert Voss  <voss@perce.de>
12761
12762         * lyx_main.C: delete global string help_lyxdir.
12763
12764 2001-10-09  Herbert Voss  <voss@perce.de>
12765
12766         * commandtags.h (kb_action): added LFUN_HELP_TEXINFO.
12767
12768         * LyXAction.C (init): added LFUN_HELP_TEXINFO to items array.
12769
12770         * lyx_main.C: added global string help_lyxdir.
12771
12772         * lyxfunc.C (dispatch): added LFUN_HELP_TEXINFO to switch.
12773
12774 2001-10-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
12775
12776         * lyxrc.C (set_font_norm_type): support iso8859-4
12777
12778 2001-07-02  Claus Hentschel  <claus.hentschel@mbau.fh-hannover.de>
12779
12780         * LaTeX.C (deplog): add another regex for MikTeX
12781
12782 2001-10-05  Adrien Rebollo  <adrien.rebollo@gmx.fr>
12783
12784         * lyxrc.C (set_font_norm_type): support iso8859-3
12785
12786 2001-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12787
12788         * BufferView_pimpl.C (tripleClick): fix stupid logic error.
12789
12790         * LaTeXFeatures.C: remove special case of french and index
12791
12792         * buffer.C (makeLaTeXFile): _really_ load babel late (i.e. just
12793         before \begin{document}). This solves several incompatibilities.
12794
12795 2001-10-03  Garst Reese  <reese@isn.net>
12796
12797         * lyx_cb.C: change CheckTex error msg.
12798
12799 2001-10-03  José Matos  <jamatos@fep.up.pt>
12800
12801         * buffer.C (simpleDocBookOnePar): add support for pass_thru.
12802
12803 2001-10-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12804
12805         * .cvsignore: update
12806
12807         * lyx_main.C (commandLineVersionInfo): use new style version info.
12808
12809         * buffer.C (writeFile):
12810         (makeLaTeXFile):
12811         (makeLinuxDocFile):
12812         (makeDocBookFile): use lyx_docversion instead of LYX_DOCVERSION.
12813
12814         * WorkArea.C (WorkArea): use lyx_version instead of LYX_VERSION.
12815
12816         * version.h: update to use stuff in version.C
12817
12818         * version.C.in: new file. Contains version information determined
12819         at compile time. This is a merging of version.h and
12820         version_info.h.in.
12821
12822 2001-10-03  Juergen Vigna  <jug@sad.it>
12823
12824         * BufferView_pimpl.C (update): don't change "dirty" status in
12825         updateInset call.
12826
12827 2001-10-03  Angus Leeming  <a.leeming@ic.ac.uk>
12828
12829         * WorkArea.C (c-tor): re-position version string slightly.
12830
12831 2001-10-02  Angus Leeming  <a.leeming@ic.ac.uk>
12832
12833         * BufferView_pimpl.C (buffer): remove call to WorkArea::show() and
12834         revert to previous code.
12835
12836         WorkArea.[Ch]: (show, destroySplash): methods removed.
12837
12838         WorkArea.C: rework code so that it's an amalgam of the codes before and
12839         after the splash screen was moved to WorkArea.
12840
12841 2001-10-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12842
12843         * lyxrc.C (read):
12844         * vspace.C (inPixels):
12845         (lyx_advance):
12846         * kbmap.C (bind):
12847         * buffer.C (insertStringAsLines):
12848         (asciiParagraph): fix types to be large enough
12849
12850         * lyxlex_pimpl.h: change member status from short to int
12851
12852         * layout.h: fix type of endlabeltype
12853
12854         * kbmap.C (bind):
12855         * kbsequence.C (parse): change return type to string::size_type
12856
12857         * LaTeX.C (updateBibtexDependencies): comment out unneeded
12858         variable
12859
12860         * Bullet.C (bulletSize):
12861         (bulletEntry): do not use short ints as parameters
12862
12863         * BufferView2.C (insertLyXFile): change a char to an int.
12864
12865         * WorkArea.C (WorkArea): remove unneeded floats in computation
12866
12867 2001-10-01  Dekel Tsur  <dekelts@tau.ac.il>
12868
12869         * buffer.C (asciiParagraph): Treat '\\' as other chars.
12870
12871         * paragraph.C (asString): Do not ignore newline/hfill chars when
12872         copying to the clipboard.
12873
12874 2001-09-29  Dekel Tsur  <dekelts@tau.ac.il>
12875
12876         * paragraph_pimpl.C (simpleTeXSpecialChars): Call to textrow.start
12877         after a multi-line inset.
12878
12879 2001-09-28  Dekel Tsur  <dekelts@tau.ac.il>
12880
12881         * paragraph.C (validate): Set NeedLyXFootnoteCode
12882
12883 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
12884
12885         * lyxfont.C (LyXSizeNames): changed increase-error to increase
12886         and decrease-error to decrease.
12887
12888 2001-09-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12889
12890         * text2.C (deleteEmptyParagraphMechanism): reformat a bit to make
12891         it more readable (should be equivalent)
12892
12893 2001-09-27  Adrien Rebollo  <adrien.rebollo@gmx.fr>
12894
12895         * paragraph_pimpl.C (simpleTeXSpecialChars): handle latin9 too.
12896
12897 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12898
12899         * text2.C (fixCursorAfterDelete): new method. Fixes the parameters
12900         of a cursor (row, etc.) after a character has been deleted
12901         (deleteEmptyParagraphMechanism): call the method above on _all_
12902         cursors held by the LyXText when a double space has been
12903         detected/deleted.
12904
12905 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
12906
12907         * BufferView_pimpl.C (buffer): call WorkArea::show to pop-up the
12908         pixmap.
12909         (resizeCurrentBuff): remove code to destroy the old splash dialog.
12910
12911         * WorkArea.[Ch]: add the "LyX" pixmap and version string to the
12912         background. Use greyOut() and the new show() methods to toggle between
12913         the foreground and background. Add code to remove the splash after
12914         its initial showing.
12915
12916         * lyx_gui.C: Remove dependency on frontends/Dialogs.h.
12917         (create_forms): no longer call Dialogs::showSplash.
12918
12919 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12920
12921         * .cvsignore: add version_info.h
12922
12923 2001-09-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12924
12925         * version_info.h.in: new file
12926
12927         * Makefile.am: add version_info.h.in
12928
12929         * lyx_main.C (commandLineVersionInfo): use version_info defined in
12930         version_info.h instead of VERSION_INFO
12931
12932 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
12933
12934         * text.C (selectNextWordToSpellcheck): reverted change to if-block.
12935         The ERT inset now returns string().
12936
12937 2001-09-21  Angus Leeming  <a.leeming@ic.ac.uk>
12938
12939         * lyxtext.h, text.C (selectNextWord): renamed as
12940         selectNextWordToSpellcheck.
12941
12942         * text.C (selectNextWordToSpellcheck): Modified to not select
12943         words inside an ERT inset.
12944
12945 2001-09-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12946
12947         * lyx_cb.C (MenuLayoutSave): change a bit the question
12948
12949         * sp_base.h: include <sys/types.h>
12950
12951 2001-09-18  Angus Leeming  <a.leeming@ic.ac.uk>
12952
12953         * LColor.[Ch]: added graphicsbg to color enum and to ColorEntry.
12954
12955 2001-09-20  Michael Schmitt  <Michael.Schmitt@teststep.org>
12956
12957         * several files: fix typos in user-visible strings
12958
12959 2001-09-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12960
12961         * text2.C (pasteSelection): do not set the selection, since it
12962         will be cleared later. Actually, the intent was to fix the way the
12963         selection was set, but I figured rmoving the code was just as good.
12964
12965 2001-09-19  Dekel Tsur  <dekelts@tau.ac.il>
12966
12967         * FontLoader.C (available): Check if font is available without
12968         loading the font.
12969
12970 2001-09-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
12971
12972         * lyxrc.[Ch]: added auto_reset_options variable and associated code.
12973
12974 2001-09-13  Angus Leeming  <a.leeming@ic.ac.uk>
12975
12976         * lyxrc.[Ch]: added display_graphics variable and associated code.
12977
12978 2001-09-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12979
12980         * bufferparams.C (hasClassDefaults): new method. Returns true if
12981         the buffer parameters correspond to known class defaults
12982
12983 2001-09-17  Angus Leeming  <a.leeming@ic.ac.uk>
12984
12985         * XFormsView.C (show): set minimum size to the main window.
12986
12987 2001-09-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12988
12989         * text2.C (copySelection):
12990         (cutSelection):
12991         * lyxfind.C (LyXReplace):
12992         * BufferView_pimpl.C (Dispatch): pass the correct flag to
12993         LyXText::selectionAsString.
12994
12995         * paragraph.C (asString): add "label" argument to the second form
12996
12997         * text2.C (selectionAsString): add "label" argument and pass it to
12998         Paragraph::asString.
12999
13000 2001-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13001
13002         * lyx_main.C (commandLineHelp): remove version information
13003
13004 2001-09-08  Rob Lahaye  <lahaye@users.sourceforge.net>
13005
13006         * lyx_main.C: add -version commandline option
13007
13008 2001-09-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13009
13010         * paragraph.h: make the optional constructor arg required instead.
13011         some modifications to other files because of this.
13012
13013         * minibuffer.C (C_MiniBuffer_peek_event): make it static
13014
13015         * lyxserver.C (C_LyXComm_callback): make it static
13016
13017         * lyx_main.C (error_handler): make it static
13018
13019         * lyx_gui.C (LyX_XErrHandler): make it static
13020
13021         * XFormsView.C (C_XFormsView_atCloseMainFormCB): make it static
13022
13023         * WorkArea.C: make the extern "C" methods static.
13024
13025         * Makefile.am (lyx_LDADD): simplify
13026
13027 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
13028
13029         * commandtags.h: removed redundant LFUNs, LFUN_HELP_COPYRIGHT,
13030         LFUN_HELP_CREDITS, LFUN_HELP_VERSION.
13031
13032         * LyXAction.C (init):
13033         * lyxfunc.C (dispatch): associated code removal.
13034
13035 2001-09-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13036
13037         * lyxfont.h (isSymbolFont): shut off warning
13038
13039         * text.C (setHeightOfRow):
13040         (getVisibleRow): fix crash with empty paragraphs which have a
13041         bottom line
13042
13043 2001-09-07  Rob Lahaye  <lahaye@users.sourceforge.net>
13044
13045         * lyxrc.[Ch]: added dialogs_iconify_with_main variable and associated
13046         code.
13047
13048 2001-09-04  José Matos  <jamatos@fep.up.pt>
13049         * buffer.C
13050         * buffer.h
13051         * tabular.C (docbook): rename docBook method to docbook.
13052
13053 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
13054
13055         * Makefile.am: add dependencies to main.o.
13056
13057 2001-09-03  Dekel Tsur  <dekelts@tau.ac.il>
13058
13059         * FontLoader.C (available): Return false if !lyxrc.use_gui
13060
13061 2001-09-03  Michael Schmitt <schmitt@itm.mu-luebeck.de>
13062
13063         * FontInfo.C (query):
13064         * converter.C (view):
13065         * importer.C (Import):
13066         * exporter.C (Export): Can not -> cannot.
13067
13068 2001-09-02  John Levon  <moz@compsoc.man.ac.uk>
13069
13070         * BufferView_pimpl.C: allow to create index inset even if
13071           string is empty
13072
13073 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
13074
13075         * buffer.C (getLists): replace boost::tie code with an explicit pair
13076         as boost::tie can break some compilers.
13077
13078         * iterators.h: Added a std:: declaration to the return type of
13079         ParIterator::size.
13080
13081 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
13082
13083         * lyxrc.C: add help for view_dvi_paper_option, default to safe
13084           case.
13085
13086 2001-09-02  Dekel Tsur  <dekelts@tau.ac.il>
13087
13088         * iterators.[Ch]: New files. Provide paragraph iterators.
13089
13090         * buffer.C (changeLanguage): Use paragraph iterators.
13091         (isMultiLingual): ditto
13092
13093         * BufferView2.C (ChangeInsets): Use paragraph iterators.
13094
13095 2001-09-01  Dekel Tsur  <dekelts@tau.ac.il>
13096
13097         * FontLoader.C: Support for cmr font.
13098
13099 2001-08-31  Dekel Tsur  <dekelts@tau.ac.il>
13100
13101         * FontLoader.C (getFontinfo): Handle latex symbol fonts.
13102         (available): New method.
13103
13104         * FontInfo.C (getFontname): Use scalable fonts even when
13105         lyxrc.use_scalable_fonts is false, if no non-scalable fonts was
13106         found.
13107
13108 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
13109
13110         * converter.C (Formats::view): reverted! Incorrect fix.
13111
13112 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
13113
13114         * converter.C (Formats::view): only output the -paper option
13115         if the dvi viewer is xdvi, thereby fixing bug #233429.
13116
13117 2001-08-23  Herbert Voss  <voss@perce>
13118
13119         * BufferView_pimpl.C: small fix for LFUN_INSERT_BIBTEX
13120
13121 2001-08-20  Dekel Tsur  <dekelts@tau.ac.il>
13122
13123         * Spacing.h (Spacing): Set space to Default on in the default
13124         constructor.
13125
13126 2001-08-19  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13127
13128         * vc-backend.h (RCS::versionString): add RCS to version
13129         (CVS::versionString): add CVS to version
13130
13131         * vc-backend.C (scanMaster): do not add CVS to version.
13132         (scanMaster): do not add RCS to version
13133
13134         * lyxvc.C (versionString): new method
13135
13136         * lyxfunc.C (initMiniBuffer): use LyXVC::versionString
13137
13138 2001-08-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13139
13140         * Spacing.C (set): initialize fval
13141
13142 2001-08-15  Dekel Tsur  <dekelts@tau.ac.il>
13143
13144         * lyxlex_pimpl.C (next): Treat \ as normal char if not followed by
13145         " or \.
13146
13147 2001-08-16  Juergen Vigna  <jug@sad.it>
13148
13149         * lyxfunc.C (dispatch): implemented the new FINISHED states.
13150
13151 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
13152
13153         * BufferView_pimpl.C:
13154         * figureForm.C:
13155         * lyxtext.h:
13156         * text2.C: setParagraph takes linespacing now
13157
13158 2001-08-15  John Levon  <moz@compsoc.man.ac.uk>
13159
13160         * LyxAction.C: add internal LFUN_CITATION_INSERT
13161
13162         * LyXView.C: actually apply fix
13163
13164         * bufferlist.C: fix open non-existent file
13165
13166         * lyxfind.C: fix indentation
13167
13168         * lyxfunc.C: remove unneeded assert, fix typo
13169
13170 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
13171
13172         * MenuBackend.C: use "Floatname List"
13173
13174 2001-08-14  Dekel Tsur  <dekelts@tau.ac.il>
13175
13176         * buffer.C (parseSingleLyXformat2Token): Do not generate errors
13177         when converting LaTeX layout to insetERT.
13178         Generate a non-collapsed float when reading old float
13179
13180 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
13181
13182         * BufferView2.C (showLockedInsetCursor): Use normal cursor shape in
13183         ERT insets.
13184
13185 2001-08-13  Juergen Vigna  <jug@sad.it>
13186
13187         * text.C (fill): return 0 instead of 20 as this seems to be the more
13188         correct value.
13189
13190 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
13191
13192         * encoding.C (TransformChar): Use lyxrc.font_norm_type instead of
13193         lyxrc.font_norm.
13194
13195 2001-08-13  Juergen Vigna  <jug@sad.it>
13196
13197         * lyxfind.C (LyXReplace): fixed not single-replacing characters with
13198         casesensitive off.
13199         (SearchBackward): comment out the unlocking of the inset_owner this
13200         should not be needed!
13201
13202 2001-08-11  Dekel Tsur  <dekelts@tau.ac.il>
13203
13204         * Many files: Remove inherit_language, and add latex_language
13205
13206         * BufferView2.C (showLockedInsetCursor): Fix cursor shape in
13207         collapsible insets.
13208
13209 2001-08-10  Juergen Vigna  <jug@sad.it>
13210
13211         * text.C (prepareToPrint): fixed hfill-width in draw!
13212
13213         * BufferView2.C (selectLastWord): save the selection cursor as this
13214         now is cleared in the function LyXText::clearSelection!
13215
13216 2001-08-08  Juergen Vigna  <jug@sad.it>
13217
13218         * BufferView_pimpl.C (Dispatch): use a non-cut-buffer cut on DELTE
13219         BACKSPACE type functions.
13220
13221         * CutAndPaste.C (cutSelection): added a bool so that the stuff actually
13222         is only cutted from the document but not put in the cut-buffer, where
13223         still the old stuff should be.
13224
13225         * text2.C (cutSelection): added bool to pass to CutAndPaste::cutSelection.
13226
13227         * BufferView2.C (cut): added a bool to pass to LyXText::cutSelection.
13228
13229         * tabular.C (SetWidthOfCell): fixed special case where the width
13230         was not updated!
13231         (LeftLine): handle '|' in align_special.
13232         (RightLine): ditto
13233         (LeftAlreadyDrawed): ditto
13234         (SetWidthOfCell): ditto
13235
13236 2001-08-07  Juergen Vigna  <jug@sad.it>
13237
13238         * lyx_main.C (readUIFile): fixed some forgotten lowercase!
13239
13240 2001-08-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13241
13242         * lyxlex_pimpl.[Ch]: converto to lowercase funcs
13243         * lyxlex.[hC]: ditto
13244
13245 2001-08-06  Juergen Vigna  <jug@sad.it>
13246
13247         * text.C (getVisibleRow): fix up row clearing a bit.
13248
13249 2001-08-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13250
13251         * minibuffer.C: make sure the X server sees the changes in the input.
13252
13253 2001-08-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13254
13255         * paragraph.C (getFont): split into...
13256         (getLabelFont): this
13257         (getLayoutFont): and this
13258         * paragraph_pimpl.C (realizeFont): calling this
13259
13260         * text2.C (getFont): split into...
13261         (getLayoutFont): this
13262         (getLabelFont): and this
13263         (realizeFont): all three calling this
13264
13265         * lyxfont.h: remove all NO_LATEX macros and code... adjust all
13266         files where used.
13267
13268 2001-08-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13269
13270         * lyxfunc.C (getStatus): add checkbox support for LFUN_APPENDIX
13271
13272 2001-08-02  Kayvan A. Sylvan  <kayvan@sylvan.com>
13273
13274         * BufferView_pimpl.C (smartQuote): Added code to exempt pass_thru
13275         layouts from the Quote inset insertion.
13276
13277 2001-08-03  Juergen Vigna  <jug@sad.it>
13278
13279         * BufferView_pimpl.C (update): do the fitCursor only at the end!
13280
13281         * screen.C (drawFromTo): don't call fitcursor here and do the loop
13282         only if status not is already CHANGED_IN_DRAW (second level).
13283
13284         * text.C (draw): don't set the need_break_row when inside an
13285         InsetText LyXText.
13286
13287 2001-08-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13288
13289         * buffer.C (parseSingleLyXformat2Token): handle more latex
13290         conversion cases.
13291
13292         * bufferview_funcs.[hC]: change function names to
13293         begin with small char, adjust other files.
13294
13295 2001-08-02  André Pönitz <poenitz@gmx.net>
13296
13297         * lyxfunc.C:
13298         BufferView_pimpl.C: remove broken special code for math-greek
13299
13300 2001-08-02  Juergen Vigna  <jug@sad.it>
13301
13302         * BufferView_pimpl.C (update): redone this function so that we
13303         update the text again if there was a CHANGE_IN_DRAW.
13304
13305         * screen.C (cursorToggle): removed LyXText parameter and recoded.
13306         (drawFromTo): added a new internal bool which is used by draw() and
13307         redraw() function.
13308         (general): some cursor drawing problems fixed.
13309
13310 2001-08-01  Juergen Vigna  <jug@sad.it>
13311
13312         * lyxfind.C (LyXFind): fixed
13313         (SearchForward): ditto
13314         (SearchBackward): ditto
13315
13316         * BufferView_pimpl.C (workAreaMotionNotify): hopefully fixed the
13317         spurius drawing of the cursor in the main area.
13318
13319         * text2.C (status): small fix which could lead to a segfault!
13320         (clearSelection): remove unneeded BufferView param.
13321
13322 2001-08-01  André Pönitz <poenitz@gmx.net>
13323
13324         * lyxfunc.C: small change due to changed mathed interface
13325
13326 2001-08-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13327
13328         * bufferlist.C (loadLyXFile): add .lyx to file name if necessary
13329
13330 2001-08-01  John Levon  <moz@compsoc.man.ac.uk>
13331
13332         * lyxfunc.c: fail gracefully if file doesn't exist
13333
13334         * LyXSendto.C:
13335         * buffer.C:
13336         * lyxfunc.C:
13337         * BufferView_pimpl.C: IsDirWriteable() proto changed
13338
13339         * LyXView.C: fix updateWindowTitle() to store the last title
13340
13341 2001-07-31  Juergen Vigna  <jug@sad.it>
13342
13343         * text.C (setHeightOfRow): fixed setting of ascent/descent based on
13344         the font (wrong since using of Paragraph::highestFontInRange).
13345
13346         * paragraph.C (highestFontInRange): added a default_size parameter.
13347
13348         * text.C (getVisibleRow): minor clear row changes (still not perfect).
13349         (setHeightOfRow): reformat
13350
13351 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13352
13353         * converter.[hC] + affected files: move to (inital-char)lowercase
13354         function names.
13355
13356         * ParagraphParameters.C (ParagraphParameters): remove commented code
13357
13358         * PainterBase.[Ch]: remove commented code
13359
13360         * LaTeXFeatures.h: add "bool floats" for float.sty
13361
13362         * LaTeXFeatures.C (LaTeXFeatures): init floats
13363         (require): handle float
13364         (getPackages): do it with floats
13365
13366 2001-07-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13367
13368         * BufferView_pimpl.C (Dispatch): improve handling of
13369         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE
13370
13371         * commandtags.h: #include lyxfont.h here temporarily to avoid
13372         keybinding bug.
13373
13374         * bufferlist.h: include LString.h here.
13375
13376 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13377
13378         * text2.C (getStringToIndex): new method.
13379
13380 2001-07-29  Asger Alstrup Nielsen  <alstrup@alstrup>
13381
13382         * *: Reduced header file dependencies all over.
13383
13384 2001-07-30  Baruch Even  <baruch@lyx.org>
13385
13386         * buffer.C (readInset): Stop auto-converting InsetFig to InsetGraphics.
13387
13388 2001-07-29  Baruch Even  <baruch@lyx.org>
13389
13390         * buffer.C (readInset): Changed GRAPHICS to Graphics.
13391
13392 2001-07-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13393
13394         * ParameterStruct.h (endif): add a default constructor to make
13395         sure that all variables is initialized.
13396
13397         * ParagraphParameters.C (ParagraphParameters): adjust
13398
13399 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13400
13401         * BufferView_pimpl.C (Dispatch): use WHOLE_WORD selection for
13402         index; also, check that there is something to index, and that it
13403         does not span over several paragraphs.
13404         (doubleClick): use WHOLE_WORD_STRICT for double click.
13405
13406         * text.C (getWord): handle new WHOLE_WORD_STRICT word_location value.
13407
13408         * text2.C (toggleFree): do selection with WHOLE_WORD_STRICT
13409         scheme.
13410
13411 2001-07-26  Baruch Even  <baruch@lyx.org>
13412
13413         * buffer.C (readInset): Changed to call up InsetGraphics when reading
13414         an InsetFig figure, backwards compatible reading of old figure code.
13415
13416 2001-07-27  Juergen Vigna  <jug@sad.it>
13417
13418         * text2.C: font.realize function adaption.
13419
13420         * text.C (draw): add a warnings lyxerr text if needed.
13421
13422         * layout.C: font.realize function adaption.
13423
13424         * language.C: add inherit_language and implement it's handlings
13425
13426         * bufferview_funcs.C (StyleReset): remove language parameter from
13427         font creation (should be language_inherit now).
13428
13429         * bufferparams.C (writeFile): handle ignore_language.
13430
13431         * paragraph.C (getFontSettings): the language has to be resolved
13432         otherwise we have problems in LyXFont!
13433
13434         * lyxfont.C (lyxWriteChanges): added document_language parameter
13435         (update): removed unneeded language parameter
13436
13437         * paragraph.C (validate): fixed wrong output of color-package when
13438         using interface colors for certain fonts in certain environments,
13439         which should not seen as that on the final output.
13440
13441 2001-07-26  John Levon  <moz@compsoc.man.ac.uk>
13442
13443         * BufferView_pimpl.C:
13444         * Thesaurus.h:
13445         * Thesaurus.C:
13446         * Makefile.am:
13447         * commandtags.h:
13448         * LyXAction.C: add thesaurus support
13449
13450         * lyxfind.h:
13451         * lyxfind.C: add "once" parameter, for thesaurus, to not
13452           move to the next match
13453
13454 2001-07-26  Juergen Vigna  <jug@sad.it>
13455
13456         * lyxfont.C (realize): honor ignore_language too!
13457         (resolved): ditto.
13458
13459         * paragraph.C (TeXOnePar): handle ignore language right (hopefully).
13460
13461         * text.C (draw): one place more for ignore_language to not draw
13462         itself!
13463
13464 2001-07-25  Angus Leeming  <a.leeming@ic.ac.uk>
13465
13466         * LaTeXFeatures.C (getPackages): clean-up a little of the natbib code.
13467
13468 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13469
13470         * buffer.C (parseSingleLyXformat2Token): a more general fix for
13471         the minipage conversion problem.
13472
13473 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13474
13475         * buffer.C (parseSingleLyXformat2Token): check minipage if we
13476         insert an inset.
13477
13478 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13479
13480         * BufferView.h: don't forward declare WorkArea
13481
13482         * BufferView.C: don't include WorkArea.h
13483
13484 2001-07-25  André Pönitz <poenitz@gmx.net>
13485
13486         * commandtags.h:
13487         * LyXAction.C:
13488         * lyxfunc.C:  new LFUN 'math-space'
13489
13490         * BufferView.[Ch]: remove unneeded reference to 'WorkArea'
13491
13492 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13493
13494         * text2.C (toggleInset): call open/close
13495
13496 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13497
13498         * lyxfunc.C (dispatch): add debug for the disabled case
13499
13500         * font.C (buttonText): make similar to rectText
13501
13502         * buffer.C (readInset): comment out parsing of insetlist and
13503         insttheorem
13504
13505         * PainterBase.C (rectText): small correction
13506
13507         * BufferView_pimpl.C: comment out insettheorem and insetlist
13508         * LyXAction.C: ditto
13509         * commandtags.h: ditto
13510
13511 2001-07-24  Juergen Vigna  <jug@sad.it>
13512
13513         * text.C (draw): honor the ignore_language.
13514
13515         * lyxfont.C (LyXFont): set language to ignore_language in FONT_INIT1.
13516
13517 2001-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13518
13519         * lyxfunc.C (getStatus): BREAKLINE does _not_ insert a special
13520         char inset.
13521
13522 2001-07-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13523
13524         * lyxtext.h: remove unused (and unimplemented) methods
13525
13526 2001-07-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13527
13528         * text.C (getVisibleRow): honor background color
13529
13530         * PainterBase.h:
13531         * Painter.h: remove default color argument for fillRectangle
13532
13533         * text.C (backgroundColor): new method
13534
13535 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13536
13537         * text.C (getVisibleRow): adjust
13538
13539         * font.[Ch] (rectText): new method, metrics
13540         (buttonText): new method, metrics
13541
13542         * PainterBase.[hC]: make rectText and buttonText always draw and take
13543         fewer paramteres.
13544
13545 2001-07-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13546
13547         * ToolbarDefaults.C (read):
13548         * MenuBackend.C (read): allow escaping in all strings
13549
13550         * BufferView_pimpl.C (insertAndEditInset): new method.
13551         (Dispatch): use insertAndEditInset whenever appropriate.
13552
13553         * BufferView_pimpl.C (insertNote): removed
13554
13555         * BufferView_pimpl.C (smartQuote): new method, moved from
13556         BufferView; if an insetquote cannot be inserted, insert a '"'
13557         character instead.
13558
13559         * BufferView2.C: remove insertCorrectQuote();
13560
13561         * lyxfunc.C (getStatus): Add support for all remaingin
13562         inset-insert lfuns.
13563
13564         * trans_mgr.C (insertVerbatim): do not treat '"' specially.
13565
13566         * lyxrc.C (read): in RC_BIND, allow escaped sequences in the
13567         command (necessary to pass " as parameter of self-insert.
13568
13569         * text.C (selectWordWhenUnderCursor):
13570         (selectWord): add word_location parameter
13571         (selectWordWhenUnderCursor): same + remove special code for word
13572         boundary.
13573         (selectNextWord): use kind() to guess type of insetspecialchar,
13574         not latex().
13575
13576         * buffer.C (insertStringAsLines): new method, extracted from LyXText.
13577         (insertErtContents): create ert insets as collapsed.
13578         (readInset): better compatibility code for Info inset.
13579
13580 2001-07-20  Juergen Vigna  <jug@sad.it>
13581
13582         * lyxfunc.C (dispatch): use always LyXFind now!
13583
13584         * text2.C (init): add a reinit flag so that the LyXText can be
13585         reinited instead of deleted and reallocated (used in InsetText).
13586
13587         * BufferView_pimpl.C: use the new Inset::edit(BV, bool) where needed.
13588
13589         * text.C: ditto
13590
13591         * text2.C: ditto
13592
13593 2001-07-18  Juergen Vigna  <jug@sad.it>
13594
13595         * text.C (selectNextWord): handle insets inside inset by calling
13596         always the bv->text functions so that we can go up the_locking_inset!
13597
13598         * BufferView_pimpl.C (show/hideCursor): fixed cursor showing up
13599         in strange locations when inside an inset!
13600
13601         * lyxfind.[Ch]: give all functions a LyXText * parameter and implement
13602         handling to include insets.
13603
13604         * lyxfunc.C (dispatch): changes to calls SearchBackward/Forward.
13605
13606 2001-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13607
13608         * LyXAction.C (init):
13609         * commandtags.h:
13610         * BufferView_pimpl.C (Dispatch): change HYPHENATION_BREAK to
13611         LIGATURE_BREAK, since the name is so stupid.
13612
13613 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
13614
13615         * buffer.C (readInset): enable reading of new InsetNotes as well as old
13616         InsetInfos.
13617
13618         * FontLoader.C: remove FORMS_H_LOCATION cruft.
13619
13620         * sp_form.[Ch]: remove.
13621
13622         * src/LColor.[Ch]: remove noteframe. Change note to "yellow".
13623
13624         * src/BufferView_pimpl.C (insertNote): use InsetNote in place of
13625         InsetInfo.
13626
13627         * src/buffer.C (readInset): ditto.
13628
13629 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13630
13631         * BufferView_pimpl.C (specialChar): new method. Obsoletes
13632         menuSeparator(), endOfSentenceDot(), ldots() and
13633         hyphenationPoint(), which are therefore removed.
13634         (Dispatch): handle LFUN_HYPHENATION_BREAK.
13635
13636         * LyXAction.C (init):
13637         * commandtags.h: add LFUN_HYPHENATION_BREAK.
13638
13639         * paragraph.C (getWord): removed.
13640
13641         * BufferView_pimpl.C (Dispatch): use last word or selection for
13642         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE.
13643
13644         * lyx_main.C (queryUserLyXDir): do not ask before creating
13645         user_dir, except if it has been named explicitely.
13646
13647 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
13648
13649         * BufferView_pimpl.C (updateScrollbar): Fix crash when reading in
13650         a document of zero size.
13651
13652 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
13653
13654         * LaTeXFeatures.[Ch]: add variable "bool natbib" and set it
13655         approriately in the c-tor and in require().
13656         (getPackages): output the appropriate LaTeX for natbib support.
13657
13658         * buffer.C (parseSingleLyXformat2Token): set the new bufferparams
13659         variables "use_natbib" and "use_numerical_citations" when reading the
13660         LyX file.
13661         (readInset): read the various natbib cite commands.
13662         (validate): white-space change.
13663
13664         * bufferparams.[Ch]: new variables "bool use_natbib" and
13665         "bool use_numerical_citations".
13666         (writeFile): output them in the LyX file.
13667
13668 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13669
13670         * lyxfunc.C (getStatus): add support for all the inset insertion
13671         commands.
13672
13673         * text2.C (insertInset):
13674         * paragraph.C (insetAllowed):
13675         * BufferView_pimpl.C (insertInset): update to take in account the
13676         renaming of insertInsetAllowed
13677
13678         * lyxfunc.C (getStatus): add support for LFUN_INSET_TOGGLE.
13679
13680         * text2.C (getInset): new method. returns inset at cursor position.
13681
13682         * BufferView_pimpl.C (Dispatch): changes because of this.
13683
13684         * LyXAction.C (init): rename open-stuff to inset-toggle.
13685
13686         * commandtags.h: rename LFUN_OPENSTUFF to LFUN_INSET_TOGGLE.
13687
13688         * text2.C (toggleInset): renamed from openStuff; use
13689         Inset::open().
13690
13691 2001-07-13  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
13692
13693         * lyxrc.C (set_font_norm_type): recognise ISO_8859_15.
13694
13695         * lyxrc.h: added ISO_8859_15 to enum FontEncoding.
13696
13697 2001-07-18  Dekel Tsur  <dekelts@tau.ac.il>
13698
13699         * buffer.C (readLyXformat2): Add filename to the error dialog
13700
13701 2001-07-18  Juergen Vigna  <jug@sad.it>
13702
13703         * tabular.C (GetCellNumber): put an assert here instead of the check!
13704
13705 2001-07-17  Juergen Vigna  <jug@sad.it>
13706
13707         * BufferView_pimpl.C (toggleSelection): adapted too.
13708
13709         * text.C (selectNextWord): adapted for use with insets.
13710         (selectSelectedWord): ditto
13711
13712 2001-07-17  Juergen Vigna  <jug@sad.it>
13713
13714         * sp_spell.C (PSpell): fix initialitation order.
13715
13716 2001-07-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13717
13718         * paragraph.C: spacing
13719
13720 2001-07-17  Edwin Leuven  <leuven@fee.uva.nl>
13721
13722         * sp_spell.C: repair language selection for pspell
13723
13724 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13725
13726         * lyxfunc.h: change more methods to begin with lower char.
13727
13728 2001-07-16  Dekel Tsur  <dekelts@tau.ac.il>
13729
13730         * buffer.C (parseSingleLyXformat2Token): Generate error insets
13731         for unknown layouts.
13732
13733 2001-07-13  Dekel Tsur  <dekelts@tau.ac.il>
13734
13735         * buffer.C (readLyXformat2): Generate an error dialog if there are
13736         unknown layouts.
13737
13738 2001-07-16  Juergen Vigna  <jug@sad.it>
13739
13740         * sp_spell.C: always compile ISpell part.
13741
13742         * lyxrc.C: added use_pspell entry and it's handling.
13743
13744 2001-07-13  Juergen Vigna  <jug@sad.it>
13745
13746         * sp_spell.C: removed double includes.
13747
13748 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
13749
13750         Consistent use of Lsstream.h:
13751         * Lsstream.h: added using std::stringstream for consistencies sake.
13752
13753         * buffer.C: removed using std::stringstream
13754
13755         * lyxfont.C (stateText):
13756         * paragraph.C (asString):
13757         * text.C (selectNextWord, selectSelectedWord):
13758         * text2.C (setCounter):
13759         * vspace.C (asString, asLatexString):
13760         std::ostringstream -> ostringstream.
13761
13762 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
13763
13764         * LyXAction.C: add LFUN_HELP_ABOUTLYX
13765         * commandtags.h: add LFUN_HELP_ABOUTLYX
13766         * lyxfunc.C: add about lyx remove credits/copyright/version stuff
13767
13768 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
13769
13770         * BufferView_pimpl.C: sigchldchecker instead of sigchldhandeler in
13771         cursorToggle()
13772         * lyx_gui_misc.C: remove spellchecker
13773         * lyxfunc.C: showSpellchecker
13774         * sp_base.h: added
13775         * sp_ispell.h: added
13776         * sp_pspell.h: added
13777         * sp_spell.C: added
13778         * sp_form.[Ch]: removed
13779         * spellchecker.[Ch]: removed
13780
13781 2001-07-12  Kayvan A. Sylvan  <kayvan@sylvan.com>
13782
13783         * paragraph_pimpl.C (simpleTeXBlanks): Simply return if pass_thru
13784         is set.
13785         (simpleTeXSpecialChars): Simply print the input character without
13786         any special translation if pass_thru is set.
13787
13788         * layout.h: Added bool pass_thru to layout class for being able to
13789         implement pass through of a paragraph for Literate Programming.
13790
13791         * layout.C: add LT_PASS_THRU to LayoutTags enum.
13792         * layout.C (LyXLayout): set pass_thru to flase in constructor.
13793         * layout.C (Read): add "passthru" to list of layout tags and add
13794         code to set the pass_thru boolean when it is read.
13795
13796 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13797
13798         * trans_decl.h: remove allowed from KmodInfo
13799
13800         * trans.[Ch] (AddDeakkey): change prototype to not have allowd.
13801         remove allowed code
13802         (Load): adjust
13803
13804         * paragraph_pimpl.C (erase): use boost::prior
13805
13806         * Painter.C (text): use data() instead of c_str() when length is
13807         also provided.
13808         * WorkArea.C (putClipboard): ditto
13809         * font.h (width): ditto
13810
13811         * BufferView2.C: use it-> instead of (*it). for iterators
13812         * texrow.C: ditto
13813         * paragraph_pimpl.C: ditto
13814         * paragraph.C: ditto
13815         * minibuffer.C: ditto
13816         * language.C: ditto
13817         * kbmap.C: ditto
13818         * encoding.C: ditto
13819         * counters.C: ditto
13820         * converter.C: ditto
13821         * chset.C: ditto
13822         * Variables.C: ditto
13823         * TextCache.C: ditto
13824         * MenuBackend.C: ditto
13825         * LyXAction.C: ditto
13826         * LColor.C: ditto
13827         * FloatList.C: ditto
13828         * DepTable.C: ditto
13829         * ColorHandler.C (LyXColorHandler): ditto
13830
13831 2001-07-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13832
13833         * BufferView_pimpl.C (Dispatch): handle LFUN_OPENSTUFF.
13834
13835         * text2.C (openStuff): reintroduce this method (which had been
13836         nuked in NEW_INSETS frenzy).
13837
13838         * lyxfunc.C (Dispatch): when an action has not been handled, use
13839         its name in the error message, not its number.
13840
13841         * paragraph.C (inInset): change method name to begin with lowercase.
13842
13843         * undo_funcs.C:
13844         * text2.C: updates because of this.
13845
13846 2001-07-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13847
13848         * ToolbarDefaults.C (add): add spaces in error message
13849
13850 2001-07-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13851
13852         * buffer.C (readLyXformat2): initialize the ert comp. variables.
13853         (readLyXformat2): rename return_par to first_par, use lyxlex's
13854         pushToken and remove the manual push handling.
13855         (parseSingleLyXformat2Token): add another ert comp. variable:
13856         in_tabular, rename return_par to first_par. handle newlines better
13857
13858 2001-07-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13859
13860         * kbsequence.C (getiso): redirect debug info to Debug::KBMAP.
13861
13862 2001-07-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13863
13864         * text2.C (getParFromID): removed
13865
13866         * buffer.C (getParFromID): new method moved form lyxtext.
13867         * BufferView2.C (insertErrors): adjust
13868         (setCursorFromRow): adjust
13869         * BufferView_pimpl.C (restorePosition): adjust
13870         * lyxfunc.C (Dispatch): adjust
13871         * undo_funcs.C (textUndo): adjust
13872         (textRedo): adjust
13873         (textHandleUndo): adjust
13874         (textHandleUndo): adjust
13875
13876 2001-07-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13877
13878         * buffer.C: up' the LYX_FORMAT
13879
13880         * lyxfont.h: turn NO_LATEX on as default
13881
13882         * buffer.C (insertErtContents): new methods of tex style compability.
13883         (parseSingleLyXformat2Token): use it several places.
13884         * tabular.C (OldFormatRead): and here
13885
13886 2001-07-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13887
13888         * text2.C: remove some commented code.
13889         reindent file.
13890
13891         * trans_mgr.[Ch]: simplify normalkey to only take a char as arg.
13892         * trans.C: changes because of the above.
13893
13894 2001-07-07  Dekel Tsur  <dekelts@tau.ac.il>
13895
13896         * text2.C (setCounter): Fix counters bug with bibliography layout.
13897
13898 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13899
13900         * paragraph_pimpl.C (simpleTeXBlanks): don't go through owner_ for
13901         own member functions
13902         (simpleTeXSpecialChars): ditto
13903
13904 2001-07-06  Juergen Vigna  <jug@sad.it>
13905
13906         * a lot of files: changed the access to LyXText::status and the
13907         call of undo-functions.
13908
13909         * undo.[Ch]: added a inset_id to the undo informations.
13910
13911         * undo_funcs.[Ch]: added and moved here all undo functions.
13912
13913         * lyxtext.h: give the status enum a weight, made status_ a private
13914         variable and made accessor functions for it, removed the whole bunch
13915         of undo-functions as they are now in their own file, make some
13916         functions publically available. Added function ownerParagraph with
13917         int parameter.
13918
13919         * paragraph.[Ch]: added "bool same_ids" to the constructor,
13920         made InInset() a const function, added getParFromID() function.
13921
13922         * buffer.[Ch]: added const version for inset_iterator functions,
13923         added getInsetFromID() function.
13924
13925         * BufferView2.C, BufferView_pimpl.C, text.C, text2.C, lyxfunc.C:
13926         changed undo functions for new version.
13927
13928 2001-07-05  Juergen Vigna  <jug@sad.it>
13929
13930         * paragraph_pimpl.C (Pimpl): set id_ also here (this is because some
13931         unknow mechanism does not call the proper constructor but only this
13932         one also if I request the other!?
13933
13934 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13935
13936         * BufferView_pimpl.C (resizeCurrentBuffer): init the new LyXText
13937
13938         * text2.C (LyXText): use initialization lists.
13939
13940         * lyxtext.h (Selection): initialize set_ and mark_
13941         (init): remove method
13942
13943 2001-07-05  Dekel Tsur  <dekelts@tau.ac.il>
13944
13945         * LaTeX.C (scanLogFile): Parse rerun messages from latex packages.
13946
13947 2001-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13948
13949         * screen.[Ch]: change method names to begin with lowercase
13950
13951         * BufferView_pimpl.C (updateScrollbar): simplify further and
13952         hopefully make it a bit faster.
13953
13954 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13955
13956         * ColorHandler.C (LyXColorHandler): use GUIRunTime instead of
13957         calling directly xforms functions.
13958
13959         * Painter.C (Painter):
13960         * lyx_cb.C (MenuWrite):
13961         * FontInfo.C (query): use GUIRunTime::x11Display() instead of
13962         fl_display.
13963
13964         * lyx_gui.C: remove bogus guiruntime extern declaration.
13965
13966 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13967
13968         * text2.C (redoHeightOfParagraph): comment out stuff we don't need
13969         in NEW_INSETS
13970         (redoDrawingOfParagraph): ditto
13971         (redoParagraphs): ditto
13972         (cutSelection): don't create a object for CutAndPaste use the
13973         static method directly
13974         (pasteSelection): ditto
13975
13976         * bufferview_funcs.[Ch]: move ProhibitInput and AllowInput to
13977         LyXview (+ rename)
13978
13979 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13980
13981         * modifications to some other files because of this.
13982
13983         * Makefile.am (lyx_SOURCES): add XFormsView
13984
13985         * XFormsView.[Ch]: new files
13986
13987         * LyXView.[Ch]: make LyXView a base class for the gui handling for
13988         the main window. Move the gui dependent stuff to XFormsView
13989
13990 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13991
13992         * tabular.C (GetCellInset): update cur_cell also in the row/col
13993         version of this function.
13994
13995         * lyxfunc.C: no need to include figure_form.h here.
13996
13997         * FontLoader.h:
13998         * lyxfunc.h:
13999         * lyxscreen.h:
14000         * text2.C:
14001         * lyxvc.C: no need to include forms.h here.
14002
14003 2001-06-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14004
14005         * lyxrc.C (read): change debugging channel for RC_BIND to lyxrc.
14006
14007         * lyxfunc.C (Dispatch):
14008         * Spacing.C (set):
14009         * BufferView_pimpl.C (Dispatch): use .c_str() on istringstream
14010         constructor argument.
14011
14012 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14013
14014         * paragraph.C (Paragraph): dont't clear, and just set layout.
14015         (makeSameLayout): use params's copy contructor.
14016
14017         * ParagraphParameters.[Ch] (makeSame): delete method
14018
14019 2001-06-29  John Levon  <moz@compsoc.man.ac.uk>
14020
14021         * Variables.[Ch]: fix indentation, rename set to isSet
14022
14023 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14024
14025         * lyxfunc.C (Dispatch): fix typo
14026
14027 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14028
14029         * paragraph_pimpl.C: add std:: qualifier to lower_bound and
14030         upper_bound.
14031
14032         * bufferlist.C: include assert.h for emergencyWrite().
14033
14034 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
14035
14036         * lyx_main.C: if we can't even find a readable LYX_DIR directory,
14037           give up at last (bug #425202) !
14038
14039 2001-06-27  John Levon  <moz@compsoc.man.ac.uk>
14040
14041         * lyx_gui_misc.C:
14042         * sp_form.h:
14043         * sp_form.C:
14044         * spellchecker.h:
14045         * spellchecker.C: strip spellchecker options and bring up
14046           preferences tab instead
14047
14048 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14049
14050         * BufferView_pimpl.C (Dispatch): add .c_str() to the argument of
14051         the istringstream constructor
14052
14053 2001-06-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14054
14055         * paragraph.C (getLayout): fix return value
14056
14057         * paragraph.h: do not declare getLayout as inline.
14058
14059         * lyxtext.h: remove LyXText:: qualifier to changeRegionCase
14060
14061 2001-06-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14062
14063         * lyxcursor.h (operator<): new func
14064         (operator>): new func
14065         (operator>=): new func
14066         (operator<=): new func
14067
14068         * text.C (changeCase): use selection.start and selection.end
14069         (changeRegionCase): require from to be <= to. Require par to be a
14070         valid paragraph.
14071
14072         * LaTeXFeatures.C (getFloatDefinitions): std:: qualify ostream
14073
14074 2001-06-27  Juergen Vigna  <jug@sad.it>
14075
14076         * text.C (cursorLeftOneWord): changed to return the cursor and added
14077         overlay with BufferView * parameter which calls this one.
14078         (getWord): added
14079         (selectWord): use new getWord function.
14080         (changeCase): renamed from changeWordCase as and extended to work
14081         also on selections.
14082
14083         * lyxtext.h: added enum word_location
14084
14085         * BufferView_pimpl.C (Dispatch): change function changeWordCase to
14086         changeCase as this operates now also on selections.
14087
14088 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
14089
14090         * lyxfunc.C (getStatus): support LFUN_MATH_MUTATE
14091
14092         * many files: send debug output to Debug::INFO instead of
14093         Debug::ANY.
14094
14095         * converter.C (View):
14096         (Convert):
14097         (Move): send debug output to Debug::FILES instead of console.
14098
14099 2001-06-26  The LyX Project  <lyx@rose.home.sad.it>
14100
14101         * lyxfunc.C (getStatus): use func_status
14102
14103         * func_status.h: new header, describing the results of
14104         LyXFunc::getStatus;
14105
14106         * lyxfunc.C (getStatus): add support for LFUN_MATH_VALIGN and
14107         LFUN_MATH_HALIGN.
14108
14109 2001-06-25  The LyX Project  <jug@sad.it>
14110
14111         * buffer.C (sgmlOpenTag):
14112         (sgmlCloseTag):
14113         (SimpleDocBookOnePar):  disable the depth spaces, for the moment.
14114
14115 2001-06-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14116
14117         * text2.C: remove some dead code
14118
14119         * tabular.C (GetCellInset): store the last cell checked (gotten)
14120
14121         * tabular.h: add the helper for the speedup
14122
14123         * lyxtext.h: remove some dead code
14124
14125 2001-06-26  The LyX Project  <Asger>
14126
14127         * paragraph.C: Change export to LaTeX of alignment to
14128         \begin{center} and family for better roundtrip work with reLyX.
14129
14130         * Tune the math drawing a bit.
14131
14132 2001-06-25  The LyX Project  <Asger>
14133
14134         * LColor.C (LColor): New color for math background. New color
14135         for buttons.
14136
14137 2001-06-25  The LyX Project  <jug@sad.it>
14138
14139         * lyxfunc.C (MenuNew): remove extra check for .lyx file
14140
14141         * lyxfunc.C (Open):
14142         * bufferlist.C (newFile): do not restrict to files ending with
14143         .lyx
14144
14145         * BufferView_pimpl.C (MenuInsertLyXFile):
14146
14147 2001-06-24  The LyX Project  <jug@sad.it>
14148
14149         * lyxlex_pimpl.C (compare_tags): use compare_ascii_no_case instead
14150         of compare_no_case
14151
14152 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14153
14154         * lyxtext.h: rename most methods to begin with a small char.
14155         Lots of changes because of this.
14156
14157         * paragraph.C (Paragraph): do not call fitToSize
14158         (erase): call Pimpl::erase
14159         (insertChar): call Pimpl::insertChar
14160         (insertInset): call Pipl::insertInset
14161         (breakParagraph): do not call fitToSize
14162         (breakParagraphConservative): do not call fitToSize
14163         (fitToSize): remove method
14164
14165         * buffer.C (parseSingleLyXformat2Token): do not call fitToSize
14166
14167 2001-06-24  The LyX Project  <Asger>
14168
14169         * Fix Qt compilation^2
14170
14171 2001-06-24  The LyX Project  <jug@sad.it>
14172
14173         * paragraph.[Ch] (outerHook): new method. mostly equivalent to
14174         depthHook(getDepth()-1).
14175
14176         * paragraph.h:
14177         * ParagraphParameters.h:
14178         * ParameterStruct.h: change type of depth to unsigned int ==
14179         depth_type. Many adaptations to other files before of that.
14180
14181 2001-06-24  The LyX Project  <Asger>
14182
14183         * Fix Qt compilation.
14184
14185 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14186
14187         * paragraph.h: renamed several methods to begin with small letter.
14188         several changes to many parts of the code because of this.
14189
14190 2001-06-23  The LyX Project  <jug@sad.it>
14191
14192         * text2.C (InsertStringAsLines): renamed from InsertStringA;
14193         rewritten to discard all double spaces when KeepEmpty is off
14194         (InsertStringAsParagraphs): renamed from InsertStringB; rewritten
14195         to only handle newlines but not fiddle with spaces and friends.
14196
14197         * lyxfunc.C (MenuNew): when doing 'new from template', use
14198         template_path as default directory
14199
14200 2001-06-23  The LyX Project  <Asger>
14201
14202         * Clean-up of header file includes all over
14203         * paragraph.h: Move some of the stuff into paragraph_pimpl.h
14204
14205 2001-06-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14206
14207         * paragraph.h: renamed from lyxparagraph.h
14208
14209 2001-06-23  Asger  <lyx@violet.home.sad.it>
14210
14211         * Buffer.h: Removed Buffer::resize
14212         * BufferList.h: Removed BufferList::resize
14213         * LyXView.h: Added LyXView::resize. This way, we will only reflow
14214         the document lazily when we change the width, or the font settings.
14215
14216 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
14217
14218         * lyxfunc.C: silently ignore empty dispatches from the minibuffer
14219
14220 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
14221
14222         * buffer.h: remove out of date comment
14223
14224 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
14225
14226         * lyxscreen.h:
14227         * screen.C: fix "theoretical" GC leak
14228
14229 2001-06-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14230
14231         * LaTeX.C (scanAuxFile):
14232         (deplog): remove trailing \r when reading stream (useful under
14233         win32)
14234
14235 2001-06-15  Angus Leeming  <a.leeming@ic.ac.uk>
14236
14237         * BufferView_pimpl.C (fitCursor): emit a signal updateParagraph.
14238         (resizeCurrentBuffer): have functions BufferView::theLockingInset()
14239         and BufferView::theLockingInset(Inset*), so should use them and not
14240         access bv_->text->the_locking_inset directly.
14241
14242         * lyxfunc.C (Dispatch): cosmetic name change of three signals.
14243
14244 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
14245
14246         * Makefile.am:
14247         * tex-defs.h: remove old unused file
14248
14249 2001-06-15  John Levon  <moz@compsoc.man.ac.uk>
14250
14251         * BufferView_pimpl.C: fix typo, remove minibuffer message
14252           when buffer has loaded
14253
14254 2001-06-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14255
14256         * lyxfunc.C (Dispatch): use stringstream
14257         (MenuNew): use stringstream
14258         (Open): use stringstream
14259
14260         * importer.C (Import): use stringstream
14261
14262         * bufferview_funcs.C (CurrentState): use stringstream
14263
14264         * LaTeX.C (run): use stringstream
14265
14266         * BufferView_pimpl.C (savePosition): use stringstream
14267         (restorePosition): use stringstream
14268         (MenuInsertLyXFile): use stringstream
14269
14270 2001-06-14  Angus Leeming  <a.leeming@ic.ac.uk>
14271
14272         * BufferView.C:
14273         * Bullet.C:
14274         * ColorHandler.C:
14275         * FontInfo.C:
14276         * FontLoader.C:
14277         * LColor.C:
14278         * LaTeXFeatures.C:
14279         * Painter.C:
14280         * gettext.C:
14281         * lyx_gui_misc.C:
14282         * lyxserver.C:
14283         * vspace.C: removed // -*- C++ -*- as first line.
14284
14285         * lyxfind.h:
14286         * version.h: added // -*- C++ -*- as first line.
14287
14288 2001-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14289
14290         * lyxfunc.C (getStatus): support LFUN_READ_ONLY_TOGGLE
14291
14292         * text2.C (SetSelectionOverString): do not test str[i]==0 for end
14293         of string
14294
14295 2001-06-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14296
14297         * buffer.C (parseSingleLyXformat2Token): fix compatability reading
14298         of floats.
14299
14300 2001-06-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14301
14302         * gettext.C: include LString.h even when --disable-nls is on.
14303
14304 2001-06-12  Angus Leeming  <a.leeming@ic.ac.uk>
14305
14306         * converter.h (Get): changed argument type from int to
14307         FormatList::size_type to avoid unnecessary conversion.
14308
14309         * bufferview_funcs.C (ToggleAndShow): check state of LyXText pointer
14310         before using it.
14311
14312 2001-06-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14313
14314         * gettext.h: include LString.h even when --disable-nls is on.
14315
14316 2001-06-07  Juergen Vigna  <jug@sad.it>
14317
14318         * text.C (BreakAgain): subst spaces with tabs.
14319
14320         * paragraph.C (deleteInsetsLyXText): set recursive on deleteLyXText.
14321         (resizeInsetsLyXText): set force on resizeLyXText.
14322
14323 2001-06-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14324
14325         * gettext.h (gettext_init):
14326         (locale_init): use a real definition instead of a macro
14327
14328 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
14329
14330         * Bufferview_pimpl.C:
14331         * LColor.h:
14332         * LColor.C: further lcolor tidies
14333
14334 2001-06-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14335
14336         * BufferView_pimpl.C (updateScrollbar): simplify.
14337
14338         * BufferView2.C: don't include insets/insetinfo.h, change
14339         prototype for insertInset and call the Pimpl version. let
14340         updateInset call Pimpl version.
14341
14342         * BufferView.h: move inset_slept to BufferView::Pimpl, move
14343         gotoInset to BufferView::Pimpl
14344
14345 2001-06-01  Juergen Vigna  <jug@sad.it>
14346
14347         * lyxfunc.C (Dispatch): LFUN_PREFIX don't call the update if we're
14348         inside a LockingInset (is the update needed at all?).
14349
14350 2001-05-31  Juergen Vigna  <jug@sad.it>
14351
14352         * BufferView_pimpl.C (Dispatch): we need a new instanze of cursor
14353         here not the old one otherwise how should we compare it afterwards
14354         if it's the same!
14355
14356 2001-06-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14357
14358         * lyxfont.C:
14359         * tabular.C:
14360         * tabular-old.C:
14361         * FontInfo.C: bring C functions into global namespace when
14362         necessary
14363
14364 2001-05-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14365
14366         * LString.h: make sure config.h has been loaded before LString.h.
14367
14368         * lyxlex_pimpl.C (EatLine): comment out annoying debug messages
14369         (one for each char read by EatLine!).
14370
14371         * lyx_main.C (init): constify lyxdir. Lowercase the name of some
14372         variables.
14373
14374 2001-06-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14375
14376         * paragraph.C (BreakParagraph): set the inset_owner in the new par
14377         to the same as the par we break from
14378
14379 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14380
14381         * commandtags.h: add LFUN_INSET_WIDE_FLOAT
14382
14383         * MenuBackend.C (expand): also create menu entries for wide
14384         versions of the floats.
14385
14386         * LyXAction.C (init): add entry for LFUN_INSET_WIDE_FLOAT
14387
14388         * BufferView_pimpl.C (Dispatch): implement LFUN_INSET_WIDE_FLOAT
14389
14390         * Makefile.am (lyx_DEPENDENCIES): adjust for change in
14391         frontends/Makefile.am
14392
14393         * text2.C: adjust
14394         * text.C: adjust
14395
14396
14397         * tabular.C (getTokenValue): add std::
14398
14399         * tabular-old.C (getTokenValue): add std::
14400         (getTokenValue): ditto
14401         (getTokenValue): ditto
14402
14403         * screen.C (ToggleSelection): adjust
14404
14405         * lyxtext.h: put selection cursors inside a Selection struct.
14406
14407         * lyxfunc.C (moveCursorUpdate): adjust
14408
14409         * lyxfont.C (latexWriteStartChanges): add std::
14410
14411         * lyxfind.C: adjust
14412
14413         * font.h: delete with(char const *, LyXFont const &)
14414
14415         * buffer.C (parseSingleLyXformat2Token): use contains instead of strstr
14416
14417         * FontInfo.C (getFontname): add std::
14418
14419         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
14420         (workAreaButtonPress): adjust
14421         (tripleClick): adjust
14422         (update): adjust
14423         (moveCursorUpdate): adjust
14424         (Dispatch): adjust
14425
14426         * BufferView2.C (gotoInset): adjust
14427
14428 2001-05-30  Juergen Vigna  <jug@sad.it>
14429
14430         * spellchecker.C (USE_ORIGINAL_MANAGER_FUNCS): as it seems only I use
14431         to check pspell I add this as default as I now have new pspell
14432         libraries and they seem to use this.
14433
14434 2001-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14435
14436         * text2.C (CutSelection): make the cursor valid before the call to
14437         ClearSelection.
14438
14439 2001-05-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14440
14441         * kbsequence.C (parse): de-uglify a bit the parsing code, which
14442         relied on 0 terminated strings and other horrors. Bug found due to
14443         the new assert in lyxstring!
14444
14445         * lyx_main.C (defaultKeyBindings): add bindings the cursor-related
14446         KP_ keys.
14447
14448 2001-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14449
14450         * lyx_main.C (defaultKeyBindings): move self-insert KP_ bindings
14451         to latinkeys.bind.
14452
14453         * lyxfunc.C (processKeySym): change method of getting to the
14454         self-insert char.
14455
14456         * BufferView(2).[Ch]: move hfill, protectedBlank, newline,
14457         menuSeparator, endOfSentenceDot, ldots, hypenationPoint and menuUndo
14458         * BufferView_pimpl.[Ch]: here as private methods.
14459
14460 2001-05-28  Juergen Vigna  <jug@sad.it>
14461
14462         * text.C (SetHeightOfRow): added the update() call again as it is
14463         needed to initialize inset dimensions!
14464
14465 2001-05-16  Juergen Vigna  <jug@sad.it>
14466
14467         * text2.C (SetCharFont): Add new function with BufferView * and
14468         bool toggleall parameters for setting insets internal fonts.
14469         (SetFont): Freeze the undo as we may change fonts in Insets and
14470         all this change should be inside only one Undo!
14471
14472         * bufferview_funcs.C (ToggleAndShow): fixed this functions for
14473         setting font's in insets as for them we have the SetFont function!
14474
14475 2001-05-15  Juergen Vigna  <jug@sad.it>
14476
14477         * text2.C (ClearSelection): to be sure we REALLY don't have any
14478         selection anymore!
14479
14480         * tabular.C (TeXCellPreamble): fixed the left border problem for
14481         multicolumn cells.
14482
14483 2001-05-27  Dekel Tsur  <dekelts@tau.ac.il>
14484
14485         * LaTeX.C (deplog): Make sure that the main .tex file is in the
14486         dependancy file
14487
14488 2001-05-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14489
14490         * lyx_main.C (defaultKeyBindings): set KP_enter to point at
14491         LFUN_BREAKPARAGRAPH.
14492
14493         * LyXAction.C (init): remove external name for LFUN_LAYOUTNO, set
14494         help test to "internal only", similar for LFUN_INSERT_URL
14495
14496         * BufferView_pimpl.C (Dispatch::LFUN_QUOTE): change it to to the insertcorrectQuote.
14497         (Dispatch::LFUN_SELFINSERT): fix to handle math greek,
14498         auto_region_delete and deadkeys.
14499
14500 2001-05-22  John Levon  <moz@compsoc.man.ac.uk>
14501
14502         * LColor.h:
14503         * LColor.C: remove some dead entries, tidy a little
14504
14505 2001-05-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14506
14507         * lyxfunc.C (processKeySym): comment the Escape handling, remove
14508         commented code.
14509         (Dispatch): implement LFUN_ESCAPE
14510
14511         * commandtags.h: add LFUN_ESCAPE
14512
14513         * LyXAction.C (init): add entry for LFUN_ESCAPE
14514
14515         * BufferView_pimpl.C (Dispatch): adjust for open_new_inset move.
14516         Remove commented code.
14517         (insertNote): moved here
14518         (open_new_inset): moved here
14519
14520         * BufferView[2].[Ch]: move insertNote and open_new_inset to
14521         BufferView_pimpl
14522
14523 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14524
14525         * kbmap.C (findbinding): clean it up and make it work correctly.
14526
14527         * lyx_main.C (init): do not pass argc and argv as parameters
14528
14529 2001-05-16  Ruurd Reitsma  <r.a.reitsma@wbmt.tudelft.nl>
14530
14531         * buffer.C: fix path for OS/2 & Win32
14532
14533         * lyx_gui.C:
14534         * lyx_main:
14535         * lyx_main.C: Added os:: class.
14536
14537         * os2_defines.h: update
14538
14539 2001-05-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14540
14541         * lyxfunc.[Ch] (processKeySym): return void. Handle unknown actions
14542         better by trying again with reduced state.
14543
14544 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14545
14546         * lyxrc.C (read): print error about invalid key sequence only when
14547         debugging (because not all latinX keysyms are known to some X
14548         servers)
14549
14550         * kbsequence.C (getiso): add a few std:: qualifiers
14551         (getiso): comment out extra return statement.
14552
14553 2001-05-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14554
14555         * BufferView_pimpl.C (Dispatch): comment out the old "default" key
14556         handling.
14557         (Dispatch): enhance the accent inset a bit. (not perfect)
14558
14559 2001-05-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14560
14561         * buffer.C (makeLaTeXFile): use stringstream on language_optons.
14562
14563 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14564
14565         * bufferlist.C (emergencyWrite): fix assert() call
14566
14567 2001-05-04  Kayvan A. Sylvan  <kayvan@sylvan.com>
14568
14569         * text.C (InsertChar): Added trivial patch to only send the "you
14570         can not do multiple spaces this way" message once during a
14571         session.
14572
14573 2001-05-08  Baruch Even  <baruch@lyx.org>
14574
14575         * Makefile.am: Changed order of libraries to get LyX to link properly
14576         with the gnome frontend.
14577
14578 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14579
14580         * LaTeXFeatures.h: add a std:: qualifier
14581
14582 2001-05-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14583
14584         * paragraph.C (String): use stringstream
14585
14586 2001-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14587
14588         * paragraph.C (writeFile): remove footflag arg
14589
14590         * buffer.C (makeLaTeXFile): use stringstream
14591         (latexParagraphs): remove footnot gurba
14592
14593         * LaTeXFeatures.C (getPackages): use stringstream
14594         (getMacros): likewise
14595         (getTClassPreamble): likewise
14596         (getFloatDefinitions): new method
14597
14598         * paragraph.C (writeFile): reindent
14599         (Erase): reindent
14600
14601         * WorkArea.h: revert the xpos + etc changes.
14602
14603         * CutAndPaste.C (SwitchLayoutsBetweenClasses): constify name and s
14604
14605         * lyxparagraph.[Ch]: add copy constructor, remove Clone
14606
14607         * CutAndPaste.C (copySelection): use LyXParagraph copy constructor
14608         (pasteSelection): likewise
14609         * text2.C (CreateUndo): likewise
14610
14611 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14612
14613         * minibuffer.C (peek_event): temporarily reduce the functionality
14614         of the minibuffer (to allow args on lfuns)
14615
14616         * commandtags.h: remove LFUN_LOA_INSERT, LFUN_LOF_INSERT,
14617         LFUN_LOT_INSERT. add LFUN_FLOAT_LIST
14618
14619         * buffer.C (readInset): add compability reading of old float
14620         lists, add reading of new style float list.
14621         (readInset): avoid reevaluation of inscmd.getCmdName()
14622         (getLists): reindent
14623
14624         * MenuBackend.C (MenuItem): implement parsing of
14625         md_floatlistinsert and md_floatinsert.
14626         (expand::LastFiles): move initalizaton of iterators out of loop,
14627         avoid reevaluation.
14628         (expand::Documents): introduce typdedef vector<string> Strings,
14629         and use it.
14630         (expand::ExportFormats): introduce typedef vector<Format const *>
14631         Formats, and use it.
14632         (expand): implement FloatListInsert and FloatInsert.
14633
14634         * LyXAction.C (init): remove entries for LFUN_LOA_INSERT,
14635         LFUN_LOA_VIEW, LFUN_LOF_INSERT, LFUN_LOFVIEW, LFUN_LOT_INSERT,
14636         LFUN_LOTVIEW. Add entry for LFUN_FLOAT_LIST
14637
14638         * BufferView_pimpl.C (Dispatch::LFUN_TOC_INSERT): remvoe the float
14639         handling.
14640         (Dispatch::LFUN_FLOAT_LIST): implement
14641
14642 2001-04-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
14643
14644         * LaTeX.C (run): Fix problem with --export code.
14645
14646 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
14647
14648         * BufferView.[Ch] (workarea): removed.
14649         (getClipboard) new method; wrapper for workarea()->getClipboard()
14650
14651         * ToolbarDefaults.C (read): removed final lex.next() command; it's a
14652         bug.
14653
14654         * WorkArea.h (width, height, xpos, ypos): These methods all
14655         returned the dimensions of the work_area sub-area of WorkArea,
14656         resulting in a position error if the WorkArea were resized. Now
14657         return the dimensions of the entire WorkArea.
14658
14659         * lyx_main.C (ReadUIFile): don't print out spurious warnings.
14660
14661 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14662
14663         * LaTeX.C (deplog): correct the syntax of regex reg1
14664
14665 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14666
14667         * undo.C: remove !NEW_INSETS cruft
14668
14669 2001-04-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14670
14671         * text2.C: remove !NEW_INSETS cruft
14672
14673         * text.C: remove !NEW_INSETS cruft
14674
14675         * tabular.C: remove !NEW_INSETS cruft
14676
14677         * spellchecker.C: remove !NEW_INSETS cruft
14678
14679         * lyxtext.h: remove !NEW_INSETS cruft
14680
14681         * lyxlex_pimpl.C: remove !NEW_INSETS cruft
14682
14683         * lyxfunc.C: remove !NEW_INSETS cruft
14684
14685         * lyxfind.C: remove !NEW_INSETS cruft
14686
14687         * lyx_cb.C: remove !NEW_INSETS cruft
14688
14689         * figureForm.C: remove  !NEW_INSETS cruft
14690
14691         * bufferview_funcs.[Ch]: remove !NEW_INSETS cruft
14692
14693         * buffer.[Ch]: remove !NEW_INSETS cruft
14694
14695         * ToolbarDefaults.C: remove !NEW_INSETS cruft
14696
14697         * CutAndPaste.C: remove !NEW_INSETS cruft
14698
14699         * BufferView_pimpl.C: remove !NEW_INSETS cruft
14700
14701         * BufferView2.C: remove !NEW_INSETS cruft
14702
14703         * BufferView.h: remove !NEW_INSETS cruft
14704
14705 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14706
14707         * Lsstream.h: include LString.h before the sstream headers to
14708         fix problem with gcc 2.95.3 and lyxstring
14709
14710 2001-05-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14711
14712         * lyx_main.C: add using directives when needed for C functions
14713         declared in std:: namespace.
14714
14715 2001-04-27  Juergen Vigna  <jug@sad.it>
14716
14717         * text.C (Fill): return 20 instead of 0 if paper_width < 0 (endless)
14718         (SetHeightOfRow): comment out the update call should not be needed!
14719
14720 2001-04-13  Juergen Vigna  <jug@sad.it>
14721
14722         * tabular.C (GetAdditionalHeight): changed parameter from cell to row.
14723         (LyXTabular): tried to minimize operator= operations (and realized
14724         hopfully Lars wish).
14725
14726 2001-04-27  Juergen Vigna  <jug@sad.it>
14727
14728         * spellchecker.C (sc_check_word): fixed Assert to lyx::Assert.
14729
14730 2001-04-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14731
14732         * lyxfunc.C (Dispatch): hack to make listof algorithm work
14733
14734         * buffer.C (readInset): hack to make listof algorithm work
14735
14736         * BufferView_pimpl.C: hack to make listof algorithm work
14737
14738 2001-04-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14739
14740         * LyXAction.C: removed all !NEW_INSETS cruft
14741         (init): moved lfun_item in method
14742
14743         * lyxparagraph.[Ch]: removed all !NEW_INSETS cruft
14744
14745 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
14746
14747         * BufferView2.C (theLockingInset): white space.
14748
14749 2001-04-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14750
14751         * minibuffer.C: include <iostream>
14752
14753         * BufferView_pimpl.C: implement LFUN_TRANSPOSE_CHARS
14754
14755         * LyXAction.C (init): add LFUN_TRANSPOSE_CHARS
14756
14757         * commandtags.h: add LFUN_TRANSPOSE_CHARS
14758
14759         * text.[Ch] (TransposeChars): new method
14760
14761 2001-04-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14762
14763         * call message directly through LyXView instead of through LyXFunc
14764         * BufferView2.C: adjust
14765         * BufferView_pimpl.C: adjust
14766         * FontLoader.C: adjust
14767         * buffer.C: adjust
14768         * bufferview_funcs.C: adjust
14769         * converter.C: adjust
14770         * figureForm.C: adjust
14771         * importer.C: adjust
14772         * lyx_cb.C: adjust
14773         * lyx_gui_misc.C: adjust
14774         * lyxfunc.C: adjust
14775         * lyxvc.C: adjust
14776         * text2.C: adjust
14777         + more files in subdirs
14778
14779         * lyxparagraph.h (size): move up int file
14780         (GetLayout): ditto
14781
14782         * adjust all uses of Assert to lyx::Assert.
14783
14784         * BufferView2.C (ChangeCitationsIfUnique): adjust for
14785         lyxfunctional in namespace lyx
14786         * layout.C (hasLayout): ditto
14787         (GetLayout): ditto
14788         (GetLayout): ditto
14789         (delete_layout): ditto
14790         (NumberOfClass): ditto
14791         * converter.C (GetFormat): ditto
14792         (GetNumber): ditto
14793         (Add): ditto
14794         (Delete): ditto
14795         (SetViewer): ditto
14796         * bufferlist.C (getFileNames): ditto
14797         (emergencyWriteAll): ditto
14798         (exists): ditto
14799         (getBuffer): ditto
14800         * MenuBackend.C (hasSubmenu): ditto
14801         (hasMenu): ditto
14802         (getMenu): ditto
14803         * BufferView_pimpl.C (getInsetByCode): ditto
14804
14805 2001-04-18  Juergen Vigna  <jug@sad.it>
14806
14807         * vspace.C (asLatexString): fixed the 100% problem.
14808
14809 2001-04-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14810
14811         * lyxfunc.C (Dispatch):
14812         * minibuffer.C:
14813         * minibuffer.h: add a few std:: qualifiers
14814
14815 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14816
14817         * minibuffer.[Ch]: reimplement so that commands is initiated and
14818         run from lyxfunc, simplified som handling, and made the completion
14819         and history code for complete. wip.
14820
14821         * lyxfunc.C (processKeySym): call message
14822         (miniDispatch): new temporary method
14823         (LFUN_EXEC_COMMAND): reimplement for new minibuffer
14824         (LFUN_MESSAGE): implement
14825         (LFUN_MESSAGE_PUSH): implement
14826         (LFUN_MESSAGE_POP): implement
14827         (initMiniBuffer): the initial/defualt minibuffer message.
14828
14829         * lyxfont.[Ch]: inline some more getters
14830
14831         * lyx_gui_misc.C (WriteAlert): use LFUN_MESSAGE
14832
14833         * lyx_gui_misc.[Ch] (WriteStatus): remove method
14834
14835         * lyx_cb.[Ch] (ShowMessage): remove delay arg, use LFUN_MESSAGE
14836         (AutoSave): use LFUN_MESSAGE
14837         (Reconfigure): ditto
14838
14839         * importer.C (Import): constify som local vars, use LFUN_MESSAGE
14840
14841         * figureForm.C: use LFUN_MESSAGE
14842
14843         * converter.C (runLaTeX): use LFUN_MESSAGE
14844
14845         * bufferview_funcs.C: use LFUN_MESSAGE
14846         (Melt): ditto
14847         (changeDepth): ditto
14848
14849         * bufferparams.h: use boost::
14850
14851         * bufferlist.h: inherit privately from noncopyable
14852
14853         * bufferlist.C (loadLyXFile): remove some commented code.
14854
14855         * buffer.C (runChktex): use LFUN_MESSAGE
14856
14857         * ShareContainer.h: inherit privately from noncopyable
14858
14859         * ParagraphParameters.[hC] (depth): inline it.
14860
14861         * LyXView.[Ch] (LyXView): connect the minibuffer signals to lyxfunc
14862         methods.
14863         (message): new method
14864         (messagePush): ditto
14865         (messagePop): ditto
14866         (show): init minibuffer
14867         (showState): direct call
14868
14869         * LaTeX.[Ch]: inherit privately from noncopyable
14870         (run): change second arg to LyXFunc*, use LFUN_MESSAGE
14871         instead of WriteStatus.
14872
14873         * FontLoader.C (doLoad): use LFUN_MESSAGE_PUSH and LFUN_MESSAGE_POP
14874
14875         * BufferView_pimpl.C (buffer): don't init minibuffer
14876         (workAreaButtonPress): use LFUN_MESSAGE
14877         (workAreaButtonRelease): ditto
14878         (savePosition): ditto
14879         (restorePosition): ditto
14880         (MenuInsertLyXFile): ditto
14881         (workAreaExpose): don't init minibuffer
14882         (update): remove commented code, simplify
14883
14884         * BufferView2.C (openStuff): use LFUN_MESSAGE
14885         (toggleFloat): ditto
14886         (menuUndo): ditto
14887         (menuRedo): ditto
14888         (copyEnvironment): ditto
14889         (pasteEnvironment): ditto
14890         (copy): ditto
14891         (cut): ditto
14892         (paste): ditto
14893         (gotoInset): ditto
14894         (updateInset): remove some commented code
14895
14896         * lastfiles.h: inherit privately from noncopyable
14897         * layout.h: ditto
14898         * lyx_gui.h: ditto
14899         * lyx_main.h: ditto
14900         * lyxlex.h: ditto
14901         * lyxlex_pimpl.h: ditto
14902
14903         * commandtags.h: comment out LFUN_FOOTMELT, LFUN_MARGINMELT,
14904         LFUN_FLOATSOPERATE, LFUN_MELT, add LFUN_MESSAGE,
14905         LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
14906
14907         * LyXAction.h: inherit privately from noncopyable, add methods
14908         func_begin, func_end, returning iterators to the func map.
14909
14910         * LyXAction.C (init): comment out LFUN_FLOATSOPERATE, LFUN_MELT,
14911         add entries for LFUN_MESSAGE, LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
14912         (func_begin): new method
14913         (func_end): new method
14914
14915         * CutAndPaste.C (cutSelection): split into two versons (NEW_INSETS
14916         and not)
14917         (copySelection): ditto
14918         (pasteSelection): ditto
14919
14920         * BufferView.C: whitespace change
14921         * BufferView.h: inherit privately from noncopyable
14922
14923 2001-04-16  Allan Rae  <rae@lyx.org>
14924
14925         * tabular-old.C (l_getline):
14926         * spellchecker.C (sc_check_word):
14927         * lyxfunc.C (Dispatch): #warning triggers an error on Sun CC 6.0 as
14928         an unrecognised preprocessor directive.  So ensure they're wrapped.
14929
14930 2001-04-14  Dekel Tsur  <dekelts@tau.ac.il>
14931
14932         * src/exporter.C (Export): Give an error message when path to file
14933         contains spaces.
14934
14935 2001-04-12  Dekel Tsur  <dekelts@tau.ac.il>
14936
14937         * LaTeX.C (deplog): Always check that foundfile exists.
14938
14939 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14940
14941         * lyx_main.h:
14942         * lyx_main.C (ReadLanguagesFile): fix weird typo in method name
14943
14944 2001-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14945
14946         * tabular.[Ch] (getLabelList): implement new method
14947
14948         * minibuffer.h: comment ouf setTiimer
14949
14950         * minibuffer.C (ExecutingCB): constify res
14951         (peek_event): constify s
14952         (Set): constify ntext
14953         (Init): constify nicename
14954
14955         * BufferView2.C (updateInset): comment out Minibuffer::setTimer
14956
14957         * BufferView_pimpl.C (update): comment out Minibuffer::setTimer
14958         (savePosition): use two params to Minibuffer::Set
14959         (restorePosition): ditto
14960
14961 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14962
14963         * lyx_main.C: include language.h
14964
14965         * Makefile.am (lyx_main.o): add language.h
14966
14967 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14968
14969         * exporter.C:
14970         * paragraph.C:
14971         * screen.C:
14972         * tabular.C:
14973         * CutAndPaste.C: include gettext.h
14974
14975         * lyxfont.h: remove old hack with ON and OFF.
14976
14977         * lyxparagraph.h:
14978         * lyxfont.h: do not include language.h...
14979
14980         * BufferView2.C:
14981         * LaTeXFeatures.C:
14982         * Painter.C:
14983         * bufferview_funcs.C:
14984         * font.C:
14985         * lyxfont.C:
14986         * text.C:
14987         * text2.C:
14988         * trans_mgr.C:
14989         * paragraph.C: ... but do it here instead
14990
14991 2001-04-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14992
14993         * text2.C (SetLayout): split in NEW_INSETS and non NEW_INSETS version
14994
14995         * tabular.C: small reformat
14996
14997         * paragraph.C (GetFontSettings): split in NEW_INSETS and non
14998         NEW_INSETS version
14999         (GetChar): ditto
15000         (BreakParagraph): ditto
15001         (SetOnlyLayout): ditto
15002         (SetLayout): ditto
15003
15004         * lyxparagraph.h: add definitions for SetLayout and SetOnlyLayout
15005         with one arg less.
15006
15007         * lastfiles.C: removed most using decl, add std:: where needed
15008
15009         * buffer.C: ws changes
15010
15011         * MenuBackend.C (class compare_format): put into anon namespace
15012         (expand): constify label, names, action, action2
15013         (expand):
15014
15015         * text.C (SingleWidth): constify font
15016         (IsBoundary): constify rtl2
15017         (GetVisibleRow): constify ww
15018
15019         * LaTeX.C (deplog): constify logfile
15020
15021         * BufferView_pimpl.C (checkInsetHit): constify width, inset_x,
15022         start_x, end_x
15023         (workAreaExpose): constify widthChange, heightChange
15024
15025         * lyxrow.C (par): moved
15026         (height): moved
15027         (next): moved
15028         * lyxrow.h: as inlines here
15029
15030         * lyxfont.h (shape): moved from lyxfont.C
15031         (emph): moved from lyxfont.C
15032
15033         * lyxfont.C (LyXFont): use initialization list for all
15034         constructors
15035         (shape): move to lyxfont.h as inline
15036         (emph): move to lyxfont.h as inline
15037
15038
15039 2001-04-04  Juergen Vigna  <jug@sad.it>
15040
15041         * vspace.C: had to include stdio.h for use of sscanf
15042
15043 2001-04-03  Angus Leeming  <a.leeming@ic.ac.uk>
15044
15045         * BufferView.h:
15046         * BufferView_pimpl.h: remove xforms cruft. Both classes are
15047         independent of xforms.
15048
15049 2001-04-02  Juergen Vigna  <jug@sad.it>
15050
15051         * spellchecker.C: fixed namespace placing!
15052
15053 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
15054
15055         * lyxfunc.C (Dispatch): prevent crash in LFUN_GOTO_PARAGRAPH when
15056         the LyXParagraph * is 0.
15057
15058 2001-03-29  Juergen Vigna  <jug@sad.it>
15059
15060         * vspace.C: added support for %, c%, p%, l%.
15061         (stringFromUnit): added helper function.
15062         (asLatexString): changed to give right results for the %-values.
15063
15064         * buffer.C: convert the widthp in a width%.
15065
15066 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
15067
15068         * Makefile.am: removed form1.[Ch], lyx.[Ch] and added figure_form.[Ch],
15069         figureForm.[Ch].
15070
15071         * figureForm.[Ch]: stripped the FD_from_figure manipulation
15072         code out of lux_cb.[Ch], ready for its (imminent?) removal.
15073
15074         * lyx_cb.[Ch]: see above.
15075
15076         * figure_form.[Ch]: fdesign generated code, combining lyx.[Ch] and
15077         form1.[Ch].
15078
15079         * form1.[Ch]:
15080         * lyx.[Ch]: replaced by figure_form.[Ch].
15081
15082         * lyx_gui.C:
15083         * lyx_gui_misc.C:
15084         * lyxfunc.C: changed headers associated with above changes.
15085
15086 2001-03-27  Juergen Vigna  <jug@sad.it>
15087
15088         * BufferView_pimpl.C: set the temporary cursor right!
15089
15090 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
15091
15092         * BufferView_pimpl.C (Dispatch): corrected spelling givven -> given.
15093
15094 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
15095
15096         * LString.h: removed "using std::getline"!
15097
15098         * BufferView_pimpl.C (Dispatch): changes due to changes in
15099         InsetInclude::Params.
15100
15101         * buffer.C (tag_name): removed redundant break statements as they were
15102         producing lots of warnings with my compiler.
15103
15104 2001-03-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15105
15106         * LString.h: add "using std::getline" when using the real <string>.
15107
15108 2001-03-23  José Abílio Matos  <jamatos@fep.up.pt>
15109
15110         * buffer.C: removed bitset usage.
15111         PAR_TAG moved to an anonymous name space.
15112         (tag_name): new funtion, also in the anonymous namespace.
15113         (SimpleLinuxDocOnePar): replaced all the references to bitset by PAR_TAG.
15114         (makeDocBookFile): clean code. Completed transition from string arrays
15115         to string vectors.
15116         (SimpleDocBookOnePar): code clean.
15117
15118 2001-03-23  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15119
15120         * tabular.C: add some comments.
15121
15122 2001-03-22  Juergen Vigna  <jug@sad.it>
15123
15124         * buffer.C (parseSingleLyXformat2Token): redone the minipage
15125         compatibility read a bit and fixed bug with minipage in different
15126         depth.
15127
15128 2001-03-21  José Abílio Matos  <jamatos@fep.up.pt>
15129
15130         * buffer.C (pop_tag): removed.
15131         (push_tag): removed.
15132         (makeLinuxDocFile): cleaner C++ code, declarations near usage point,
15133         array replaced with vector. Added support for CDATA sections.
15134         (SimpleLinuxDocOnePar): ditto. Paragraph tags are correctly handled,
15135         at any nest level.
15136         (makeDocBookFile): XML conformant declaration of CDATA section,
15137         fixed bug related to <emphasis> in the first paragraph char.
15138         (sgmlOpenTag): exclude empty tags.
15139         (sgmlCloseTag): ditto.
15140
15141         * buffer.h (pop_tag): removed.
15142         (push_tag): removed.
15143
15144 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
15145
15146         * language.h (Languages): added size_type and size().
15147
15148 2001-03-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15149
15150         * buffer.C (parseSingleLyXformat2Token): Try to give a bit better
15151         response on compability reading of minipages. One probliem is that
15152         the old usage of minipages was «flertydig»
15153
15154         * several files here and in subdirs: don't use static at file
15155         scope use anon namespaces instead.
15156
15157 2001-03-19  Kayvan A. Sylvan <kayvan@sylvan.com>
15158
15159         * paragraph.C (TeXEnvironment): Added \n to \end{environment}
15160         LaTeX output. This is necessary for Literate document
15161         processing.
15162
15163 2001-03-17  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15164
15165         * buffer.C: insert hfill when needed.
15166
15167         * tabular.C (l_getline): use string::erase, small whitespace change.
15168
15169         * BufferView_pimpl.C: try the anon namespace.
15170         * WorkArea.C: ditto
15171
15172 2001-03-16  Juergen Vigna  <jug@sad.it>
15173
15174         * BufferView_pimpl.C (workAreaButtonRelease): return only on button==2
15175         otherwise it won't open options-dialogs.
15176
15177         * buffer.C: honor pextraWidth(p) on converting minipages.
15178
15179         * tabular.C (l_getline): changed the functions to strip trailing \r.
15180
15181 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
15182
15183         * BufferView_pimpl.C:
15184         * minibuffer..C: added "using SigC::slot" declaration.
15185
15186 2001-03-16  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15187
15188         * lyxlex_pimpl.h: noncopyable is in namespace boost.
15189
15190         * text2.C: ditto
15191
15192         * text.C: ditto
15193
15194         * paragraph.C: ditto
15195
15196         * lyxtext.h: NO_PEXTRA
15197
15198         * buffer.C: NO_PEXTRA_REALLY, NO_PEXTRA
15199
15200         * ParagraphParameters.C (clear): NO_PEXTRA_REALLY
15201         * ParameterStruct.h: ditto
15202         * ParagraphParameters.h: ditto
15203         * lyxparagraph.h: ditto
15204
15205 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15206
15207         * buffer.C: add compability for minipage alignment.
15208         (latexParagraphs): remove unwanted pextra check.
15209
15210         * several files: remove CXX_WORKING_NAMESPACES
15211
15212         * buffer.C (pop_tag): tie is in namespace boost
15213
15214         * BufferView.h: noncopyable is in namespace boost
15215         * lyxlex.h: ditto
15216         * lyx_main.h: ditto
15217         * lyx_gui.h: ditto
15218         * layout.h: ditto
15219         * lastfiles.h: ditto
15220         * bufferlist.h: ditto
15221         * ShareContainer.h: ditto
15222         * LyXView.h: ditto
15223         * LyXAction.h: ditto
15224         * LaTeX.h: ditto
15225
15226 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
15227
15228         * Merging changes from BRANCH_MVC back into HEAD.
15229
15230         * Makefile.am: added controllers/libcontrollers.la to lyx_DEPENDENCIES
15231
15232 2001-03-15  John Levon  <moz@compsoc.man.ac.uk>
15233
15234         * BufferView_pimpl.C: change from intl.C
15235
15236         * combox.h:
15237         * combox.C:
15238         * Makefile.am: move combox.*
15239
15240         * form1.h:
15241         * form1.C:
15242         * lyx_gui.C:
15243         * intl.h:
15244         * intl.C: remove dialog (covered by prefs)
15245
15246 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
15247
15248         * lyxfunc.C (Dispatch): removed redundant break statement.
15249
15250 2001-03-14  Juergen Vigna  <jug@sad.it>
15251
15252         * tabular.C (l_getline): pay attention on \r\n (from Windows-files)
15253
15254 2001-03-14  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15255
15256         * buffer.C: add hack to fix compability reading of minipages.
15257
15258 2001-03-13  Dekel Tsur  <dekelts@tau.ac.il>
15259
15260         * buffer.C (getLists): Cleanup.
15261
15262 2001-03-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15263
15264         * lyxfont.C (update): don't honor toggleall on font size.
15265
15266 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
15267
15268         * bmtable.c:
15269         * bmtable.h:
15270         * Makefile.am: moved to frontends/xforms/
15271
15272         * lyx_gui_misc.C:
15273         * lyxfunc.C:
15274         * BufferView_pimpl.C: changes for moved mathpanel
15275
15276 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
15277
15278         * gettext.h: fix gettext_init() in --disable-nls
15279
15280 2001-03-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15281
15282         * LaTeXFeatures.C (getMacros): add a .c_str() when using sstream.
15283
15284 2001-03-09  John Levon  <moz@compsoc.man.ac.uk>
15285
15286         * lyx.C:
15287         * lyx.h: strip external form
15288
15289 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
15290
15291         * BufferView_pimpl.C: add comment, destroySplash()
15292
15293 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
15294
15295         * BufferView_pimpl.C:
15296         * LyXAction.C:
15297         * buffer.C:
15298         * commandtags.h:
15299         * lyxfunc.C: use re-worked insetinclude
15300
15301 2001-03-12  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15302
15303         * buffer.C: add using std::stringstream.
15304
15305         * lyx_cb.C: readd using std::ios.
15306
15307         * buffer.C: add using std::map.
15308
15309         * BufferView_pimpl.C: add using std::vector.
15310
15311         * ShareContainer.h: add std:: to swap.
15312
15313         * buffer.h: add some typedefs
15314         * buffer.C (getLists): use them
15315         (getLists): renamed from getTocList.
15316         add a counter for the different float types and use it in the
15317         generated string.
15318         (getLists): use the same counter for the NEW_INSETS and the "non"
15319         NEW_INSETS
15320
15321         * lyx_cb.h: remove unused items, includes, using etc.
15322
15323         * ShareContainer.h: remove some commented code, add more comments
15324         and "documentation".
15325
15326 2001-03-11  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15327
15328         * buffer.C (getTocList): make the list also when NEW_INSETS is
15329         defined.
15330
15331         * buffer.h: remove TocType
15332
15333         * buffer.C (getTocList): change to return a map<string,
15334         vector<TocItem> >, implement for dynamic number of list.
15335
15336         * CutAndPaste.[Ch] (checkPastePossible): remove unused arg
15337         * text2.C (PasteSelection): adjust
15338         * CutAndPaste.C (pasteSelection): adjust
15339
15340         * FloatList.C (FloatList): update from the new_insets branch.
15341         * Floating.[Ch]: ditto
15342         * LaTeXFeatures.C: ditto
15343         * buffer.C: ditto
15344         * lyxlex_pimpl.C: ditto
15345
15346         * paragraph.C (Last): remove when NEW_INSETS is defined.
15347
15348         * other file: changes because of the above.
15349
15350 2001-03-09  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15351
15352         * lyxparagraph.h: rename next to next_, previous to previous_,
15353         make them private for NEW_INSETS. Rename Next() to next(),
15354         Previous() to previous().
15355
15356         * other files: changes because of the above.
15357
15358 2001-03-08  Dekel Tsur  <dekelts@tau.ac.il>
15359
15360         * BufferView.h:
15361         * lyxparagraph.h: Add '#include "LString.h"' to fix compilation
15362         problem.
15363
15364 2001-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15365
15366         * main.C (main): pass lyx_localedir to gettext_init().
15367
15368         * gettext.h: remove locale_init and gettext_init macros
15369
15370         * gettext.C (locale_init): new function
15371         (gettext_init): new function
15372
15373         * lyx_gui.C (LyXGUI): use locale_init() instead of explicit
15374         setlocale().
15375
15376 2001-03-07  Edwin Leuven  <leuven@fee.uva.nl>
15377
15378         * Moved credits to frontends:
15379         * credits.[Ch]: removed
15380         * credits_form.[Ch]: removed
15381         * lyx_gui_misc.C: remove credits stuff
15382         * Makefile.am:
15383
15384 2001-03-07  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15385
15386         * lyx_main.C: make toplevel_keymap a boost::scoped_ptr.
15387
15388         * kbmap.[Ch]: make kb_key::table a boost::shared_ptr, remove
15389         unneeded destructor.
15390
15391         * intl.[Ch] (Intl): free the fd_form_keymap, make the fd_form_keymap
15392         a standalone pointer again.
15393
15394         * ColorHandler.[Ch]: make lyxColorHandler a boost::scoped_ptr
15395
15396 2001-03-06  John Levon  <moz@compsoc.man.ac.uk>
15397
15398         * Makefile.am:
15399         * filedlg.h:
15400         * filedlg.C:
15401         * LyXAction.C:
15402         * ToolbarDefaults.C:
15403         * bufferlist.C:
15404         * commandtags.h:
15405         * form1.C:
15406         * form1.h:
15407         * lyx_cb.C:
15408         * lyx_cb.h:
15409         * lyxfunc.h:
15410         * lyxfunc.C:
15411         * BufferView_pimpl.C: use new file dialog in GUII
15412
15413         * lyx_cb.h:
15414         * lyx_cb.C: remove LayoutsCB to Toolbar
15415
15416 2001-03-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15417
15418         * ShareContainer.h (get): add std:: qualifier
15419
15420 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15421
15422         * ShareContainer.h: define a proper ShareContainer::value_type
15423         type (and use typename to please compaq cxx)
15424
15425 2001-03-06  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15426
15427         * lyxparagraph.h: move serveral local vars to
15428         ParameterStruct/ParagraphParameters., use ShareContainer in
15429         FontTable., make vars in FontTable private and add getter and
15430         setter.
15431
15432         * paragraph.C: changes because of the above.
15433
15434         * lyxfont.h: remove copy constructor and copy assignment. (the
15435         default ones is ok), move number inside FontBits. move inlines to
15436         lyxfont.C
15437
15438         * lyxfont.C: add number to initializaton of statics, move several
15439         inlines here. constify several local vars. some whitespace
15440         cleanup. Dont hide outerscope variables.
15441
15442         * Spacing.h: add two new constructors to match the set methods.
15443
15444         * ShareContainer.h: new file, will perhaps be moved to support
15445
15446         * ParameterStruct.h: new file
15447
15448         * ParagraphParameters.h: new file
15449
15450         * ParagraphParameters.C: new file
15451
15452         * Makefile.am (lyx_SOURCES): add ParagraphParameters.C,
15453         ParagraphParameters.h, ParameterStruct.h and ShareContainer.h
15454
15455         * BufferView_pimpl.C: ParagraphParameter changes.
15456         * buffer.C: Likewise.
15457         * bufferview_funcs.C: Likewise.
15458         * text.C: Likewise.
15459         * text2.C: Likewise.
15460
15461 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15462
15463         * lyxfind.C (LyXReplace): do not redefine default argument in
15464         implementation.
15465         (IsStringInText): ditto
15466         (SearchForward): ditto
15467         (SearchBackward): ditto
15468
15469 2001-03-06  Juergen Vigna  <jug@sad.it>
15470
15471         * lyxfind.C (IsStringInText): put parentes around expressions.
15472
15473 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
15474
15475         * lyxfind.[Ch]: find stuff moved out of text2.C/lyxtext.h
15476
15477 2001-02-23  John Levon  <moz@compsoc.man.ac.uk>
15478
15479         * lyx_main.C: add ISO_Left_Tab as bind synonym for Tab
15480
15481         * stl_string_fwd.h: add comment
15482
15483         * lyx_gui_misc.C: killed ALWAYS_CLOSE_MATH_PANELS
15484
15485         * tabular.h:
15486         * tabular.C: remove unused DocBook methods
15487
15488         * intl.C:
15489         * language.C:
15490         * paragraph.C:
15491         * buffer.C:
15492         killed DO_USE_DEFAULT_LANGUAGE
15493
15494 2001-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15495
15496         * lyx_gui.C: do not include language.h.
15497
15498         * bufferview_funcs.C (ToggleAndShow): do not provide optional
15499         arguments in function implementation.
15500
15501 2001-02-28  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15502
15503         * BufferView_pimpl.C: add <ctime>
15504
15505 2001-02-27  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15506
15507         * BufferView_pimpl.C: add using std::find_if
15508
15509 2001-02-27  José Matos  <jamatos@fep.up.pt>
15510
15511         * LaTeXFeatures.C (getIncludedFiles): call to BasePath replaced
15512         by OnlyPath.
15513
15514 2001-02-11  José Matos  <jamatos@fep.up.pt>
15515
15516         * buffer.C (makeDocBookFile): command styles now have a parameter as
15517         "title" by default.
15518
15519 2001-02-23  Edwin Leuven <leuven@fee.uva.nl>
15520
15521         * layout_forms.[Ch]: removed
15522         * lyx_cb.[Ch]: out character
15523         * lyx_gui.C: out character
15524         * lyx_gui_misc.C: out character
15525         * bufferview_funcs.C: : out character,
15526         added toggleall as parameter in ToggleAndShow
15527
15528 2001-02-26  Dekel Tsur  <dekelts@tau.ac.il>
15529
15530         * lyxfunc.C (getStatus): Fix the LFUN_EXPORT case.
15531
15532         * text2.C (SetCurrentFont): Disable number property at boundary.
15533
15534 2001-02-26  Juergen Vigna  <jug@sad.it>
15535
15536         * lyxfunc.C (getStatus): added a string argument override function so
15537         that this is correctly called from LyXFunc::Dispatch if it contains a
15538         do_not_use_argument which is used!
15539         (Dispatch): added check for "custom" export and call appropriate func.
15540
15541 2001-02-23  Dekel Tsur  <dekelts@tau.ac.il>
15542
15543         * lyxrc.C: Add language_command_local, language_use_babel and
15544         language_global_options.
15545
15546         * lyxfont.C (latexWriteStartChanges): Use language_command_local.
15547
15548         * buffer.C (makeLaTeXFile): Use language_use_babel and
15549         language_global_options.
15550
15551 2001-02-23  Juergen Vigna  <jug@sad.it>
15552
15553         * lyxfunc.C (Dispatch): removed the whole part of the switch statement
15554         which works with LyXText and putted it inside BufferView. Here now we
15555         only call for that part the BufferView::Dispatch() function.
15556
15557         * BufferView.C (Dispatch): added.
15558
15559         * BufferView_pimpl.C (Dispatch): added! Here are now all dispatch
15560         functions which needs to use a LyXText over from LyXFunc.
15561         (MenuInsertLyXFile): added
15562         (getInsetByCode): added
15563         (moveCursorUpdate): added
15564         (static TEXT): added
15565
15566 2001-02-22  Juergen Vigna  <jug@sad.it>
15567
15568         * BufferView_pimpl.C (update): call a status update to see if LyXText
15569         needs it.
15570
15571 2001-02-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15572
15573         * vc-backend.C (revert): implement for CVS
15574         (getLog): implement for CVS
15575
15576 2001-02-20  Juergen Vigna  <jug@sad.it>
15577
15578         * text2.C (ClearSelection): added BufferView param for inset_owner call
15579
15580         * lyxfunc.C (TEXT): added this function and use it instead of
15581         directly owner->view()-text of getLyXText().
15582
15583 2001-02-20  Edwin Leuven <leuven@fee.uva.nl>
15584
15585         * src/layout_forms.C: out preamble
15586         * src/layout_forms.h: out preamble
15587         * src/lyx_cb.C: out preamble
15588         * src/lyx_cb.h: out preamble
15589         * src/lyx_gui.C: out preamble
15590         * src/lyx_gui_misc.C: out preamble
15591         * src/lyxfunc.C: connect with guii preamble
15592
15593 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
15594
15595         * src/buffer.h: tiny clean-ups to allow compilation with DEC cxx.
15596
15597 2001-02-17  Dekel Tsur  <dekelts@tau.ac.il>
15598
15599         * LaTeX.C (run): Do not use 'scanres & RERUN' when deciding
15600         whether to run bibtex.
15601
15602 2001-02-16  Dekel Tsur  <dekelts@tau.ac.il>
15603
15604         * Makefile.am (lyx_SOURCES): Remove BackStack.h
15605
15606 2001-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
15607
15608         * Makefile.am (lyx_SOURCES): removed bibforms.h
15609
15610         * vspace.h: doxygen
15611
15612         * text.C (GetVisibleRow): make several local vars const
15613
15614         * tabular.C: small cleanup.
15615
15616         * lyxserver.C (callback): use compare instead of strncmp
15617
15618         * lyxparagraph.h: remove all code dep. on HAVE_ROPE, move inclass
15619         inlines to after class or to paragraph.C
15620
15621         * lyxfont.h: remove friend operator!=
15622
15623         * converter.h: move friend bool operator< to non friend and after
15624         class def.
15625
15626         * combox.h: small cleanup
15627
15628         * buffer.h: doxygen, remove unused constructor, move inclas inlies
15629         to inlines after class def.
15630
15631         * buffer.C (pop_tag): use string operations instead of strcmp
15632
15633         * bmtable.c: doxygen, small cleanup
15634
15635         * LaTeX.h: remove friend operator==
15636
15637 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
15638
15639         * screen.C:
15640         * lyxrc.[Ch]:
15641         * lyxfunc.C:
15642         * lyxfont.[Ch]:
15643         * lyx_cb.C:
15644         * intl.[Ch]:
15645         * commandtags.h:
15646         * buffer.C:
15647         * WorkArea.[Ch]:
15648         * LyXAction.C:
15649         * BufferView_pimpl.C:
15650         * BufferView.[Ch]: remove cruft
15651
15652 2001-02-14  Juergen Vigna  <jug@sad.it>
15653
15654         * lyxfunc.C: removed #if 0 unused code
15655
15656         * lyxfunc.C (Dispatch): make LFUN_QUOTE work for InsetText.
15657
15658         * BufferView_pimpl.C (update): set updatestatus of inset if needed.
15659
15660         * text2.C (SetSelection): added a BufferView * parameter
15661
15662 2001-02-13  Juergen Vigna  <jug@sad.it>
15663
15664         * lyxfunc.C (Dispatch): fixed protected blank problem.
15665         * BufferView2.C (protectedBlank): added LyxText * parameter.
15666
15667         * tabular.C (AppendRow): forgot to set row_info of newly added row.
15668         (AppendColumn): same as above for column_info.
15669
15670         * lyxfunc.C (Dispatch): supported some more functions in InsetText.
15671         (moveCursorUpdate): use a LyXText param for support of InsetText.
15672
15673         * BufferView_pimpl.C (doubleClick): added support for InsetText.
15674         (tripleClick): ditto
15675
15676         * lyxfunc.C (LFUN_APPENDIX): changed to use "text" pointer.
15677
15678         * BufferView_pimpl.C (update): added LyXText param to honor insets.
15679
15680         * bufferview_funcs.C (ToggleAndShow): fixed for text in insets.
15681
15682         * text2.C (SetSelection): set correct update status if inset_owner
15683         (ToggleFree): ditto
15684
15685 2001-02-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
15686
15687         * tabular.C: remove some commented code.
15688
15689 2001-02-12  John Levon  <moz@compsoc.man.ac.uk>
15690
15691         * BufferView_pimpl.C: call hideSplash()
15692
15693         * LyXAction.C: make buffer-child-insert use LFUN_CHILD_CREATE
15694
15695         * include_form.h:
15696         * bibforms.h: remove
15697
15698         * lyxfunc.C:
15699         * src/commandtags.h: LFUN_CHILDINSERT -> LFUN_CHILD_INSERT,
15700           add LFUN_CHILD_CREATE
15701
15702         * counters.h: fix tiny typo
15703
15704         * lyx_cb.C:
15705         * lyx.h:
15706         * lyx_gui.C:
15707         * lyx.C: move splash to frontends/xforms/
15708
15709         * lyx_gui_misc.C: move Include and Bibform to frontends
15710
15711         * lyxvc.h: clarify comment
15712
15713         * vspace.C: tiny housekeeping
15714
15715 2001-02-10  Dekel Tsur  <dekelts@tau.ac.il>
15716
15717         * text.C (PrepareToPrint): RTL Fix.
15718
15719         * paragraph.C (GetUChar): New method.
15720         (String):  Use GetUChar.
15721
15722         * buffer.C (asciiParagraph): Use GetUChar.
15723
15724 2001-02-09  Dekel Tsur  <dekelts@tau.ac.il>
15725
15726         * text.C (GetVisibleRow): Fix selection drawing for RTL text in tables.
15727
15728 2001-02-09  John Levon  <moz@compsoc.man.ac.uk>
15729
15730         * buffer.h:
15731         * buffer.C: rename to getLogName(), handle
15732           build log / latex log nicely
15733
15734 2001-02-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15735
15736         * MenuBackend.C:
15737         * MenuBackend.h: remove support for reference menuitem type.
15738
15739 2001-02-07  John Levon  <moz@compsoc.man.ac.uk>
15740
15741         * BufferView_pimpl.C: housekeeping
15742         * BufferView_pimpl.h:
15743         * LyXView.h:
15744         * Makefile.am:
15745         * Timeout.C:
15746         * Timeout.h:
15747         * minibuffer.h: move Timeout GUI-I
15748
15749 2001-02-07  Dekel Tsur  <dekelts@tau.ac.il>
15750
15751         * lyxrc.C (read): Update converters data-structures.
15752
15753 2001-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
15754
15755         * LaTeX.h (operator!=): add operator != for Aux_Info
15756
15757 2001-02-06  John Levon  <moz@compsoc.man.ac.uk>
15758
15759         * Makefile.am: remove LaTeXLog.C, log_form.[Ch]
15760
15761         * LaTeXLog.C: deleted, useful code moved to Buffer
15762
15763         * buffer.h:
15764         * buffer.C: new function getLatexLogName()
15765
15766         * lyx_gui_misc.C:
15767         * lyx_gui.C:
15768         * lyxvc.C:
15769         * lyxvc.h:
15770         * lyxfunc.C: use frontends for LaTeX and VC logs
15771
15772 2001-02-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15773
15774         * LaTeX.h: yet another std:: that Allan forgot.
15775
15776         * Variables.C (set): renamed from isset(), because this clashes
15777         with some HP-UX macros (grr).
15778
15779 2001-02-06  Allan Rae  <rae@lyx.org>
15780
15781         * LaTeX.h: Another bug fix.  Missing std:: this time.
15782
15783 2001-02-04  Allan Rae  <rae@lyx.org>
15784
15785         * paragraph.C (TeXOnePar): Partial fix for the '\n' generation in
15786         floats problem. I've left it commented out because it's not quite
15787         correct.  It should also test that the current object is a table or
15788         figure inset.  But I haven't gotten around to figuring out how to do
15789         that.  I *think* it'll be something like: "table" == inset.type()
15790
15791         * LaTeX.h (operator==): Aux_Info should have a friend that returns a
15792         bool.
15793
15794 2001-02-02  Dekel Tsur  <dekelts@tau.ac.il>
15795
15796         * LaTeX.C (scanAuxFile): A rewrite of this method. It now returns
15797         all the citation/databases/styles in the auxilary file.
15798         (run): Rerun latex if there was a babel language error.
15799
15800 2001-02-01  Dekel Tsur  <dekelts@tau.ac.il>
15801
15802         * text.C (Backspace): Preserve the font when changing newline char
15803         with a space.
15804         (BreakParagraph): If the cursor is before a space, delete the space.
15805
15806         * lyx_cb.C (QuitLyX): Do not save files when running with no gui.
15807
15808 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
15809
15810         * BufferView2.C (ChangeInsets): Renamed from ChangeRefs. Accept a
15811         new argument (code).
15812         (ChangeCitationsIfUnique): New method.
15813
15814         * paragraph.C (GetPositionOfInset): Handle bibkey.
15815
15816 2001-01-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15817
15818         * BufferView_pimpl.h: change type of Position::par_pos to
15819         LyXParagraph::size_type.
15820
15821 2001-01-29  Dekel Tsur  <dekelts@tau.ac.il>
15822
15823         * BufferView_pimpl.C (savePosition, restorePosition): Write
15824         messages to minibuffer.
15825
15826 2001-01-28  José Matos  <jamatos@fep.up.pt>
15827
15828         * buffer.C (makeDocBookFile): adds support for document language.
15829         A silly restriction on the name of LatexCommand types where removed.
15830         Added support for CDATA sections, allows to chars unescaped, used
15831         among others in code, to avoid escape < and >.
15832
15833 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
15834
15835         * BufferView_pimpl.C (savePosition, restorePosition): Use a vector of
15836         saved positions instrad of a stack. Furthermore, a position is
15837         stored using paragraph id/paragraph position.
15838
15839         * commandtags.h: Add LFUN_BOOKMARK_SAVE and LFUN_BOOKMARK_GOTO.
15840         Remove LFUN_REF_BACK.
15841
15842 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
15843
15844         * converter.C (dvipdfm_options): New method.
15845
15846 2001-01-26  Dekel Tsur  <dekelts@tau.ac.il>
15847
15848         * vspace.C (isValidLength): Fix for empty input string.
15849
15850 2001-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15851
15852         * LyXAction.C (init): change description of LFUN_FIGURE to
15853         "Insert Graphics"
15854
15855 2001-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15856
15857         * LaTeX.C: add using directive
15858
15859 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
15860
15861         * MenuBackend.C (expand): Fix the sorting of the formats.
15862
15863 2001-01-24  John Levon  <moz@compsoc.man.ac.uk>
15864
15865         * lyx_main.C: tiny error message fix
15866
15867 2001-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15868
15869         * lyx_gui.C (LyXGUI): force the LC_NUMERIC locale to "C" after
15870         calling fl_initialize(). This fixes the problem with ',' as
15871         decimal separator in text files.
15872
15873 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
15874
15875         * trans.C (process): Fix the keymap bug.
15876
15877 2001-01-23  Dekel Tsur  <dekelts@tau.ac.il>
15878
15879         * LaTeX.C (scanAuxFiles): New method. Provides support for
15880         multiple bibliographies (when using the bibtopic/bibunits pacakges).
15881         (scanLogFile) Scan for "run BibTeX" messages.
15882
15883         * buffer.C (makeLaTeXFile): Do not load the ae package when using
15884         OT1 font encoding. Also, load the aecompl package if the ae
15885         package is loaded.
15886
15887         * tex-strings.C: Add "ae" to tex_fonts[] (from Matej Cepl).
15888
15889 2001-01-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15890
15891         * texrow.C (increasePos): turn two error messages into debug
15892         messages.
15893
15894 2001-01-20  Dekel Tsur  <dekelts@tau.ac.il>
15895
15896         * LaTeX.C (scanAux): Handle the \@input macro.
15897         (runBibTeX): Use scanAux().
15898
15899         * language.C (latex_options_): New field.
15900
15901         * LaTeXFeatures.C (getMacros): Add language macros.
15902
15903         * buffer.C (makeLaTeXFile): Small fix.
15904
15905 2001-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15906
15907         * lyxfunc.C: fix the name of the inset for LFUN_CHILDINSERT
15908
15909         * text2.C: add a using directive.
15910
15911 2000-01-17  John Levon  <moz@compsoc.man.ac.uk>
15912
15913         * BufferView2.C:
15914         * lyx_gui_misc.h:
15915         * lyxfr1.C:
15916         * lyxfunc.C: kill LyXBell.
15917
15918 2001-01-17  Dekel Tsur  <dekelts@tau.ac.il>
15919
15920         * text.C (IsBoundary): Remove the error message
15921
15922         * WorkArea.C (work_area_handler): Decrease keyboard purge threshold.
15923
15924         * lyxrc.C (setDefaults): Correct initialization value for
15925         font_norm_type.
15926
15927 2001-01-15  Dekel Tsur  <dekelts@tau.ac.il>
15928
15929         * BufferView2.C (gotoInset): New method. Replaces gotoNote() and
15930         gotoError().
15931
15932         * text2.C (GotoNextInset): New method. Replaces GotoNextError()
15933         and GotoNextNote().
15934
15935         * src/LyXAction.C: Added reference-next.
15936
15937         * text.C (InsertChar): Use contains instead of strchr.
15938
15939         * lyx_cb.C (MenuInsertLabel): Enable default value code.
15940
15941 2001-01-13  Dekel Tsur  <dekelts@tau.ac.il>
15942
15943         * paragraph.C (SimpleTeXOnePar) Put \protect before paragraph
15944         alignment commands (when needed).
15945
15946         * text.C (InsertChar): Add ':' to number separator chars.