]> git.lyx.org Git - lyx.git/blob - src/ChangeLog
3897f5ebf2d029c8608a7ccfc7a395e167eaac3b
[lyx.git] / src / ChangeLog
1 2004-10-13  José Matos  <jamatos@lyx.org>
2
3         * output_docbook.C (docbookParagraphs): fix closing tags in the end of the document.
4
5 2004-10-09  José Matos  <jamatos@lyx.org>
6
7         * buffer.C: format up to 237.
8         * bufferparams.C (write): use tostr to convert booleans to strings.
9         
10 2004-10-08  Martin Vermeer  <martin.vermeer@hut.fi>
11
12         * lyxrc.C: add to tooltip about using xindy to prefs (xforms)
13
14 2004-10-07  Martin Vermeer  <martin.vermeer@hut.fi>
15
16         * LaTeX.C: implement use of babel language in xindy.
17
18 2004-10-05  José Matos  <jamatos@lyx.org>
19
20         * bufferparams.[Ch] (readBullets, readBulletsLaTeX): new methods.
21         Add new translators to help reading and writing the lyx file.
22
23 2004-10-05  José Matos  <jamatos@lyx.org>
24
25         * ParagraphParameters.C (read):
26         * text.C (readParToken): replace nexToken by more appropriate lex
27         methods.
28
29 2004-10-05  Hartmut Haase  <hha4491@atomstromfrei.de>
30
31         * LaTeX.C (runMakeIndex):
32         * lyxrc.[Ch] (read, write, getDescription): make the indexing command
33         (usually 'makeindex') configurable.
34
35         * lastfiles.h (maxlastfiles): define the maximum number of 'lastfiles'
36         with a variable rather than with a number.
37
38 2004-09-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
39
40         * output_latex.C (TeXOnePar): make sure font setting is the first
41         thing that gets output (and the last at the end). Should fix bug
42         1404.
43
44 2004-09-26  Lars Gullik Bjonnes  <larsbj@gullik.net>
45
46         * pch.h: use proper signal include
47
48         * LaTeX.h: Use preferred calling of Boost.Signal
49         * buffer.h: ditto
50
51 2004-09-26  Lars Gullik Bjonnes  <larsbj@gullik.net>
52
53         * pch.h: dont include <boost/function/function0.hpp>
54
55         * Makefile.am (lyx_SOURCES): remove ShareContainer.h
56
57         * paragraph_pimpl.h: remove usage of ShareContainer
58
59         * paragraph_pimpl.C: remove initialization of ShareContainer.
60
61 2004-09-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
62
63         Fix bug #1666
64
65         * BufferView.C (putSelectionAt): change the semantics when
66         backwards == true: now, this just swaps cursor and anchor wrt the
67         forward case
68
69         * BufferView.h (putSelectionAt): add some documentation
70
71         * lyxfind.C (findBackwards): rewrite using while(). In particular,
72         make sure backwardChar is done at least once (to avoid getting
73         stuck)
74         (findNextChange): use putSelectionAt in the forward direction
75         (operator()): use Paragraph::isWord
76
77 2004-09-16  Lars Gullik Bjonnes  <larsbj@gullik.net>
78
79         * Spacing.C (set): c_str fix
80
81 2004-09-09  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
82
83         * lyx_cb.C (Reconfigure): quote the name of configure script in
84         case it contains spaces
85
86 2004-09-04  Lars Gullik Bjonnes  <larsbj@gullik.net>
87
88         * client: new dir
89
90         * Makefile.am (SUBDIRS): change order of subdirs and add client dir
91         (BOOST_LIBS): use top_buildir when looking for the file
92
93 2004-08-30  Lars Gullik Bjonnes  <larsbj@gullik.net>
94
95         * pch.h: do not use include boost/format.hpp, multiple symbols
96                 will result (gcc bug)
97
98
99 2004-08-23  José Matos  <jamatos@lyx.org>
100
101         * bufferparams.C (readToken): fix reading of the author field.
102
103 2004-08-20  José Matos  <jamatos@lyx.org>
104
105         * lyxrc.C: remove support/translator.h inclusion since it is not used.
106
107 2004-08-20  José Matos  <jamatos@lyx.org>
108
109         * lyxlex.[Ch] (findToken): remove function.
110
111         * ParagraphParameters.C (findToken):
112         * bufferparams.C (findToken): replace call for previous function
113         with local copy. This local function has one more argument, the
114         read string argument.
115
116 2004-08-16  José Matos  <jamatos@lyx.org>
117
118         * ParagraphParameters.C (write):
119         * Spacing.C (writeFile):
120         * bufferparams.C (writeLaTeX):
121         * lyx_cb.C (Reconfigure):
122         * paragraph.C (write):
123         * tabular.C (write): remove unnecessary space at end of line.
124
125
126 2004-08-16  José Matos  <jamatos@lyx.org>
127
128         * text.C (readParagraph): remove debug message.
129
130 2004-08-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
131
132         * tabular.C (asciiBottomHLine, asciiPrintCell, asciiTopHLine): fix
133         crash
134
135         * output_plaintext.C (asciiParagraph): set depth correctly
136
137         * outputparams.h: add member depth
138
139         * paragraph_funcs.C (ownerPar): remove.
140
141         * text2.C (setCounter): remove first_pit; comment out some
142         non-working code that uses ownerPar
143
144         * BufferView.C (getParentLanguage): remove. Not used anymore, and
145         uses ownerPar
146
147 2004-08-16  José Matos  <jamatos@lyx.org>
148
149         * text.C (readParToken, readParagraph, read): report all unknown tokens.
150         For the same level of importance use the same chanel to report problems.
151         (read): add code to deal with \begin_body and \end_body.
152
153
154 2004-08-15  José Matos  <jamatos@lyx.org>
155
156         * lyxlex.C (getString): fix comment, buffer::readBody is now
157         buffer:readDocument.
158
159         * tex-strings.C (string_papersize): Default -> default,
160         Custom -> custom, for consistency with other options.
161
162 2004-08-15  Lars Gullik Bjonnes  <larsbj@gullik.net>
163
164         * pch.h: new file
165
166         * Makefile.am: support pch
167
168 2004-08-15  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
169
170         * text.C (readParToken): remove the static LyXFont variable and
171         pass it as a parameter instead. This fixes a nasty bug where an
172         inset will be inserted with a bad font in some situations
173         (readParagraph): adapt
174
175         * text2.C (setCounter): reduce number of calls to pars_[pit]
176
177         * text.C (singleWidth): add an assert, fix a test
178
179         * rowpainter.C (paintText): reduce number of calls to singleWidth
180
181         * paragraph.C (isHfill):
182         (isNewline): ws only
183
184 2004-08-14  André Pönitz  <poenitz@gmx.net>
185
186         * text.C:
187         * text2.C:
188         * rowpainter.C:
189         * lyxtext.h (several functions): use a Paragraph & argument
190         instead of par_type
191
192 2004-08-15  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
193
194         * metricsinfo.h: add a new field ltr_pos to PainterInfo
195
196         * rowpainter.C (paintInset): initialize PainterInfo::ltr_pos
197
198         * text.C (singleWidth): remove useless test
199
200 2004-08-14  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
201
202         * tabular.h: remove bogus comments
203
204         * tabular.C (getDescentOfRow):
205         (isPartOfMultiColumn): add assertions
206
207         * lyxlength.C (inPixels): remove #warning
208
209 2004-08-14  André Pönitz  <poenitz@gmx.net>
210
211         * paragraph.h: inline getChar()
212
213         * BufferView.h: remove unused declarations
214
215 2004-08-14  José Matos  <jamatos@lyx.org>
216
217         * Buffer.[Ch] (readDocument): new name for old readBody.
218         * Buffer.C: new file format, new keywords: \begin_document,
219         \begin_header, \begin_body, \end_body.
220
221         * bufferparams.C (readToken): replace all calls to lex.nextToken
222         by lex.next(). Do the same to eatLine except where really needed.
223
224         * lyxfont.C (lyxWriteChanges): remove whitespaces in the end of
225         line when writing to the lyx file.
226
227         * output_plaintext.C (asciiParagraph): fix Bibliography style
228         handling.
229
230         * text.C (read): fix end of file handling.
231
232 2004-08-14  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
233
234         * MenuBackend.C (Menu::operator[]): new method to access
235         individual menu items
236         (Menu::hasFunc): new method. search for an item that corresponds
237         to a given func
238         (MenuBackend::specialMenu): new method
239         (MenuBackend::expand): if a special menu has been set, skip
240         entries whose func() appears in this menu
241
242 2004-08-14  Lars Gullik Bjonnes  <larsbj@lyx.org>
243
244         * text3.C: use Debug::DEBUG a bit more
245
246         * text.C (leftMargin): try to simplify a tiny bit change var x to
247         l_margin. Dont output the wide margins always.
248         (rightMargin): no margin in inner texts
249
250         * rowpainter.h (nestMargin): new func
251         (changebarMargin): new func
252         (rightMargin): new func
253
254         * rowpainter.C (paintDepthBar): changebarMargin and nestMargin is
255         now functions.
256         (paintLast): ditto
257
258         * factory.C (createInset): modify setDrawFrame
259
260         * cursor.C: use Debug::DEBUG a bit more
261
262 2004-08-14  André Pönitz  <poenitz@gmx.net>
263
264         * coordcache.[Ch]:
265         * Makefile.am: new files to accomodate an 'external' (x,y)-position
266         cache for all insets in (at least partially) visible (top-level)
267         paragraphs.
268
269         * BufferView_pimpl.C: reset external coord cache before every update.
270         This means the coord cache only contains valid entries.
271
272 2004-08-14  Lars Gullik Bjonnes  <larsbj@lyx.org>
273
274         bug 1096
275         * BufferView_pimpl.C (getInsetByCode): move function out of class
276         and change in to a template in anon namespace. Also fix to do what
277         suits us better.
278
279 2004-08-13  Lars Gullik Bjonnes  <larsbj@lyx.org>
280
281         bug 1305
282         * paragraph_funcs.C (moveItem): use Paragraph::value_type instead
283         of char
284         (breakParagraph): rename par to par_offset and use a local
285         reference. Add code to keep the language over a rebreak.
286         (breakParagraphConservative): rename par to par_offset, use a
287         local reference
288         (mergeParagraph): ditto
289         (outerHook): ditto
290         (isFirstInSequence): ditto
291         (outerFont): rename pit to par_offset
292
293         * paragraph.C: ws change
294         * paragraph.h: ditto
295         * text3.C: ditto
296         * text.C: ditto
297
298 2004-08-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
299
300         * paragraph_pimpl.C (simpleTeXSpecialChars): remove special
301         treatment for ']'
302
303         * paragraph.C (simpleTeXOnePar): when we have a \item with
304         optional argument, enclose the argument with curly brackets (in
305         case it contains a closing square bracket)
306
307         * text2.C (editXY):
308         * text2.C (editXY):
309         * text3.C (checkInsetHit): constify
310
311 2004-08-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
312
313         * LyXAction.C (init): mark LFUN_WORD_FIND as working in read-only
314         documents (bug 1629)
315
316 2004-08-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
317
318         Fix toggling of collapsable insets with the mouse (bug 1558)
319
320         * lyxfunc.C (dispatch): adapt to LCursor changes
321
322         * BufferView_pimpl.C (workAreaDispatch): adapt to LCursor changes;
323         make sure that dispatch is not invoked twice
324
325         * cursor.C (needsUpdate): new method
326         (dispatch): return void
327         (result): new method, to access the DispatchResult of the cursor.
328
329 2004-08-13  José Matos  <jamatos@lyx.org>
330
331         * tabular.C (docbook): close empty tags in XML. Fix bug 1147.
332
333 2004-08-13  André Pönitz  <poenitz@gmx.net>
334
335         * cursor.C (macroModeClose): use plainInsert instead of niceInsert.
336
337         * CutAndPaste.C (eraseSelection): fix cursor position after erasing
338           multiple cells
339
340 2004-08-12  André Pönitz  <poenitz@gmx.net>
341
342         * text3.C: take out the 'cursor right' form insertInset and only
343         do it in those places when it is really needed. Fixes crash on
344         C-m...
345
346 2004-08-08  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
347
348         * lyxfunc.C (dispatch): implement LFUN_SAVE_AS_DEFAULT
349
350         * BufferView_pimpl.C (setBuffer): initialize the current font of
351         the underlying LyXText
352
353 2004-08-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
354
355         * kbsequence.C (print): use UI native formatting for menu
356         shortcuts
357
358         * text.C (insertChar): call Paragraph::insertChar with a font
359         argument (cosmetic)
360
361         * paragraph.C (insertInset, insertChar): the version that takes a
362         LyXFont argument is now a wrapper around the other one (the
363         opposite used to be true).
364
365         * paragraph_pimpl.C (insertInset, insertChar): remove the LyXFont
366         argument. Font setting is done in Paragraph now.
367
368 2004-08-04  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
369
370         * outputparams.h: add new members intitle and lang.
371
372         * paragraph.C (simpleTeXOnePar): initialize rp.lang and
373         rp.intitle. Actually use rp in call to simpleTeXSpecialChars
374
375 2004-08-01  Lars Gullik Bjonnes  <larsbj@gullik.net>
376
377         * text3.C (dispatch): remove special handling of button 4 and 5,
378         it is now taken care of in the frontend code.
379
380 2004-07-25  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
381
382         * Spacing.h: add <string> (STLPort compile fix)
383
384 2004-08-02  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
385
386         * LaTeXFeatures.C: (jurabib) \RequirePackage -> \usepackage
387
388 2004-07-25  Lars Gullik Bjonnes  <larsbj@gullik.net>
389
390         * lyxlex_pimpl.C (compare_tags): chagne return type of operator()
391         to bool.
392
393         * converter.C (showMessage): inherit from unary_function, make
394         operator() const.
395
396         * buffer.C (writeFile): initialize retval
397
398         * InsetList.h: rename private variable list to list_
399         * InsetList.[Ch]: adjust accordingly.
400
401 2004-07-24  Lars Gullik Bjonnes  <larsbj@gullik.net>
402
403         * text3.C, text2.C, text.C, tabular.C, paragraph_funcs.C, paragraph.C:
404         * lyxlength.C, lyxgluelength.C, lyxfunc.C, lyxfont.C, lyxfind.C:
405         * kbmap.C, funcrequest.C, factory.C, cursor.C, counters.C:
406         * bufferview_funcs.C, bufferparams.C, buffer.C, Spacing.C:
407         * ParagraphParameters.C, LaTeXFeatures.C: replace
408         "support/std_sstream.h" with <sstream>
409
410 2004-07-23  Lars Gullik Bjonnes  <larsbj@gullik.net>
411
412         * lyxserver.C (startPipe): use this (pointer) not *this (reference)
413         * lyxsocket.C (LyXServerSocket): ditto
414         (serverCallback): ditto
415
416 2004-07-23  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
417
418         * LaTeXFeatures.C: check release date when loading jurabib.
419
420 2004-07-22  Lars Gullik Bjonnes  <larsbj@gullik.net>
421
422         * lyxserver.C (startPipe): call register_socket_callback
423         (endPipe): call unregister_socket_callback
424
425 2004-07-21  Lars Gullik Bjonnes  <larsbj@gullik.net>
426
427         * lyxsocket.C (LyXServerSocket): reduce max outstanding clients to 3
428         (LyXServerSocket): register the callback
429         (LyXServerSocket): unregister the callback
430         (fd): delete function
431         (serverCallback): improve error checking and setup the callbacks.
432         (dataCallback): change arg to fd.
433         (writeln): new func (copied fro the client socket) used for server
434         write to client.
435         (LyXDataSocket): simplify
436         (~LyXDataSocket): close ann unregiser callback
437         (server): delete function
438         (fd): delete function
439         (readln): small changes, improve some std::string usage
440         (writeln): constify a bit
441
442 2004-06-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
443
444         * kbmap.C (find1keybinding): new method, only used by LyX/Mac with
445         Qt frontend
446
447 2004-07-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
448
449         * BufferView_pimpl.C (setBuffer): set the layout combox value only
450         after it has been populated
451
452 2004-06-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
453
454         * text2.C (insertInset): move cursor when inserting inset.
455
456 2004-06-30  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
457
458         * kbmap.C (findbindings): a couple of new methods. returns a
459         container of kb_sequence objects. The real work is done by the
460         private recursive version
461         (printbindings): uses findbindings to print out a bracketed list
462         of bindings (renamed from findbinding).
463
464         * MenuBackend.C (binding): use kb_keymap::findbindings
465
466         * lyxfunc.C (sendDispatchMessage): use use kb_keymap::printbindings.
467
468 2004-07-01  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
469
470         * buffer.C: up LYX_FORMAT to 235 (needed for the paperpackage fix)
471
472 2004-06-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
473
474         * paragraph.C (isWord): return true on insets that report
475         isLetter().
476
477         * text.C (getWord): use Paragraph::isWord to decide what is in a
478         word and what is not; fix bug 1609.
479
480 2004-06-27  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
481
482         * tex-strings.C: add "none" to string_paperpackages[], fixes
483         off-by-one-error in the paperpackage selection.
484
485         * lyxlex.[Ch]:
486         * tex-strings.[Ch]: char const * string[n]
487         -> char const * const string[]
488
489 2004-06-10  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
490
491         * lyxfunc.C (getStatus): if lyx_gui::getStatus disables the
492         command, return early.
493
494 2004-06-18  Lars Gullik Bjonnes  <larsbj@gullik.net>
495
496         * debug.h: add DEBUG to enum and fix size of ANY.
497
498         * debug.C: add support for Debug::DEBUG
499         (showTags): cast errorTags.level to unsigned int
500
501         * BufferView_pimpl.C (fitCursor): use Debug::DEBUG
502         (redoCurrentBuffer): ditto
503         (updateScrollbar): ditto
504         * cursor.C (dispatch): ditto
505         * text2.C (setLayout): ditto
506         (setFont): ditto
507         (updateCounters): ditto
508         (editXY): ditto
509         (deleteEmptyParagraphMechanism): ditto
510
511 2004-06-09  Lars Gullik Bjonnes  <larsbj@gullik.net>
512
513         * Makefile.am (dist_noinst_DATA): use the dist_ and noinst_
514         annotations to cleanup the Makefile slightly.
515
516 2004-05-10  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
517
518         * lyxrc.C: do not set user_email to a default value but use empty
519         instead. The entry used to be translated, which does not work
520         since at the point where lyxrc is constructed there is no
521         translation service available
522
523         * messages.C (getLocaleDir): remove and use directly
524         lyx_localedir() instead
525
526 2004-06-02  Angus Leeming  <leeming@lyx.org>
527
528         Fix crash caused by dereferencing null pointer 'exportdata' in
529         OutputParams by creating a new ExportData variable on the heap,
530         storing it in a boost::shared_ptr.
531         The crash was triggered when generating an Instant Preview
532         of an external inset.
533
534         * Makefile.am: add outputparams.C
535
536         * outputparams.[Ch]: store exportdata as a shared_ptr<Exportdata>.
537         (c-tor): allocate memory to it.
538
539         * exporter.C (c-tor): associated changes.
540
541 2004-06-01  Angus Leeming  <leeming@lyx.org>
542
543         * output_linuxdoc.C (linuxdocParagraphs): Check that the paragraph
544         contains data before calling isInset(0). (Bug 1513.)
545
546 2004-06-01  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
547
548         * exporter.C (checkOverwrite): new method
549         * exporter.C (copyFile): new method
550         * exporter.C (Export): copy referenced files to the document dir
551         * exporter.[Ch]: new class ExportedFile
552         * exporter.[Ch]: new class ExportData. Contains currently the
553         names of referenced external files
554         * outputparams.h: add exportdata member.
555
556 2004-05-28  Lars Gullik Bjonnes  <larsbj@gullik.net>
557
558         * Makefile.am (DISTCLEANFILES): add version.C, stamp-version and
559         version.C-tmp
560
561 2004-05-19  Angus Leeming  <leeming@lyx.org>
562
563         * LaTeXFeatures.C:
564         * ToolbarBackend.C:
565         * bufferparams.C:
566         * lyxfunc.C: small changes due to the introduction of namespace
567         lyx::frontend and the moving of namespace biblio to lyx::biblio.
568
569 2004-05-18  Alfredo Braunstein  <abraunst@lyx.org>
570
571         * text3.C (dispatch): supress update when only moving the cursor
572         * cursor.C (selHandle): remove commented code
573
574 2004-05-17  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
575
576         * paragraph.C (startTeXParParams): correct column count
577         * CutAndPaste.C (pasteSelection): remove const_cast
578         * output_docbook.C (docbookParagraphs): remove const_cast
579         * output_latex.C (TeXEnvironment, TeXOnePar, TeXDeeper): remove
580         const_cast and return ParagraphList::const_iterator
581         * output_linuxdoc.C (linuxdocParagraphs): remove const_cast
582         * output_plaintext.C (writeFileAscii): remove const_cast
583         * paragraph.[Ch] (simpleTeXOnePar): make const
584         * paragraph_funcs.C (outerPar): use const iterators
585         * paragraph_pimpl.C (validate): use const iterators
586         * text.C (setHeightOfRow): use const iterators
587
588 2004-05-17  Angus Leeming  <leeming@lyx.org>
589
590         * lfuns.h:
591         * LyXAction.C (init): new LFUN_INSET_REFRESH.
592
593         * lyxfunc.C (dispatch): in the LFUN_BUFFERPARAMS_APPLY block loop
594         over all insets and dispatch LFUN_INSET_REFRESH to any citation insets
595         if the citation engine has changed.
596
597 2004-05-14  José Matos  <jamatos@lyx.org>
598
599         * buffer.C (makeDocBookFile): add a default Formal Public Identifier
600         if the textclass does not provide it. Have it different for sgml and
601         xml.
602         support the language of document.
603         * output_docbook.C (docbookParagraphs):
604         * paragraph.[Ch] (getDocbookId): new function that gets the id of the
605         first anchor as the id of the paragraph, remove special case code.
606         * sgml.C (escapeChar): escape only < & >.
607
608 2004-05-14  Angus Leeming  <leeming@lyx.org>
609
610         * bufferparams.h: move biblio::CiteEngine enum here to minimize
611         dependencies on src/frontends/controllers/biblio.h. Define a
612         CiteEngine_enum wrapper class to enable the enum to be forward
613         declared.
614
615 2004-05-12  Angus Leeming  <leeming@lyx.org>
616
617         * buffer.C: up LYX_FORMAT to 234.
618         * bufferparams.[Ch]: replace the three bools, use_natbib, use_jurabib,
619         use_numerical_citations with a single biblio::CiteEngine cite_engine
620         variable.
621         * LaTeXFeatures.C (getPackages): use BufferParams::cite_engine.
622
623 2004-05-13  José Matos  <jamatos@lyx.org>
624
625         * converter.h:
626         * converter.C (Converter, readFlags): add xml member.
627         * outputparams.h: add XML flavor.
628         * buffer.C (makeDocBookFile): add support for the sgml/xml distinction.
629
630 2004-05-03  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
631
632         * lyxfunc.C (dispatch):
633         (getStatus): fix handling of LFUN_SEQUENCE
634
635 2004-04-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
636
637         * debug.C (showLevel): do not forget the end-of-line marker
638
639 2004-04-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
640
641         * kbmap.C (read): do not stop parsing a bind file when an error
642         occurs (bug 1575)
643
644 2004-04-29  Angus Leeming  <leeming@lyx.org>
645
646         * cursor.C:
647         * factory.C:
648         * pariterator.C:
649         * text2.C: wrap a bunch of #warning statements
650         inside #ifdef WITH_WARNINGS blocks.
651
652 2004-04-29  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
653
654         * buffer.C: increment format to 233.
655
656 2004-04-28  Angus Leeming  <leeming@lyx.org>
657
658         * BufferView_pimpl.C:
659         * lyxfunc.C:
660         * text3.C:
661         s/updateToolbar()/updateToolbars()/
662         s/Toolbar.h/Toolbars.h/
663
664 2004-04-28  Angus Leeming  <leeming@lyx.org>
665
666         * BufferView.[Ch] (c-tor):
667         * BufferView_pimpl.[Ch] (c-tor): no longer receives x,y position.
668         No longer passes these data to the WorkArea generator.
669
670 2004-04-28  Angus Leeming  <leeming@lyx.org>
671
672         * BufferView_pimpl.C (c-tor): pass LyXView & to WorkArea generator.
673
674 2004-04-26  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
675
676         * LaTeXFeatures.C, lyx_sty.[Ch]: add \lyxdot macro
677
678 2003-09-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
679
680         * output_latex.C (TeXEnvironment): make sure that there is a line
681         break before \end{foo} for the last paragraph of a document
682         (TeXOnePar): if the paragraph is at the end of the document (or
683         inset) and the language has to be reset, then make sure that the
684         line break is _before_ the language command, not after (fixes bug
685         1225); also make sure that the language reset command is the first
686         thing after the paragraph (to ensure proper nesting of
687         environments and thus fix bug 1404)
688
689 2004-04-21  John Levon  <levon@movementarian.org>
690
691         * ToolbarBackend.h:
692         * ToolbarBackend.C: make "name" be a programmatic name
693         and a gui_name field.
694
695         * lyxfunc.C: display the minibuffer on M-x
696
697 2004-04-18  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
698
699         * LaTeX.C (runMakeIndex, runBibTeX): quote correctly file name
700         (bug 1526)
701
702 2004-04-19  Angus Leeming  <leeming@lyx.org>
703
704         * BufferView_pimpl.C (setBuffer): changed preview interface.
705
706         * lyxrc.[Ch] (preview): no longer a bool. Now an enum with three
707         possible values.
708
709 2004-04-19  John Levon  <levon@movementarian.org>
710
711         * BufferView_pimpl.C:
712         * text3.C: fix bug 1569 (insert->label doesn't give suggestion)
713
714 2004-04-05  Angus Leeming  <leeming@lyx.org>
715
716         * text.C (redoParagraphs): add call to updateCounters(), thereby
717         fixing the missing "Figure #:" label from the caption of a
718         figure float.
719
720 2004-04-13  Angus Leeming  <leeming@lyx.org>
721
722         * text3.C (dispatch): call Inset::.notifyCursorLeaves when the
723         cursor is clicked out of an inset.
724
725 2004-04-13  Angus Leeming  <leeming@lyx.org>
726
727         * lyx_main.[Ch] (updateInset): pass it an InsetBase pointer rather
728         than an InsetOld one.
729
730 2004-04-12  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
731
732         * format.[Ch]: add editor to Format
733         * lyxrc.[Ch]: merge RC_FORMAT and RC_VIEWER. Add editor to Format
734         * LyXAction.C, lfuns.h, lyxfunc.C: add lfun LFUN_GRAPHICS_EDIT
735
736 2004-04-08  André Pönitz  <poenitz@gmx.net>
737
738         * metricsinfo.h: remove PainterInfo::width member
739
740 2004-04-08  Angus Leeming  <leeming@lyx.org>
741
742         * lyx_sty.C (boldsymbol_def): modify so that it outputs
743         "\providecommand" rather than "\newcommand", thereby preventing
744         clashes with packages that define "\boldsymbol" themselves.
745         Eg, beamer.
746
747 2004-04-08  Angus Leeming  <leeming@lyx.org>
748
749         * lyxrc.C (read): don't try to set the color of none, inherit, ignore
750         thereby squashing an unnecessary warning.
751
752 2004-04-01  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
753
754         * LaTeXFeatures.[Ch]: change buffer_ to a pointer and add accessor
755         setBuffer()
756
757 2004-04-07  Alfredo Braunstein  <abraunst@lyx.org>
758
759         * BufferView.C (setCursor): call redoParagraph (some insets could
760         have been opened)
761         (putSelectionAt): remove the 'double update' trick
762
763         * BufferView_pimpl.C (fitCursor): call refreshPar
764         (workAreaDispatch): remove an uneeded update call
765         (dispatch): remove some manual update calls
766
767         * cursor.[Ch]: remove cached_y_, updatePos
768         (selHandle): set noUpdate when appropriate
769
770         * lyxfunc.C (dispatch): track if we need an update
771
772         * metricsinfo.[Ch]: PainterInfo receive a Painter & on construction
773
774         * rowpainter.[Ch] (RowPainter): remove superfluous xo_ parameter
775         (paintSelection): cheap optimization, do not call cursorX when not
776         needed
777         (paintPars): change signature
778         (refreshPar): add
779         (paintText): adjust
780         (paintTextInset): adjust
781
782         * text.C: adjust
783
784 2004-04-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
785
786         * lengthcommon.C: compilation fix: remove explicit array size from
787         unit_name[] and friends
788
789 2004-04-05  Angus Leeming  <leeming@lyx.org>
790
791         * LyXAction.C (init): set LFUN_DIALOG_UPDATE's atrib flag to NoBuffer.
792
793         * lyxfunc.C (getStatus): enable LFUN_DIALOG_UPDATE if no buffer is
794         present only for the preferences dialog.
795         (dispatch): handle LFUN_DIALOG_UPDATE for the preferences dialog.
796
797 2004-04-05  Angus Leeming  <leeming@lyx.org>
798
799         * lyxrc.[Ch] (write): now takes a 'bool ignore_system_lyxrc' arg
800         to enable the frontends to export changes to lyxrc correctly.
801
802         * lyxfunc.C (dispatch): output lyxrc.write("preferences", false).
803
804 2004-04-07  André Pönitz  <poenitz@gmx.net>
805
806         * cursor.[Ch] (selClear, adjust): remove math
807
808         * cursor_slice.C: more agressive assert
809
810         * lyxfunc.C:
811         * BufferView_pimpl.C: rework mouse event dispatch
812
813         * dociterator.C:
814         * paragraph.C:
815         * text2.C:
816         * text3.C: adjust
817
818 2004-04-05  André Pönitz  <poenitz@gmx.net>
819
820         * cursor.[Ch] (valign, halign...): remove unneeded functions
821
822 2004-04-05  Angus Leeming  <leeming@lyx.org>
823
824         * lyxlength.[Ch] (unit_name et al.): const-correct.
825
826 2004-04-05  Angus Leeming  <leeming@lyx.org>
827
828         * BufferView_pimpl.C:
829         * buffer.C:
830         * counters.C:
831         * cursor.C:
832         * lyxfunc.C
833         * paragraph.C:
834         * pariterator.C:
835         * text.C:
836         * text2.C:
837         * text3.C: wrap #warning calls inside #ifdef WITH_WARNINGS blocks.
838
839 2004-04-01  Alfredo Braunstein  <abraunst@lyx.org>
840
841         * text3.C (getStatus): add LFUN_BEGINNINGBUF
842
843 2004-04-01  Alfredo Braunstein  <abraunst@lyx.org>
844
845         * lyxfind.C: add a couple of inTexted() tests + other small fixes
846         * BufferView_pimpl.[Ch] (getStatus)
847         * BufferView.[Ch] (getStatus): add
848         * lyxfunc.C (getStatus): move lfuns handled in
849         BufferView::dispatch to te function above
850         * Cursor.C (setSelection): set selection() = true
851
852 2004-04-01  Alfredo Braunstein  <abraunst@lyx.org>
853
854         * lyxfunc.C (getStatus): enable LFUN_WORD_{FIND,REPLACE}
855
856 2004-03-31  Angus Leeming  <leeming@lyx.org>
857
858         * lyxfunc.C (dispatch): Fall through to the generic
859         Dialogs::show("preamble").
860
861 2004-03-31  Angus Leeming  <leeming@lyx.org>
862
863         * lyxfunc.C (dispatch): Fall through to the generic
864         Dialogs::show("spellchecker").
865
866 2004-03-31  Angus Leeming  <leeming@lyx.org>
867
868         * lyxfunc.C (getStatus, dispatch): changed invocation of the
869         preferences dialog.
870
871 2004-03-31  Alfredo Braunstein  <abraunst@lyx.org>
872
873         * BufferView.C
874         * cursor.[Ch]
875         * dociterator.[Ch]:
876         * insetiterator.[Ch]:
877         * lyxfind.C:
878         * lyxfunc.C:
879         * pariterator.[Ch]:
880         * text2.C:
881         * undo.[Ch]: s/DocumentIterator/DocIterator/g
882
883 2004-03-31  Alfredo Braunstein  <abraunst@lyx.org>
884
885         * BufferView.C (setCursor, putSelectionAt): call edit to open the
886         insets where we are putting the cursor.
887
888 2004-03-31  Angus Leeming  <leeming@lyx.org>
889
890         * lfuns.h:
891         * LyXAction.C: new lfun LFUN_LYXRC_APPLY.
892
893         * lyxrc.[Ch] (read, write): overloaded member functions taking
894         a std::[io]stream arguments.
895
896         * lyxfunc.C (getStatus, dispatch): handle LFUN_LYXRC_APPLY.
897
898 2004-03-31  Angus Leeming  <leeming@lyx.org>
899
900         * lyxfunc.C (loadTextclass): new helper function, invoked by two of
901         dispatch's case blocks, LFUN_TEXTCLASS_APPLY and LFUN_TEXTCLASS_LOAD.
902
903         * lyxtextclass.C (load): if the text class couldn't be loaded, then
904         don't overwrite 'loaded_ = false' with 'loaded_ = true' !
905
906 2004-03-31  Angus Leeming  <leeming@lyx.org>
907
908         * lyxfunc.C (dispatch): remove the cursor-manipulation code from
909         the LFUN_ALL_INSETS_TOGGLE code.
910
911 2004-03-30  Angus Leeming  <leeming@lyx.org>
912
913         * lyxfunc.C (dispatch): the specialization Dialogs::showDocument
914         has died. Fall through to the generic Dialogs::show("document").
915
916 2004-03-30  Angus Leeming  <leeming@lyx.org>
917
918         * lfuns.h:
919         * LyXAction.C: new lfuns LFUN_LANGUAGE_BUFFER, LFUN_TEXTCLASS_APPLY,
920         LFUN_TEXTCLASS_LOAD, LFUN_SAVE_AS_DEFAULT, LFUN_BUFFERPARAMS_APPLY.
921
922         * lyxfunc.C (getStatus, dispatch): define the actions for these
923         lfuns. Little more than a cut and pste job from ControlDocument.C
924
925         * lyxtextclass.[Ch] (loaded): accessor for the private bool loaded_.
926
927 2004-03-30  Angus Leeming  <leeming@lyx.org>
928
929         * lfuns.h:
930         * LyXAction.C (init): new lfuns, LFUN_KEYMAP_TOGGLE,
931         LFUN_NEXT_INSET_TOGGLE, LFUN_ALL_INSETS_TOGGLE.
932
933         * lyxfunc.C (dispatch): LFUN_ALL_INSETS_TOGGLE is used to toggle the
934         open/closed state of ollapsable insets. Usage:
935
936         all-inset-toggle <state> <name>, where
937         <state> == "open" || "closed" || "toggle" and
938         <name> is an identifier for a 'type' of inset. Eg "branch", "ert",...
939
940         * lyxtext.h, text2.C (toggleInset): removed.
941
942         * text3.C (dispatch): split the existing LFUN_INSET_TOGGLE in two,
943         LFUN_KEYMAP_TOGGLE and LFUN_NEXT_INSET_TOGGLE. LFUN_NEXT_INSET_TOGGLE
944         now passes LFUN_INSET_TOGGLE to the found inset.
945
946         * InsetList.[Ch] (insetsOpenCloseBranch): removed. Functionality
947         is now invoked as "all-insets-toggle toggle branch".
948
949 2004-03-30  Angus Leeming  <leeming@lyx.org>
950
951         * dociterator.C:
952         * insetiterator.C:
953         * pariterator.[Ch]: added/corrected header blurb.
954
955 2004-03-30  Alfredo Braunstein  <abraunst@lyx.org>
956
957         * dociterator.[Ch]: add an inset_ member
958         (backwardPos): implemented
959         (backwardPos, forwardPos): use inset_ when the stack is empty.
960         (doc_iterator_begin, doc_iterator_end): implemented
961         * pariterator.[Ch]: adjust, add begin, end
962         * insetiterator.[Ch]: adjust, add begin, end
963         * cursor.C:
964         * document.C:
965         * BufferView.C:
966         * BufferView_pimpl.C:
967         * CutAndPaste.C: adjust
968
969 2004-03-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
970
971         * buffer.C: increment file format to 232.
972         * LaTeXFeatures.C: add bibtopic package.
973         * bufferparams.[Ch]: param \use_bibtopic.
974
975         * lyxrc.[Ch]: add lyxrc bibtex_command
976         * LaTeX.C: use rc.bibtex_command instead of hardcoded string.
977
978         * buffer.C: increment file format to 231.
979
980 2004-03-28  Alfredo Braunstein  <abraunst@lyx.org>
981
982         * dociterator.C: implement forwardPar
983         * iterators.[Ch]: remove, replaced by
984         * pariterator.[Ch]: this. derive ParIterator from DocumentIterator
985         * BufferView.C:
986         * BufferView_pimpl.C:
987         * CutAndPaste.C:
988         * buffer.C:
989         * bufferview_funcs.C:
990         * cursor.C:
991         * lyxfind.C
992         * lyxfunc.C
993         * paragraph_funcs.C
994         * toc.C:
995         * Makefile.am: adjust
996
997 2004-03-28  Alfredo Braunstein  <abraunst@lyx.org>
998
999         * CutAndPaste.C (pasteSelection): fix 2 crashes
1000         (eraseSelection): fix a crash
1001         * paragraph_funcs.C: remove a warning
1002
1003 2004-03-28  Angus Leeming  <leeming@lyx.org>
1004
1005         * lfuns.h:
1006         * LyXAction.C (init): new LFUN_PRINT.
1007
1008         * lyxfunc.C (getStatus, dispatch): handle LFUN_PRINT.
1009
1010 2004-03-27  Angus Leeming  <leeming@lyx.org>
1011
1012         * lfuns.h:
1013         * LyXAction.C (init): new LFUN_EXPORT_CUSTOM.
1014
1015         * lyxfunc.C (getStatus, dispatch): handle LFUN_EXPORT_CUSTOM.
1016
1017 2004-03-27  Angus Leeming  <leeming@lyx.org>
1018
1019         * paragraph_funcs.C (moveItem): fix memory leaks, ensure that
1020         insetlist always contains non-null pointers to insets.
1021
1022 2004-03-26  Angus Leeming  <leeming@lyx.org>
1023
1024         * src/BufferView_pimpl.C:
1025         * src/CutAndPaste.C:
1026         * src/buffer.C:
1027         * src/iterators.C:
1028         * src/output_plaintext.C:
1029         * src/outputparams.h:
1030         * src/paragraph_funcs.C:
1031         * src/rowpainter.C:
1032         * src/text.C:
1033         * src/text2.C:
1034         * src/frontends/controllers/ControlErrorList.C:
1035         * src/frontends/gtk/FileDialogPrivate.C:
1036         * src/frontends/gtk/GPainter.C:
1037         * src/frontends/gtk/GToolbar.C:
1038         * src/frontends/qt2/QRef.C:
1039         * src/mathed/math_scriptinset.C: squash compiler warnings.
1040
1041 2004-03-26  Angus Leeming  <leeming@lyx.org>
1042
1043         * ispell.C (LaunchIspell::start):
1044         * lyx_cb.C (AutoSaveBuffer::start):
1045         invoke run(DontWait) rather than runNonBlocking().
1046
1047 2004-03-26  Alfredo Braunstein  <abraunst@lyx.org>
1048
1049         * buffer_funcs.C (readFile): add cancel button to two prompt dialogs
1050
1051 2004-03-26  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1052
1053         * kbsequence.C (print): adjust
1054
1055         * kbmap.C (printKeySym): rename and change signature
1056         (printKey): use LyXKeySym::print()
1057
1058 2004-03-26  Martin Vermeer  <martin.vermeer@hut.fi>
1059
1060         * undo.C: add using std::advance to compile for stlport
1061
1062 2004-03-24  Angus Leeming  <leeming@lyx.org>
1063
1064         * lyxfunc.C (dispatch): remove test code in LFUN_QUIT handler as
1065         it leads to a crash when no buffer is present.
1066
1067 2004-03-25  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1068             Martin Vermeer  <martin.vermeer@hut.fi>
1069
1070         * lyxfunc.C (dispatch):
1071         * bufferparams.C (readToken): use the new LColor::setColor
1072
1073         * LColor.[Ch] (setColor): new version that takes two strings as
1074         argument and creates a new color entry if necessary
1075
1076 2003-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1077
1078         * buffer.C (makeLaTeXFile): if the main latex file that is
1079         processed is usually a subdocument of some master, then pretend
1080         for a while that it is actually the master
1081
1082 2003-02-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1083
1084         * buffer.C (getLabelList):
1085         (getBibkeyList): use getMasterBuffer()
1086         (getMasterBuffer): new method. Returns the main document in the
1087         case where one is using included documents.
1088
1089 2004-03-25  André Pönitz  <poenitz@gmx.net>
1090
1091         * Makefile.am:
1092         * iterators.[Ch]:
1093         * PosIterator.[Ch]: drop PosIterator, replaced by DocumentIterator
1094
1095         * ParagraphList_fwd.h: change ParagraphList to a std::vector
1096
1097         * CutAndPaste.[Ch]: simpler interface by moving some stuff from
1098         text*.C over here. Rename namespace CutAndPaste to lyx::cap
1099
1100         * ParameterStruct.h: merge with ParagraphParameters
1101
1102         * lyxtext.h: remove LyXText::parOffset() and getPar()
1103
1104         * text3.C: Remove all 'manual' update calls. We do now one per user
1105         interaction which is completely sufficient.
1106
1107         * Bidi.C:
1108         * BufferView.[Ch]:
1109         * BufferView_pimpl.C:
1110         * FontIterator.[Ch]:
1111         * MenuBackend.C:
1112         * ParagraphParameters.[Ch]:
1113         * buffer.C:
1114         * buffer.h:
1115         * bufferlist.C:
1116         * cursor.[Ch]:
1117         * cursor_slice.[Ch]:
1118         * dociterator.[Ch]:
1119         * errorlist.[Ch]:
1120         * factory.C:
1121         * lfuns.h:
1122         * lyxfind.C:
1123         * lyxfunc.C:
1124         * output_docbook.[Ch]:
1125         * output_latex.[Ch]:
1126         * output_linuxdoc.[Ch]:
1127         * output_plaintext.[Ch]:
1128         * paragraph.[Ch]:
1129         * paragraph_funcs.[Ch]:
1130         * paragraph_pimpl.[Ch]:
1131         * rowpainter.C:
1132         * tabular.[Ch]:
1133         * text.C:
1134         * text2.C:
1135         * toc.C:
1136         * undo.[Ch]: adjust
1137
1138         * frontends/controllers/ControlDocument.C:
1139         * frontends/controllers/ControlErrorList.C:
1140         * frontends/controllers/ControlSpellchecker.C:
1141         * insets/inset.C:
1142         * insets/inset.h:
1143         * insets/insetbase.h:
1144         * insets/insetbibitem.C:
1145         * insets/insetbox.C:
1146         * insets/insetbranch.C:
1147         * insets/insetcaption.C:
1148         * insets/insetcharstyle.C:
1149         * insets/insetcharstyle.h:
1150         * insets/insetcollapsable.C:
1151         * insets/insetcollapsable.h:
1152         * insets/insetert.C:
1153         * insets/insetfloat.C:
1154         * insets/insetfoot.C:
1155         * insets/insetmarginal.C:
1156         * insets/insetnote.C:
1157         * insets/insetoptarg.C:
1158         * insets/insettabular.C:
1159         * insets/insettext.C:
1160         * insets/insettext.h:
1161         * insets/insetwrap.C:
1162         * mathed/math_mboxinset.C:
1163         * mathed/math_nestinset.C:
1164         * mathed/math_scriptinset.C:
1165         * mathed/math_scriptinset.h:
1166         * support/types.h:
1167
1168 2004-03-24  Angus Leeming  <leeming@lyx.org>
1169
1170         * BufferView_pimpl.C (cursorToggle): use the cursor toggle to
1171         deal with any child processes that have finished but are waiting to
1172         communicate this fact to the rest of LyX.
1173
1174 2004-03-24  Angus Leeming  <leeming@lyx.org>
1175
1176         64-bit compile fixes.
1177
1178         * errorlist.[Ch] (pos_start, pos_end): store as lyx::pos_type.
1179         (c-tor): pass lyx::pos_types rather than ints.
1180
1181         * paragraph.[Ch] (beginOfBody, begin_of_body_): return, store as
1182         lyx::pos_type.
1183
1184         * text.C (Delete): compile fix.
1185         (getPar): ensure that function declaration is the same as that in
1186         the header file.
1187
1188 2004-03-23  Angus Leeming  <leeming@lyx.org>
1189
1190         * ispell.C (LaunchIspell):
1191         * lyx_cb.C (AutoSaveBuffer): change the signature of clone to return
1192         a boost::shred_ptr rather than a std::auto_ptr.
1193
1194 2004-03-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1195
1196         * lyxfunc.C (getStatus): handle read-only buffers correctly;
1197         handle LFUN_FILE_INSERT_*
1198
1199         * lyxrc.C (setDefaults, getDescription, output, read):
1200         * lyxrc.h: remove ps_command
1201
1202 2004-03-22  Angus Leeming  <leeming@lyx.org>
1203
1204         * lyx_main.C (error_handler, init): remove handler for SIGPIPE.
1205         Ensure that error_handler is processed once only and that all data
1206         is saved before attempting to output any warning messages.
1207
1208         * cursor.[Ch] (nopos_, noPos): remove unused member variable/function.
1209
1210 2004-03-21  Alfredo Braunstein  <abraunst@lyx.org>
1211
1212         * tabular.C (TeXRow): crash fix (from Kayvan and André)
1213
1214 2004-03-19  André Pönitz  <poenitz@gmx.net>
1215
1216         * cursor.[Ch] (reset): take main text inset as argument
1217
1218         * BufferView: adjust
1219         * BufferView_pimpl.C: adjust
1220
1221         * paragraph.[Ch]: fix completely broken operator=()
1222
1223 2004-03-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1224
1225         * LColor.C (getFromLyXName): make sure that the color name is used
1226         as lowercase.
1227
1228 2004-03-17  Angus Leeming  <leeming@lyx.org>
1229
1230         * lfuns.h:
1231         * LyXAction.C (init): remove LFUN_FORKS_KILL.
1232
1233         * lyxfunc.C (getStatus, dispatch) remove lfuns to show the forks
1234         dialog and to kill a forked process.
1235
1236 2004-03-17  Alfredo Braunstein  <abraunst@lyx.org>
1237
1238         * text2.C (setCursorFromCoordinates): fix font problem
1239
1240 2004-03-17  Alfredo Braunstein  <abraunst@lyx.org>
1241
1242         * BufferView_pimpl.C (resizeCurrentBuffer): remove unneeded and
1243         bogus "rebuild cursor" code
1244
1245 2004-03-11  André Pönitz  <poenitz@gmx.net>
1246
1247         * buffer.[Ch]: use InsetText instead of LyXText as container for
1248         the main lyx text.
1249
1250         * dociterator.[Ch]: drop the BufferView * member which is not needed
1251         anymore after the change to buffer.C
1252
1253         * paragraph_funcs.C:
1254         * text.C:
1255         * text2.C:
1256         * BufferView.[Ch]:
1257         * BufferView_pimpl.[Ch]:
1258         * cursor.[Ch]:
1259         * cursor_slice.[Ch]: adjust
1260
1261         * text3.C: fix bug in mathDispatch
1262
1263 2004-03-08  André Pönitz  <poenitz@gmx.net>
1264
1265         * undo.[Ch]: use 'StableDocumentIterator' as base for
1266         the Undo struct.
1267
1268 2004-03-07  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1269
1270         * LaTeXFeatures.C:
1271         * bufferparams.[Ch]: add jurabib support and param.
1272
1273         * LaTeX.C: add FIXME/comment.
1274
1275 2004-03-05  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1276
1277         * buffer.C: increment file format to 230.
1278
1279 2004-03-04  Alfredo Braunstein  <abraunst@lyx.org>
1280
1281         * cursor.C (dispatch): avoid infinite loops
1282
1283 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1284
1285         * rowpainter.C (paintSelection): fix x coordinates
1286
1287 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1288
1289         * text.C (rowBreakPoint): fix breaking before displayed insets
1290
1291 2004-03-01  André Pönitz  <poenitz@gmx.net>
1292
1293         * dociterator.[Ch]: new class for the 'iterator part' of LCursor.
1294
1295         * cursor.[Ch]: adjust, additioally: remove the 'current_' machinery
1296
1297         * Makefile.am:
1298         * BufferView.C:
1299         * BufferView_pimpl.C:
1300         * buffer.C:
1301         * lyxfind.C:
1302         * lyxfunc.C:
1303         * text.C:
1304         * text2.C:
1305         * text3.C: adjust
1306
1307 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1308
1309         * lyxtext.h:
1310         * text.C:
1311         * text2.C:
1312         * rowpainter.C:
1313         * BufferView_pimpl.C: rename textwidth -> maxwidth,
1314         prepareToPrint -> computeRowMetrics and remove textWidth accessor.
1315
1316 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1317
1318         * Bidi.[Ch] (computeTables): const correctness
1319         * lyxrow.[Ch]: add RowMetrics class, move there fill_separator,
1320         fill_hfill, fill_label_hfill and x from Row
1321         * lyxtext.h: prepareToPrint returns a RowMetrics
1322         * rowPainter.C: adjust
1323         * text.C (prepareToPrint): use width, not textWidth. adjust
1324         (redoParagraphInternal, cursorX): adjust
1325         * text2.C (getColumnNearX): adjust
1326         (init): put a default value to the top LyXText::width
1327
1328 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1329
1330         * FontIterator.[Ch]: move FontIterator from lyxtext.h/text.C to here
1331
1332 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
1333
1334         * lyxtext.h: add FontIterator class
1335
1336         * text.C (FontIterator, operator*, operator->, operator++): add
1337         (rowBreakPoint, setRowWidth): adjust (fixing a
1338         rebreaking bug)
1339
1340 2004-02-25  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1341
1342         * BufferView_pimpl.C (workAreaDispatch): allow also
1343         LFUN_FILE_OPEN, which is used by the drag-and-drop code.
1344
1345 2004-02-27  Alfredo Braunstein  <abraunst@lyx.org>
1346
1347         * text.C (rowBreakPoint): fix a bug showing with very large insets
1348
1349 2004-02-25  André Pönitz  <poenitz@gmx.net>
1350
1351         * text3.C:
1352         * cursor.[Ch]: move some mathed specific code to mathed
1353
1354 2004-02-21  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1355
1356         * lyxrc.C, buffer.C, exporter.C: use always a temp dir, ignore
1357         use_tempdir in preferences
1358         * buffer.C (readFile), lyxvc.C (getLogFile): check success of
1359         tempfile creation
1360         * lyx_main.C: ensure that tempdir is valid
1361         * lyxlex.h: correct typo
1362         * buffer.[Ch] (isMultiLingual), (isUnnamed): make const
1363         * paragraph.[Ch] (isMultiLingual): make const
1364         * cursor.[Ch] (openable): make const
1365
1366 2004-02-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1367
1368         * text3.C: fixed LFUN_QUOTE and add lfun arguments single/double.
1369
1370 2004-02-20  André Pönitz  <poenitz@gmx.net>
1371
1372         * dispatchresult.h: rename 'FINISHED' to 'FINISHED_LEFT'
1373
1374         * cursor.[Ch]: prepare for localized getStatus()
1375
1376         * lyxtext.h:
1377         * tabular.C:
1378         * text.C:
1379         * text2.C:
1380         * text3.C:  streamlines the LyXText cursor movement handlers a bit.
1381
1382 2004-02-20  André Pönitz  <poenitz@gmx.net>
1383
1384         * lyxfunc.[Ch]: rename view_status_message() to viewStatusMessage()
1385
1386 2004-02-16  Alfredo Braunstein  <abraunst@lyx.org>
1387
1388         * text2.C (setCursorFromCoordinates): switch to absolute coords
1389         (cursorUp): adjust
1390         (cursorDown): adjust
1391         * text3.C (dispatch): adjust
1392
1393 2004-02-16  André Pönitz  <poenitz@gmx.net>
1394
1395         * cursor.[Ch]: use new '_void_ dispatch(...)' signature (see
1396           insets/ChangeLog)
1397
1398         * cursor_slice.[Ch]: remove unneeded acessor function
1399
1400         * lyxtext.h: rename rtl() to isRTL()
1401
1402         * rowpainter.C:
1403         * tabular.C:
1404         * text.C:
1405         * text2.C:
1406         * text3.C: adjust
1407
1408 2004-02-16  Alfredo Braunstein  <abraunst@lyx.org>
1409
1410         * rowpainter.C (paintSelection): coord fix
1411
1412 2004-02-15  Georg Baum <Georg.Baum@post.rwth-aachen.de>
1413
1414         * Spacing.C: compile fix
1415
1416 2004-02-13  Alfredo Braunstein  <abraunst@lyx.org>
1417
1418         * cursor.C (dispatch): restore current_ before returning
1419
1420 2004-02-13  Alfredo Braunstein  <abraunst@lyx.org>
1421
1422         * text2.C (cursorUp, cursorDown): fix coords
1423         (moveUp): fix crash
1424
1425 2004-02-12  André Pönitz  <poenitz@gmx.net>
1426
1427         * lyxtext.h:
1428         * text.C:
1429         * text2.C:
1430         * text3.C: add LCursor & parameter to most cursor movement functions
1431           remove usage of LyXText::cursorRow() and cursorPar()
1432
1433         * cursor.[Ch]: add textRow() needed members
1434
1435         * BufferView.C:
1436         * BufferView_pimpl.C:
1437         * paragraph.[Ch]:
1438         * BufferView.C:
1439         * BufferView_pimpl.C: adjust
1440
1441 2004-02-11  André Pönitz  <poenitz@gmx.net>
1442
1443         * lyxfunc.C:
1444         * BufferView.[Ch]:
1445         * BufferView_pimpl.C: shift undo/redo handling
1446
1447         * cursor.[Ch]: fix mathed crash
1448
1449         * lyxfind.C:
1450         * lyxtext.h: move selectionAsText to LCursor
1451
1452         * output_latex.C:
1453         * paragraph.C:
1454         * text.C:
1455         * text2.C:
1456         * text3.C: adjust
1457
1458         * rowpainter.C: fix excessive drawing
1459
1460 2004-02-06  André Pönitz  <poenitz@gmx.net>
1461
1462         * BufferView.[Ch]:
1463         * BufferView_pimpl.[Ch]:
1464         * text3.C: move some text specific LFUN handling
1465
1466 2004-02-06  Alfredo Braunstein  <abraunst@lyx.org>
1467
1468         * text3.C (checkInsetHit): adjust coords
1469         * text2.C (getColumnNearX): adjust coords
1470         (edit): adjust coords
1471         * text.C (getRowNearY): add two asserts
1472
1473 2004-02-06  Martin Vermeer  <martin.vermeer@hut.fi>
1474
1475         * converter.C:
1476         * format.C: add using std::distance to compile on gcc 2.95/stlport
1477
1478 2004-02-04  Martin Vermeer  <martin.vermeer@hut.fi>
1479
1480         * cursor.[Ch]: workaround gcc 2.95 pointer comparison bug
1481
1482 2004-02-04  André Pönitz  <poenitz@gmx.net>
1483
1484         * BufferView.[Ch] (insertInset):
1485         * BufferView_pimpl.[Ch] (insertInset): remove unneeded return value
1486
1487         * text2.C:
1488         * text3.C: adjust
1489
1490 2004-02-03  Alfredo Braunstein  <abraunst@lyx.org>
1491
1492         * BufferView_pimpl.C (dispatch): remove call to LCursor::dispatch
1493         on the default clause of the switch
1494         * lyxfunc.C (dispatch): call BufferView::dispatch if the event
1495         wasn't catched by LCursor::dispatch
1496
1497 2004-02-03  André Pönitz  <poenitz@gmx.net>
1498
1499         * BufferView.C:
1500         * cursor.[Ch]: some additional asserts
1501
1502         * undo.[Ch]: remove LyXText dependency in interface
1503
1504         * lyxfunc.C: adjust
1505
1506         * lyxtext.h (firstPar, lastPar): remove dead functions
1507
1508         * text.C:
1509         * text2.C:
1510         * text3.C:
1511         * paragraph.[Ch]: adjust
1512
1513 2004-02-03  Alfredo Braunstein  <abraunst@lyx.org>
1514
1515         * lyxfind.C (find): fix argument order in call to ::find
1516
1517 2004-02-02  André Pönitz  <poenitz@gmx.net>
1518
1519         * cursor.[Ch]: remove direct access to anchor
1520
1521         * text.C: remove findText() hack
1522
1523 2004-02-02  Alfredo Braunstein  <abraunst@lyx.org>
1524
1525         * iterators.[Ch] (lockPath): remove in favour of...
1526         * BufferView.[Ch] (setCursor): this addition
1527         * BufferView.C (putSelectionAt): adjust
1528         * undo.C (performUndoOrRedo): adjust
1529         * lyxfunc.C (dispatch): adjust
1530
1531 2004-02-02  Alfredo Braunstein  <abraunst@lyx.org>
1532
1533         * iterators.C (lockPath): add a missing slice
1534         * undo.C (performUndoOrRedo): remove redundant positioning code
1535
1536 2004-02-01  Lars Gullik Bjonnes  <larsbj@gullik.net>
1537
1538         * vc-backend.C (scanMaster): ";" -> ';'
1539
1540 2004-01-31  Lars Gullik Bjonnes  <larsbj@gullik.net>
1541
1542         * lyxtextclasslist.C (less_textclass_avail_desc): inherit from
1543         std::binary_function
1544
1545         * lyxtextclass.C (compare_name): rename to...
1546         (LayoutNamesEqual): ...this
1547
1548         * lyxlex_pimpl.C (compare_tags): inherit from
1549         std::binary_function, put back into anon namespace
1550
1551         * lyxfind.C (MatchString): inherig from std::binary_function
1552         (findChange): use empty() istead of !size()
1553
1554         * format.C (FormatNamesEqual): new functor
1555         (getFormat): use it
1556         (getNumber): use it
1557         (add): use it
1558         (erase): use it
1559         (setViewer): use it
1560
1561         * converter.C (compare_Converter): rename to...
1562         (ConverterEqual): ...this, and fixup a bit.
1563         (getConverter): use it, and make function const
1564         (getNumber): use it, and make function const
1565         (add): use it
1566         (erase): use it:
1567
1568         * bufferlist.C: add using boost::bind
1569
1570         * MenuBackend.C (MenuNamesEqual): new functor
1571         (hasMenu): use it, and make function const
1572         (hasSubmenu): use nested bind to get rid of compare_memfun.
1573
1574 2004-01-30  André Pönitz  <poenitz@gmx.net>
1575
1576         * BufferView_pimpl.C:
1577         * cursor.C:
1578         * cursor.h:
1579         * cursor_slice.[Ch]:
1580         * lyxfunc.C:
1581         * lyxtext.h:
1582         * paragraph_funcs.C:
1583         * paragraph_funcs.h:
1584         * rowpainter.C:
1585         * text.C:
1586         * text2.C:
1587         * text3.C: move some of the edit(x,y) handling to the insets
1588         some coordinate changes.
1589
1590 2004-01-28  Lars Gullik Bjonnes  <larsbj@gullik.net>
1591
1592         * text.C: add using statements for std::advance and std::distance
1593
1594         * paragraph.C: add using statement for std::distance
1595
1596         * lyxfind.C: add using statement for std::advance
1597
1598         * cursor.C (region): remove std:: from swap
1599         (openable): use nucleus in stead of operator->
1600
1601         * BufferView.C: add using statements for std::distance and std::swap
1602
1603 2004-01-27  Lars Gullik Bjonnes  <larsbj@gullik.net>
1604
1605         * iterators.C: Remove the pimple, move the needed structures to
1606         the header file. Create accessor for the positions stack.
1607         (asPosIterator): remove function
1608
1609         * PosIterator.C (PosIterator): move constructors to top of file
1610         (PosIterator): reimplement the constructor taking a ParIterator in
1611         terms of setFrom.
1612         (setFrom): new function
1613         (operator!=): inline it
1614
1615 2004-01-26  Lars Gullik Bjonnes  <larsbj@gullik.net>
1616
1617         * lyxfind.C (replaceAll): use std::advance
1618
1619         * iterators.h: inherit from std::iterator.
1620
1621         * PosIterator.C (advance, distance): remove
1622         * PosIterator.h: interit from std::iterator.
1623
1624 2004-01-26  André Pönitz  <poenitz@gmx.net>
1625
1626         * BufferView.[Ch]:
1627         * BufferView_pimpl.[Ch]:
1628         * InsetList.[Ch]:
1629         * PosIterator.[Ch]:
1630         * buffer.h:
1631         * bufferview_funcs.C:
1632         * cursor.[Ch]:
1633         * cursor_slice.h:
1634         * factory.[Ch]:
1635         * iterators.[Ch]:
1636         * lyxfind.C:
1637         * lyxfunc.C:
1638         * lyxtext.h:
1639         * output_docbook.C:
1640         * output_latex.C:
1641         * output_linuxdoc.C:
1642         * output_plaintext.C:
1643         * paragraph.[Ch]:
1644         * paragraph_funcs.[Ch]:
1645         * paragraph_pimpl.[Ch]:
1646         * rowpainter.C:
1647         * tabular.C:
1648         * tabular.h:
1649         * text.C:
1650         * text2.C:
1651         * text3.C: more IU:  dumps most of the rest of the mathcursor
1652     implementation into cursor.[Ch]; "globalize" a bit of it.
1653
1654 2004-01-25  Angus Leeming  <leeming@lyx.org>
1655
1656         * lyxfunc.C (dispatch): Dialogs::showSearch is no more.
1657
1658 2004-01-19  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1659
1660         * LaTeXFeatures.h: add nice_ and nice() const
1661         * buffer.[Ch]: remove niceFile(), use LaTeXFeatures::nice() instead
1662
1663 2004-01-20  André Pönitz  <poenitz@gmx.net>
1664
1665         * BufferView.[Ch]:
1666         * BufferView_pimpl.C:
1667         * PosIterator.C:
1668         * bufferview_funcs.C:
1669         * cursor.[Ch]:
1670         * cursor_slice.[Ch]:
1671         * factory.C:
1672         * iterators.C:
1673         * lyx_cb.C:
1674         * lyxfind.C:
1675         * lyxfunc.C:
1676         * lyxtext.h:
1677         * rowpainter.C:
1678         * text.C:
1679         * text2.C:
1680         * text3.C:
1681         * undo.[Ch]: lots of IU. Shift selection stuff from the BufferView to
1682           LCursor and mathcursor parts to LCursor and InsetBase.
1683
1684 2004-01-15  André Pönitz  <poenitz@gmx.net>
1685
1686         * cursor_slice.[Ch]: add a few covienience functions
1687
1688         * funcrequest.[Ch]: remove BufferView * member
1689
1690         * BufferView_pimpl.C:
1691         * cursor.C:
1692         * factory.[Ch]:
1693         * lyxfind.[Ch]:
1694         * lyxfunc.C:
1695         * lyxtext.h:
1696         * text3.C:
1697         * undo.[Ch]: adjust to this and changed signature of Inset::priv_dispatch()
1698
1699 2004-01-14  Alfredo Braunstein  <abraunst@lyx.org>
1700
1701         * text.C (getWord): fix getWord (and thus LFUN_WORDSEL)
1702         * text3.C (dispatch): fix LFUN_WORD{RIGHT,LEFT}SEL
1703
1704 2004-01-13  André Pönitz  <poenitz@gmx.net>
1705
1706         * textcursor.[Ch]:
1707         * lyxtext.h: hide cursor and selection anchor behind accessor function
1708
1709         * BufferView.C:
1710         * BufferView_pimpl.[Ch]:
1711         * PosIterator.C:
1712         * bufferview_funcs.C:
1713         * cursor.h:
1714         * lyxfind.C:
1715         * lyxfunc.C:
1716         * text.C:
1717         * text2.C:
1718         * text3.C:
1719         * undo.C: adjust
1720
1721         * cursor.h:
1722         * cursor_slice.[Ch]: some integer type changes for inset unification
1723
1724         * lyxcursor.[hC]: remove, it's CursorSlice now.
1725
1726         * Makefile.am:
1727         * BufferView_pimpl.[Ch]:
1728         * bufferview_funcs.C:
1729         * cursor_slice.C:
1730         * lyxtext.h:
1731         * text.C:
1732         * text2.C:
1733         * text3.C:
1734         * textcursor.[Ch]: adjust
1735
1736 2004-01-08  Alfredo Braunstein  <abraunst@lyx.org>
1737
1738         * text2.C (undoSpan): add and use
1739         * text.C (breakParagraph): use undoSpan (fix bug 578)
1740         * lyxtext.h: adjust
1741
1742 2004-01-08  Angus Leeming  <leeming@lyx.org>
1743
1744         * BufferView_pimpl.C (MenuInsertLyXFile):
1745         * lyx_cb.C (WriteAs, getContentsOfAsciiFile):
1746         * lyxfunc.C (menuNew, open, doImport):
1747         FileFilterList change to the FileDialog open and save functions.
1748
1749 2004-01-07  Lars Gullik Bjonnes  <larsbj@gullik.net>
1750
1751         * ShareContainer.h: make isEqual and isUnique adaptable
1752
1753         * CutAndPaste.C: make resetOwnerAndChanges adaptable
1754
1755 2004-01-07  Angus Leeming  <leeming@lyx.org>
1756
1757         * LyXAction.C:
1758         * lfuns.h: add LFUN_WORD_FIND and LFUN_WORD_REPLACE.
1759
1760         * BufferView_pimpl.C (dispatch): act on these LFUNs.
1761
1762         * lyxfind.[Ch] (find2string, replace2string, find, replace): new
1763         functions replacing find, replace and replaceAll.
1764
1765         * lyxfunc.C (dispatch): invoke LFUN_WORD_FIND from a call to
1766         LFUN_WORDFIND(FORWARD|BACKWARD).
1767
1768 2004-01-07  Alfredo Braunstein  <abraunst@lyx.org>
1769
1770         * text.C (breakParagraph): remove an outdated #warning
1771
1772 2004-01-07  André Pönitz  <poenitz@gmx.net>
1773
1774         * lyxfind.C: somewhat clearer logic
1775
1776         * text.C: prevent crash in cursorX on unitialized row cache
1777
1778 2004-01-07  Alfredo Braunstein  <abraunst@lyx.org>
1779
1780         * lyxcursor.[Ch] (operator>): add
1781         * textcursor.C (selStart, selEnd): use std::min and std::max
1782
1783 2004-01-06  Lars Gullik Bjonnes  <larsbj@gullik.net>
1784
1785         * Chktex.C: include boost/format.hpp
1786
1787 2004-01-05  Lars Gullik Bjonnes  <larsbj@gullik.net>
1788
1789         * InsetList.C: replace functor MathcIt with adaptable functor
1790         InsetTablePosLess
1791         (insetIterator): modify accordingly
1792
1793         * BranchList.h: move the BranchNamesEqual functor here from...
1794         * BranchList.C: ... to here
1795
1796         * BranchList.C: new BranchListEqual fuctor, use it. Remove
1797         SameName and match.
1798         (add): replace a finding loop with std::find_if.
1799
1800 2003-12-31  Martin Vermeer  <martin.vermeer@hut.fi>
1801
1802         * output_docbook.C: moving LatexParam functionality into
1803         .layout files
1804
1805 2003-12-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1806
1807         * buffer.C: increment format to 229.
1808
1809 2003-12-28  Michael Schmitt  <michael.schmitt@teststep.org>
1810
1811         * LaTeXFeatures.C:
1812         * lyx_sty.[Ch]: remove minipageindent_def
1813
1814         * LyXAction.C:
1815         * factory.C:
1816         * lfuns.h:
1817         * lyxfunc.C:
1818         * text3.C: remove LFUN_INSET_MINIPAGE
1819
1820 2003-12-28  Angus Leeming  <leeming@lyx.org>
1821
1822         * text3.C (dispatch): output useful info on receipt of LFUN_GETLAYOUT.
1823
1824 2003-12-19  Alfredo Braunstein  <abraunst@lyx.org>
1825
1826         * text2.C (setParagraph): fix off-by-one crash
1827
1828 2003-12-18  Martin Vermeer  <martin.vermeer@hut.fi>
1829
1830         * output_docbook.C: header stuff for AGU
1831
1832 2003-12-17  Alfredo Braunstein  <abraunst@lyx.org>
1833
1834         * text2.C (redoCursor): remove
1835         * text.C:
1836         * text3.C:
1837         * BufferView_pimpl.C: remove calls to redoCursor and
1838         setCursor(cursor.par(), cursor.pos()) all around
1839
1840 2003-12-15  Angus Leeming  <leeming@lyx.org>
1841
1842         * buffer.C: up the format to 228.
1843
1844 2003-12-15  André Pönitz  <poenitz@gmx.net>
1845
1846         * cursor_slice.[Ch]: new class to cover texted and mathed's cursor
1847         slices
1848
1849         * Makefile.am:
1850
1851         * BufferView_pimpl.C:
1852         * cursor.[Ch]:
1853         * lyxcursor.[Ch]:
1854         * rowpainter.[Ch]:
1855         * lyxtext.h:
1856         * text.C:
1857         * text2.C:
1858         * text3.C: adjust
1859
1860 2003-12-15  Angus Leeming  <leeming@lyx.org>
1861
1862         * metricsinfo.C (ColorChanger): use LColor::getFromLyXName rather
1863         than getFromGUIName to manipulate the color.
1864
1865 2003-12-14  Angus Leeming  <leeming@lyx.org>
1866
1867         * BranchList.[Ch]: minimize the API.
1868         (Branch::getBranch, getColor): now return a 'const &'.
1869         (Branch::setSelected) now returns a bool set to true if the
1870         selection status changes.
1871         (BranchList::clear, size, getColor, setColor, setSelected,
1872         allBranches, allSelected, separator): removed.
1873         (BranchList::find): new functions, returning the Branch with
1874         the given name.
1875         (BranchList::add, remove): return a bool indicating that
1876         the operation was successful.
1877
1878         * InsetList.C (insetsOpenCloseBranch): much simplified thanks to a
1879         new InsetBranch::isBranchSlected member function.
1880
1881         * LColor.[Ch]: mimimize the API.
1882         (fill): renamed as addColor and made private.
1883         (setColor, getGUIName, getX11Name, getLaTeXName): the overloaded
1884         versions of these functions taking a string arg have been removed.
1885
1886         * bufferparams.C (readToken):
1887         * lyxfunc.C (dispatch):
1888         * lyxrc.C (read): changes due to the altered BranchList and
1889         LColor APIs.
1890
1891         * factory.C (createInset, readInset): changes due to altered
1892         InsetBranch c-tor.
1893
1894 2003-12-14  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1895
1896         * factory.C:
1897         * lyxfunc.C: remove insetminipage. "minipage-insert"
1898         now produces a frameless minipage box inset.
1899
1900 2003-12-12  Alfredo Braunstein  <abraunst@lyx.org>
1901
1902         * textcursor.[Ch] (selStart,selEnd): add new methods
1903         remove selection::start, end, use LyXCursor::operator<
1904         * lyxcursor.[Ch] (operator<): add
1905         * BufferView_pimpl.[Ch]: add new struct xsel_cache_
1906         * BufferView.[Ch] (unsetXSel): add
1907         * text2.C (clearSelection): use unsetXSel,adjust
1908         * text.C: adjust
1909         * text3.C: adjust
1910         * rowpainter.C: adjust
1911         * bufferview_funcs.C (put_selection_at): adjust
1912
1913 2003-12-12  Alfredo Braunstein  <abraunst@lyx.org>
1914
1915         * BufferView_pimpl.C: small coord. correction
1916
1917 2003-12-12  Alfredo Braunstein  <abraunst@lyx.org>
1918
1919         * BufferView_pimpl.C (workAreaDispatch): avoid crashing when
1920         dragging over the splash screen.
1921
1922 2003-12-11  Angus Leeming  <leeming@lyx.org>
1923
1924         * BufferView_pimpl.C (dispatch): remove LFUN_INSET_APPLY code
1925         as it is now handled in LyXText::dispatch.
1926
1927         * text3.C (doInsertInset): remove a level of nesting.
1928
1929 2003-12-11  Angus Leeming  <leeming@lyx.org>
1930
1931         * factory.C (createInset): changes due to the changed interface to
1932         InsetCommandMailer::string2params.
1933
1934 2003-12-10  Angus Leeming  <leeming@lyx.org>
1935
1936         * lyxfunc.C (dispatch): enable all inset dialogs to be opened with
1937         'dialog-show-new-inset <inset name>'
1938
1939 2003-12-10  Angus Leeming  <leeming@lyx.org>
1940
1941         * buffer.C: up the format to 227.
1942
1943         * factory.C: the box inset is now identified simply by 'Box'.
1944
1945 2003-12-10  Angus Leeming  <leeming@lyx.org>
1946
1947         * buffer.C: up the format to 226.
1948
1949         * factory.C: the note inset is now identified simply by 'Note'.
1950
1951 2003-12-08  Alfredo Braunstein  <abraunst@libero.it>
1952
1953         * lyxtext.h, text2.C (setLayout): don't use cursor to iterate,
1954         when a pit is enough. Standarize a couple of loops.
1955
1956 2003-12-05  Angus Leeming  <leeming@lyx.org>
1957
1958         * lyxfunc.C (dispatch): DIALOG_SHOW now handles "latexlog" and
1959         "vclog" explicitly, passing the appropriate "<logtype> <filename>"
1960         data to the re-worked "log" dialog.
1961
1962 2003-12-03  André Pönitz  <poenitz@gmx.net>
1963
1964         * PosIterator.C:
1965         * iterators.C:
1966         * lyxtext.h:
1967         * output_latex.C:
1968         * paragraph_funcs.C:
1969         * text.C:
1970         * text2.C: use Inset::getText instead of Inset::getParagraph
1971
1972 2003-12-03  André Pönitz  <poenitz@gmx.net>
1973
1974         * buffer.[Ch]:
1975         * lyxtext.h:
1976         * paragraph_funcs.[Ch]: consolidate parts of Buffer::read() and
1977         InsetText::read() as LyXText::read()
1978
1979 2003-12-02  Angus Leeming  <leeming@lyx.org>
1980
1981         * lyxlex.[Ch] (operator void const *): add the 'const' to the return
1982         type. Add a comment in the implementation that the function uses
1983         the stream's bad() function rather than fail() as the std::streams
1984         would do.
1985
1986 2003-12-02  André Pönitz  <poenitz@gmx.net>
1987
1988         * lyxlex.[Ch]: make interface more similar to std::stream
1989
1990         * lyxlex_pimpl.[Ch]: don't use '__' in identifiers
1991
1992 2003-12-01  Martin Vermeer  <martin.vermeer@hut.fi>
1993
1994         * lyxtextclass.[Ch]: add latexparam to CharStyle inset
1995
1996 2003-12-01  Michael Schmitt  <michael.schmitt@teststep.org>
1997
1998         * vspace.[Ch]: remove VSpace::NONE
1999
2000 2003-12-01  André Pönitz  <poenitz@gmx.net>
2001
2002         * buffer.[Ch]:
2003         * lyxtext.h: move ParagraphList member to LyXText
2004         rename LyXText::ownerParagraphs to LyXText::paragraph
2005
2006         * CutAndPaste.C:
2007         * bufferview_funcs.C:
2008         * iterators.[Ch]:
2009         * lyx_cb.C:
2010         * paragraph.C:
2011         * rowpainter.C:
2012         * tabular.C:
2013         * text.C:
2014         * text2.C:
2015         * text3.C: adjust
2016
2017         * lyxfunc.C: move LFUN_INSET_TOGGLE handling to insets.
2018
2019         * undo.C: fix cursor positioning
2020
2021 2003-12-01  John Levon  <levon@movementarian.org>
2022
2023         * BufferView_pimpl.C: fix a crash on exit with
2024         a buffer open
2025
2026 2003-11-30  Martin Vermeer  <martin.vermeer@hut.fi>
2027
2028         * BranchList.C: fix setSelected() method.
2029
2030 2003-11-28  André Pönitz  <poenitz@gmx.net>
2031
2032         * ParagraphParameters.[Ch]:
2033         * ParameterStruct.h: remove space above/below from Paragraph to
2034          InsetVSpace
2035
2036         * BufferView_pimpl.C:
2037         * factory.C:
2038         * lyxfunc.C:
2039         * lyxtext.h:
2040         * output_latex.C:
2041         * paragraph.C:
2042         * paragraph_funcs.C:
2043         * rowpainter.[Ch]:
2044         * text.C:
2045         * text2.C:
2046         * text3.C: adjust
2047
2048 2003-11-28  Martin Vermeer  <martin.vermeer@hut.fi>
2049
2050         * factory.C: Syntax change for CharStyles
2051
2052 2003-11-28  André Pönitz  <poenitz@gmx.net>
2053
2054         * BufferView.[Ch]:
2055         * BufferView.[Ch]:
2056         * buffer.[Ch]:
2057         * buffer.[Ch]: move LyXText member
2058
2059 2003-11-28  André Pönitz  <poenitz@gmx.net>
2060
2061         * BufferView.[Ch]: make LyXText * text a private member
2062
2063         * BufferView_pimpl.C:
2064         * cursor.C:
2065         * iterators.C:
2066         * lyx_cb.C:
2067         * lyxfind.C:
2068         * lyxtext.h:
2069         * rowpainter.[Ch]:
2070         * text.C:
2071         * text2.C:
2072         * undo.C: adjust
2073
2074         * output_plaintext.C: cleanup
2075
2076 2003-11-27  Martin Vermeer  <martin.vermeer@hut.fi>
2077
2078         * buffer.C:
2079         * lyxtextclass.[Ch]: parametrize SGML document header
2080
2081 2003-11-27  Martin Vermeer  <martin.vermeer@hut.fi>
2082
2083         * converter.[Ch]:
2084         * exporter.C: replace bool-valued Pdflatex() by FLAVOR-valued
2085         getFlavor().
2086
2087 2003-11-27  Alfredo Braunstein  <abraunst@lyx.org>
2088
2089         * text2.C (setFont): rework using PosIterator (no more recursive)
2090         (setCharFont): no more needed
2091         (setLayout): no more selection cursors fiddling (done by redoCursor)
2092         * text.C: cursorRight(bv)->cursorRight(true) (TODO: find and
2093         destroy remaining ones)
2094
2095 2003-11-26  Alfredo Braunstein  <abraunst@lyx.org>
2096
2097         * bufferview_funcs.[Ch]: split changeDepthAllowed from changeDepth
2098         * lyxtext.h: ditto
2099         * text2.C: same thing + updateCounters fix + redoCursor also adjusts
2100         selection cursors
2101         * lyxfunc.C: adjust
2102         * text3.C: adjust + re-allow multi par depth changes
2103         * textcursor.C: simplify a bit
2104
2105 2003-11-25  Martin Vermeer  <martin.vermeer@hut.fi>
2106
2107         * src/buffer.C:
2108         * src/lyxlayout.C:
2109         * src/lyxlayout.h:
2110         * src/lyxtext.h:
2111         * src/output_docbook.C:
2112         * src/output_latex.C:
2113         * src/paragraph.C:
2114         * src/paragraph.h:
2115         * src/sgml.C:
2116         * src/sgml.h:
2117         * src/text2.C: Introducing a number of tags parametrizing various
2118         XML formats that we may want to support
2119
2120 2003-11-25  André Pönitz  <poenitz@gmx.net>
2121
2122         * InsetList.[Ch] (begein, end): inline as suggested by profiler
2123
2124         * lyxtext.h (leftMargin/rightMargin): simplify interface
2125
2126         * rowpainter.C:
2127         * text.C:
2128         * text2.C:
2129         * text3.C: adjust
2130
2131 2003-11-24  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
2132
2133         * lyxfunc.C (dispatch): propogate the bibtex databases from the
2134         master file to any child files. Fixes bug 546.
2135
2136 2003-11-24  Alfredo Braunstein  <abraunst@lyx.org>
2137
2138         * lyxfind.C (findNextChange): remove unneeded bv->text->init call
2139
2140 2003-11-24  André Pönitz  <poenitz@gmx.net>
2141
2142         * rowpainter.C: simplification
2143
2144         * text2.C (updateCounters): remove call to redoParagraph on
2145         changed labels as this is far too expensive.
2146
2147 2003-11-24  Alfredo Braunstein  <abraunst@lyx.org>
2148
2149         * converter.C (convert): fix a crash: this function gets
2150         called with buffer == 0 from importer code.
2151
2152 2003-11-22  Lars Gullik Bjonnes  <larsbj@gullik.net>
2153
2154         * text3.C (cursorPrevious): make sure that we do not compare
2155         iterators form different containers.
2156         (cursorNext): ditto
2157
2158         * rowpainter.C (paintSelection): make sure that we do not compare
2159         iterators from different containers.
2160
2161         * text3.C (dispatch): [PRIOR] make sure that we do not compare
2162         iterators from different ParagraphList containers.
2163         [NEXT] ditto
2164
2165         * text2.C (LyXText): change order of initialization slightly
2166         (operator=): new function. copy all variables except cache_par_
2167         (moveUp): make sure that we do not compare iterators from
2168         different ParagraphList constainers.
2169         (moveDown): ditto
2170
2171         * text.C (firstPar): new function
2172         (lastPar): new function
2173         (endPar): new function
2174
2175         * lyxtext.h: move things around and group public functions, public
2176         variables, private functions, private variables
2177
2178 2003-11-21  Michael Schmitt  <michael.schmitt@teststep.org>
2179
2180         * factory.C: change call to InsetERT constructor to avoid
2181         additional invocation of method status
2182         * text2.C (toggleInset): remove redundant update() call
2183         * InsetList.[Ch] (insetsOpenCloseBranch): Pass Buffer reference
2184         instead of a Bufferview pointer
2185
2186 2003-11-21  André Pönitz  <poenitz@gmx.net>
2187
2188         * rowpainter.C: simplification
2189
2190 2003-11-21  Alfredo Braunstein  <abraunst@lyx.org>
2191
2192         * text3.C (dispatch): make possible to extend a word/row selection
2193         with the mouse
2194
2195 2003-11-21  Alfredo Braunstein  <abraunst@lyx.org>
2196
2197         * lyxtext.h: x0_,y0_ -> xo_,yo_
2198         * text2.C (cursorUp, cursorDown): adjust + some cursorRow use
2199         * text3.C (checkInsetHit): fix coordinates using absolute xo_,yo_
2200         * rowpainter.C (paintRows): paint full paragraphs
2201
2202 2003-11-20  Alfredo Braunstein  <abraunst@lyx.org>
2203
2204         * text2.C (cursorUp, cursorDown): small fix (insettext::edit takes
2205         screen coordinates)
2206
2207 2003-11-20  Alfredo Braunstein  <abraunst@lyx.org>
2208
2209         * lyxtext.h: add x0_, y0_
2210         * text3.C (cursorPrevious, cursorNext): rewrite (using x0_, y0_)
2211         * text2.C (cursorDown, cursorUp): rewrite (using x0_, y0_)
2212
2213 2003-11-18  Alfredo Braunstein  <abraunst@lyx.org>
2214
2215         * text2.C (setCursorIntern): move the x_target update here *
2216         * text3.C: change some bv() to true/false in calls to
2217         cursorUp/Down/Right/Left
2218         * cursor.C: use helper function.
2219
2220 2003-11-17  Alfredo Braunstein  <abraunst@lyx.org>
2221
2222         * BufferView_pimpl.C: send LFUN_MOUSE_MOTION to the cursor
2223         * paragraph_funcs.[Ch]: correct comment
2224         * rowpainter.C: do not paint selections away from bv->cursor()
2225         Fix a long standing selection painting bug.
2226         * text3.C: generalize mouse-selection code to LyXTexts other that
2227         top one
2228         * textcursor.C: do not use y coords if we can use par offsets
2229
2230 2003-11-17  Alfredo Braunstein  <abraunst@lyx.org>
2231
2232         * lyxfunc.C (dispatch): add a missing LCursor::updatePos (fix
2233         cursor position after e.g. inset insert)
2234
2235 2003-11-16  Alfredo Braunstein  <abraunst@lyx.org>
2236
2237         * lyxfind.C (replace): adjust to locking removal + some
2238         code simplification
2239
2240 2003-11-14  Alfredo Braunstein  <abraunst@lyx.org>
2241
2242         * cursor.C (dispatch): dispatch to BufferView::dispatch at the end
2243         of the path
2244
2245 2003-11-14  Martin Vermeer  <martin.vermeer@hut.fi>
2246
2247         * lyxlayout.[Ch]:
2248         * output_docbook.C: XML sanitation: new layout
2249         parameters InnerTag and CommandDepth
2250
2251 2003-11-13  Martin Vermeer  <martin.vermeer@hut.fi>
2252
2253         * BufferView_pimpl.C:
2254         * factory.C:
2255         * text3.C: Fix the insertion and modification of button-style
2256         insets
2257
2258 2003-11-13  André Pönitz  <poenitz@gmx.net>
2259
2260         * InsetList.[Ch]: remove deleteLyXText
2261
2262         * paragraph.[Ch]: cache beginOfBody position
2263
2264         * Bidi.C:
2265         * text.C:
2266         * text2.C:
2267         * text3.C: remove superfluous update() calls
2268
2269         * vspace.C: cleanup
2270
2271 2003-11-13  Alfredo Braunstein  <abraunst@lyx.org>
2272
2273         * BufferView_pimpl.C (fitCursor): call screen().fitCursor()
2274         * BufferView.C (fitLockedInsetCursor): remove
2275         * cursor.[Ch] (getDim): add
2276         * text.C (getRowNearY): add faster version
2277         * text3.C: remove some update calls
2278
2279 2003-11-12  Martin Vermeer  <martin.vermeer@hut.fi>
2280
2281         * LaTeXFeatures.C:
2282         * LyXAction.C:
2283         * MenuBackend.C:
2284         * MenuBackend.h:
2285         * dispatchresult.h:
2286         * factory.C:
2287         * lfuns.h:
2288         * lyxfunc.C:
2289         * lyxtextclass.C:
2290         * lyxtextclass.h:
2291         * text3.C: The Character Style /XML short element patch.
2292
2293 2003-11-11  Martin Vermeer  <martin.vermeer@hut.fi>
2294
2295         * text3.C:
2296         * factory.C: Small step to solving 'unable to insert some insets'
2297         problem
2298
2299 2003-11-11  Alfredo Braunstein  <abraunst@lyx.org>
2300
2301         * cursor.[Ch] (updatePos): new function for updating the y
2302         position of the tip inset
2303         * bufferview_funcs.C (put_selection_at):
2304         * BufferView_pimpl.C (workAreaDispatch): rationalise update calls
2305
2306 2003-11-11  André Pönitz  <poenitz@gmx.net>
2307
2308         * text.C: remove big comment on invalid Paragraph pointers as it is
2309         not valid anymore
2310
2311 2003-11-11  André Pönitz  <poenitz@gmx.net>
2312
2313         * text_funcs.[Ch]: merge with ...
2314
2315         * text.C: ... this
2316
2317         * lyxtext.h:
2318         * text2.C:
2319         * text3.C: adjust
2320
2321         * Makefile.am: remove text_funcs.[Ch]
2322
2323 2003-11-11  Alfredo Braunstein  <abraunst@libero.it>
2324
2325         * cursor.C (getPos): return absolute cached y coord
2326
2327         * BufferView_pimpl.C (fitCursor): new simplistic code
2328         (workAreaDispatch): add a fitCursor call
2329
2330 2003-11-10  André Pönitz  <poenitz@gmx.net>
2331
2332         * BufferView.[Ch]:
2333         * BufferView_pimpl.[Ch]: merge update() and updateInset()
2334
2335 2003-11-10  André Pönitz  <poenitz@gmx.net>
2336
2337         * lfuns.h: new LFUN_FINISHED_LEFT, LFUN_FINISHED_RIGHT,
2338         LFUN_FINISHED_UP, LFUN_FINISHED_DOWN used in dispatch to
2339         indicate that the cursor needs to leave an inset
2340
2341         * lyxtext.h: remove inset locking
2342
2343         * cursor.[Ch]: re-implement functionality provided by inset locking
2344
2345         * BufferView.[Ch]:
2346         * BufferView_pimpl.[Ch]:
2347         * LyXAction.C:
2348         * bufferview_funcs.[Ch]:
2349         * factory.C:
2350         * funcrequest.[Ch]:
2351         * iterators.C:
2352         * lyx_cb.C:
2353         * lyxfind.C:
2354         * lyxfunc.C:
2355         * text.C:
2356         * text2.C:
2357         * text3.C:
2358         * undo.C: adjust
2359
2360 2003-11-07  Alfredo Braunstein  <abraunst@libero.it>
2361
2362         * PosIterator.[Ch]: replace the stack with a vector, add inset
2363         accesor
2364         * iterators.[C]: adjust
2365
2366 2003-11-06  Alfredo Braunstein  <abraunst@libero.it>
2367
2368         * lyxfind.C (replaceAll): mark the buffer dirty if something was
2369         replaced
2370         * paragraph_funcs.C (readParToken): put the correct id in the
2371         error item, not the id of the top paragraph
2372
2373 2003-11-06  Alfredo Braunstein  <abraunst@libero.it>
2374
2375         * iterators.[Ch] (ParIterator): new PosIterator-based ctor
2376         * bufferview_funcs.C (put_selection_at): use the above
2377
2378 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
2379
2380         * text2.C (deleteEmptyParagraphMechanism): fix n-th crash
2381
2382 2003-11-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2383
2384         * output_linuxdoc.h:
2385         * output_plaintext.h:
2386         * output.h:
2387         * output_docbook.h: add #include statements
2388
2389 2003-11-05  José Matos  <jamatos@lyx.org>
2390
2391         * output_docbook.[Ch]:
2392         * output_latex.[Ch]:
2393         * output_linuxdoc.[Ch]:
2394         * output_plaintext.[Ch]: New files for output formats.
2395         * output.[Ch]: New file for helper functions.
2396
2397         * buffer.[Ch]:
2398         * paragraph_funcs.[Ch]: output functions moved to new files.
2399
2400         * outputparams.h: rename of latexrunparams.h
2401
2402         * LaTeX.[Ch]:
2403         * buffer.[Ch]:
2404         * bufferlist.[Ch]:
2405         * converter.[Ch]:
2406         * exporter.C:
2407         * paragraph.[Ch]:
2408         * paragraph_funcs.[Ch]:
2409         * paragraph_pimpl.[Ch]:
2410         * tabular.[Ch]: rename ascii to plaintext
2411         and LatexRunParams to OutputParams.
2412
2413 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
2414
2415         * iterators.[Ch] (text): require bv argument
2416         * undo.C (recordUndo):
2417         * lyxfunc.C (dispatch):
2418         * bufferview_funcs.C (put_selection_at): adjust
2419
2420 2003-11-05  João Luis M. Assirati  <assirati@fma.if.usp.br>
2421
2422         * lyxsocket.C: export variables XEDITOR and LYXSOCKET
2423
2424 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
2425
2426         * lyxfunc.C (dispatch): make LFUN_GOTO_PARAGRAPH work with deep
2427         nestings
2428
2429 2003-11-04  André Pönitz  <poenitz@gmx.net>
2430
2431         * cursor.[Ch]: restructure
2432
2433         * BufferView.[Ch]:
2434         * BufferView_pimpl.[Ch]: new LCursor cursor_ member
2435
2436         * iterators.[Ch] (asCursor): remove
2437
2438         * lfuns.h: remove LFUN_INSET_EDIT
2439
2440         * lyxfunc.C:
2441         * tabular.C:
2442         * text.C:
2443         * text2.C:
2444         * text3.C: use Inset::edit() instead of dispatch(LFUN_INSET_EDIT)
2445
2446 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
2447
2448         * lyxfind.[Ch]: complete overhaul
2449         * BufferView_pimpl.C:
2450         * lyxfunc.C: adjust
2451         * paragraph.[Ch] (insert): add
2452
2453 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
2454
2455         * BufferView.[Ch]:
2456         * lyxtext.h:
2457         * text.C: remove dead spellcheck code
2458
2459 2003-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
2460
2461         * dispatchresult.h: add a val setter
2462
2463         * cursor.C (dispatch): use a tempvar for data_[i]
2464
2465 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
2466
2467         * PosIterator.[Ch]: compile fix
2468
2469 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
2470
2471         * text.C (cursorPar): deactivate the cursor cache
2472
2473 2003-11-03  Alfredo Braunstein  <abraunst@libero.it>
2474
2475         * undo.C (performUndoOrRedo): fix cursor positioning with lockPath
2476
2477 2003-11-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
2478
2479         * text3.C (dispatch): adjust for new DisptchResult semantics.
2480
2481         * lyxfunc.C (dispatch): handle update when return from
2482         Cursor::dispatch, adjust for new DispatchResult semantics.
2483
2484         * dispatchresult.h: drop NOUPDATE from dispatch_result_t. Make
2485         DispatchResult(true) mean to not update. Add class functions for
2486         setting dispatched and update, as well as reading.
2487
2488         * cursor.C (dispatch): don't handle update here
2489
2490 2003-11-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
2491
2492         * trans_mgr.h: store t1_ and t2_ in scoped_ptr
2493         * trans_mgr.C: adjust
2494
2495         * paragraph_funcs.C (readParToken): exception safety
2496
2497         * lyxvc.h: store the vcs pointer in a scoped_ptr
2498         * lyxvc.C: adjust
2499
2500         * lyxsocket.C (serverCallback): exception safety
2501
2502         * lyx_cb.C (AutoSaveBuffer): make it return a auto_ptr
2503
2504         * ispell.C (clone): make it return a auto_ptr
2505
2506         * factory.C (createInset): exception safety
2507         (readInset): exception safety
2508
2509         * bufferlist.C (newBuffer): exception safety
2510
2511         * Thesaurus.C (Thesaurus): use initialization for aik_
2512
2513         * MenuBackend.C (expandToc): exception safety.
2514
2515 2003-11-03  André Pönitz  <poenitz@gmx.net>
2516
2517         * buffer.C:
2518         * buffer.h:
2519         * bufferview_funcs.C: remove getInsetFromId()
2520
2521         * lyxcursor.[Ch]:
2522         * BufferView.[Ch]: move x_fix from LyXCursor to BufferView
2523
2524         * lyxfunc.C:
2525         * text2.C:
2526         * text3.C: adjust
2527
2528 2003-11-03  Alfredo Braunstein  <abraunst@libero.it>
2529
2530         * PosIterator.C (distance, advance): new
2531         * bufferview_funcs.[Ch] (put_selection_at): new
2532         * iterators.[Ch] (lockPath): new
2533
2534 2003-11-02  Alfredo Braunstein  <abraunst@libero.it>
2535
2536         * iterators.[Ch] (asPosIterator): added
2537         * buffer.[Ch] (pos_iterator_begin, pos_iterator_end): added
2538         * PosIterator.[Ch]: added
2539
2540 2003-11-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2541
2542         * text3.C:
2543         * lyxfunc.C:
2544         * cursor.C (dispatch):
2545         * BufferView_pimpl.C (dispatch): adjust for DispatchResult changes
2546
2547         * dispatchresult.h: remove UNDISPATCHED, DISPATCHED and
2548         DISPATCHED_NOUPDATE from dispatch_result_t, add NONE. Add a
2549         contructor, add a class function dispatched. Remove operator>=
2550
2551 2003-11-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2552
2553         * debug.C: only use the default constructor for debugstream
2554         (lyxerr) here.
2555
2556         * main.C (main): include debug.h and setup the lyxerr streambuf
2557         here.
2558
2559 2003-10-31  José Matos  <jamatos@lyx.org>
2560
2561         * paragraph_funcs.C (addDepth, asciiParagraph): move from buffer.C
2562
2563         * buffer.[Ch] (writeFileAscii, makeLinuxDocFile, makeDocBookFile):
2564         * paragraph.[Ch] (simpleLinuxDocOnePar, simpleDocBookOnePar, asString):
2565         * paragraph_funcs.[Ch] (linuxdocParagraphs, docbookParagraphs):
2566         * paragraph_pimpl.C (simpleTeXSpecialC):
2567         * tabular.[Ch] (linuxdoc, docbookRow, docbook, ascii):
2568         add LatexRunParams argument.
2569
2570         * exporter.C (Export): change call accordingly.
2571
2572         * latexrunparams.h: add new member to take care of the other backends.
2573 2003-10-30  José Matos  <jamatos@lyx.org>
2574
2575         * buffer.C (makeLinuxDocFile, makeDocBookFile):
2576         * paragraph_funcs.[Ch] (linuxdocParagraphs, docbookParagraphs):
2577         factorise code for paragraph output.
2578         * buffer.[Ch]:
2579         * paragraph.[Ch] (simpleLinuxDocOnePar, simpleDocBookOnePar):
2580         move functions.
2581
2582 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
2583
2584         * text3.C (dispatch):
2585         * lyxfunc.C (dispatch):
2586         * cursor.C (dispatch):
2587         * BufferView_pimpl.C (dispatch): explict DispatchResult ctor fallout.
2588
2589         * dispatchresult.h: make the dispatch_result_t ctor explicit
2590
2591 2003-10-29  Martin Vermeer  <martin.vermeer@hut.fi>
2592
2593         * sgml.[Ch]:
2594         * buffer.C: small refactoring of docbook stuff
2595
2596 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
2597
2598         * dispatchresult.h: remove FINISHED_POP as FINISHED has the same
2599         meaning.
2600
2601 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
2602
2603         * dispatchresult.h: rename DISPATCHED_POP to FINISHED_POP, remove
2604         operator dispatch_result_t, and operators for == != and >=
2605
2606         * cursor.C (dispatch): adjust for operator dispatch_result_t
2607         removal. comment out call to update
2608
2609         * BufferView_pimpl.C (dispatch): dont implicit covert to bool
2610
2611 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
2612
2613         * text3.C:
2614         * text2.C:
2615         * text.C:
2616         * lyxtext.h:
2617         * lyxfunc.C:
2618         * cursor.C:
2619         * BufferView_pimpl.C: dispatch_result -> DispatchResult changes.
2620         (dispatch):
2621
2622         * dispatchresult.h: new file, DispatchResult broken out of
2623         insets/insetbase.h
2624
2625         * Makefile.am (lyx_SOURCES): add dispatchresult.h
2626
2627 2003-10-28  Alfredo Braunstein  <abraunst@libero.it>
2628
2629         * text.C (rowBreakPoint): put a hack inside #if 0
2630
2631 2003-10-28  André Pönitz  <poenitz@gmx.net>
2632
2633         * lyxtext.h:
2634         * metricsinfo.C:
2635         * paragraph_funcs.C:
2636         * rowpainter.C:
2637         * text.C:
2638         * text2.C: general cleanup (lots of small stuff)
2639
2640 2003-10-28  Alfredo Braunstein  <abraunst@libero.it>
2641
2642         * text2.C (cursorEnd): simple fix to the "end key goes to one
2643         before the end on last row" bug
2644
2645 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
2646
2647         * text.C (backspace): fix the "zombie characters"
2648
2649 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
2650
2651         * lyxfunc.C (dispatch): small fix to toc navigation inside branches
2652
2653 2003-10-27  André Pönitz  <poenitz@gmx.net>
2654
2655         * lfuns.h: new LFUN_REPEAT, LFUN_INSERT_LINE, LFUN_INSERT_PAGEBREAK
2656
2657         * factory.C: handle new InsetPagebreak, InsetLine
2658
2659         * ParagraphParameters.h: remove [line|pagebreak]_[above|below]
2660         and move handling into new InsetPagebreak, InsetLine
2661
2662         * BufferView_pimpl.C:
2663         * LyXAction.C:
2664         * ParagraphParameters.C:
2665         * ParameterStruct.h:
2666         * lyxfunc.C:
2667         * lyxtext.h:
2668         * paragraph.C:
2669         * paragraph.h:
2670         * paragraph_funcs.C:
2671         * paragraph_pimpl.C:
2672         * rowpainter.C:
2673         * text.C:
2674         * text2.C:
2675         * text3.C: adjust
2676
2677 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
2678
2679         * text.C:
2680         * lyxrow_funcs.[Ch]:
2681         * Bidi.C:
2682         * paragraph.C:
2683         * lyxtext.h:
2684         * rowpainter.C:
2685         * text2.C:
2686         * text3.C: remove lastPos uses in favour of Row::endpos
2687
2688 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
2689
2690         * undo.C (performUndoOrRedo): fix two crashes by setting a
2691         cursor by hand and reordering some calls. Use bv->lockInset instead
2692         of inset->edit because the latter loses cursor information
2693
2694 2003-10-25  Alfredo Braunstein  <abraunst@libero.it>
2695
2696         * text.C (prepareToPrint): fix linebreak rowbreaking as suggested
2697         by Martin
2698         (rowBreakPoint): fix width. change point to point + 1.
2699         Add a missing check.
2700
2701 2003-10-25  Martin Vermeer  <martin.vermeer@hut.fi>
2702
2703         * MenuBackend.C:
2704         * lyxfunc.C: fix (at least partly) the problems
2705         with the Nav menu and headers inside branch insets
2706         reported by Kayvan
2707
2708 2003-10-24  Alfredo Braunstein  <abraunst@libero.it>
2709
2710         * paragraph.C (getChar): add strong asserts
2711
2712         * lyxrow_funcs.C (lastPos): remove hideous hack
2713
2714         * text.C (addressBreakPoint, rowBreakPoint): put endpos in place
2715         (fill): adjust to that (avoid an infinite loop)
2716
2717 2003-10-23  Alfredo Braunstein  <abraunst@libero.it>
2718
2719         * text3.C (cursorPrevious, cursorNext): fix 2 "dontlikes"
2720
2721 2003-10-23  André Pönitz  <poenitz@gmx.net>
2722
2723         * RowList_fwd.h: change list<> to vector<> to gain speed
2724         after suggestion from Alfredo
2725
2726 2003-10-23  Alfredo Braunstein  <abraunst@libero.it>
2727
2728         * lyxtext.h: move the bidi stuff from here...
2729         * text.C: and here
2730         * text2.C: and here
2731         * Bidi.[Ch]: ... to here
2732
2733 2003-10-23  André Pönitz  <poenitz@gmx.net>
2734
2735         * lyxtext.h:
2736         * text.C (isLastRow, isFirstRow): new functions
2737
2738         * paragraph.h: new width cache member
2739
2740         * rowpainter.C: replace RowList::iterator with Row & where possible
2741
2742         * lyxfunc.C: replace several view()->text with a single call
2743
2744         * toc.C: fix 'unused' warning
2745
2746 2003-10-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
2747
2748         * lyxlex_pimpl.C (setFile,setStream): be sure to use correct types
2749         when woring with stream::pos_type
2750         * paragraph_pimpl.C (simpleTeXSpecialChars): ditto
2751
2752 2003-10-22  André Pönitz  <poenitz@gmx.net>
2753
2754         * lyxtext.h:
2755         * text.C: use Row & instead of RowList::iterator
2756
2757         * lyxrow.h: rename end() to endpos()
2758
2759         * rowpainter.C:
2760         * text.C:
2761         * text2.C: adjust
2762
2763 2003-10-22  Angus Leeming  <leeming@lyx.org>
2764
2765         * buffer.[Ch] (fully_loaded): new member function, returning true
2766         only when the file has been loaded fully.
2767         Used to prevent the premature generation of previews and by the
2768         citation inset to prevent computation of the natbib-style label.
2769
2770         * buffer_funcs.C (newFile): set Buffer::fully_loaded once the
2771         templates are all set up.
2772
2773         * factory.C (createInset): remove call to InsetCitation::setLoadingBuffer.
2774
2775 2003-10-22  Martin Vermeer  <martin.vermeer@hut.fi>
2776
2777         * text.C: fixed an "oops" in the "is a bit silly"
2778         bug fix
2779
2780 2003-10-21  André Pönitz  <poenitz@gmx.net>
2781
2782         * FuncStatus.[Ch]: small stuff, whitespace
2783
2784         * lyxfont.[Ch]: operator<<() for debug reasons
2785
2786         * lyxfunc.C:
2787         * lyxrow_funcs.C:
2788         * lyxtext.h: whitespace, spelling
2789
2790         * paragraph.C: naming of variables
2791
2792         * text.C:
2793         * text2.C: small stuff
2794
2795
2796 2003-10-21  Martin Vermeer  <martin.vermeer@hut.fi>
2797
2798         * text.C: (1) finish off the inset display() work;
2799         (2) fix the "is a bit silly" bug (accessing char
2800         past end of par).
2801
2802 2003-10-20  Martin Vermeer  <martin.vermeer@hut.fi>
2803
2804         * text.C: re-introduce display() for insets, fixing the
2805         various bugs (stretch of line above, math inset
2806         positioning, ...)
2807
2808 2003-10-20  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2809
2810         * text.C (rightMargin): remove spurious semicolon
2811
2812         * lengthcommon.C: add empty unit_name* entries for UNIT_NONE (bug
2813         1415)
2814
2815 2003-10-18  Martin Vermeer  <martin.vermeer@hut.fi>
2816
2817         * text3.C: fix one crash due to wrong cursor def
2818
2819 2003-10-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
2820
2821         * vc-backend.C (scanMaster): make the regex static
2822
2823         * LaTeX.C (scanAuxFile): make the regexs static
2824
2825         * text3.C (doInsertInset, dispatch, dispatch):
2826         * text2.C (cursorUp, cursorDown):
2827         * text.C (selectNextWordToSpellcheck):
2828         * BufferView_pimpl.C (dispatch):
2829         * lyxfunc.C (dispatch):  localDispatch -> dispatch
2830
2831 2003-10-14  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2832
2833         * lyxsocket.C: include <cerrno>
2834
2835 2003-10-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
2836
2837         * lyxfunc.C (dispatch): remove textcache stuff
2838
2839         * bufferlist.C (release): remove textcache stuff
2840         (closeAll): ditto
2841
2842         * TextCache.C: delete file
2843         * TextCache.h: delete file
2844
2845         * Makefile.am (lyx_SOURCES): delete TextCache.C and TextCache.h
2846
2847         * BufferView_pimpl.C (buffer): remove textcache stuff, add a
2848         delete of the bv_->text.
2849         (resizeCurrentBuffer): remove texcache stuff
2850         (workAreaResize): ditto
2851
2852 2003-10-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
2853
2854         * lyxfunc.C (getStatus): also set flag disabled if it is a unknown
2855         action.
2856
2857 2003-10-16  André Pönitz  <poenitz@gmx.net>
2858
2859         * lyxrow.[Ch]:
2860         * paragraph.h:
2861         * rowpainter.C:
2862         * text.C:
2863         * text2.C:
2864         * text3.C: speed up by storing y positions per paragraph plus per-row
2865         offset instead of having a 'full' y position in the row.
2866
2867 2003-10-15  André Pönitz  <poenitz@gmx.net>
2868
2869         * iterators.[Ch]:
2870         * iterators.[Ch]:
2871         * undo.[Ch]: make undo aware of inner insets
2872
2873 2003-10-14  Angus Leeming  <leeming@lyx.org>
2874
2875         * lyx_main.[Ch]: make LyX a singleton class, accessible though the new
2876         static member functions LyX::ref() and LyX::cref.
2877         (lastfiles): new accessor functions for the new lastfiles_ member var.
2878         (addLyXView, views_): add a new LyXView to the list of views_.
2879         (updateInset): loop over all LyXViews to call their own updateInset
2880         member function, returning a pointer to the Buffer owning the inset.
2881
2882         * BufferView_pimpl.C (loadLyXFile):
2883         * MenuBackend.C (expandLastfiles):
2884         * bufferlist.C (MenuWrite, QuitLyX):
2885         lastfiles is no longer a global variable.
2886         Access through LyX::ref().lastfiles(), LyX::cref().lastfiles().
2887
2888         * boost.C (emergencyCleanup): LyX::emergencyCleanup is no longer a
2889         static function. Access through LyX::cref().emergencyCleanup().
2890
2891 2003-10-14  André Pönitz  <poenitz@gmx.net>
2892
2893         * iterators.[Ch]: new direct access to innermost LyXText and Inset
2894
2895         * undo.[Ch]: restoring part of 'undo in insets'
2896
2897         * Makefile.am:
2898         * undo_funcs.[Ch]: merge with undo.[Ch]
2899
2900         * tabular.C: small cleansing stuff
2901
2902 2003-10-14  Alfredo Braunstein  <abraunst@libero.it>
2903
2904         * paragraph_funcs.C (readParToken): report unknown insets as error
2905         boxes. Use the outer paragraph as location (also for unknown
2906         tokens).
2907
2908         * factory.C (readInset): do not abort on reading an unknown inset.
2909         Eat it and return 0.
2910
2911 2003-10-13  Angus Leeming  <leeming@lyx.org>
2912
2913         * lyx_main.C (LyX): remove call to setDisplayTranslator().
2914
2915         * lyxrc.C: displayTranslator is now a function,
2916         declared in GraphicsTypes.h.
2917
2918 2003-10-13  Joao Luis Meloni Assirati <assirati@fma.if.usp.br>
2919
2920         * format.C: new placeholder $$a to pass the socket address.
2921
2922         * bufferlist.[Ch]: new function getBufferFromTmp.
2923
2924         * lyxfunc.C: Modification of LFUN_GOTOFILEROW so that it can handle
2925           files in the temporary dir.
2926
2927 2003-10-13  Joao Luis Meloni Assirati <assirati@fma.if.usp.br>
2928
2929         * lyxsocket.[Ch]: new files. A simple local socket interface for lyx.
2930
2931         * Makefile.am: add lyxsocket.[Ch].
2932
2933         * lyx_main.C (error_handler): handle SIGPIPE.
2934
2935 2003-10-13  André Pönitz  <poenitz@gmx.net>
2936
2937         * BufferView_pimpl.C:
2938         * lyxtext.h:
2939         * text.C:
2940         * text2.C:
2941         * text3.C:
2942         * undo_funcs.[Ch]: use paroffset_type instead of
2943           ParagraphList::iterators to prevent multiple conversion
2944           (and get a more robust interface)
2945
2946 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
2947
2948         * lyxfunc.C (dispatch): RESULT -> dispatch_result
2949         * lyxtext.h: ditto
2950         * text3.C (dispatch): ditto
2951
2952 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
2953
2954         * LaTeX.C (handleFoundFile): move the static to smaller scope,
2955         move the onlyfile, use onlyfile instead of foundfile in a couple
2956         of places.
2957
2958         * DepTable.C (update): flush the error stream a bit more
2959
2960 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
2961
2962         * lyxserver.C (callback): adjust
2963
2964         * lyxfunc.C (getStatus): add a missing brace in commented code
2965         (ensureBufferClean): reindent
2966         (dispatch): delete version taking a string
2967
2968 2003-10-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
2969
2970         * LaTeX.C (deplog): move found file handlig from here...
2971         (handleFoundFile): .. to new function here.
2972         (deplog): make sure to discover several files mentioned on the
2973         same log line.
2974
2975 2003-10-10  André Pönitz  <poenitz@gmx.net>
2976
2977         * lyxfunc.C:
2978         * lyxtext.h:
2979         * tabular.C:
2980         * text.C:
2981         * text2.C:
2982         * text3.C: fix some of the tabular crashes
2983
2984 2003-10-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
2985
2986         * MenuBackend.C (binding): put debug message into Debug::KBMAP
2987
2988         * lyxlex_pimpl.C (setFile): put debug messages into Debug::LYXLEX.
2989
2990 2003-10-09  André Pönitz  <poenitz@gmx.net>
2991
2992         * lyxcursor.h: use paroffset_type instead of ParagraphList::iterator
2993
2994         * BufferView.C:
2995         * BufferView_pimpl.C:
2996         * bufferview_funcs.C:
2997         * lyx_cb.C:
2998         * lyxcursor.C:
2999         * lyxfind.C:
3000         * lyxfunc.C:
3001         * lyxtext.h:
3002         * text.C:
3003         * text2.C:
3004         * text3.C:
3005         * text_funcs.[Ch]:
3006         * textcursor.[Ch]:
3007         * undo_funcs.C: adjust
3008
3009 2003-10-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
3010
3011         * text2.C (incrementItemDepth): new function, use a backtracking
3012         algorithm to discover the correct item depth.
3013         (resetEnumCounterIfNeeded): new function, use a backtracking
3014         algorithm to discover if counter reset is needed.
3015         (setCounter): use them. Simplify a bit. Add different labels for
3016         different item depths for itemize.
3017
3018         * paragraph.C (Paragraph): remove initialization of enumdepth
3019         (operator=): ditto
3020
3021         * paragraph.h: get rid of enumdepth, and use itemdepth both for
3022         enumerate and itemize. Change the type of itemdepth to signed char.
3023
3024 2003-10-08  André Pönitz  <poenitz@gmx.net>
3025
3026         * lyxtext.h: make the paragraphs_ a pointer instead a ref to make the
3027           thing assignable.
3028         * text.C:
3029         * text2.C: adjust
3030
3031         * tabular.[Ch]: fix crash after 'row-insert'
3032
3033 2003-10-08  Angus Leeming  <leeming@lyx.org>
3034
3035         Fix doxygen warnings.
3036
3037         * CutAndPaste.[Ch] (availableSelections). Now returns a const vector.
3038         Remove CutAndPaste:: prefix from header file declaration.
3039
3040         * LColor.h (fill): remove LColor:: prefix from declaration.
3041
3042         * buffer.C (readParagraph, simpleLinuxDocOnePar, simpleDocBookOnePar):
3043         use lyx::depth_type rather than Paragraph::depth_type so that
3044         header file and .C file match.
3045
3046         * converter.h (intToFormat): remove Converters:: prefix from declaration.
3047
3048         * Spacing.h: \file Spacing.h -> \file src/Spacing.h
3049         * aspell.C: \file aspell_local.C -> \file aspell.C
3050         * gettext.C: \file gettext.C -> \file src/gettext.C
3051         * gettext.h: \file gettext.h -> \file src/gettext.h
3052         * lyxfont.C: \file lyxfont.C -> \file src/lyxfont.C
3053         * lyxfont.h: \file lyxfont.h -> \file src/lyxfont.h
3054         * text.C: \file text.C -> \file src/text.C
3055
3056         * toc.C: move comment so that doxygen is not confused.
3057
3058 2003-10-07  Angus Leeming  <leeming@lyx.org>
3059
3060         * factory.C (createInset): InsetExternal::Params -> InsetExternalParams
3061
3062 2003-10-07  Jürgen Spitzmüller <j.spitzmueller@gmx.de>
3063
3064         * aspell.C:
3065         * aspell_local.h: add forgotten std::string's.
3066
3067 2003-10-07  Martin Vermeer <martin.vermeer@hut.fi>
3068
3069         * LaTeXFeatures.C:
3070         * LyXAction.C:
3071         * factory.C:
3072         * lfuns.h:
3073         * lyxfunc.C:
3074         * text3.C: The Box patch. Fancybox support, minipage, parbox
3075
3076 2003-10-07  Martin Vermeer <martin.vermeer@hut.fi>
3077
3078         * CutAndPaste.h:
3079         * DepTable.h:
3080         * FloatList.h:
3081         * LaTeXFeatures.h:
3082         * ParagraphParameters.h:
3083         * TextCache.h:
3084         * Thesaurus.h:
3085         * bufferlist.h:
3086         * exporter.h:
3087         * importer.h:
3088         * lastfiles.h:
3089         * lyxfind.h:
3090         * lyxfont.h:
3091         * lyxlex.h:
3092         * lyxtextclasslist.h:
3093         * messages.h:
3094         * paragraph.h:
3095         * paragraph_pimpl.C:
3096         * textcursor.h: add <string> and other small fixes to make Lars'
3097         std::string patch compile with STLport.
3098
3099 2003-10-06  Angus Leeming  <leeming@lyx.org>
3100
3101         * LColor.h: Add missing #include <string>.
3102
3103 2003-10-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
3104
3105         * All most all file in all subdirs: Make <string> be the prefered
3106         way of getting to std::string, add using declarations.
3107
3108 2003-10-06  André Pönitz  <poenitz@gmx.net>
3109
3110         * metricsinfo.C: initialize LyXFont before changing attribute.
3111         (fixes the 'math in \emph is upright' bug)
3112
3113 2003-10-06  André Pönitz  <poenitz@gmx.net>
3114
3115         * tabular.[Ch]: saner reinitialization, ret rid of LyXTabular::owner_
3116
3117 2003-10-06  Martin Vermeer  <martin.vermeer@hut.fi>
3118
3119         * graph.C:
3120         * paragraph_pimpl.C: Small fixes to build using STLport
3121
3122 2003-10-02  André Pönitz  <poenitz@gmx.net>
3123
3124         * lyxfunc.C:
3125         * text3.C: move handling of LFUN_DEPTH *; fix #1360
3126
3127 2003-10-01  André Pönitz  <poenitz@gmx.net>
3128
3129         * factory.C: assert early
3130
3131 2003-09-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
3132
3133         * lyx_main.C: remove the global debug object
3134
3135         * debug.h: adjust for new debugstream
3136
3137         * debug.C: adjust for new debugstream and keep the global debug
3138         object here.
3139
3140 2003-09-22  Angus Leeming  <leeming@lyx.org>
3141
3142         * paragraph_pimpl.h: add #include "lyxfont.h". Needed by earlier versions
3143         of g++ which otherwise complain that the scoped_ptr destructor can't delete
3144         an incomplete class LyXFont.
3145
3146 2003-09-22  Martin Vermeer  <martin.vermeer@hut.fi>
3147
3148         * factory.C: bug fix in branches
3149
3150 2003-09-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
3151
3152         * lyxfunc.C (processKeySym): adjust
3153         (dispatch): adjust
3154         (dispatch): change arg name from ev to func, adjust
3155         (sendDispatchMessage): ditto
3156
3157         * lyx_main.C (defaultKeyBindings): adjust keybindings
3158         (deadKeyBindings): ditto
3159
3160         * kbsequence.C (addkey): return a FuncRequest
3161
3162         * kbmap.h (kb_key): struct var FuncRequest instead of int action.
3163
3164         * kbmap.C (bind): take a FuncRequest as arg, adjust
3165         (read): adjust
3166         (lookup): adjust
3167         (defkey): change to take a FuncRequest as arg, adjust
3168         (findbinding): take a FuncRequest as arg, adjust.
3169
3170         * funcrequest.h (operator=): added
3171
3172         * funcrequest.C (FuncRequest): default kb_action changed from
3173         LFUN_UNKNOWN_ACTION to LFUN_NO_ACTION
3174
3175         * buffer.C (dispatch): simplify
3176         (dispatch): adjust to take a FuncRequest as arg, adjust
3177
3178         * boost.C (assertion_failed): change assertion message slightly
3179
3180         * ToolbarBackend.C (read): simplify
3181
3182         * MenuBackend.C (binding): adjust call to findbinding, add a
3183         message if no binding is found.
3184         (read): simplify
3185         (expandToc): correct by adding a empty FuncRequest
3186
3187         * LyXAction.C: include <boost/assert.hpp>
3188         (isPseudoAction): delete function
3189         (LookupFunc): change name to...
3190         (lookupFunc): this. change return type to FuncRequest.
3191         (getActionName): take kb_action as arg, simplify
3192         (funcHasFlag): add an assert, simplify.
3193
3194 2003-09-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
3195
3196         * toc.C (action): return a FuncRequest, simplify
3197
3198         * lyxfunc.C (processKeySym): adjust
3199         (getStatus): delete version that takes an int.
3200         (getStatus): adjust
3201         (dispatch): delete version that takes action as int
3202         (dispatch): adjust
3203         (sendDispatchMessage): simplify and adjust
3204
3205         * funcrequest.C (getArg): take unsigned int as arg
3206
3207         * ToolbarBackend.C (read): adjust
3208         (add): delete version that takes func as a string.
3209         (getIton): take a FuncRequest as arg
3210
3211         * MenuBackend.h (MenuItem): store a FuncRequest instead of an int
3212         action.
3213
3214         * MenuBackend.C (MenuItem): add a new construct that only takes a
3215         Kind, simplify the constructor use for submenus.
3216         (add): adjust
3217         (expandLastfiles): adjust
3218         (expandDocuments): adjust
3219         (expandFormats): adjust
3220         (expandFloatListInsert): adjust
3221         (expandFloatInsert): adjust
3222         (expandToc2,expandToc,expandPasteRecent,expandBranches): adjust
3223
3224         * LyXAction.h: remove typdefs pseudo_map, arg_item and arg_map.
3225         Remove class variables lyx_pseudo_map and lyx_arg_map
3226
3227         * LyXAction.C (searchActionArg): delete function
3228         (getPseudoAction): delete function
3229         (retrieveActionArg): delete function
3230         (LookupFunc): make it return kb_action, simplify.
3231         (getActionName): simplify
3232
3233         * factory.C (createInset): fix new bug
3234
3235 2003-09-19  Angus Leeming  <leeming@lyx.org>
3236
3237         * CutAndPaste.C (pasteSelection): remove fudge used to set the
3238         masterFilename_ parameter in the include inset.
3239
3240         * factory.C (createInset): changes due to the changes to InsetInclude.
3241
3242 2003-09-19  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
3243
3244         * paragraph.C: use appropriate alignment tags inside floats (bug 1290)
3245
3246 2003-09-18  Angus Leeming  <leeming@lyx.org>
3247
3248         * buffer.C:
3249         * BufferView.C: pass the buffer when calling Inset::getLabelList,
3250         Inset::fillWithBibKeys.
3251         * tabular.[Ch] (getLabelList): receive, pass on a Buffer const & arg.
3252
3253 2003-09-18  Angus Leeming  <leeming@lyx.org>
3254
3255         * LaTeXFeatures.[Ch]: append a '_' to the names of all private member
3256         variables.
3257         (ctor): pass and store a 'Buffer const &'
3258         (buffer): new member function.
3259
3260         * buffer.C (makeDocBookFile, makeLinuxDocFile, makeLaTeXFile): pass
3261         '*this' to the LaTeXFeatures ctor.
3262
3263 2003-09-18  Angus Leeming  <leeming@lyx.org>
3264
3265         * LColor.h:
3266         * lyxfont.C:
3267         * lyxfont.h:
3268         * lyxtext.h:
3269         * text.C: rename EnumLColor as LColor_color.
3270
3271 2003-09-18  Angus Leeming  <leeming@lyx.org>
3272
3273         * cursor.[Ch]: use the dispatch_result wrapper class DispatchResult to
3274         remove #include "insets/insetbase.h" from cursor.h.
3275
3276 2003-09-18  Angus Leeming  <leeming@lyx.org>
3277
3278         * paragraph.[Ch] (insetAllowed): use the InsetOld::Code wrapper class
3279         InsetOld_code to remove #include "inset.h".
3280
3281         * iterators.C: add #include "insets/inset.h"
3282
3283 2003-09-16  Martin Vermeer  <martin.vermeer@hut.fi>
3284
3285         * BufferView.C: remove more locking stuff that apparently doesn't
3286         do anything sensible.
3287
3288 2003-09-16  André Pönitz  <poenitz@gmx.net>
3289
3290         * paragraph.[Ch]:
3291         * paragraph_pimpl.[Ch]: un-pimpl Paragraph::(Pimpl::)text for a >10%
3292           performance boost.
3293
3294 2003-09-16  Angus Leeming  <leeming@lyx.org>
3295
3296         * lyxfont.h (LyXFont_size): a wrapper class for LyXFont::FONT_SIZE.
3297
3298         * paragraph.[Ch] (highestFontInRange): use LyXFont_size as function
3299         arg/return type.
3300
3301         * paragraph.h: remove #include "lyxfont.h". Forward declare
3302         LyXFont_size.
3303
3304 2003-09-16  Angus Leeming  <leeming@lyx.org>
3305
3306         * paragraph.C (IsInsetChar): new function in namespace anon, moved out
3307         of support/textutils.h.
3308         (isWord): move the contents of support/textutils.h's IsWordChar here.
3309
3310         * buffer.C:
3311         * lyxfind.C:
3312         * rowpainter.C:
3313         * text.C:
3314         * text2.C: add #include "paragraph.h".
3315
3316         * rowpainter.C:
3317         * text.C: replace IsInsetChar(c) with a direct test of Paragraph::META_INSET.
3318
3319 2003-09-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
3320
3321         * main.C:
3322         * lyx_main.C:
3323         * lyx_cb.C:
3324         * buffer.C:
3325         * LaTeX.C: use namespace alias for lyx::support::os
3326
3327 2003-09-16  Angus Leeming  <leeming@lyx.org>
3328
3329         * bufferparams.C:
3330         * bufferview_funcs.C:
3331         * factory.C:
3332         * lyxfunc.C:
3333         * paragraph_pimpl.C:
3334         * rowpainter.C:
3335         * text.C: add #include "LColor.h".
3336
3337 2003-09-16  Angus Leeming  <leeming@lyx.org>
3338
3339         * lyxfont.[Ch]: (setFamily, setSeries, setShape, setSize, setEmph,
3340         setUnderbar, setNoun, setNumber, setColor, setLanguage): no longer
3341         return LyXFont &.
3342         Store the FontBits::color variable as an int rather than as an
3343         LColor::colorso that we can move LColor.h out of the lyxfont.h header
3344         file.
3345
3346         * rowpainter.C (paintAppendixStart, paintPageBreak, paintLengthMarker):
3347         LyXFont::setColor, decSize no longer return a LyXFont &, so cannot
3348         string calls together.
3349
3350         * lyxrc.C: add #include "LColor.h".
3351
3352 2003-09-15  Angus Leeming  <leeming@lyx.org>
3353
3354         * bufferparams.[Ch]: store the pimpl_ as a copied_ptr, rather than as
3355         a cow_ptr.
3356
3357 2003-09-15  Angus Leeming  <leeming@lyx.org>
3358
3359         * LColor.h: add an EnumLColor wrapper for LColor::color.
3360
3361         * lyxfont.[Ch] (color, setColor, realColor):
3362         * lyxtext.h, text.C (backgroundColor):
3363         pass EnumLColor args to/from the functions, rather than LColor::color
3364         ones.
3365
3366         * lyxfont.h:
3367         * lyxtext.h: forward declare EnumLColor.
3368
3369         * lyx_main.C: add #include "LColor.h".
3370
3371 2003-09-15  Angus Leeming  <leeming@lyx.org>
3372
3373         * .cvsignore: add lyx-gtk.
3374
3375 2003-09-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
3376
3377         * Chktex.C
3378         * LaTeX.C
3379         * LaTeXFeatures.C
3380         * ParagraphParameters.C
3381         * Spacing.C
3382         * buffer.C
3383         * bufferparams.C
3384         * bufferview_funcs.C
3385         * chset.C
3386         * counters.C
3387         * funcrequest.C
3388         * lyxfont.C
3389         * lyxgluelength.C
3390         * lyxlength.C
3391         * paragraph.C
3392         * paragraph_funcs.C
3393         * text3.C
3394         * vc-backend.C: remove usage of STRCONV
3395
3396 2003-09-15  Angus Leeming  <leeming@lyx.org>
3397
3398         * rowpainter.C (paintLengthMarker, paintPageBreak, paintAppendixStart):
3399         explicitly define the color passed to the painter.
3400
3401 2003-09-15  Angus Leeming  <leeming@lyx.org>
3402
3403         * bufferparams.C (BufferParams): reorder member initializers to avoid
3404         compiler warning.
3405
3406 2003-09-15  Alfredo Braunstein  <abraunst@libero.it>
3407
3408         * CutAndPaste.C (pasteSelection): remove an outdated #warning
3409         * text.C (updateRowPositions): remove an unusual nop
3410
3411 2003-09-12  André Pönitz  <poenitz@gmx.net>
3412
3413         * BufferView_pimpl.C:
3414         * Bullet.C:
3415         * layout.h:
3416         * lyxfunc.C:
3417         * lyxlayout.[Ch]:
3418         * lyxtextclass.C:
3419         * rowpainter.C:
3420         * text.C:
3421         * text2.C:
3422         * Counters.[Ch]: finish the 'automatic counters' job
3423
3424 2003-09-12  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
3425
3426         * aspell.C: include <boost/assert.cpp> (compile fix)
3427
3428 2003-09-10  Rob Lahaye  <lahaye@snu.ac.kr>
3429
3430         * boost.C (assertion_failed): use lyx::support::abort instead of
3431         assert.
3432
3433 2003-09-10  Angus Leeming  <leeming@lyx.org>
3434
3435         * Makefile.am (lyx_SOURCES): replace ParagraphList.h and RowList.h
3436         with their _fwd progeny.
3437
3438 2003-09-09  Angus Leeming  <leeming@lyx.org>
3439
3440         134 files throughtout the source tree: replace 'using namespace abc;'
3441         directives with the appropriate 'using abc::xyz;' declarations.
3442
3443 2003-09-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
3444
3445         * boost.C (emergencyCleanup): moved here from LAssert.c
3446         (assertion_failed): new function, called by BOOST_ASSERT
3447
3448         * several files: change Assert to BOOST_ASSERT
3449
3450 2003-09-09  Angus Leeming  <leeming@lyx.org>
3451
3452         * buffer.[Ch]: Add an Impl class and move Buffer's member
3453         variables into it. As a result move several header files out of
3454         buffer.h.
3455
3456         Add header files to lots of .C files all over the tree as a result.
3457
3458 2003-09-09  Angus Leeming  <leeming@lyx.org>
3459
3460         * buffer.[Ch]: make Buffer's member variables private. Add
3461         accessor functions.
3462
3463         Lots of changes all over the tree as a result.
3464
3465 2003-09-08  Angus Leeming  <leeming@lyx.org>
3466
3467         * graph.C: #include <config.h>.
3468
3469 2003-09-08  Angus Leeming  <leeming@lyx.org>
3470
3471         * BranchList.C:
3472         * BufferView.C:
3473         * BufferView_pimpl.C:
3474         * CutAndPaste.C:
3475         * DepTable.C:
3476         * LaTeX.C:
3477         * LaTeXFeatures.C:
3478         * LyXAction.C:
3479         * MenuBackend.C:
3480         * TextCache.C:
3481         * aspell.C:
3482         * buffer.C:
3483         * bufferlist.C:
3484         * changes.C:
3485         * chset.C:
3486         * converter.C:
3487         * counters.C:
3488         * debug.C:
3489         * graph.C:
3490         * ispell.C:
3491         * lyx_cb.C:
3492         * lyxfind.C:
3493         * lyxfunc.C:
3494         * lyxlex_pimpl.C:
3495         * lyxrc.C:
3496         * lyxrow.C:
3497         * paragraph.C:
3498         * rowpainter.C:
3499         * texrow.C:
3500         * text.C:
3501         * text2.C:
3502         * toc.C: remove redundant using directives.
3503
3504 2003-09-07  Angus Leeming  <leeming@lyx.org>
3505
3506         * LaTeXFeatures.h: remove #include "support/types.h".
3507         * ToolbarBackend.h: remove #include <algorithm>.
3508         * changes.h: remove #include <ctime>.
3509         * debug.h: remove #include <iosfwd>.
3510         * graph.h: remove #include "support/std_string.h".
3511         * lyx_main.h: remove #include <csignal>.
3512         * lyxlex_pimpl.h: remove #include <fstream>.
3513         * sgml.h: remove #include <algorithm>, <utility>.
3514         * toc.h: remove #include "support/std_ostream.h".
3515         Add #include <iosfwd>.
3516
3517 2003-09-07  Angus Leeming  <leeming@lyx.org>
3518
3519         * vspace.[Ch] (length): returns a const & to a LyXGlueLength.
3520
3521         * converter.h: forward declare LatexRunParams.
3522         * encoding.h: remove #include "lyxrc.h".
3523         * lyxtext.h: remove #include "LColor.h".
3524         * lyxtextclass.h: remove #include "support/types.h".
3525         * trans.h: remove #include "tex-accent.h".
3526         * trans_mgr.h: remove #include "tex-accent.h".
3527         * insets/inset.h: remove #include "support/types.h", <vector>.
3528         * insets/insetcollapsable.h: remove #include "LColor.h".
3529         * insets/insetinclude.h: remove #include "dimension.h".
3530         * insets/insetlatexaccent.h: remove #include "dimension.h".
3531         * insets/insetoptarg.h:: remove #include "insettext.h".
3532         * insets/insettext.h: remove #include "dimension.h",
3533         <boost/shared_ptr.hpp>
3534
3535         * insets/renderers.h: add #include "dimension.h".
3536         * insets/updatableinset.h: add #include "support/types.h".
3537
3538         * many .C files: Associated changes.
3539
3540 2003-09-06  Angus Leeming  <leeming@lyx.org>
3541
3542         * Bullet.[Ch]: factorize all those #ifdef ENABLE_ASSERTIONS to just
3543         one, inside testInvariant.
3544
3545         * PrinterParams.C: new file.
3546         * PrinterParams.[Ch]: move the function bodies out of line.
3547
3548 2003-09-06  Angus Leeming  <leeming@lyx.org>
3549
3550         * ParagraphParameters.h: forward declare ParameterStruct rather than
3551         including its header file.
3552         (depth): moved out-of-line.
3553
3554 2003-09-06  Angus Leeming  <leeming@lyx.org>
3555
3556         * BufferView_pimpl.h:
3557         * kbmap.h:
3558         * kbsequence.h:
3559         * lyxfunc.h: forward declare LyXKeySym rather than
3560         #include "frontends/LyXKeySym.h".
3561
3562         * BufferView_pimpl.C:
3563         * kbmap.C:
3564         * kbsequence.C:
3565         * lyxfunc.C: associated changes.
3566
3567 2003-09-06  Angus Leeming  <leeming@lyx.org>
3568
3569         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
3570         As a result, can remove the #include "insets/inset.h" from BufferView.h
3571
3572 2003-09-06  Angus Leeming  <leeming@lyx.org>
3573
3574         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
3575         As a result, can remove the #include "insets/inset.h" from BufferView.h
3576
3577 2003-09-06  Angus Leeming  <leeming@lyx.org>
3578
3579         * buffer_funcs.C:
3580         * buffer.h:
3581         * bufferlist.C:
3582         * BufferView.C:
3583         * bufferview_funcs.C:
3584         * BufferView_pimpl.C:
3585         * CutAndPaste.C:
3586         * lyx_cb.C:
3587         * lyxfunc.C:
3588         * paragraph.h:
3589         * ParagraphParameters.C:
3590         * tabular.C:
3591         * text3.C:
3592         * toc.C:
3593         * undo_funcs.C:
3594         * frontends/controllers/ControlDocument.C:
3595         * insets/insetcaption.C: rearrange the #includes into some sort of
3596         coherent order.
3597
3598         * buffer.h: remove #includes ErrorList.h, undo.h
3599
3600 2003-09-06  Angus Leeming  <leeming@lyx.org>
3601
3602         * support/types.h: add a 'depth_type' typedef, used to store the
3603         nesting depth of a paragraph.
3604
3605         * paragraph.h:
3606         * ParameterStruct.h: use this lyx::depth_type typedef rather than
3607         defining explicitly.
3608
3609         * buffer.h:
3610         * paragraph_funcs.h:
3611         * ParagraphParameters.h:
3612         * sgml.h: use lyx::depth_type rather than Paragraph or
3613         ParameterStruct's depth_type.
3614
3615         * buffer.h
3616         * paragraph_funcs.h: no need to #include paragraph.h anymore.
3617
3618         * BufferView.C:
3619         * BufferView_pimpl.C:
3620         * CutAndPaste.C:
3621         * ParagraphParameters.C:
3622         * buffer_funcs.C:
3623         * bufferlist.C:
3624         * bufferview_funcs.C:
3625         * lyx_cb.C:
3626         * lyxfunc.C:
3627         * tabular.C:
3628         * text3.C:
3629         * toc.C:
3630         * undo_funcs.C:
3631         * frontends/LyXView.C:
3632         * frontends/controllers/ControlDocument.C:
3633         * frontends/controllers/ControlErrorList.C:
3634         * insets/insetbibitem.C:
3635         * insets/insetbranch.C:
3636         * insets/insetcaption.C:
3637         * insets/insetcollapsable.C:
3638         * insets/insetenv.C:
3639         * insets/insetert.C:
3640         * insets/insetfloat.C:
3641         * insets/insetfoot.C:
3642         * insets/insetfootlike.C:
3643         * insets/insetnewline.C:
3644         * insets/insetquotes.C:
3645         * insets/insettabular.C:
3646         * insets/insettext.C:
3647         * insets/insetwrap.C: must now explicitly #include "paragraph.h".
3648
3649         * frontends/controllers/ControlChanges.C: #include "changes.h".
3650
3651 2003-09-06  Angus Leeming  <leeming@lyx.org>
3652
3653         * ParagraphList_fwd.h: new file, forward-declaring Paragraph rather
3654         than #including paragraph.h.
3655
3656         * ParagraphList.h:
3657         * RowList.h: deleted. Superfluous.
3658
3659         * CutAndPaste.h:
3660         * iterators.h:
3661         * lyxcursor.h:
3662         * lyxtext.h:
3663         * text_funcs.h:
3664         * undo.h:
3665         * undo_funcs.h:
3666         * insets/inset.h:
3667         * insets/insettext.h: use ParagraphList_fwd.h rather than
3668         ParagraphList.h.
3669
3670         * paragraph.h: don't forward declare ParagraphList.
3671
3672         * buffer.h:
3673         * paragraph_funcs.h: #include ParagraphList_fwd.h and paragraph.h
3674         rather than ParagraphList.h. paragraph.h is still needed for the
3675         Paragraph::depth_type parameters.
3676
3677         * textcursor.h: enable it to compile stand-alone in light of the
3678         above changes.
3679
3680         * bufferview_funcs.C:
3681         * iterators.C:
3682         * lyxfunc.C:
3683         * lyxrow_funcs.C:
3684         * paragraph.C:
3685         * rowpainter.C:
3686         * text.C:
3687         * text2.C:
3688         * text3.C:
3689         * text_funcs.C:
3690         * textcursor.C:
3691         * undo.C:
3692         * frontends/controllers/ControlParagraph.C:
3693         * frontends/controllers/ControlTabular.C:
3694         * insets/insetmarginal.C:
3695         * insets/insetminipage.C:
3696         * insets/insetnote.C:
3697         * insets/insetoptarg.C: add header files needed to compile again.
3698
3699 2003-09-06  Angus Leeming  <leeming@lyx.org>
3700
3701         * RowList_fwd.h: new file, forward-declaring Row rather than
3702         #including lyxrow.h.
3703
3704         * lyxrow_funcs.h:
3705         * lyxtext.h:
3706         * paragraph.h:
3707         * insets/insettext.h: use it instead of RowList.h
3708
3709         * bufferview_funcs.C:
3710         * lyxfunc.C:
3711         * lyxrow_funcs.C:
3712         * paragraph.C:
3713         * rowpainter.C:
3714         * text.C:
3715         * text2.C:
3716         * text3.C: #include "RowList.h".
3717
3718 2003-09-05  Angus Leeming  <leeming@lyx.org>
3719
3720         * factory.C (createInset):
3721         * vspace.C (c-tor): replace sscanf call with an istringstream.
3722         * ispell.C: re-add missing HP/UX headers.
3723         * lyxserver.C: re-add missing  os2 headers.
3724
3725 2003-09-05  Martin Vermeer  <martin.vermeer@hut.fi>
3726
3727         * BranchList.C:
3728         * graph.C:
3729         * ispell.C:
3730         * lastfiles.C:
3731         * lyx_cb.C:
3732         * lyxserver.C:
3733         * texrow.C:
3734         * text3.C: re-add missing system headers, needed for 2.95.2.
3735
3736 2003-09-05  Angus Leeming  <leeming@lyx.org>
3737
3738         Changes most place everywhere due to the removal of using directives
3739         from support/std_sstream.h.
3740
3741 2003-09-05  Angus Leeming  <leeming@lyx.org>
3742
3743         Replace LString.h with support/std_string.h,
3744         Lsstream.h with support/std_sstream.h,
3745         support/LIstream.h with support/std_istream.h,
3746         support/LOstream.h with support/std_ostream.h.
3747
3748         Changes resulting throughout the tree.
3749
3750 2003-09-05  Angus Leeming  <leeming@lyx.org>
3751
3752         * sgml.h: ensure that the header file can be compiled stand-alone.
3753         * *.C: strip out redundant #includes. (320 in total.)
3754
3755 2003-09-04  Angus Leeming  <leeming@lyx.org>
3756
3757         * LaTeXFeatures.C (getMacros): move the output of the preamble_snippets
3758         here (from getPackages).
3759
3760         * debug.[Ch]: add a new EXTERNAL tag.
3761
3762 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
3763
3764         * text2.C (cursorEnd): simplify
3765         (setCursor): adjust
3766         (getColumnNearX): adjust
3767
3768         * text.C (computeBidiTables): adjust
3769         (fill): adjust
3770
3771         * rowpainter.C (paintChars): adjust
3772         (paintSelection): adjust
3773         (paintChangeBar): adjust
3774         (paintText): adjust
3775
3776         * lyxrow_funcs.C (lastPrintablePos): remove, all users now call
3777         lastPos instead.
3778         (numberOfSeparators): adjust
3779
3780 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
3781
3782         * LyXAction.C:
3783         * box.[Ch]:
3784         * lfuns.h:
3785         * lyxfunc.C:
3786         * text3.C: Restricts the mouse click functionality
3787         of insets like bibtex, include, toc and floatlist to the visible
3788         button, and allows the use of LFUN_INSET_SHOW_DIALOG to bring
3789         up the dialogs. Cursor has to be in front of the inset (i.e.
3790         start of row) for this to function.
3791
3792 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
3793
3794         * bufferview_funcs.C (currentState): output row information
3795
3796 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
3797
3798         * bufferview_funcs.C (currentState): output paragraph position
3799
3800 2003-09-04  Angus Leeming  <leeming@lyx.org>
3801
3802         * FloatList.h: move out #include "Floating.h".
3803         * LaTeX.h: move out #include "DepTable.h".
3804         * LyXAction.h: move out #include "funcrequest.h".
3805         * buffer.h: move out #include "author.h", "iterators.h".
3806         * bufferparams.h: move out #include "LaTeXFeatures.h", "texrow.h".
3807         * lyx_main.h: move out #include "errorlist.h".
3808         * lyxfunc.h: move out #include "FuncStatus.h".
3809         * lyxtext: move out #include "lyxcursor.h".
3810         * paragraph_pimpl.h: move out #include "counters.h".
3811
3812 2003-09-03  Angus Leeming  <leeming@lyx.org>
3813
3814         * LaTeXFeatures.[Ch]: replace the externalPreambles string with a
3815         preamble_snippets list, enabling us to add snippets to the preamble
3816         only if the snippet was not there already.
3817
3818 2003-09-04  Angus Leeming  <leeming@lyx.org>
3819
3820         * Chktex.C, converter.C, lyx_cb.C: add #include "support/lyxlib.h".
3821
3822 2003-09-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
3823
3824         * lyxfunc.C (dispatch): if fitCursor did something be sure to
3825         update
3826
3827 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
3828
3829         * BranchList.C: point fix, earlier forgotten
3830
3831 2003-09-02  Angus Leeming  <leeming@lyx.org>
3832
3833         * box.C (contains): renamed from 'contained' after a fantastic
3834         amount of hot air.
3835
3836 2003-09-02  John Levon  <levon@movementarian.org>
3837
3838         * BufferView.C:
3839         * lyxcursor.h:
3840         * lyxcursor.C:
3841         * lyxfunc.C:
3842         * lyxfunc.h: remove cursor.i[x]y(), it no longer differs
3843
3844 2003-09-02  John Levon  <levon@movementarian.org>
3845
3846         * text2.C: simplification of cursorEnd(), including partial
3847         fix for bug 1376
3848
3849 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
3850
3851         * buffer.C (readFile): add a space
3852
3853 2003-09-02  Alfredo Braunstein  <abraunst@libero.it>
3854
3855         * BufferView_pimpl.C (update): remove bogus fitCursor() call
3856
3857 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
3858
3859         * buffer.C (readFile): new function, take a filename and a
3860         ParagraphList::iterator
3861         (readFile): adjust
3862         (readFile): adjust, make it private. don't use setStream, make
3863         lyx2lyx use a temporary file. Some simplificaton. Make the Alerts
3864         always contain the filename.
3865
3866         * BufferView.C (insertLyXFile): simplify and make it work for
3867         gzipped files.
3868
3869 2003-08-30  John Levon  <levon@movementarian.org>
3870
3871         * Makefile.am: fix dist (from Kayvan)
3872
3873 2003-08-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
3874
3875         * most files: change to use const Buffer refs
3876
3877 2003-08-27  André Pönitz  <poenitz@gmx.net>
3878
3879         * BufferView.[Ch]: remove getParentText, implement getParentLanguage
3880         on top of ownerPar().
3881
3882 2003-08-27  John Levon  <levon@movementarian.org>
3883
3884         * funcrequest.C: properly initialise POD members
3885
3886 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
3887
3888         * lyxtext.h (top_y): move top_y from here
3889         * text.C:
3890         * text2.C:
3891         * text3.C:
3892         * BufferView.[Ch]:
3893         * BufferView_pimpl.[Ch]: to here
3894         * frontends/screen.C:
3895         * insets/insettabular.C:
3896         * insets/insettext.C: adjust
3897         * rowpainter.[Ch] (paintRows): remove LyXText & argument
3898
3899 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
3900
3901         * BufferView.[Ch]:
3902         * BufferView_pimpl.[Ch] (updateInset): add an InsetOld * argument
3903
3904 2003-08-26  André Pönitz  <poenitz@gmx.net>
3905
3906         * paragraph_func.[Ch] (outerPar): new function
3907
3908         * paragraph.C:
3909         * paragraph_funcs.C:
3910         * paragraph_funcs.h:
3911         * paragraph_pimpl.C:
3912         * text2.C: remove Inset::par_owner
3913
3914 2003-08-25  Martin Vermeer  <martin.vermeer@hut.fi>
3915
3916         * lyxrow_funcs.C:
3917         * lyxtext.h:
3918         * text.C:
3919         * text2.C: eliminates the needFullRow/display() stuff
3920         altogether, putting the logic in metrics/draw in the insets.
3921
3922 2003-08-25  Alfredo Braunstein  <abraunst@libero.it>
3923
3924         * text2.C (redoParagraphInternal, redoParagraphs):
3925         * text.C (redoParagraph): add a call to updateRowPositions at the
3926         end of each 'metrics-like' call. Remove all others.
3927         (getRow): remove the 'y-computing' version.
3928         (getRowNearY): do not compute nor return the real y. Solve the
3929         'y < 0' problem and simplify.
3930
3931 2003-08-22  Angus Leeming  <leeming@lyx.org>
3932
3933         * *.[Ch]: clean-up of licence and author blurbs.
3934         Also move config.h out of a few .h files and into a few .C files.
3935
3936 2003-08-22  André Pönitz  <poenitz@gmx.net>
3937
3938         * lyxrow.[Ch]: add x_ and *fill_ members
3939
3940         * lyxtext.h:
3941         * text.C:
3942         * rowpainter.C:
3943         * text2.C: adjust/remove prepareToPrint() calls
3944
3945 2003-08-22  André Pönitz  <poenitz@gmx.net>
3946
3947         * lyxrow.[Ch]: add  end_ member
3948
3949         * lyxrow_funcs.C: use LyXRow::end_
3950
3951         * lyxtext.h (singleWidth): add LyXFont parameter
3952
3953         * rowpainter.C:
3954         * text2.C: adjust LyXText::singleWidth() calls
3955
3956         * text.C (redoParagraph): simplify row breaking logic
3957
3958
3959 2003-08-19  André Pönitz  <poenitz@gmx.net>
3960
3961         * funcrequest.C: initialize button_ member
3962
3963         * text3.C:
3964         * rowpainter.[Ch]: interface consolidation
3965
3966 2003-08-18  André Pönitz  <poenitz@gmx.net>
3967
3968         * BufferView.C:
3969         * BufferView_pimpl.C:
3970         * lyxfind.C:
3971         * paragraph_funcs.C:
3972         * rowpainter.C:
3973         * text3.C: remove LyXScreen::draw() and fitCursor calls
3974
3975         * BranchList.h: remove spurious semicolons
3976
3977         * MenuBackend.C: fix branchlist related crash
3978
3979 2003-08-17  Martin Vermeer  <martin.vermeer@hut.fi>
3980
3981         * BranchList.[Ch]:
3982         * InsetList.[Ch]:
3983         * LColor.[Ch]:
3984         * LyXAction.C:
3985         * Makefile.am:
3986         * MenuBackend.[Ch]:
3987         * bufferparams.[Ch]:
3988         * factory.C:
3989         * lfuns.h:
3990         * lyxfunc.C:
3991         * text3.C: implements the 'branch inset'
3992         idea. This allows the output of various versions of a document
3993         from a single source version, selectively outputing or suppressing
3994         output of parts of the text.
3995         This implementation contains a 'branch list editor' in a separate
3996         tab of the document settings dialog. Branches are user definable
3997         and have a "display colour" to distinguish them on-screen.
3998
3999         ColorHandler was somewhat cleaned up.
4000         (1) make possible a dynamically growing LColor list by allowing
4001         the graphic context cache to grow along (vector);
4002         (2) eliminate an IMHO unnecessary step in colour allocation.
4003
4004 2003-08-15  Kayvan A. Sylvan <kayvan@sylvan.com>
4005
4006         * BufferView_pimpl.C: compile fix
4007
4008 2003-08-15  André Pönitz  <poenitz@gmx.net>
4009
4010         * rowpainter.C: remove extra metrics calls
4011
4012         * lyxtext.h: merge the two constructors into a single one,
4013           pass reference to owner's par list
4014
4015         * BufferView_pimpl.C:
4016         * text.C:
4017         * text2.C: adjust
4018
4019 2003-08-15  André Pönitz  <poenitz@gmx.net>
4020
4021         * lyxrow_funcs.[Ch]:
4022         * lyxtext.h:
4023         * paragraph.h:
4024         * paragraph_funcs.C:
4025         * rowpainter.C:
4026         * text.C:
4027         * text2.C:
4028         * text3.C:
4029         * text_funcs.C: split LyXText::rowlist_ into individual
4030         Paragraph::rows_ chunks
4031
4032         * BufferView.[Ch]:
4033         * BufferView_pimpl.[Ch]:
4034         * lyxfind.C:
4035         * lyxtext.h:
4036         * text3.C: remove toggleSelection()
4037
4038 2003-08-12  Michael Schmitt  <michael.schmitt@teststep.org>
4039
4040         * bufferlist.C: beautify two alerts (shorter text of buttons)
4041         * buffer.C: Remove redundant ' ' from message
4042         * tabular.h:
4043         * tabular.C: rename LYX_VALIGN_CENTER" to LYX_VALIGN_MIDDLE";
4044         rename M_VALIGN_CENTER to M_VALIGN_MIDDLE;
4045         rename VALIGN_CENTER to VALIGN_MIDDLE
4046
4047 2003-08-11  André Pönitz  <poenitz@gmx.net>
4048
4049         * lyxtext.h (getPar):
4050         * text.C: new function
4051
4052 2003-08-11  André Pönitz  <poenitz@gmx.net>
4053
4054         * Makefile.am:
4055         * tracer.[Ch]: remove unneeded files
4056
4057         * InsetList.[Ch]: remove resizeInsetsLyXText()
4058
4059         * lyxtext.h:
4060         * text.C:
4061         * text2.C:
4062         * text3.C: merge insertParagraphs() and appendParagraph()
4063         remove breakAgain(), update()
4064
4065         * BufferView_pimpl.[Ch]:
4066         * bufferview_funcs.[Ch]:
4067         * lyxfunc.C:
4068         * paragraph.[Ch]:
4069         * rowpainter.C:
4070         * tabular.C: adjust after text & InsetList changes.
4071
4072 2003-08-08  André Pönitz  <poenitz@gmx.net>
4073
4074         * text.C (insertChar, backspace): replace rowlist fiddling
4075         with rebreak of full par
4076
4077         * lyxtext.h:
4078         * text.C (breakAgainOneRow, redoHeightOfParagraph,
4079         checkParagraph, updateInset): removed
4080
4081 2003-08-07  André Pönitz  <poenitz@gmx.net>
4082
4083         * paragraph.C:
4084         * text3.C: merge some LFUN handlers, remove dead code
4085
4086 2003-08-06  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4087
4088         * .cvsignore: add lyx-xforms, lyx-qt, version.C-tmp and stamp-version
4089
4090 2003-08-05  Alfredo Braunstein  <abraunst@libero.it>
4091
4092         * text2.C (DEPM): fix part of bug 1255 and 1256
4093
4094 2003-08-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4095
4096         * BufferView_pimpl.C (workAreaDispatch): change to use
4097         LyXView::dispatch instead of BufferView::Pimpl::dispatch for lfuns
4098         that are no mouse related.
4099
4100 2003-08-05  André Pönitz  <poenitz@gmx.net>
4101
4102         * BufferView.[Ch]:
4103         * BufferView_pimpl.[Ch]:
4104         * bufferview_funcs.C:
4105         * text2.C:
4106         * text3.C: rip out "deep update"
4107
4108         * textcursor.[Ch] (last_sel_cursor): remove unused member
4109
4110 2003-08-04  André Pönitz  <poenitz@gmx.net>
4111
4112         * BufferView.[Ch]:
4113         * BufferView_pimpl.[Ch]:
4114         * ParagraphParameters.C:
4115         * bufferview_funcs.C:
4116         * lyx_cb.C:
4117         * lyxfind.C:
4118         * lyxfunc.C:
4119         * text.C:
4120         * text2.C:
4121         * text3.C: replace "complicated" BufferView::update(...) calls with
4122         simpler ones.
4123
4124         * BufferView.[Ch]: remove now unneeded BufferView::UpdateCodes
4125
4126 2003-08-02  Kayvan Sylvan  <kayvan@sylvan.com>
4127
4128         * Makefile.am (lyx_SOURCES): add paper.h
4129
4130 2003-08-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4131
4132         * Makefile.am: move things around so that both lyx-qt and
4133         lyx-xforms can be built (according to --with-frontend). Then lyx
4134         is a symbolic link to lyx-[firstfrontend]
4135
4136 2003-08-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
4137
4138         * Always use std::endl with lyxerr
4139
4140 2003-08-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
4141
4142         * BufferView_pimpl.C: _Always_ use std::endl with lyxerr
4143
4144 2003-08-01  André Pönitz  <poenitz@gmx.net>
4145
4146         * BufferView.[Ch]:
4147         * BufferView_pimpl.[Ch]:
4148         * lyxfunc.C:
4149         * text3.C: merge BufferView::repaint() and BufferView::update()
4150
4151 2003-08-01  José Matos  <jamatos@lyx.org>
4152
4153         * buffer.[Ch]: file_format is no longer a buffer data element.
4154
4155 2003-08-01  André Pönitz  <poenitz@gmx.net>
4156
4157         * BufferView.C:
4158         * lyxtext.h:
4159         * text.C:
4160         * text2.C: make redoParagraph more independent of current cursor
4161
4162         * lyxtext.h (need_update, needUpdate, postPaint, clearPaint):
4163         * text.C:
4164         * text2.C: remove unneeded members
4165
4166 2003-07-30  André Pönitz  <poenitz@gmx.net>
4167
4168         * paragraph.[Ch] (copyIntoMinibuffer): removed unused function
4169
4170         * paragraph.[Ch] (cutIntoMinibuffer, insertFromMinibuffer):
4171           create a single function...
4172
4173         * paragraph_funcs.C (moveItem): ... here.
4174
4175         * text.C:
4176           lyxtext.h (LyXText::workWidth(InsetOld*)) remove. unused.
4177
4178 2003-07-30  Martin Vermeer  <martin.vermeer@hut.fi>
4179
4180         * LColor.[Ch]: Add comment and greyedout logical colors.
4181
4182 2003-07-30  André Pönitz  <poenitz@gmx.net>
4183
4184         * tabular.C: don't use Assert too heavily. This crashes where it
4185           shouldn't
4186
4187 2003-07-30  Alfredo Braunstein  <abraunst@libero.it>
4188
4189         * lyxfunc.C (dispatch): do not mark the buffer dirty if the action
4190         is disabled (bug 1232)
4191
4192 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
4193
4194         * factory.C: limited 'arg' scope
4195
4196 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
4197
4198         * factory.C: fixed Note submenu issues
4199
4200 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
4201
4202         * factory.C: submenu for Note/Comment/Greyedout
4203
4204 2003-07-29  Alfredo Braunstein  <abraunst@libero.it>
4205
4206         * lyx_main.C (LyX):
4207         * BufferView_pimpl.C (loadLyXFile): fix to bugs 1287 and 1297 + ws
4208
4209 2003-07-29  Martin Vermeer  <martin.vermeer@hut.fi>
4210
4211         * LaTeXFeatures.C:
4212         * lyx_sty.[Ch]:h: Implement a newenvironment in preamble for
4213         greyedout. Patch provided by Jürgen Spitzmüller.
4214
4215 2003-07-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4216
4217         * kbmap.C (read): fix error message when reading bind files
4218
4219 2003-07-29  Angus Leeming  <leeming@lyx.org>
4220
4221         * BufferView.[Ch] (ChangeCitationsIfUnique): This function most
4222         certainly does not do what it purports to do. I am doing it, and
4223         us, a favour by killing it.
4224
4225 2003-07-28  José Matos  <jamatos@lyx.org>
4226
4227         * buffer.C (readBody, do_writeFile):
4228         * paragraph.C(readParagraph): \end_document replaces \the_end.
4229
4230 2003-07-29  André Pönitz  <poenitz@gmx.net>
4231
4232         * BufferView.[Ch]:
4233         * BufferView_pimpl.[Ch]:
4234         * lyxfunc.C:
4235         * text2.C:
4236         * text3.C:
4237         * textcursor.[Ch]: remove toggleToggle & Co
4238
4239 2003-07-28  José Matos  <jamatos@fep.up.pt>
4240
4241         * buffer.C (readParagraph):
4242         * params_func (readParToken, readParagraph):
4243         * paragraph.C (write): \layout -> \begin_layout.
4244
4245 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
4246
4247         * lyxlex_pimpl.C (setFile): clean up slightly.
4248
4249         * bufferparams.h: add compressed var
4250
4251         * buffer_funcs.C (readFile): adjust for LyXLex change
4252         (newFile): ditto + simplify
4253
4254         * buffer.C (writeFile): handle writing of compressed files
4255
4256         * buffer.[Ch] (readFile): begin LyXLex here, remove one argument.
4257         Check if the file is compressed and set a bufferparm if so.
4258
4259         * Makefile.am (lyx_LDADD): remove explicit -lz
4260
4261 2003-07-28  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4262
4263         * buffer.C (do_writeFile, makeLaTeXFile, makeLinuxDocFile,
4264         makeDocBookFile): put the real LyX version in the first line of
4265         the file
4266
4267         * version.h:
4268         * version.C.in: remove lyx_docversion
4269
4270         * tabular.C (write_attribute): add a template-based version to
4271         write enums properly
4272
4273 2003-07-28  André Pönitz  <poenitz@gmx.net>
4274
4275         * lyxtext.h:
4276         * text.C:
4277         * text2.C:
4278         * text3.C: use doubles again for x-coordinates. They are needed.
4279
4280 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
4281
4282         * messages.C (getLocaleDir): use lyx_localedir()
4283
4284         * lyxlex_pimpl.C (setFile): compress stuff
4285
4286         * buffer.C (writeFile): add some compression stuff
4287         (do_writeFile): new func, dont call expliti close... will this
4288         breake anything?
4289
4290         * Makefile.am (lyx_LDADD): add -lz
4291
4292 2003-07-28  José Matos  <jamatos@fep.up.pt>
4293
4294         * buffer.C: increment file format.
4295         * paragraph_funcs (readParagraph, readParToken):
4296         * paragraph.C (readParagraph): add \end_layout.
4297
4298 2003-07-27  Angus Leeming  <leeming@lyx.org>
4299
4300         * Makefile.am: remove special casing for configure-time setting of
4301         LYX_DIR, TOP_SRCDIR and LOCALEDIR.
4302
4303         * lyx_main.C (init): remove all Jean-Marc's magic setting of
4304         system_lyxdir, build_lyxdir and user_lyxdir into the support lib.
4305
4306 2003-07-26  André Pönitz  <poenitz@gmx.net>
4307
4308         * paragraph_func.[Ch]:
4309         * paragraph.C (realizeFont): inline it whereever it is used
4310
4311         * rowpainter.C:
4312         * text.C:
4313         * text2.C:
4314         * text3.C: remove Buffer * parameter from a bunch of get*Font functions
4315
4316
4317 2003-07-26  André Pönitz  <poenitz@gmx.net>
4318
4319         *       lyxtext.h:
4320         * text.C:
4321         * text2.C: get rid of LyXText::need_break_row
4322
4323 2003-07-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
4324
4325         * toc.[Ch]: put namespace toc inside namespace lyx
4326
4327         * MenuBackend.C (expandToc2): adjust for lyx::toc
4328         (expandToc): ditto
4329
4330         * lyxfunc.C (dispatch): adjust for lyx::find
4331
4332         * lyxfind.[hC]: get rid of namespace lyxfind introduce namespace
4333         lyx::find instead. Reorganize a bit.
4334         (LyXReplace): rename to replace
4335         (LyXFind): rename to find
4336
4337         * BufferView_pimpl.C (trackChanges): adjust for lyx::find
4338         (dispatch): ditto
4339
4340 2003-07-26  André Pönitz  <poenitz@gmx.net>
4341
4342         * text.C (setHeightOfRow): restrict scope of temporary variable
4343
4344         * paragraph_funcs.C (readParToken): remove USE_CAPTION  compatibility
4345           code (never has been used?)
4346
4347 2003-07-27  Asger Alstrup  <alstrup@local>
4348
4349         * text.C (fill): Optimise algorithm to exploit that we can reuse
4350         the LyXFont for many characters.
4351         (setHeightOfRow): Same thing.
4352         (rowBreakPoint): Same thing.
4353
4354 2003-07-26  Asger Alstrup  <alstrup@local>
4355
4356         * text2.C (metrics): change a brain-dead algorithm to a smarter one.
4357
4358         * text.C (singleWidth): Spurious font copying in hot-spot
4359         singleWidth avoided. Reorder tests for arabic for efficiency.
4360
4361         * text.C (fill): handle empty paragraphs better.
4362
4363 2003-07-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4364
4365         * ispell.C:
4366         * encoding.h: add includes
4367
4368         * lyxrc.C: remove reading of bind files
4369
4370         * lyx_main.C (init): setup bindings and menus only if we have a
4371         gui.
4372
4373         * kbmap.C (read): new method. Do the actual reading of bind
4374         files.
4375
4376         * converter.C (dvipdfm_options):
4377         * bufferparams.C:
4378         * lyxrc.C (read):
4379         (output): adapt PAPER_* enums.
4380
4381         * lyxrc.h: include paper.h instead of bufferparams.h (mucho lighter)
4382
4383         * bufferparams.h: remove paper-related enums from there
4384
4385         * paper.h: New file. A trivial header file to hold paper-related
4386         enums. It should later expand to contain many paper-related
4387         horrors access.
4388
4389         * lyxrc.C: declare extern displayTranslator
4390
4391 2003-07-27  José Matos  <jamatos@fep.up.pt>
4392
4393         * tabular.[Ch] (linuxdoc): add support for tables and figures
4394         (linuxdoc).
4395
4396 2003-07-27  José Matos  <jamatos@fep.up.pt>
4397
4398         * buffer.[Ch] (makeLaTeXFile): changed name of arguments for
4399         consistency in both functions.
4400         * bufferlist.C (updateIncludedTeXfiles): change client to comply.
4401
4402 2003-07-26  Asger Alstrup  <alstrup@local>
4403
4404         * rowpainter.C (paintRows): Change algorithm to work directly on
4405         the insets rather than asking every character in the document
4406         whether its an inset.
4407
4408 2003-07.26  Alfredo Braunstein  <abraunst@libero.it>
4409
4410         * buffer.C (openFileWrite): factorize some code
4411
4412 2003-07-26  Angus Leeming  <leeming@lyx.org>
4413
4414         * lyx_cb.C:
4415         * lyx_main.[Ch]: replace occurances of system_tempdir with
4416         os::getTmpDir().
4417
4418 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
4419
4420         * rename Inset to InsetOld
4421
4422 2003-07-25  Asger Alstrup  <alstrup@diku.dk>
4423
4424         * undo_funcs.h: Removed setCursorParUndo to simplify things a bit.
4425         Renamed setUndo family to recordUndo. Renamed FINISH to ATOMIC
4426         which I think is a bit clearer. EDIT is gone, since it was
4427         premature optimisation, and broken for mathed anyway.
4428         * undo_funcs.C (performUndoOrRedo): Cleaned up and made it work
4429         with cursor positioning in insets as well (math insets still do not
4430         work, but that's a different story anyway.) It mysteriously
4431         crashes sometimes with undo in the first paragraph, but I'm fairly
4432         confident that this is a compiler bug.
4433
4434 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
4435
4436         * paragraph.C (Paragraph): adjust for new clone return type
4437         (operator==): ditto
4438         (copyIntoMinibuffer): ditto
4439
4440 2003-07-25  Asger Alstrup  <alstrup@lyx.org>
4441
4442         * undo_funcs.C (textHandleUndo): Fix undo crash in first paragraph
4443         by not having a special case, and always doing a full rebreak of
4444         the document after undo.
4445
4446 2003-07-23  Angus Leeming  <leeming@lyx.org>
4447
4448         * factory.C (createInset): InsetExternal::setParams now takes a
4449         Buffer const * arg.
4450
4451 2003-07-23  Angus Leeming  <leeming@lyx.org>
4452
4453         * factory.C (createInset): changed interface to the external and
4454         graphics mailers' string2params functions.
4455
4456 2003-07-23  Angus Leeming  <leeming@lyx.org>
4457
4458         * factory.C (createInset): pass a
4459         Buffer const * parameter to InsetExternalMailer's string2params.
4460
4461 2003-07-22  John Levon  <levon@movementarian.org>
4462
4463         * Thesaurus.h: include the right aiksaurus header
4464
4465 2003-07-21  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4466
4467         * MenuBackend.C (expand): check menu shortcuts unconditionally
4468
4469 2003-07-21  Angus Leeming  <leeming@lyx.org>
4470
4471         * factory.C (createInset): pass a
4472         buffer_path parameter to InsetGraphicsMailer's string2params.
4473
4474 2003-07-21  Angus Leeming  <leeming@lyx.org>
4475
4476         * BufferView_pimpl.C (buffer):
4477         * buffer.C (d-tor):
4478         * lyx_main.C (LyX):
4479         * lyxfunc.C (dispatch):
4480         * lyxrc.C (setDefaults, read, output): use namespace lyx::graphics
4481         rather than the grfx shortcut.
4482
4483 2003-07-21  André Pönitz  <poenitz@gmx.net>
4484
4485         * rowpainter.C: remove unused variables
4486
4487         * tabular_funcs.C:
4488         * tabular_funcs.h: move to tabular.C
4489         * Makefile.am: adjust
4490
4491         * tabular.[Ch]: basic optical cleaning
4492
4493         * author.h: pass references, not values
4494
4495 2003-07-18  André Pönitz  <poenitz@gmx.net>
4496
4497         * lyxtext.h:
4498         * metricsinfo.C:
4499         * metricsinfo.h:
4500         * rowpainter.C:
4501         * text.C:
4502         * text2.C:
4503         * text3.C: two-phase drawing for InsetText and InsetTabular
4504         some float -> int changes.
4505
4506 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
4507
4508         * lyx_main.C: fix the fix
4509
4510 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
4511
4512         * lyx_main.C: fix a crash in batch mode if no files specified
4513         * converter.C: ws
4514
4515 2003-07-17  Alfredo Braunstein  <abraunst@libero.it>
4516
4517         * format.[Ch] (papersize): moved to BufferParams
4518         * converter.[Ch] (dvips_options): moved to BufferParams
4519         (dvipdfm_options): moved to anon namespace
4520         * bufferparams.[Ch]: added above functions.
4521
4522 2003-07-17  André Pönitz  <poenitz@gmx.net>
4523
4524         * lyxtext.h:
4525         * rowpainter.C:
4526         * text2.C: don't call inset->update() anymore
4527
4528         * metricsinfo.[Ch]: add convenience constructor
4529
4530 2003-07-16  André Pönitz  <poenitz@gmx.net>
4531
4532         * lyxcursor.[Ch]:
4533         * lyxfunc.[Ch]:
4534         * text.C:
4535         * text2.C: replace the LyXCursor::irow_ member with
4536          on-demand computation of the value
4537
4538 2003-07-16  John Levon  <levon@movementarian.org>
4539
4540         * lyxfunc.C: support LFUN_INSET_SETTINGS for Note
4541
4542 2003-07-15  André Pönitz  <poenitz@gmx.net>
4543
4544         * text.C:
4545         * text2.C: remove no more needed refresh_row
4546
4547 2003-07-15  André Pönitz  <poenitz@gmx.net>
4548
4549         * lyxtext.h:
4550         * rowpainter.C:
4551         * text2.C:
4552         * text3.C: refresh_status tristate -> need_update bool
4553
4554 2003-07-15  Alfredo Braunstein  <abraunst@libero.it>
4555
4556         * lyxtext.h (init): remove reinit argument (act as if always true)
4557         * text2.C: adjust to that
4558
4559 2003-07-14  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
4560
4561         * bufferview_funcs.[Ch]: introduce function replaceSelection()
4562         * text3.C: use it to delete selections in some cases
4563         (bugs 441, 673, 702, 954).
4564
4565 2003-07-14  André Pönitz  <poenitz@gmx.net>
4566
4567         * rowpainter.[Ch]: reduce interface
4568
4569 2003-07-14  André Pönitz  <poenitz@gmx.net>
4570
4571         * BufferView_pimpl.C:
4572         * text2.C: adjust after removing unused BufferView * argument
4573
4574 2003-07-14  Alfredo Braunstein  <abraunst@libero.it>
4575
4576         * text2.C (init): fix a crash fired on resize
4577
4578 2003-07-11  Alfredo Braunstein  <abraunst@libero.it>
4579
4580         * buffer.[Ch]: added new closing signal
4581         * BufferView_pimpl.[Ch]: connect/disconnect to new signal
4582         * lyxfunc.C: removed BufferView::buffer(0) call now handled in
4583         BufferView::Pimpl via the closing the signal
4584
4585 2003-07-10  Alfredo Braunstein  <abraunst@libero.it>
4586
4587         * buffer.[Ch]: take out all bv-related from buffer
4588         * BufferView.C:
4589         * BufferView_pimpl.[Ch]: connect to new signals
4590         * CutAndPaste.C: removed useless asserts
4591         * bufferview_funcs.[Ch] (resizeInsets): moved from buffer
4592         * lyxvc.[Ch]:
4593         * vc-backend.[Ch]:
4594         * lyxfunc.C: moved view-related funciontality from vc here
4595         * paragraph.C: removed outdated comments
4596         * text.C: ws
4597
4598 2003-07-10  André Pönitz  <poenitz@gmx.net>
4599
4600         * BufferView_pimpl.C:
4601         * tabular.h:
4602         * tabular_funcs.C:
4603         * text.C:
4604         * text2.C: remove InsetText::InnerCache, clean up consequences
4605
4606 2003-07-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
4607
4608         * ispell.C: fix two typos in error messages
4609
4610 2003-07-08  Martin Vermeer  <martin.vermeer@hut.fi>
4611
4612         * Extend Note inset to other forms of annotation like Comment
4613         and Greyedout. Right button click gives dialog.
4614
4615         Files modified or added (+):
4616
4617         * insetnote.[Ch]
4618         * FormNote.[Ch]      +
4619         * ControlNote.[Ch]   +
4620         * form_note.fd       +
4621         * Makefile.am in frontends/xforms, frontends/xforms/forms,
4622         frontends/controllers
4623         * xforms/Dialogs.C
4624         * factory.C
4625
4626 2003-07-01  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
4627
4628         * aspell.C: add missing namespace lyx::support
4629
4630 2003-07-07  Alfredo Braunstein  <abraunst@libero.it>
4631
4632         * BufferView.[Ch] (newFile): Add
4633         * BufferView_pimpl.[Ch] (newFile, connectBuffer, disconnectBuffer): Add
4634         * LaTeX.[Ch] (message): added this signal and use it
4635         * buffer.[Ch] (busy, message): added these signals and use them
4636         * buffer_funcs.[Ch]: rename parseErrors to bufferErrors
4637         * converter.C:
4638         * exporter.C:
4639         * format.C:
4640         * importer.C: use buffer signals instead of direct bv calling
4641         * lyx_cb.[Ch] (ShowMessage): removed
4642         * lyx_main.C:
4643         * lyxfunc.C:
4644         * paragraph_funcs.C:
4645         * text2.C: use buffer signals
4646
4647 2003-07-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
4648
4649         * introduce namespace lyx::graphics
4650
4651 2003-07-02  André Pönitz  <poenitz@gmx.net>
4652
4653         * BufferView_pimpl.C (workAreaDispatch): tell the FuncRequest who we are
4654
4655 2003-07-01  André Pönitz  <poenitz@gmx.net>
4656
4657         * text.C:
4658         * text2.C:
4659         * text3.C:
4660         * text_funcs.[Ch]:
4661         * textcursor.h:
4662         * lyxtext.h: shuffle pure paragraph/cursor related cursor movement from
4663           text*.C to text_func.C
4664
4665 2003-07-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4666
4667         * introduce namespace lyx::support
4668
4669 2003-06-30  André Pönitz  <poenitz@gmx.net>
4670
4671         * Chktex.C:
4672         * funcrequest.C:
4673         * lyxtext.h:
4674         * text.C: re-enable --with-included-string
4675
4676 2003-06-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
4677
4678         * textcursor.C: add <config.h>
4679
4680         * text.C (getWord): remove const from word_location arg
4681
4682         * lyxvc.C (getLogFile): fix const type order
4683
4684         * lyxtext.h: remove const from word_location arg, add arg name
4685
4686         * lyxlayout.h: currect type on labeltype.
4687
4688         * importer.C: correct \file
4689
4690         * converter.C (intToFormat): use std:: on ret val, ws changes
4691
4692         * bufferlist.h: correct \file
4693
4694         * buffer.C (makeLinuxDocFile): fix const type order
4695         (makeDocBookFile): ditto
4696         (fillWithBibKeys): use std:: on stdlib args.
4697
4698         * CutAndPaste.C: fix authors.
4699         (availableSelections): use std:: on return vector
4700
4701 2003-06-27  André Pönitz  <poenitz@gmx.net>
4702
4703         * BufferView_pimpl.C:
4704         * bufferview_funcs.C:
4705         * lyxcursor.C:
4706         * lyxcursor.h:
4707         * lyxfunc.C:
4708         * lyxtext.h:
4709         * rowpainter.C:
4710         * text.C:
4711         * text2.C:
4712         * text3.C: remove LyXCursor::row_ member
4713
4714         * lyxtext.h:
4715         * text.C: rename fullRebreak() to partialRebreak() and implement
4716           a fullRebreak() that really bereks fully
4717
4718         * textcursor.h: new struct for cursor-related data
4719
4720 2003-06-26  Alfredo Braunstein  <abraunst@lyx.org>
4721
4722         * lyx_main.C (LyX): get full path of document loaded on the
4723         command line
4724
4725 2003-06-26  André Pönitz  <poenitz@gmx.net>
4726
4727         * lyxcursor.[Ch]: move rarely used operator==,!= out of line
4728           remove unused/broken operator>,<,>=.
4729
4730         *       text.C: remove only use of broken operator<= in an Assert().
4731
4732 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
4733
4734         * BufferView.[Ch] (getErrorList): removed unneeded forward declare,
4735         moved errorlist_.clear to showErrorList
4736
4737 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
4738
4739         * converter.C (scanLog, runLaTeX):
4740         * buffer.C (makeLinuxDocFile, makeDocBookFile, runChkTeX):
4741         move the bv->showErrorList call to the callers
4742         * lyxfunc.C: i.e. here...
4743         * text2.C: and here
4744         * BufferView.[Ch] (setErrorList, resetErrorList): both removed
4745         * exporter.[Ch] (Backends, BufferFormat): the first was moved to anon
4746         namespace, the second to...
4747         * buffer_funcs (BufferFormat, parseErrors): added
4748         * errorlist.C (ErrorList(TeXErrors const &)): removed
4749
4750 2003-06-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4751
4752         * ToolbarBackend.C (getIcon): complain when icon cannot be found
4753
4754 2003-06-24  "Garst R. Reese" <reese@isn.net>
4755
4756         * debug.C: fix typo
4757
4758 2003-06-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4759
4760         * lyx_main.C (init): honor LYX_DIR_14x and LYX_USERDIR_14x
4761
4762         * version.C.in: change docversion to 1.4
4763
4764 2003-06-22  Alfredo Braunstein  <abraunst@libero.it>
4765
4766         * buffer.C: fix a bug just introduced
4767
4768 2003-06-21  Alfredo Braunstein  <abraunst@libero.it>
4769
4770         * buffer.[Ch]: added the parseError signal and use it, removed
4771         sgmlError
4772         * BufferView.[Ch] (addError): moved to ...
4773         * BufferView_pimpl.[Ch] (addError, loadLyXFile): ... here. Attach
4774         to the Buffer::parseError signal to catch (guess what) parse errors
4775         * lyx_main.[Ch] (printError,LyX): added gui-less parsing error feedback
4776
4777 2003-06-19  Alfredo Braunstein  <abraunst@libero.it>
4778
4779         * bufferlist.[Ch] (loadLyXFile, readFile, newFile): removed the
4780         ability to create a buffer and to return an existing one from
4781         the list. Moved these functions to...
4782         * buffer_funcs.[Ch]: added
4783         * BufferView.[Ch] (loadLyXFile): added
4784         * BufferView_pimpl.[Ch] (loadLyXFile): Added. Does the guessing
4785         job removed from bufferlist::loadLyXFile.
4786         * buffer.C (setReadOnly): make it work without view
4787         (i.e added an if (users))
4788
4789 2003-06-19  Angus Leeming  <leeming@lyx.org>
4790
4791         * lfuns.h:
4792         * LyXAction.C (init):
4793         * lyxfunc.C (getStatus, dispatch): remove 14 LFUNs, replacing them
4794         with LFUN_DIALOG_SHOW <name> <data>.
4795
4796 2003-06-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4797
4798         * CutAndPaste.C (availableSelections): small compilation fix for
4799         ancient (gcc 2.9x) compilers
4800
4801 2003-06-18  Lars Gullik Bjønnes  <larsbj@gullik.net>
4802
4803         * text3.C (cursorNext): add tmp var
4804
4805         * text2.C (updateCounters): for function calling out of for clause
4806         (replaceSelectionWithString): ditto
4807         (insertStringAsParagraphs): ditto
4808         (getColumnNearX): add tmp var
4809         (setCursorFromCoordinates): add tmp var
4810         (cursorDownParagraph): add tmp var
4811         (deleteEmptyParagraphMechanism): add tmp var
4812
4813         * text.C (insertChar): add tmp var
4814
4815         * rowpainter.C (paintDepthBar): add tmp var
4816
4817         * CutAndPaste.C (availableSelections): potentially check all
4818         paragraphs in a cut to fill the shown strings.
4819
4820 2003-06-18  André Pönitz  <poenitz@gmx.net>
4821
4822         * kbmap.[Ch]: use vector<> instead of list<>
4823
4824 2003-06-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
4825
4826         * text3.C (dispatch): handle arg to LFUN_PASTE, call
4827         pasteSelection with index
4828
4829         * text2.C (pasteSelection): modify, call pasteSelection with index
4830
4831         * paragraph.C (asString): reimplement version with no interval to
4832         call the one with interval.
4833
4834         * lyxtext.h: add index arg to pasteSelection
4835
4836         * MenuBackend.C (MenuItem): handle PasteRecent
4837         (Menu::read::Menutags): add md_pasterecent
4838         (read): handle it
4839         (expandPasteRecent): new function
4840         (expand): use it
4841
4842         * MenuBackend.h: add PasteRecent to MenuItem::Kind
4843
4844         * CutAndPaste.C: get rid of some stale comments. Add typdefe for
4845         the limited stack
4846         (availableSelections): new function
4847
4848 2003-06-17  Angus Leeming  <leeming@lyx.org>
4849
4850         * lyxfunc.C (dispatch): s/showMathPanel/show("mathpanel")/
4851
4852 2003-06-17  Angus Leeming  <leeming@lyx.org>
4853
4854         * lfuns.h:
4855         * LyXAction.C (init): new LFUN_DIALOG_SHOW.
4856
4857         * lyxfunc.C (dispatch): invoke it.
4858
4859 2003-06-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4860
4861         * iterators.C (operator++, ParPosition): reintroduce some
4862         const_cast for the benefit of older compilers.
4863
4864 2003-06-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4865
4866         * text3.C (dispatch): do not modify clipboard when doing
4867         LFUN_BACKSPACE, LFUN_BACKSPACE_SKIP, LFUN_DELETE or
4868         LFUN_DELETE_SKIP on a selection selection
4869
4870 2003-06-16  André Pönitz  <poenitz@gmx.net>
4871
4872         * BufferView.C:
4873         * buffer.C:
4874         * buffer.h:
4875         * paragraph.C:
4876         * tabular.[Ch]: IU of clone() and getLabelList();
4877
4878 2003-06-13  André Pönitz  <poenitz@gmx.net>
4879
4880         * tabular.h: compactification
4881
4882 2003-06-12  André Pönitz  <poenitz@gmx.net>
4883
4884         * tabular.C:
4885         * tabular.h:
4886         * tabular_funcs.h: some renaming plus whitespace
4887
4888 2003-06-12  André Pönitz  <poenitz@gmx.net>
4889
4890         * BufferView.C:
4891         * BufferView_pimpl.C:
4892         * CutAndPaste.C:
4893         * buffer.C:
4894         * iterators.[Ch]:
4895         * lyxfunc.C:
4896         * text.C:
4897         * toc.C: Return a Paragraph & for ParIterator::operator*()
4898
4899 2003-06-11  John Levon  <levon@movementarian.org>
4900
4901         * lyx_main.C:
4902         * ToolbarBackend.h:
4903         * ToolbarBackend.C: add "Toolbars" section and
4904         put the flags there
4905
4906 2003-06-10  Angus Leeming  <leeming@lyx.org>
4907
4908         * lfuns.h:
4909         * LyXAction.C (init): new LFUN_EXTERNAL_EDIT.
4910
4911         * lyxfunc.C (dispatch): invoke it.
4912
4913 2003-06-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
4914
4915         * main.C: protect <ios> with HAVE_IOS
4916         (main): protect sync_with_stdio with HAVE_IOS
4917
4918 2003-06-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
4919
4920         * text2.C (cutSelection): adjust
4921         (pasteSelection): adjust
4922
4923         * messages.C: handle get of empty string
4924
4925         * main.C (main): use sync_with_stdio(false)
4926
4927         * lyxfunc.C (dispatch): adjust
4928
4929         * lyx_cb.[Ch] (MenuWrite): remove unneeded BufferView arg
4930         (WriteAs): remove unneeded BufferView arg.
4931
4932         * bufferparams.h: use correct types on papersize, papersize2 and
4933         paperpackage.
4934
4935         * bufferparams.C (readToken): adjust for type
4936         (writeLaTeX): add missing cases to switch.
4937
4938         * bufferlist.C (quitWriteBuffer): adjust
4939         (close): adjust
4940
4941         * buffer.C (asciiParagraph): remove some commented code.
4942
4943         * CutAndPaste.C: remove current_view extern variable.
4944         (cutSelection): add BufferParams arg.
4945         (eraseSelection): add BufferParams arg.
4946         (pasteSelection): add Buffer const & arg
4947
4948 2003-06-07  John Levon  <levon@movementarian.org>
4949
4950         * buffer.C:
4951         * paragraph_funcs.C:
4952         * paragraph_pimpl.C:
4953         * text.C:
4954         * text2.C:
4955         * paragraph.h:
4956         * paragraph.C: allow InsetERT to freely space lines,
4957         and some consolidation of code
4958
4959 2003-06-06  José Matos  <jamatos@fep.up.pt>
4960
4961         * buffer.C (makeDocBookFile): fix bug #821
4962
4963 2003-06-06  Alfredo Braunstein  <abraunst@libero.it>
4964
4965         * BufferView_pimpl.C (dispatch): use Dialogs::visible
4966
4967 2003-06-04  Angus Leeming  <leeming@lyx.org>
4968
4969         * buffer.C: bump format to 224.
4970
4971 2003-06-05  André Pönitz  <poenitz@gmx.net>
4972
4973         * text2.C (redoParagraphs): remove two const_cast<>
4974
4975 2003-06-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
4976
4977         * ParagraphList.h: remove last remnants of NO_STD_LIST
4978
4979 2003-06-03  Angus Leeming  <leeming@lyx.org>
4980
4981         * factory.C (createInset): small change to the way InsetExternal's params
4982         are set.
4983
4984 2003-06-04  André Pönitz  <poenitz@gmx.net>
4985
4986         * buffer.h: use Undo directly instead of shared_ptr<Undo>
4987
4988         * paragraph_pimpl.h:
4989         * paragraph.[Ch]: some Inset -> UpdatableInset changes
4990
4991         * undo.[Ch]: use ParagraphList instead of vector<Paragraph>
4992
4993         * undo_funcs.C: make some simple cases of undo work again
4994
4995 2003-06-03  John Levon  <levon@movementarian.org>
4996
4997         * ispell.C: HPUX doesn't have sys/select.h
4998         (from Albert Chin)
4999
5000 2003-06-03  John Levon  <levon@movementarian.org>
5001
5002         * CutAndPaste.C: update tabular and include inset
5003         buffer references
5004
5005         * buffer.h:
5006         * paragraph.h:
5007         * paragraph.C: remove owningBuffer(), don't pass Buffer
5008         to clone()
5009
5010         * factory.C: insetGraphicsParams changed
5011
5012 2003-06-02  John Levon  <levon@movementarian.org>
5013
5014         * LyXAction.C:
5015         * factory.C:
5016         * lfuns.h:
5017         * lyxfunc.C:
5018         * text3.C: remove insetparent
5019
5020 2003-06-02  John Levon  <levon@movementarian.org>
5021
5022         * buffer.h:
5023         * buffer.C: fix inset_iterator.end(), move out of line
5024         (bug 1149)
5025
5026 2003-06-01  John Levon  <levon@movementarian.org>
5027
5028         * text3.C: use a proper cut/paste when doing inset
5029         insert (from Jürgen Spitzmüller)
5030
5031 2003-06-01  John Levon  <levon@movementarian.org>
5032
5033         * factory.C: accept "\bibtex" not "\BibTeX" (bug 1018)
5034
5035 2003-05-30  André Pönitz  <poenitz@gmx.net>
5036
5037         * rowpainter.C: unify second drawing phase
5038
5039 2003-05-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
5040
5041         * trans_mgr.C: remove one case of current_view
5042
5043         * text2.C (cursorBottom): delete NO_STD_LIST stuff
5044
5045         * paragraph_funcs.h: remove paragraph.h include
5046
5047         * paragraph.h: delete NO_STD_LIST stuff
5048
5049         * paragraph.C (Paragraph): delete NO_STD_LIST stuff
5050
5051         * buffer.h: remove paragraph.h include
5052
5053         * ParagraphList.C: delete file
5054
5055         * Makefile.am (lyx_SOURCES): remove ParagraphList.C
5056
5057         * toc.C (getTocList): adjust
5058
5059         * paragraph_pimpl.C (validate): adjust
5060
5061         * paragraph_funcs.C (optArgInset): use const_iterator, adjust
5062
5063         * paragraph.C (Paragraph): adjust
5064         (getPositionOfInset): use const_iterator, adjust
5065         (bibitem): use const_iterator, adjust
5066         (setInsetOwner): adjust
5067
5068         * iterators.C (operator++): adjust
5069
5070         * InsetList.[Ch]: Replace selfmade iterator with standard
5071         vector::iterator also introduce const_iterator. Remove getPos,
5072         getInset and setInset from InsetTable. Adjust accordingly.
5073
5074         * BufferView.C (lockInset): adjust
5075         (ChangeInsets): adjust
5076
5077         * tabular.[Ch]: delete commented same_id functions
5078
5079 2003-05-28  John Levon  <levon@movementarian.org>
5080
5081         * lyxfunc.C: fix LFUN_ESCAPE (bug 1055)
5082
5083 2003-05-28  André Pönitz  <poenitz@gmx.net>
5084
5085         * metricsinfo.[Ch]: remove 'fullredraw' member
5086
5087 2003-05-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
5088
5089         * lyxtextclass.C (operator): remove caching.
5090
5091 2003-05-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
5092
5093         * text3.C: adjust
5094
5095         * text2.C (cursorBottom): adjust
5096         (setCounter): use ParagraphList::find, adjust
5097
5098         * text.C (workWidth): use ParagraphList::find, adjust
5099
5100         * lyxcursor.C (LyXCursor): adjust
5101
5102         * buffer.C (inset_iterator): adjust
5103
5104         * ParagraphList.h: make iterator(value_type) private, make
5105         ParagraphList a friend of iterator.
5106
5107         * ParagraphList.C (find): new function
5108
5109         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
5110
5111 2003-05-27  André Pönitz  <poenitz@gmx.net>
5112
5113         * dimension.[Ch]: a -> asc, d -> des, w -> wid
5114
5115 2003-05-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
5116
5117         * lyxfont.C (latexWriteStartChanges): fix character count for \noun
5118
5119 2003-05-26  John Levon  <levon@movementarian.org>
5120
5121         * LyXAction.C: LFUN_ESCAPE should be ReadOnly
5122
5123 2003-05-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
5124
5125         * remove same_id from function signatures, adjust.
5126
5127 2003-05-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
5128
5129         * undo_funcs.C (createUndo): use the id functions directly, adjust.
5130
5131         * paragraph_pimpl.C (Pimpl): get rid of same_ids parameter
5132
5133         * paragraph.C (Paragraph): get rid of same_ids parameter
5134
5135         * ParagraphList.C (insert): adjust
5136         (push_back): adjust
5137
5138 2003-05-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
5139
5140         * paragraph_funcs.C (breakParagraph): adjust
5141         (breakParagraphConservative): adjust
5142
5143         * buffer.C (readParagraph): adjust
5144
5145         * ParagraphList.C (insert): take a reference instead of a pointer
5146         (insert): adjust
5147
5148         * paragraph.[Ch] (id): new function
5149
5150         * bufferlist.C (newFile): adjust
5151
5152         * ParagraphList.C (ParagraphList): adjust
5153         (assign): adjust
5154         (push_back): take a reference instead of a pointer.
5155
5156         * paragraph.h: add NO_STD_LIST define, remove NO_NEXT define.
5157
5158         * paragraph.C: remove all NO_NEXT node add some NO_STD_LIST parts
5159         instead.
5160
5161         * ParagraphList.h: degenerate to std::list if NO_STD_LIST is not
5162         set else use old code.
5163
5164         * ParagraphList.C: remove all NO_NEXT code and only compile this
5165         code of NO_STD_LIST is set.
5166
5167 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
5168
5169         * BufferView_pimpl.C:
5170         * TextCache.C:
5171         * TextCache.h:
5172         * bufferlist.C:
5173         * errorlist.h:
5174         * format.C:
5175         * format.h:
5176         * graph.C:
5177         * lyxfunc.C:
5178         * lyxrc.C:
5179         * graphics/GraphicsConverter.C:
5180         * graphics/PreviewLoader.C: header adjustment
5181
5182 2003-05-23  Angus Leeming  <leeming@lyx.org>
5183
5184         * LaTeXFeatures.[Ch] (useBabel): new method.
5185         * bufferparams.C (writeLaTeX): use it.
5186
5187 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
5188
5189         * ParagraphList.h (set): remove unused function.
5190
5191 2003-05-23  André Pönitz  <poenitz@gmx.net>
5192
5193         * BufferView.C:
5194         * BufferView_pimpl.C:
5195         * buffer.C:
5196         * buffer.h:
5197         * lyxfunc.C:
5198         * undo_funcs.C: setUndo reworked
5199
5200         * iterators.[Ch]: add access to topmost ParagraphList
5201
5202         * lyxtext.[Ch] (workWidth): add a const
5203
5204 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
5205
5206         * texrow.[Ch] (increasePos): remove function
5207         * exporter.C (export): removed unused var and outdated comment
5208
5209 2003-05-23  Angus Leeming  <leeming@lyx.org>
5210
5211         * latexrunparams.h: rename fragile as moving_arg.
5212         * paragraph.C (simpleTeXOnePar): ditto.
5213         * paragraph_pimpl.C (simpleTeXSpecialChars): ditto.
5214
5215 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
5216
5217         * undo_funcs.C (textHandleUndo): comment out next/previous stuff
5218         (createUndo): ditto
5219         (textUndoOrRedo): comment out a currently unused var.
5220
5221         * paragraph.h (NO_NEXT): enable NO_NEXT
5222
5223         * lyxfunc.C (dispatch): remove LFUN_REMOVEERRORS
5224
5225         * lfuns.h: remove LFUN_REMOVEERRORS and adjust lfun numbers.
5226
5227         * exporter.C (Export): adjust for removeAutoInsets removal.
5228
5229         * buffer.C (runChktex): adjust for removeAutoInsets removal.
5230
5231         * LyXAction.C (init): remove LFUN_REMOVEERRORS
5232
5233         * BufferView.[Ch] (removeAutoInsets): delete function
5234
5235 2003-05-22  Angus Leeming  <leeming@lyx.org>
5236
5237         * latexrunparams.h: add a free_spacing variable.
5238
5239         * paragraph.[Ch] (simpleTeXOnePar): further fragile clean-up; no need
5240         to pass moving_arg, as the data is stored in runparams.fragile.
5241
5242         * paragraph_funcs.C (TeXOnePar): no longer pass free_spacing arg
5243         to Inset::latexOptional or to simpleTeXOnePar.
5244
5245         * paragraph_pimpl.C (simpleTeXSpecialChars): no longer pass
5246         free_spacing arg to Inset::latexOptional.
5247
5248         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
5249         free_spacing arg.
5250
5251 2003-05-22  Angus Leeming  <leeming@lyx.org>
5252
5253         * latexrunparams.h: add fragile and use_babel variables.
5254
5255         * bufferparams.[Ch] (writeLaTeX): return use_babel.
5256         * buffer.C (makeLaTeXFile): store this returned value in
5257         runparams.use_babel, thus passing it to the inset::latex methods.
5258
5259         * paragraph.C (simpleTeXOnePar): no need to pass 'moving_arg' to
5260         simpleTeXSpecialChars as it is now stored in runparams.fragile.
5261
5262         * paragraph_funcs.[Ch] (TeXOnePar, latexParagraphs): TeXOnePar no
5263         longer has a fragile arg, as it is stored in runparams.fragile.
5264
5265         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars): no longer has a
5266         moving_arg parameter as the data is stored in runparams.fragile.
5267
5268         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
5269         a fragile parameter as the data is stored in runparams.fragile.
5270
5271 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
5272
5273         * paragraph.C (Paragraph): initialize next_par_ and prev_par_
5274
5275 2003-05-22  Angus Leeming  <leeming@lyx.org>
5276
5277         * latexrunparams.h: add a 'bool nice' which defaults to false.
5278
5279         * buffer.[Ch] (makeLaTeXFile): remove the nice parameter as it is
5280         now encapsulated within runparams.
5281
5282         * bufferlist.C (updateIncludedTeXfiles):
5283         * exporter.C (Export): ensuing change to the calls to makeLaTeXFile.
5284
5285 2003-05-22  Angus Leeming  <leeming@lyx.org>
5286
5287         * latexrunparams.h: new file containing struct LatexRunParams.
5288         * Makefile.am: add new file.
5289
5290         * LaTeX.[Ch] (c-tor, run):
5291         * buffer.[Ch] (makeLaTeXFile):
5292         * bufferlist.[Ch] (updateIncludedTeXfiles):
5293         * converter.C (convert, scanLog):
5294         * converter.[Ch] (runLaTeX):
5295         * exporter.C (Export):
5296         * paragraph.[Ch] (simpleTeXOnePar):
5297         * paragraph_funcs.C (TeXEnvironment, TeXOnePar, TeXDeeper):
5298         * paragraph_funcs.[Ch] (latexParagraphs):
5299         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars):
5300         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow, latex):
5301         pass around a LatexRunParams parameter.
5302
5303 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
5304
5305         * paragraph.[Ch]: remove unused constructor
5306
5307         * ParagraphList.C (erase): new function, taking two iterators
5308
5309 2003-05-22  André Pönitz  <poenitz@gmx.net>
5310
5311         * undo_funcs.C: remove duplicated code
5312
5313         * iterator.[Ch]: operator=
5314
5315 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
5316
5317         * tabular.C (SetMultiColumn): ws changes
5318
5319         * rowpainter.C (paintFirst): get rid of a ->previous
5320
5321         * lyx_cb.C (getPossibleLabel): parlist simplification
5322
5323         * BufferView.C (ChangeInsets): simplify slightly.
5324
5325 2003-05-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
5326
5327         * LyXAction.C: new lfun space-insert, kill protected-space-insert
5328         * lfuns.h: new LFUN_SPACE
5329         * lyxfunc.C: protected space has a new lfun
5330         * paragraph_funcs.C: read new space insets
5331         * text3.C:
5332         * factory.C: handle new space insets
5333
5334 2003-05-22  André Pönitz  <poenitz@gmx.net>
5335
5336         * BufferView.C:
5337         * BufferView_pimpl.C:
5338         * buffer.[Ch]:
5339         * lyxfunc.C:
5340         * undo_funcs.C: return a ParIterator from getParFromID.
5341
5342         * iterators.[Ch]: add two const's
5343
5344 2003-05-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
5345
5346         * toc.C (getTocList): adjust
5347
5348         * iterators.[Ch]: rework for parlist
5349
5350         * buffer.C (par_iterator_begin): adjust
5351         (par_iterator_end): adjust
5352
5353         * CutAndPaste.C (SwitchLayoutsBetweenClasses): adjust
5354
5355         * BufferView.C (removeAutoInsets): adjust
5356         (ChangeInsets): adjust
5357
5358 2003-05-21  Alfredo Braunstein  <abraunst@libero.it>
5359
5360         * text.C (top_y): fix bug 1110
5361
5362 2003-05-08  Alfredo Braunstein  <abraunst@libero.it>
5363
5364         * errorlist.[Ch]: added
5365         * buffer.C:
5366         * BufferView.[Ch]:
5367         * BufferView_pimpl.C:
5368         * CutAndPaste.[Ch]: get rid of InsetError users, use ErrorList
5369         instead
5370
5371 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
5372
5373         * Makefile.am: ensure that lyx is relinked upon changes to the
5374         various "convenience" libs.
5375
5376 2003-05-20  Angus Leeming  <leeming@lyx.org>
5377
5378         * Makefile.am (lyx_SOURCES): move format.[Ch] and graph.[Ch] so that
5379         files are compiled in alphabetical order again.
5380
5381         * gettext.h: #ifndef _GETTEXT_H_ -> #ifndef GETTEXT_H.
5382
5383 2003-05-19  Angus Leeming  <leeming@lyx.org>
5384
5385         * gettext.[Ch]: remove "char const * _(char const *)".
5386
5387 2003-05-19  André Pönitz  <poenitz@gmx.net>
5388
5389         * dimension.[Ch]: promote from mathed/dimension.[Ch]
5390
5391         * Makefile.am:
5392         * BufferView.C:
5393         * DepTable.h:
5394         * LaTeXFeatures.C:
5395         * buffer.C:
5396         * lyxfont.C:
5397         * lyxlex.h:
5398         * paragraph_funcs.C: dimensions() instead of ascend/descend/width
5399
5400 2003-05-19  André Pönitz  <poenitz@gmx.net>
5401
5402         * buffer.C:
5403         * lyxlayout.[Ch]:
5404         * lyxtextclass.[Ch]:
5405         * paragraph.C:
5406         * paragraph_funcs.[Ch]:
5407         * text2.C:
5408         * text3.C: more insetenv work
5409
5410 2003-05-16  Alfredo Braunstein  <abraunst@libero.it>
5411
5412         * ParagraphParameters.C (params2string): small bug fixed
5413
5414 2003-05-16  André Pönitz  <poenitz@gmx.net>
5415
5416         * debug.C:
5417         * bufferview_funcs.C: patch from Kornel Benko to prevent
5418           crash when _(...) is called twice in a statement
5419
5420 2003-05-16  André Pönitz  <poenitz@gmx.net>
5421
5422         * BufferView.C:
5423         * lyxfunc.C:
5424         * text.C:
5425         * text2.C:
5426         * text3.C:
5427         * undo_funcs.C: edit() -> LFUN_INSET_EDIT
5428
5429 2003-05-14  Alfredo Braunstein  <abraunst@libero.it>
5430
5431         * lyx_main.C (init): remove spurious static_cast
5432
5433 2003-05-14  André Pönitz  <poenitz@gmx.net>
5434
5435         * BufferView.C: fix format string
5436
5437 2003-05-12  Alfredo Braunstein  <abraunst@libero.it>
5438
5439         * BufferView.[Ch] (insertErrors): removed
5440         * BufferView.[Ch] (showErrorList): added
5441         * buffer.C (runChkTeX):
5442         * converter.C (scanLog): call showErrorList instead of inserterrors
5443
5444 2003-05-13  André Pönitz  <poenitz@gmx.net>
5445
5446         * BufferView_pimpl.C:
5447         * buffer.C:
5448         * bufferview_func.C:
5449         * MenuBackend.C:
5450         * lyxfunc.C:
5451         * lyxrc.C:
5452         * tex-accent.C:
5453         * text3.C:
5454         * toc.C:
5455         * tabular_funcs.h: tostr() from its own header
5456
5457         * ParagraphParameters.C:
5458         * ToolbarBackend.C:
5459         * bufferparams.C:
5460         * format.C:
5461         * lyxlex_pimpl.C:
5462         * text3.C: STRCONV()
5463
5464 2003-05-12  André Pönitz  <poenitz@gmx.net>
5465
5466         * BufferView.C:
5467         * BufferView_pimpl.C:
5468         * CutAndPaste.C:
5469         * LaTeX.C:
5470         * LaTeXFeatures.C:
5471         * ParagraphParameters.C:
5472         * buffer.C:
5473         * bufferlist.C:
5474         * bufferparams.C:
5475         * bufferview_funcs.C:
5476         * converter.C:
5477         * counters.C:
5478         * debug.C:
5479         * exporter.C:
5480         * format.C:
5481         * importer.C:
5482         * lyx_cb.C:
5483         * lyx_main.C:
5484         * lyxfont.C:
5485         * lyxfunc.C:
5486         * lyxvc.C:
5487         * paragraph.C:
5488         * paragraph_funcs.C:
5489         * tabular.C:
5490         * tabular_funcs.C:
5491         * text2.C:
5492         * text3.C:  boost::format -> bformat  all over the place
5493
5494
5495 2003-05-09  André Pönitz  <poenitz@gmx.net>
5496
5497         * LColor.[Ch]: Pimpl the #include <map> away
5498
5499 2003-05-09  John Levon  <levon@movementarian.org>
5500
5501         * bufferlist.C: never remove emergency saves
5502
5503 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
5504
5505         * Makefile.am: better lib building
5506
5507 2003-05-07  Lars Gullik Bjønnes  <larsbj@gullik.net>
5508
5509         * texrow.[Ch]: remove dependency on Paragraph and just store a id
5510         instead.
5511         * paragraph_pimpl.C (simpleTeXBlanks): adjust
5512         (simpleTeXSpecialChars): adjust
5513         (simpleTeXSpecialChars): adjust
5514         * paragraph.C (simpleTeXOnePar): adjust
5515         * buffer.C (makeLaTeXFile): adjust
5516
5517         * Makefile.am (BOOST_LIBS): allow boost as system lib.
5518
5519         * text2.C (changeDepth): parlist cleanup
5520         (getColumnNearX): ditto
5521
5522         * rowpainter.C (getLabelFont): parlist cleanup
5523
5524         * bufferlist.C (newFile): parlist cleanup
5525
5526         * CutAndPaste.C (eraseSelection): parlist cleanup
5527
5528         * BufferView_pimpl.C (trackChanges): parlist cleanup
5529         (dispatch): ditto
5530
5531         * BufferView.C (lockInset): parlist cleanup.
5532         (ChangeInsets): ditto
5533
5534 2003-05-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
5535
5536         * CutAndPaste.h: Update file header.
5537
5538         * CutAndPaste.C: Update file header.
5539         Store the parts cut out of the Document in a limited_stack.
5540         (copySelection): adjust
5541         (pasteSelection): new function, takes the index in the limited stack.
5542         (nrOfParagraphs): adjust
5543         (SwitchLayoutsBetweenClasses): Change to take a ParagraphList&,
5544         simplify error inset insertion.
5545         (checkPastePossible): adjust
5546
5547 2003-05-06  John Levon  <levon@movementarian.org>
5548
5549         * text2.C: don't cast wrap inset to float
5550
5551 2003-05-05  André Pönitz  <poenitz@gmx.net>
5552
5553         * iterator.C:
5554         * undo_funcs.C: use getParagraphs() instead of getFirstParagraph()
5555
5556         * buffer.[Ch]: new function hasParWithId() to help to get rid of a
5557           few naked Paragraph *.
5558
5559 2003-05-02  Michael Schmitt  <michael.schmitt@teststep.org>
5560
5561         * bufferparams.C: Output warning if a document with missing
5562         TeX document class is loaded
5563         * exporter.C: Disable TeX exports if the document class is missing
5564         * lyxtextclass.C:
5565         * lyxtextclass.h:
5566         * lyxtextclasslist.C: Handle new textclass.lst format; new method
5567         isTeXClassAvailable()
5568
5569 2003-05-03  John Levon  <levon@movementarian.org>
5570
5571         * BufferView.h:
5572         * BufferView.C: remove showLockedInsetCursor(), showCursor(),
5573         explicit cursor show/hide
5574
5575         * BufferView_pimpl.h:
5576         * BufferView_pimpl.C: hide cursor before dispatching. Show cursor
5577         after a cursor move lfun. Simplify cursorToggle(). Remove show/hideCursor().
5578
5579         * lyxfunc.C: hide cursor before dispatching.
5580
5581         * lyx_cb.C:
5582         * lyxfind.C:
5583         * text.C:
5584         * text3.C: remove explicit cursor hides
5585
5586 2003-05-02  André Pönitz  <poenitz@gmx.net>
5587
5588         * buffer.[Ch]: two instances of Paragraph * -> ParagraphList::iterator
5589
5590         * undo_funcs.C:
5591         * undo.[Ch]: rely on std::vector<Paragraph *> instead of manually
5592           linked lists
5593
5594         * text2.C: tiny whitespace
5595
5596 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
5597
5598         * undo_funcs.C: almost only ws changes.
5599
5600         * ParagraphList.C (splice): just return if pl is empty.
5601
5602 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
5603
5604         * ParagraphList.C (splice): new function.
5605
5606         * CutAndPaste.C (pasteSelection): use it
5607
5608 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5609
5610         * CutAndPaste.C (pasteSelection): remove the last next and
5611         previous from this file.
5612
5613 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5614
5615         * CutAndPaste.C (pasteSelection): more clean up, user proper
5616         ParagraphList functions for pasteing.
5617
5618         * ParagraphList.C (insert): new function, three arg insert
5619
5620 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5621
5622         * ParagraphList.C (insert): new function, three arg insert
5623
5624         * CutAndPaste.C (pasteSelection): work on the simple_cut_clone,
5625         not on paragraphs.
5626
5627 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5628
5629         * CutAndPaste.C (pasteSelection): copy paragraphlist the nice way.
5630
5631 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5632
5633         * CutAndPaste.C (pasteSelection): remove some unneeded code.
5634
5635 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5636
5637         * CutAndPaste.C (resetOwnerAndChanges): new helper functor
5638         (copySelection): clean up a bit.
5639         (pasteSelection): use make_pair
5640
5641         * ParagraphList.C (ParagraphList): implement copy constructor
5642         (operator=): implement, base on copy constructor.
5643         (assign): new func
5644
5645         * paragraph.C (erase): return a bool
5646
5647         * paragraph_pimpl.C (erasePos): remove function, move contents...
5648         (erase): ... here. Return a bool.
5649         (erase): call erase instead of erasePos.
5650
5651 2003-04-30  Alfredo Braunstein  <abraunst@libero.it>
5652
5653         * ParagraphList.h: define PitPosPair
5654         * CutAndPaste.C (copySelection, pasteSelection): big rework, use
5655         ParagraphList, fix a bug on pasting multiple pars
5656         * text2.C: change interface to C&P
5657
5658 2003-04-30  André Pönitz  <poenitz@gmx.net>
5659
5660         * undo_func.C: revert part of yesterday's patch 2
5661
5662 2003-04-30  John Levon  <levon@movementarian.org>
5663
5664         * LColor.C: s/tabular/table/
5665
5666 2003-04-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
5667
5668         * text3.C (dispatch): do not convert iterator -> pointer
5669         * undo_funcs.C (setCursorParUndo): ditto
5670         * text_funcs.C (transposeChars): ditto
5671
5672         * text2.C (setLayout): ws changes only
5673
5674         * text.C (breakParagraph): do not convert iterator -> pointer
5675         (insertChar): ditto
5676         (acceptChange): ditto
5677         (rejectChange): ditto
5678         (changeCase): ditto
5679         (Delete): ditto
5680         (backspace): ditto
5681
5682         * BufferView.C (lockedInsetStoreUndo): do not convert iterator ->
5683         pointer
5684
5685 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
5686
5687         * text3.C (gotoInset): YABG (yet another bad getChar)
5688
5689 2003-04-29  André Pönitz  <poenitz@gmx.net>
5690
5691         * paragraph.h: make operator= private unimplemented as long as
5692           it is unusable
5693
5694         * ParagraphList.C: whitespace
5695
5696         * paragraph.[Ch]:
5697         * paragraph_pimpl.[Ch]:
5698         * paragraph_funcs.C:
5699         * CutAndPaste.C:
5700         * undo_funcs.C: whitespace + Paragraph *  -> Paragraph (const) &
5701
5702         * text2.C:
5703           undo_funcs.[Ch]: Paragraph * -> ParagraphList::iterator
5704
5705 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
5706
5707         * CutAndPaste.[Ch] (cutSelection): big rework, some bugs fixed
5708         * paragraph.[Ch] (erase):
5709         * paragraph_pimpl.[Ch] (erase): change return type and value
5710         * text2.C (cutSelection): some rework
5711
5712 2003-04-28  John Levon  <levon@movementarian.org>
5713
5714         * bufferlist.C: changes for unsaved changes dialog
5715
5716 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
5717
5718         * bufferlist.C (newFile): set language (messages_) for new
5719         documents also.
5720
5721         * buffer.C (readFile): ws changes only.
5722
5723 2003-04-28  André Pönitz  <poenitz@gmx.net>
5724
5725         * undo_funcs.C:
5726         * lyxfunc.C:
5727         * buffer.[Ch]:
5728         * BufferView_pimpl.C:
5729         * BufferView.C: getParFromID related ParagraphList::iterator changes
5730
5731 2003-04-28  André Pönitz  <poenitz@gmx.net>
5732
5733         * tabular.[Ch]: part of Lars' Paragraph * -> ParagraphList::iterator
5734           Changes
5735
5736 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
5737
5738         * messages.C: remove one more localedir class variable.
5739
5740 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
5741
5742         * messages.C (getLocaleDir): singleton generation function
5743         (Pimpl): use it.
5744         (Messages): add a default constructor.
5745
5746         * main.C (main): do not setup localedir here, do not call
5747         gettext_init.
5748
5749         * gettext.C (_): use it.
5750         (gettext_init): delete funciton
5751
5752 2003-04-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
5753
5754         * gettext.C (getLyXMessages): new singleton generating function.
5755
5756         * buffer.C (updateDocLang): adjust
5757
5758         * Makefile.am (messages.o): add target
5759         (main.o): remove target
5760
5761 2003-04-27  John Levon  <levon@movementarian.org>
5762
5763         * bufferlist.C:
5764         * lyx_cb.C:
5765         * lyxfunc.C:
5766         * lyxvc.C: specify cancel button in Alert::prompt
5767
5768 2003-04-26  John Levon  <levon@movementarian.org>
5769
5770         * text3.C:
5771         * lyxfunc.C:
5772         * lfuns.h:
5773         * LyXAction.C: add LFUN_INSET_SETTINGS
5774
5775         * lyxfunc.C: don't enable tabular-feature when there's
5776         just any locking inset
5777
5778 2003-04-26  John Levon  <levon@movementarian.org>
5779
5780         * bufferlist.C: re-add Cancel to buffer close question
5781
5782         * lyxfunc.C: fix import UI a bit
5783
5784 2003-04-25  John Levon  <levon@movementarian.org>
5785
5786         * gettext.C: remove the broken asserts for now
5787
5788 2003-04-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
5789
5790         * messages.C: make case where setlocale cannot comply work better.
5791
5792         * buffer.C (updateDocLang): new function
5793         (changeLanguage): use it
5794         (readFile): use it
5795
5796         * text2.C (setCounter): use B_ a bit.
5797
5798         * lyxlayout.C (Read): be sure to trim the label strings.
5799
5800         * messages.C (Messages): fix typo in comment
5801
5802         * buffer.C (readFile): set message_ after file is loaded.
5803         (makeDocBookFile): remove double return
5804         (changeLanguage): reset message_ upon language change.
5805         (B_): new func, use this to get translated buffer strings.
5806
5807         * main.C: add myself and Jean Marc as authors.
5808
5809 2003-04-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
5810
5811         * messages.[hC]: pimplify Messages, and three different pimpls to be
5812         used in different circumstances.
5813
5814         * gettext.[Ch]: change for use with new message code.
5815
5816 2003-04-24 André Pönitz <poenitz@gmx.net>
5817
5818         * factory.C: support for eqref
5819
5820 2003-04-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
5821
5822         * messages.[Ch]: add missing char
5823
5824         * Makefile.am (lyx_SOURCES): add messages.[Ch]
5825
5826         * messages.[Ch]: New files
5827
5828 2003-04-18  John Levon  <levon@movementarian.org>
5829
5830         * BufferView.h:
5831         * BufferView.C:
5832         * BufferView_pimpl.C:
5833         * lfuns.h:
5834         * LyXAction.C:
5835         * lyxtext.h:
5836         * text2.C: remove layout-copy/paste (bug 778)
5837
5838 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
5839
5840         * text2.C (redoParagraphs): eliminate good_prevrit, rewrite a loop
5841
5842 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
5843
5844         * bufferlist.C (quitWriteBuffer): WriteAs and MenuWrite return true
5845         if they succeed. Act accordingly.
5846
5847 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
5848
5849         * text2.C (setCharFont): adjust
5850         (setCounter): adjust
5851         (insertStringAsLines): adjust
5852
5853         * text.C (leftMargin): adjust
5854         (setHeightOfRow): adjust
5855
5856         * rowpainter.C (paintFirst): adjust
5857         (paintLast): adjust
5858
5859         * paragraph_funcs.C (depthHook): ParagraphList::iterators
5860         (outerHook): ditto
5861         (isFirstInSequence): ditto
5862         (getEndLabel): ditto
5863         (outerFont): adjust
5864
5865         * paragraph.C (getParLanguage): comment out some hard stuff.
5866
5867         * buffer.C (insertStringAsLines): take a ParagraphList as arg
5868         (sgmlError): ditto
5869         (simpleDocBookOnePar): ditto
5870         (makeDocBookFile): use ParagraphList::iterator
5871
5872         * CutAndPaste.C (pasteSelection): adjust
5873
5874 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
5875
5876         * text2.C (getFont): adjust
5877         (getLayoutFont): adjust
5878         (getLabelFont): adjust
5879
5880         * paragraph_funcs.C (TeXOnePar): adjust
5881
5882         * buffer.C (simpleLinuxDocOnePar): adjust
5883         (simpleDocBookOnePar): adjust
5884
5885         * CutAndPaste.C (pasteSelection): adjust
5886
5887         * BufferView.C (getEncoding): adjust
5888
5889         * paragraph_funcs.C (outerFont): prepare for a ParagraphList arg.
5890
5891 2003-04-16  John Levon  <levon@movementarian.org>
5892
5893         * lyxfind.C: use parlist stuff for search/changes
5894
5895 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
5896
5897         * undo_funcs.C (textHandleUndo): ajust (rather big adsjust this one)
5898
5899         * text2.C (deleteEmptyParagraphMechanism): adjust
5900
5901         * text2.[Ch] (ownerParagraph): delete func (both of them
5902
5903 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5904
5905         * text_funcs.C (transposeChars): use ParagraphList::iterator here.
5906
5907 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5908
5909         * ParagraphList.C: prepare for NO_NEXT
5910
5911 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5912
5913         * text2.C (getFont): adjust
5914         (getLayoutFont): adjust
5915         (getLabelFont): adjust
5916
5917         * paragraph.C (getFont): adjust
5918         (getLabelFont): adjust
5919         (getLayoutFont): adjust
5920
5921         * paragraph_funcs.[Ch] (realizeFont): remove unneeded arguments.
5922
5923 2003-04-15  John Levon  <levon@movementarian.org>
5924
5925         From Angus Leeming
5926
5927         * lyx_main.C: handle Include in .ui files
5928
5929 2003-04-15  John Levon  <levon@movementarian.org>
5930
5931         * MenuBackend.C: make the doc files length shorter
5932
5933         * ToolbarBackend.h:
5934         * ToolbarBackend.C: handle toolbar placement flags,
5935         Minibuffer
5936
5937 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5938
5939         * paragraph_pimpl.C (simpleTeXSpecialChars): take a outerfont arg,
5940         adjust
5941
5942         * paragraph_funcs.C (TeXOnePar): adjust
5943
5944         * paragraph.C (getLabelFont): add outerfont arg, adjust
5945         (getLayoutFont): ditto
5946         (simpleTeXOnePar): adjust
5947
5948         * paragraph_pimpl.C (realizeFont): delete func
5949
5950 2003-04-14  Alfredo Braunstein  <abraunst@libero.it>
5951
5952         * text2.C (beforeFullRowInset): added a bad getchar check, removed
5953         row argument, constify cur argument.
5954
5955 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
5956
5957         * text2.C (getFont): adjust
5958         (getLayoutFont): adjust
5959         (getLabelFont): adjust
5960
5961         * paragraph_funcs.C (TeXOnePar): adjust
5962         (outerFont): new func...
5963         (realizeFont): ...moved out from here, changed this to facilitate
5964         transition
5965
5966         * paragraph.C (getFont): take outerfont as arg, adjust
5967         (simpleTeXOnePar): add outerfont arg, adjust
5968
5969         * buffer.C (simpleLinuxDocOnePar): adjust
5970         (simpleDocBookOnePar): adjust
5971
5972         * CutAndPaste.C (pasteSelection): adjust
5973
5974         * BufferView.C (getEncoding): adjust
5975
5976 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
5977
5978         * text2.C (setCharFont): adjust
5979         (setCounter): adjust
5980
5981         * text.C (leftMargin): adjust
5982         (setHeightOfRow): adjust
5983
5984         * rowpainter.C (paintFirst): adjust
5985         (paintLast): adjust
5986
5987         * paragraph_pimpl.C (realizeFont): adjust
5988
5989         * paragraph.C (isFirstInSequence): move from here...
5990         * paragraph_funcs.C (isFirstInSequence): ...to here
5991
5992         * paragraph.C (outerHook): move from here...
5993         * paragraph_funcs.C (outerHook): ...to here
5994
5995         * paragraph.C (depthHook): move from here...
5996         * paragraph_funcs.C (depthHook): ...to here
5997
5998         * paragraph.C (getEndLabel): move from here...
5999         * paragraph_funcs.C (getEndLabel): ...to here
6000
6001         * text2.C (realizeFont): move from here...
6002         * paragraph_funcs.C (realizeFont): ...to here
6003
6004 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
6005
6006         * text3.C (gotoNextInset): use separate tmp vars for par and pos.
6007
6008 2003-04-14  Angus Leeming  <leeming@lyx.org>
6009
6010         * LColor.[Ch]: scrap LColor mathcursor.
6011
6012 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
6013
6014         * lyxlex.[Ch] (text): delete function
6015         * trans.C (Load): adjust
6016         * paragraph_funcs.C (readParToken): adjust
6017
6018 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
6019
6020         * lyxlex_pimpl.h: get rid of LEX_MAX_BUFF, change buff to be a
6021         vector<char> instead of a char[].
6022
6023         * lyxlex_pimpl.C (getString): adjust
6024         (next): adjust
6025         (lex): use getString
6026         (eatLine): adjust
6027         (nextToken): adjust
6028
6029         * lyxlex.C (text): use pimpl_->getString()
6030         (getBool): ditto
6031         (findToken): ditto
6032
6033 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
6034
6035         * text2.C (getInset): temp vars for cursor.par() and cursor.pos()
6036         (makeFontEntriesLayoutSpecific): temp var for par.size()
6037         (setLayout): temp var for ownerParagraphs().end()
6038         (fullRebreak): temp var for rows().end()
6039         (selectionAsString): temp var for boost::next(startpit), realize
6040         that the while really is a regular for loop.
6041         (cursorEnd): temp vars for cursor.row(), lastPos ++, only call
6042         setCursor in one place.
6043         (setParagraph): temp vr for ownerParagraphs().end()
6044         (updateCounters): make the while loop a for loop
6045         (cutSelection): temp var for ownerParagraphs().end()
6046         (updateInset): make the do {} while() a regular for loop
6047         (getCursorX): use temp vars
6048         (setCurrentFont): use temp vars
6049         (getColumnNearX): use temp vars
6050
6051 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
6052
6053         * text.C (transformChar): use temp var for getChar
6054         (computeBidiTables): use temp var for row->par()
6055         (fill): move temp vars for row->par() and pit->layout() earlier in
6056         the function.
6057         (labelFill): use temp var for row->par()
6058         (setHeightOfRow): do not allow rit to be RowList::end, get rid of
6059         asc and desc, realize that pit never changes and that firstpit is
6060         just a duplicate and not needed. Exchange rit->par() with pit in a
6061         lot of places.
6062         (breakAgain): use a temp var for boost::next(rit)
6063         (breakAgainOneRow): ditto
6064         (breakParagraph): use a temp var for rows().begin()
6065         (prepareToPrint): move nlh into minimal scope, use temp var for rit->par()
6066         (cursorRightOneWord): use temp var for cursor.par() and
6067         cursor.pos(), remove usage of tmpcursor.
6068         (cursorLeftOneWord): use temp var for cursor.par() and
6069         cursor.pos() only set cur at end of function.
6070
6071 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
6072
6073         * text.C, text2.C: exchange all usage of Paragraph::next with
6074         boost::next(ParagraphList::iterator)
6075
6076         * CutAndPaste.C (cutSelection): change 2. arg to a Paragraph*
6077
6078         * text2.C (cursorTop): simplify implementation
6079         (cursorBottom): ditto
6080         (setParagraph): use ParagraphList::iterator
6081         (setCurrentFont): adjust
6082         (getColumnNearX): adjust
6083         (cursorRight): adjust
6084         (cursorLeft): remove usage of Paragraph::previous
6085         (cursorUpParagraph): ditto
6086         (deleteEmptyParagraphMechanism): slight cleanup
6087
6088         * text.C (isBoundary): take a Paragraph const & instead of a
6089         pointer as arg.
6090         (addressBreakPoint): ditto
6091         (leftMargin): remove usage of Paragraph::previous.
6092         (setHeightOfRow): ditto
6093         (cursorLeftOneWord): ditto
6094         (selectNextWordToSpellcheck): ditto
6095         (Delete): ditto
6096         (backspace): ditto
6097         (breakParagraph): remove one usage of Paragraph::next
6098         (redoParagraph): ditto
6099         (acceptChange): ditto
6100         (insertChar): adjust
6101         (rowBreakPoint): adjust
6102
6103         * bufferview_funcs.C (toggleAndShow): adjust
6104
6105 2003-04-11  Alfredo Braunstein  <abraunst@libero.it>
6106
6107         * lyxrow.[Ch]: add a cached y position to a Row and Row::y()
6108         methods to access it.
6109         * lyxtext.h:
6110         * text.C: Added updateRowPositions to compute all row positions.
6111         Make top_y and getRowNearY() to use the cached y position
6112
6113 2003-04-11  John Levon  <levon@movementarian.org>
6114
6115         * text.C (rowBreakPoint): reintroduce the labelEnd
6116         checks, code copied from the row fill stuff. Deep voodoo.
6117
6118         * text.C (fill): add a comment and debugging for the
6119         next poor soul.
6120
6121 2003-04-11  John Levon  <levon@movementarian.org>
6122
6123         * text.C: make sure fullrow insets get wrapped to the next line,
6124         even when they're in a manual label
6125
6126 2003-04-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
6127
6128         * text2.C (insertParagraph): make it take ParagraphList::iterator
6129         as arg.
6130         (setLayout): make it return ParagraphList::iterator
6131         (redoParagraphs): ditto
6132         (setCounter): ditto
6133         (checkParagraph): ditto
6134
6135         * text.C (getRow): make getrow take ParagraphList::iterator as arg
6136
6137         * text2.C: adjust several funcs.
6138         (realizeFont): take a ParagraphList::iterator as arg.
6139         (getLayoutFont): ditto
6140         (getLabelFont): ditto
6141         (setCharFont): ditto
6142
6143         * text.C: adjust several funcs.
6144
6145 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
6146
6147         * text.C (selectNextWordToSpellcheck): don't accidentally
6148         skip insets
6149
6150 2003-04-10  John Levon  <levon@movementarian.org>
6151
6152         * ToolbarBackend.C (getIcon): special handling for
6153         LFUN_MATH_DELIM
6154
6155 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
6156
6157         * text2.C (cursorRight): a getChar assert fixed
6158
6159 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
6160
6161         * text2.C (getFont): change to take a ParagraphList::iterator
6162         instead of Paragraph*
6163         Adjust several functions.
6164
6165         * text.C (transformChar): change to take a ParagraphList::iterator
6166         instead of Paragraph*
6167         (singleWidth): ditto
6168         Adjust several functions.
6169
6170         * rowpainter.C: adjust several functions
6171         * rowpainter.h:store a ParagraphList::iterator and not a
6172         Paragraph&.
6173
6174
6175 2003-04-09  John Levon  <levon@movementarian.org>
6176
6177         * lyxfunc.C:
6178         * lfuns.h:
6179         * LyXAction.h:
6180         * LyXAction.C: remove LFUN_APROPOS, LFUN_GETTIP,
6181         and the "help" bits as well
6182
6183 2003-04-09  John Levon  <levon@movementarian.org>
6184
6185         * ToolbarBackend.h:
6186         * ToolbarBackend.C: allow multiple toolbars
6187
6188 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
6189
6190         * undo_funcs.C (setCursorParUndo): adjust
6191
6192         * text_funcs.C (transposeChars): adjust
6193
6194         * text3.C (gotoNextInset): adjust
6195         (dispatch): adjust
6196
6197         * text2.C (setLayout): adjust
6198         (changeDepth): adjust
6199         (setFont): adjust
6200         (redoParagraphs): adjust
6201         (selectionAsString): adjust
6202         (setParagraph): adjust
6203         (insertInset): adjust
6204         (cutSelection): adjust
6205         (copySelection): adjust
6206         (pasteSelection): adjust
6207         (insertStringAsLines): adjust
6208         (updateInset): adjust
6209         (setCursor): change to take a ParagraphList::iterator parameter
6210         (setCursorIntern): change to take a ParagraphList::iterator parameter
6211         (setCurrentFont): adjust
6212         (cursorLeft): adjust
6213         (cursorRight): adjust
6214         (deleteEmptyParagraphMechanism): adjust
6215
6216         * text.C (breakParagraph): adjust
6217         (insertChar): adjust
6218         (acceptChange): adjust
6219         (rejectChange): adjust
6220         (selectNextWordToSpellcheck): adjust
6221         (changeCase): adjust
6222         (Delete): adjust
6223         (backspace): adjust
6224
6225         * lyxfind.C (SearchForward): adjust
6226         (SearchBackward): adjust
6227         (nextChange): adjust
6228
6229         * lyxcursor.C (par): adjust
6230
6231         * lyxcursor.h: store a ParagraphList::iterator instead of a
6232         Paragraph*
6233
6234         * lyx_cb.C (getPossibleLabel): adjust
6235
6236         * bufferview_funcs.C (toggleAndShow): adjust
6237
6238         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
6239         (dispatch): adjust
6240
6241         * BufferView.C (removeAutoInsets): adjust
6242         (lockedInsetStoreUndo): adjust
6243
6244 2003-04-09  John Levon  <levon@movementarian.org>
6245
6246         * ToolbarBackend.C: try icon without argument
6247         if with argument fails
6248
6249 2003-04-08  John Levon  <levon@movementarian.org>
6250
6251         * ToolbarBackend.h:
6252         * ToolbarBackend.C: add getIcon(), handle tooltip,
6253         and change from "Icon" to "Item".
6254
6255 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
6256
6257         * BufferView.C (lockInset): another bad getchar crunched
6258
6259 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
6260
6261         * text2.C (changeDepth): do not setUndo on test_only (make undo work
6262         again)
6263
6264 2003-04-05  Alfredo Braunstein  <abraunst@libero.it>
6265
6266         * lyxfind.C (searchForward, searchBackwards): bug 782
6267
6268 2003-04-07  John Levon  <levon@movementarian.org>
6269
6270         * paragraph.C: remove dead comment
6271
6272         * text.C: remove troublesome depth-fiddling code
6273         in leftMargin() and rightMargin() (bug 1017)
6274
6275         * text.C: fix breaking of rows in nested lists
6276         (bug 1004)
6277
6278         * text2.C (updateCounters): fix up depth values
6279         (bug 1013)
6280
6281 2003-04-07  John Levon  <levon@movementarian.org>
6282
6283         * BufferView_pimpl.C: clear message when doc finishes resizing,
6284         and after a mouse event
6285
6286         * lyxfunc.C: clear message after exiting inset
6287
6288 2003-04-07  John Levon  <levon@movementarian.org>
6289
6290         * bufferview_funcs.C: show math status not outside
6291         status in the statusbar
6292
6293 2003-04-07  John Levon  <levon@movementarian.org>
6294
6295         * lyxfunc.C: note status changed after a depth change
6296
6297 2003-04-04  Angus Leeming  <leeming@lyx.org>
6298
6299         * LaTeX.h: move AuxInfo operator==, != out of line.
6300         Remove LaTeX virtual destructor; nothing derives from it.
6301         Move operator()() out of public area and rename it startscript().
6302         Change protected for private.
6303
6304 2003-04-04  Angus Leeming  <leeming@lyx.org>
6305
6306         * lyxfunc.C:
6307         * text2.C: remove unneeded #includes.
6308
6309 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
6310
6311         * text2.C (dEPM): fix the heigth of the next row
6312
6313 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
6314
6315         * text.C: squashed an invalid getChar requester + some ws changes
6316
6317 2003-04-03  John Levon  <levon@movementarian.org>
6318
6319         * bufferview_funcs.h:
6320         * bufferview_funcs.C:
6321         * lyxfunc.C:
6322         * lyxtext.h:
6323         * text2.C: make getStatus work for the env depth lfuns
6324
6325 2003-04-03  John Levon  <levon@movementarian.org>
6326
6327         * bufferview_funcs.h:
6328         * bufferview_funcs.C:
6329         * lyxfunc.C:
6330         * lyxtext.h:
6331         * text2.C: parlistize decDepth(), by merging it with incDepth()
6332
6333 2003-04-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
6334
6335         * lyxrow.h: store a ParagraphList::iterator instead of a
6336         Paragraph* and adjust other class functions to suit.
6337
6338         * lyxrow_funcs.C, text.C, text2.C, text3.C: adjust because of the
6339         above.
6340
6341 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
6342
6343         * text2.C (setCursor): do not anchor to cursor row for the time being
6344
6345 2003-04-02  John Levon  <levon@movementarian.org>
6346
6347         * LyXAction.C:
6348         * lfuns.h:
6349         * lyx_main.C:
6350         * lyxtext.h:
6351         * text.C:
6352         * text3.C: rename the "tab" lfuns. Remove tab support from normal text
6353
6354 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
6355
6356         * paragraph.h: make ParagraphList and ParagraphList::iterator
6357         friends of Paragraph.
6358
6359         * buffer.C (makeLinuxDocFile): move towards ParagraphList
6360
6361         * ParagraphList.C: Use the private next_ and previous_ from
6362         Paragraph.
6363
6364 2003-04-01  John Levon  <levon@movementarian.org>
6365
6366         * ToolbarBackend.h:
6367         * ToolbarBackend.C:
6368         * Makefile.am: rename, remove defaults gunk
6369
6370         * MenuBackend.h:
6371         * MenuBackend.C: remove defaults gunk
6372
6373         * Languages.h:
6374         * Languages.C: remove defaults gunk
6375
6376         * lyx_main.h:
6377         * lyx_main.C: error out if files couldn't be found.
6378
6379 2003-04-02  John Levon  <levon@movementarian.org>
6380
6381         * text2.C: make incDepth() use parlist
6382
6383 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
6384
6385         * undo_funcs.C (firstUndoParagraph): adjust
6386
6387         * text3.C (gotoInset): adjust
6388         (dispatch): adjust, and rewrite loop.
6389
6390         * text2.C (init): adjust, and rewrite loop.
6391         (redoParagraphs): adjust
6392         (updateInset): adjust, and rewrite loop.
6393         (deleteEmptyParagraphMechanism): adjust
6394
6395         * tabular.C (LyXTabular): adjust
6396         (SetMultiColumn): adjust
6397         (TeXRow): adjust
6398
6399         * lyxtext.[Ch] (ownerParagraph): delete function
6400         (ownerParagraphs): new function returns a ParagraphList.
6401
6402         * BufferView.C (removeAutoInsets): adjust
6403         (insertErrors): adjust
6404         (setCursorFromRow): adjust
6405
6406 2003-04-01  Angus Leeming  <leeming@lyx.org>
6407
6408         * BufferView_pimpl.C (buffer): ensure that the Layout is correct
6409         in the frontends.
6410
6411 2003-04-02  John Levon  <levon@movementarian.org>
6412
6413         * lyxtext.h:
6414         * text.C:
6415         * Makefile.am:
6416         * text_funcs.h:
6417         * text_funcs.C: make transposeChars a free function
6418
6419         * lyxrow_funcs.C: remove wrong comment
6420
6421 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
6422
6423         * lyxtext.h: adjust
6424         * rowpainter.C: adjust
6425         * text.C: adjust
6426         * text2.C: adjust
6427         * text3.C: adjust
6428
6429         * lyxrow_funcs. [Ch]: new files
6430
6431         * lyxrow.[Ch]: remove next and previous pointers
6432         (next,previous): remove accessor functions
6433         (isParEnd): move to lyxrow_funcs
6434         (lastPos): move to lyxrow_funcs
6435         (nextRowIsAllInset): move to lyxrow_funcs
6436         (lastPrintablePos): move to lyxrow_funcs
6437         (numberOfSeparators): move to lyxrow_funcs
6438         (numberOfHfills): move to lyxrow_funcs
6439         (numberOfLabelHfills): move to lyxrow_funcs
6440         (hfillExpansion): move to lyxrow_funcs
6441
6442         * lyxfunc.C: adjust
6443
6444         * bufferview_funcs.C (toggleAndShow): adjust
6445
6446         * RowList.h: Remove class RowList from file leave just a
6447         std::list<Row>.
6448
6449         * RowList.C: delete file
6450
6451         * Makefile.am (lyx_SOURCES): remove RowList.C, add lyxrow_funcs.C
6452         and lyxrow_funcs.h
6453
6454 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
6455
6456         * text3.C (cursorPrevious): adjust
6457         (cursorNext): adjust
6458         (dispatch): adjust
6459
6460         * text2.C (redoHeightOfParagraph): adjust
6461         (redoDrawingOfParagraph): adjust
6462         (setCursor): adjust
6463
6464         * text.C (breakParagraph): adjust
6465         (insertChar): adjust
6466         (backspace): adjust
6467
6468         * rowpainter.C (RowPainter): adjust
6469         (leftMargin): simplify and adjust
6470         (most rowpainter functions): adjust.
6471
6472         * rowpainter.h: store the row as RowList::iterator not as Row*
6473
6474         * lyxcursor.C (row): taka RowList::iterator as arg
6475         (irow): ditto
6476
6477         * lyxcursor.h: make the LyXCursor store RowList::iterators instead
6478         of Row*.
6479
6480 2003-04-01  Angus Leeming  <leeming@lyx.org>
6481
6482         * bufferview_funcs.C (string2font): rewrite so that it no longer uses
6483         stuff like bool Bool.
6484
6485 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
6486
6487         * text2.C (redoParagraphs): fix a bug (introduced by myself) and
6488         rewrite a loop
6489
6490 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
6491
6492         * text2.C (redoParagraphs): rewrite (with help from Alfredo) for
6493         RowList::iterator.
6494
6495         * lyxtext.h (rows): drop one version and leve a const variant that
6496         returns a RowList::iterator.
6497
6498 2003-03-31  Angus Leeming  <leeming@lyx.org>
6499
6500         * text.C (fill): ensure that the signature is the same as that in the
6501         header file.
6502
6503 2003-03-31  Lars Gullik Bjønnes  <larsbj@gullik.net>
6504
6505         * text2.C (redoParagraphs): adjust
6506         (updateCounters): adjust
6507         (checkParagraph): adjust
6508         (getColumnNearX): adjust and reformat a bit.
6509
6510         * text.C (top_y): adjust
6511         (workWidth): adjust
6512         (leftMargin): adjust
6513         (prepareToPrint): adjust
6514         (getRow): adjust
6515         (getRowNearY): adjust
6516
6517         * lyxtext.h: make rowlist_ mutable.
6518
6519         * RowList.h: add const_iterator
6520         * RowList.C: adjust for RowList::const_iterator.
6521
6522         * text2.C (getCursorX): make it take a RowList::iterator as arg,
6523         adjust.
6524
6525 2003-03-31  John Levon  <levon@movementarian.org>
6526
6527         * lyxrc.h:
6528         * lyxrc.C: moved pdf_mode and use_gui to elsewhere
6529
6530         * lyx_main.C: set default fonts from using lyx_gui funcs
6531
6532         * exporter.C: pdf_mode moved from lyxrc
6533
6534         * lyx_cb.C:
6535         * lyxfunc.C: changes from above
6536
6537 2003-03-31  John Levon  <levon@movementarian.org>
6538
6539         * lyx_main.C: fix to the last fix
6540
6541 2003-03-31  John Levon  <levon@movementarian.org>
6542
6543         * bufferlist.C: "Load original" -> "Load Original"
6544
6545         * converter.C:
6546         * exporter.C:
6547         * importer.C:
6548         * lyx_main.C:
6549         * format.C: more Alert cleanups
6550
6551 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
6552
6553         * text2.C (removeParagraph): make it take a RowList::iterator as
6554         arg, adjust.
6555         (getColumnNearX): make it take a RowList::iterator as arg, adjust.
6556         (postRowPaint): make it take a RowList::iterator as arg, adjust.
6557
6558         * text.C (anchor_row): make it take a RowList::iterator as arg,
6559         adjust.
6560         (computeBidiTables): make it take a const reference to Row instead
6561         of Row pointer, adjust.
6562         (leftMargin): make it take a RowList::iterator as arg, adjust.
6563         (rowBreakPoint): adjust
6564         (breakAgainOneRow): make it take a RowList::iterator as arg,
6565         adjust.
6566         (prepareToPrint): make it take a RowList::iterator as arg, adjust.
6567
6568         * bufferview_funcs.C (toggleAndShow): adjust
6569
6570 2003-03-30  John Levon  <levon@movementarian.org>
6571
6572         * Makefile.am:
6573         * BoostFormat.h:
6574         * boost-inst.C: moved to support
6575
6576         * several files: changes as a result
6577
6578 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
6579
6580         * text2.C (LyXText): adjust.
6581         (init): adjust
6582         (removeRow): make it take a RowList::iterator as arg, adjust.
6583         (fullRebreak): adjust
6584         (deleteEmptyParagraphMechanism): adjust
6585         (clearPaint): adjust
6586         (postPaint): adjust
6587
6588         * text.C (top_y): adjust
6589         (setHeightOfRow): make it take a RowList::iterator as arg, adjust.
6590         (breakAgain): make it take a RowList::iterator as arg, adjust.
6591         (breakParagraph): adjust
6592         (insertChar): adjust
6593         (backspace): adjust
6594
6595         * lyxtext.h: make anchor_row_ be a RowList::iterator, ditto
6596         need_break_row, and refresh_row.
6597
6598         * text3.C (dispatch): adjust
6599
6600         * text2.C (checkParagraph): adjust
6601         (setCursor): adjust
6602         (setCursorFromCoordinates): adjust
6603
6604         * text.C (top_y): adjust
6605         (workWidth): adjust
6606         (getRow): make it return a RowList::iterator, adjust
6607         (getRowNearY): make it return a RowList::iterator, adjust
6608
6609         * text2.C (init): adjust
6610         (insertRow): remove function
6611         (insertParagraph): adjust
6612         (redoParagraphs): adjust
6613         (fullRebreak): adjust
6614         (updateCounters): adjust
6615
6616         * text.C (top_y): rewrite to use RowList iterators.
6617         (top_y): adjust
6618         (setHeightOfRow): rewrite to sue RowList iterators.
6619         (appendParagraph): adjust
6620         (breakAgain): adjust
6621         (breakAgainOneRow): adjust
6622         (breakParagraph): adjust
6623         (getRow): adjust
6624         (getRowNearY): adjust, and remove commented code.
6625
6626         * lyxtext.h (firstRow): delete function
6627         (lastRow): delete function
6628         (rows): new function (const and non-const versions.)
6629         (insertRow): delete function
6630
6631         * lyxrow.[Ch] (Row): new constructor taking a par and a pos
6632
6633 2003-03-29  John Levon  <levon@movementarian.org>
6634
6635         * BufferView_pimpl.C: always update scrollbar top
6636         because pasting text when we're anchored could mean we
6637         miss an update altogether
6638
6639 2003-03-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
6640
6641         * text2.C (init): use rowlist_.end() and not 0.
6642         (insertRow): change to take a RowList::iterator as arg, adjust
6643         for this.
6644         (insertParagraph): change to take a RowList::iterator as arg,
6645         adjust for this.
6646         (redoParagraphs): remove some debug msgs.
6647
6648         * text.C (appendParagraph): change to take a RowList::iterator
6649         arg, adjust for this.
6650         (breakAgain): add an assert
6651         (breakAgainOneRow): ditto
6652
6653 2003-03-29  John Levon  <levon@movementarian.org>
6654
6655         * text2.C: do not clear selection after inc/decDepth
6656         (bug 550)
6657
6658 2003-03-29  John Levon  <levon@movementarian.org>
6659
6660         * BufferView.C:
6661         * buffer.C: fix broken strerrors according to Lars
6662
6663 2003-03-29  John Levon  <levon@movementarian.org>
6664
6665         * converters.C: more Alert cleanups
6666
6667 2003-03-29  John Levon  <levon@movementarian.org>
6668
6669         * bufferview_funcs.C: remove pointless Alert
6670
6671         * buffer.C: fix confusing error message when
6672         a template is chmoded 000
6673
6674 2003-03-29  John Levon  <levon@movementarian.org>
6675
6676         * BufferView.C:
6677         * BufferView.h:
6678         * BufferView_pimpl.C: Alert fixes
6679
6680         * Makefile.am:
6681         * tabular.C:
6682         * tabular-old.C: remove unused table compat reading
6683
6684 2003-03-29  John Levon  <levon@movementarian.org>
6685
6686         * BufferView.C:
6687         * buffer.C:
6688         * lyx_cb.h:
6689         * lyx_cb.C: more Alert cleanups
6690
6691         * lyxfunc.C: don't allow chktex if not latex document
6692
6693 2003-03-29  John Levon  <levon@movementarian.org>
6694
6695         * lyx_cb.C:
6696         * BufferView.C:
6697         * buffer.C: warnings pushed down from support/,
6698         kill err_alert
6699
6700 2003-03-29  John Levon  <levon@movementarian.org>
6701
6702         * lyxfunc.C: safety check for C-r (revert)
6703
6704 2003-03-29  John Levon  <levon@movementarian.org>
6705
6706         * bufferlist.h:
6707         * bufferlist.C: several UI fixes using Alert::prompt.
6708         Fix the pointless looping quit code. Fix stupid revert
6709         behaviour (bug 938)
6710
6711         * lyxvc.h:
6712         * lyxvc.C:
6713         * lyx_cb.C: use Alert::prompt
6714
6715         * lyx_main.C: remove a silly question
6716
6717         * lyxfunc.C: remove a couple of silly questions,
6718         use Alert::prompt
6719
6720 2003-03-28  John Levon  <levon@movementarian.org>
6721
6722         * text2.C: fix bug 974 (End on empty par)
6723
6724 2003-03-28  John Levon  <levon@movementarian.org>
6725
6726         * BufferView_pimpl.C:
6727         * LyXAction.C:
6728         * lfuns.h: remove do-nothing math greek lfuns
6729
6730 2003-03-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
6731
6732         * lyxgluelength.h (isValidGlueLength): add default arg on
6733         parameter 2. Remove default arg from friend in class.
6734
6735         * lyxlength.h (isValidLength): add default arg on parameter 2.
6736         Remove default arg from friend in class.
6737
6738         * text2.C (LyXText): adjust, initialize refresh_row.
6739         (init): adjust
6740         (removeRow): adjust
6741         (insertRow): adjust
6742         (insertParagraph): adjst
6743         (redoParagraphs): adjust
6744         (fullRebreak): adjust
6745         (updateCounters): adjust
6746         (deleteEmptyParagraphMechanism): first attempt at fixing a
6747         crashing bug.
6748
6749         * text.C (top_y): adjust
6750         (setHeightOfRow): adjust
6751         (getRow): adjust
6752         (getRowNearY): adjust
6753
6754         * lyxtext.h: include RowList.h
6755         (~LyXText): not needed anymore, deleted.
6756         (firstRow): modify for RowList
6757         (lastRow): new function
6758         Delete firstrow and lastrow class variables, add a Rowlist
6759         rowlist_ class variable.
6760
6761         * lyxrow.C (lastPos): use empty() and not !size() to check if a
6762         paragraph is empty.
6763
6764         * RowList.C (insert): fix case where it == begin().
6765
6766 2003-03-26  Angus Leeming  <leeming@lyx.org>
6767
6768         * BufferView_pimpl.C (dispatch): changes to the Dialogs interface for
6769         the thesaurus dialog.
6770
6771 2003-03-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
6772
6773         * Makefile.am (lyx_SOURCES): add RowList.[Ch]
6774
6775         * RowList.[Ch]: new files
6776
6777         * ParagraphList.C (erase): handle the case where it == begin
6778         correctly.
6779
6780 2003-03-25  John Levon  <levon@movementarian.org>
6781
6782         * Makefile.am:
6783         * aspell_local.h:
6784         * aspell.C: add new aspell support
6785
6786         * lyxrc.h:
6787         * lyxrc.C: Make use_pspell be use_spell_lib. Always
6788         have it accessible.
6789
6790 2003-03-25  Angus Leeming  <leeming@lyx.org>
6791
6792         * lfuns.h:
6793         * LyXAction.C (init): new LFUN_INSET_INSERT.
6794
6795         * BufferView_pimpl.C (dispatch): split out part of the
6796         LFUN_INSET_APPLY block LFUN_INSET_INSERT.
6797
6798         * factory.C (createInset): act on LFUN_INSET_INSERT rather than
6799         LFUN_INSET_APPLY.
6800
6801 2003-03-25  Angus Leeming  <leeming@lyx.org>
6802
6803         * lyxfunc.C (dispatch): changes to the Dialogs interface.
6804
6805 2003-03-25  Alfredo Braunstein  <abraunst@libero.it>
6806
6807         * text2.C:
6808         * text3.C: remove useless row->height(0)
6809
6810 2003-03-25  John Levon  <levon@movementarian.org>
6811
6812         * lyxtext.h:
6813         * text2.C:
6814         * text3.C: rename the refreshing stuff to better names
6815
6816 2003-03-24  John Levon  <levon@movementarian.org>
6817
6818         * BufferView_pimpl.h:
6819         * BufferView_pimpl.C: update layout choice on a mouse
6820         press/release
6821
6822 2003-03-23  John Levon  <levon@movementarian.org>
6823
6824         * Makefile.am: fix commandtags.h reference
6825
6826 2003-03-22  John Levon  <levon@movementarian.org>
6827
6828         * BufferView_pimpl.C:
6829         * lyxtext.h:
6830         * rowpainter.C:
6831         * rowpainter.h:
6832         * text.C:
6833         * text2.C: remove CHANGED_IN_DRAW, it cannot happen now
6834
6835 2003-03-21  Alfredo Braunstein  <abraunst@libero.it>
6836
6837         * lyxtext.h:
6838         * text.C: take the rtl methods out of line
6839
6840 2003-03-21 André Pönitz <poenitz@gmx.net>
6841
6842         * metricsinfo.[Ch]: new files containing structures to be passed around
6843         during the two-phase-drawing...
6844
6845 2003-03-21 André Pönitz <poenitz@gmx.net>
6846
6847         * lyxtextclass.C: read 'environment' tag.
6848
6849 2003-03-20  Alfredo Braunstein  <abraunst@libero.it>
6850
6851         * text2.C (removeRow): fix bug 964
6852
6853 2003-03-20  John Levon  <levon@movementarian.org>
6854
6855         * rowpainter.C:
6856         * text.C:
6857         * text2.C: paint cleanups. Inset::update() dropped font
6858         parameter
6859
6860 2003-03-19  John Levon  <levon@movementarian.org>
6861
6862         * lyxfunc.C: only fitcursor/markDirty if available()
6863
6864 2003-03-19  John Levon  <levon@movementarian.org>
6865
6866         * commandtags.h: rename to ...
6867
6868         * lfuns.h: ... this, and renumber / cleanup
6869
6870 2003-03-19  John Levon  <levon@movementarian.org>
6871
6872         * lyxfunc.C: mark buffer dirty if we executed a "dirtying" lfun.
6873         fit the cursor after an lfun
6874
6875         * BufferView.h:
6876         * BufferView.C:
6877         * BufferView_pimpl.h:
6878         * BufferView_pimpl.C: remove BufferView::FITCUR/CHANGE
6879
6880         * LyXAction.C: layout-character should have ReadOnly
6881
6882         * ParagraphParameters.C:
6883         * buffer.C:
6884         * bufferview_funcs.C:
6885         * lyx_cb.C:
6886         * lyxfind.C:
6887         * lyxtext.h:
6888         * text.C:
6889         * text2.C:
6890         * text3.C:
6891         * undo_funcs.C: changes from above
6892
6893 2003-03-18  John Levon  <levon@movementarian.org>
6894
6895         * BufferView_pimpl.C (scrollDocView): add updateLayoutChoice(),
6896         remove it from update()
6897
6898         * lyxfunc.C: update layout choice after an lfun
6899
6900         * text3.C: remove extra updateLayoutChoice()s
6901
6902 2003-03-18  John Levon  <levon@movementarian.org>
6903
6904         * text.C: top_y change means full repaint, fix
6905         a drawing bug with cursor movement
6906
6907 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
6908
6909         * lyxtext.h:
6910         * text.C:
6911         * text2.C: anchor row on setCursor
6912
6913 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
6914
6915         * lyxtext.h: remove almost all mutable keywords
6916         * text.C:
6917         * text2.C:
6918         * text3.C: remove const keywords accordingly
6919
6920 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
6921
6922         * paragraph_funcs.C (TeXDeeper): reduce number of args, move into
6923         anon namespace
6924         (TeXEnvironment): ditto
6925         (TeXOnePar): ditto
6926
6927 2003-03-17  John Levon  <levon@movementarian.org>
6928
6929         * text.C (rowBreakPoint): remove attempt to fix displayed
6930         math insets inside a manual label
6931
6932 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
6933
6934         * lyxtext.h: remove BufferView* as first arg from almost all class
6935         functions.
6936         * other files: adjust.
6937
6938 2003-03-17  John Levon  <levon@movementarian.org>
6939
6940         * lyxtext.h:
6941         * undo_funcs.C:
6942         * text2.C: more paint cleanups
6943
6944         * BufferView_pimpl.C: screen prototype changed, use postPaint etc.
6945
6946         * rowpainter.h:
6947         * rowpainter.C: remove "smart" background painting code
6948
6949 2003-03-16  John Levon  <levon@movementarian.org>
6950
6951         * lyxtext.h:
6952         * text.C:
6953         * text2.C:
6954         * text3.C: add helper functions for setting refresh_row/y
6955
6956 2003-03-14  Kayvan Sylvan  <kayvan@sylvan.com>
6957
6958         * paragraph_pimpl.C (simpleTeXSpecialChars): Added fix for the
6959         newline inset which *can* get inserted in the pass_thru layouts.
6960         This is primarily for literate documents.
6961
6962 2003-03-14  Dekel Tsur  <dekelts@tau.ac.il>
6963
6964         * buffer.C: increment LYX_FORMAT to 223
6965
6966 2003-03-14 André Pönitz <poenitz@gmx.net>
6967
6968         * textclass.h: prepare for environment handling, ws changes
6969         * lyxlayout.C: read latexheader and latexfooter tags
6970
6971 2003-03-14  John Levon  <levon@movementarian.org>
6972
6973         * text2.C: rewrite ::status() a bit
6974
6975 2003-03-13  John Levon  <levon@movementarian.org>
6976
6977         * lyxtext.h: add some docs
6978
6979 2003-03-13  John Levon  <levon@movementarian.org>
6980
6981         * lyxtext.h:
6982         * text.C:
6983         * text2.C:
6984         * text3.C: remove pointless 2nd arg to setHeightOfParagraph()
6985
6986 2003-03-13  John Levon  <levon@movementarian.org>
6987
6988         * text3.C: fix appendix redrawing
6989
6990 2003-03-13  John Levon  <levon@movementarian.org>
6991
6992         * text.C (setHeightOfRow):
6993         * rowpainter.h:
6994         * rowpainter.C: make appendix mark have the text
6995           "Appendix" so the user knows what it is
6996
6997         * LColor.h:
6998         * LColor.C: s/appendixline/appendix/ from above
6999
7000 2003-03-13  John Levon  <levon@movementarian.org>
7001
7002         * paragraph_pimpl.C: fix Andre's backing out of the strong assertion
7003
7004         * text.C: fix a getChar(pos) bug properly
7005
7006 2003-03-13  Angus Leeming  <leeming@lyx.org>
7007
7008         * commandtags.h:
7009         * LyXAction.C (init): new LFUNs PARAGRAPH_APPLY and PARAGRAPH_UPDATE.
7010         Probably only temporary. Let's see how things pan out.
7011
7012         * BufferView.C (unlockInset):
7013         * BufferView_pimpl.C (fitCursor):
7014         replace Dialogs::updateParagraph with dispatch(LFUN_PARAGRAPH_UPDATE).
7015
7016         * BufferView_pimpl.C (dispatch): code for LFUNs LAYOUT_PARAGRAPH,
7017         PARAGRAPH_UPDATE, PARAGRAPH_APPLY.
7018
7019         * ParagraphParameters.[Ch] (setParagraphParams, params2string):
7020         new functions that convert ParagraphParameters to and from a string.
7021
7022         * lyxfunc.C (dispatch): move LFUN_LAYOUT_PARAGRAPH to
7023         BufferView::Pimpl's dispatch.
7024         In LFUN_ESCAPE, dispatch LFUN_PARAGRAPH_UPDATE.
7025
7026 2003-03-13 André Pönitz <poenitz@gmx.net>
7027
7028         * lyxfunc.C:
7029         * text3.C:
7030         * factory.C: make it aware of InsetEnv
7031
7032 2003-03-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
7033
7034         * text2.C (setCursor): never ask for one past last
7035         (setCursor): add some debugging messages.
7036
7037         * text.C (singleWidth): never ask for one past last
7038         (singleWidth): ditto
7039         (leftMargin): ditto
7040         (rightMargin): ditto
7041         (rowBreakPoint): ditto
7042         (setHeightOfRow): ditto
7043         (prepareToPrint): ditto
7044
7045         * rowpainter.C (paintBackground): never ask for one past last
7046         (paintText): never ask for one past last
7047
7048         * paragraph_pimpl.C (getChar): make the assert stricter, never
7049         allow the one past last pos to be taken
7050
7051         * paragraph.C (getChar): ws changes only
7052
7053         * lyxrow.C (nextRowIsAllInset): never ask for one past last
7054         (numberOfSeparators): ditto
7055         (numberOfHfills): ditto
7056
7057 2003-03-12  John Levon  <levon@movementarian.org>
7058
7059         * author.h:
7060         * author.C:
7061         * bufferparams.h:
7062         * bufferparams.C:
7063         * paragraph_funcs.C: fix per-buffer authorlists
7064
7065 2003-03-12  John Levon  <levon@movementarian.org>
7066
7067         * text.C: fix newline in right address
7068
7069 2003-03-12  Angus Leeming  <leeming@lyx.org>
7070
7071         * BufferView_pimpl.C (dispatch): remove LFUNs from switch as they
7072         duplicate those in LyXFunc::dispatch.
7073
7074         * commandtags.h:
7075         * LyXAction.C:
7076         * ToolbarDefaults.C:
7077         rename LFUN_FREE as LFUN_FONTFREE_APPLY.
7078         Add LFUN_FONTFREE_UPDATE.
7079
7080         * lyxfunc.C (dispatch): code for LFUN_FREEFONT_APPLY,
7081         LFUN_FREEFONT_UPDATE, LFUN_LAYOUT_CHARACTER.
7082
7083         * bufferview_func.[Ch]: several new functions to facilliate
7084         transfer of data to and from the character dialog.
7085
7086 2003-03-12  John Levon  <levon@movementarian.org>
7087
7088         * buffer.C:
7089         * paragraph.h:
7090         * paragraph.C:
7091         * paragraph_funcs.C:
7092         * paragraph_pimpl.C:
7093         * sgml.C:
7094         * tabular.C:
7095         * text.C:
7096         * text3.C: remove META_NEWLINE in favour of an inset
7097
7098         * rowpainter.h:
7099         * rowpainter.C: remove paintNewline (done by inset)
7100
7101 2003-03-12  John Levon  <levon@movementarian.org>
7102
7103         * paragraph_pimpl.C: complain about bad getChar()s
7104         for a while at least
7105
7106 2003-03-12  John Levon  <levon@movementarian.org>
7107
7108         * buffer.h:
7109         * buffer.C: move paragraph read into a separate function,
7110         a little renaming to reflect that.
7111
7112         * bufferparams.h:
7113         * bufferparams.C: remove the author_ids map, not necessary now
7114
7115         * factory.h:
7116         * factory.C: moved Buffer::readInset to here
7117
7118         * paragraph_funcs.h:
7119         * paragraph_funcs.C: readParagraph free function moved from
7120         buffer.C
7121
7122         * tabular.C: name change
7123
7124 2003-03-12  John Levon  <levon@movementarian.org>
7125
7126         * buffer.C:
7127         * ParagraphParameters.C: move par params input to
7128         a read() method
7129
7130         * lyxlex_pimpl.C: make nextToken()/next() after a pushToken()
7131         behave like a normal read from the stream wrt reading
7132         a line vs. a \\token
7133
7134 2003-03-12  John Levon  <levon@movementarian.org>
7135
7136         * paragraph.C:
7137         * ParagraphParameters.h:
7138         * ParagraphParameters.C: move output code to a
7139         ::write() method
7140
7141 2003-03-12  John Levon  <levon@movementarian.org>
7142
7143         * BufferView.C (insertLyXFile):
7144         * buffer.h:
7145         * buffer.C:
7146         * tabular.C: use a parlist iterator for creating the
7147           document.
7148
7149 2003-03-12  John Levon  <levon@movementarian.org>
7150
7151         * buffer.C: make current_change static local not
7152           static file-scope
7153
7154 2003-03-12  John Levon  <levon@movementarian.org>
7155
7156         * buffer.C: fix insertStringAsLines for change tracking
7157
7158 2003-03-12  John Levon  <levon@movementarian.org>
7159
7160         * BufferView.C:
7161         * tabular.C:
7162         * buffer.h:
7163         * buffer.C:
7164         * bufferparams.h:
7165         * bufferparams.C: move author list into params. Rename some
7166           functions. Move the header reading into a separate token
7167           loop. Move the header token reading into BufferParams.
7168
7169 2003-03-12  John Levon  <levon@movementarian.org>
7170
7171         * changes.C: put debug inside lyxerr.debugging() checks
7172
7173 2003-03-11 André Pönitz <poenitz@gmx.net>
7174
7175         * factory.C: make it aware of InsetHFill
7176
7177 2003-03-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7178
7179         * buffer.C (latexParagraphs): move function from here...
7180         * paragraph_funcs.C (latexParagraphs): ...to here, and adjust
7181         args.
7182
7183 2003-03-10  Angus Leeming  <leeming@lyx.org>
7184
7185         * LyXAction.C (init): fix bug in poplating array with multiple entries
7186         with the same LFUN (spotted by JMarc).
7187
7188 2003-03-10  John Levon  <levon@movementarian.org>
7189
7190         * text.C:
7191         * text2.C: move getColumnNearX() near its
7192         only call site
7193
7194 2003-03-10  John Levon  <levon@movementarian.org>
7195
7196         * text.C: fix break before a minipage
7197
7198 2003-03-10  John Levon  <levon@movementarian.org>
7199
7200         * text.C: fix the last commit
7201
7202 2003-03-09  John Levon  <levon@movementarian.org>
7203
7204         * lyxtext.h:
7205         * text.C:
7206         * text2.C: clean up nextBreakPoint (now rowBreakPoint). Fix
7207         bug 365 (don't break before insets unless needed). Don't
7208         return a value > last under any circumstances.
7209
7210 2003-03-09  Angus Leeming  <leeming@lyx.org>
7211
7212         * BufferView_pimpl.C (trackChanges, dispatch): call
7213         Dialogs::show("changes") rather than Dialogs::showMergeChanges().
7214
7215 2003-03-09  Angus Leeming  <leeming@lyx.org>
7216
7217         * lyxfunc.C (dispatch): call Dialogs::show("about") rather
7218         than Dialogs::showAboutlyx().
7219
7220 2003-03-09  Angus Leeming  <leeming@lyx.org>
7221
7222         * factory.C (createInset): call Dialogs::show("tabularcreate") rather
7223         than Dialogs::showTabularCreate().
7224
7225 2003-03-09  John Levon  <levon@movementarian.org>
7226
7227         * lyxtext.h:
7228         * text.C:
7229         * text2.C: 3rd arg to nextBreakPoint was always the same.
7230           Use references.
7231
7232 2003-03-08  John Levon  <levon@movementarian.org>
7233
7234         * lyxrow.C:
7235         * paragraph.C:
7236         * paragraph.h:
7237         * rowpainter.C:
7238         * text.C:
7239         * text2.C: Remove the "main" bit from the "main body"
7240           notion.
7241
7242 2003-03-08  John Levon  <levon@movementarian.org>
7243
7244         * text.C (leftMargin): The left margin of an empty
7245         manual label paragraph should not include the label width
7246         string length.
7247
7248         * text.C (prepareToPrint): don't attempt to measure hfills
7249         for empty manual label paragraphs - the answer should be 0
7250
7251 2003-03-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
7252
7253         * CutAndPaste.C: remove commented code and reindent.
7254
7255 2003-03-08  John Levon  <levon@movementarian.org>
7256
7257         * lyxfunc.h:
7258         * lyxfunc.C: move reloadBuffer()
7259
7260         * BufferView.h:
7261         * BufferView.C: to here
7262
7263         * lyxvc.C: add comment
7264
7265         * vc-backend.h:
7266         * vc-backend.C: call bv->reload() to avoid
7267           getStatus() check on MENURELOAD
7268
7269 2003-03-07  Dekel Tsur  <dekelts@tau.ac.il>
7270
7271         * LaTeX.C (run): Fix a bug where the DVI file was not updated due
7272         to an old format .dep file.
7273
7274 2003-03-07  Angus Leeming  <leeming@lyx.org>
7275
7276         * text3.C (dispatch): remove the 'gross hack' of calling inset->edit
7277         when the LFUN_MOUSE_RELEASE should have been handled by
7278         inset->localDispatch.
7279
7280 2003-03-07  Angus Leeming  <leeming@lyx.org>
7281
7282         * BufferView_pimpl.C (dispatch):
7283         * LyXAction.C (init):
7284         * ToolbarDefaults.C (init):
7285         * commandtags.h:
7286         * lyxfunc.C (getStatus):
7287         remove LFUN_INSET_GRAPHICS.
7288
7289         * factory.C (createInset): add "graphics" to LFUN_INSET_APPLY.
7290
7291 2003-03-07  Angus Leeming  <leeming@lyx.org>
7292
7293         * commandtags.h:
7294         * LyXAction.C (init):
7295         * lyxfunc.C (getStatus): remove LFUN_REF_INSERT.
7296
7297         * lyxfunc.C (getStatus): add LFUN_DIALOG_SHOW_NEW_INSET to switch.
7298
7299         * commandtags.h:
7300         * LyXAction.C: add LFUN_INSET_DIALOG_UPDATE.
7301
7302         * lyxfunc (dispatch): on LFUN_DIALOG_UPDATE, pass the 'open' inset's
7303         localDispatch method LFUN_INSET_DIALOG_UPDATE.
7304
7305 2003-03-07  Angus Leeming  <leeming@lyx.org>
7306
7307         * lyxfunc.C (dispatch): add "include" to LFUN_SHOW_NEW_INSET and
7308         remove "ert".
7309
7310 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
7311
7312         * ParagraphList.C (front): new function
7313         (back): implement
7314
7315 2003-03-06  Alfredo Braunstein  <abraunst@libero.it>
7316
7317         * lyxtext.h (top_y): added these 2 methods, and private vars top_row_
7318         and top_row_offset_. removed var first_y.
7319         * text.C (top_y):
7320         * text2.C (LyXText, removeRow):
7321         * text3.C:
7322         * BufferView_pimpl.C:
7323         use these methods instead of using first_y
7324
7325 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
7326
7327         * text2.C (pasteSelection): adjust for checkPastePossible
7328
7329         * CutAndPaste.C: remove Paragraph * buf and replace with
7330         ParagraphList paragraphs.
7331         (DeleteBuffer): delete
7332         (cutSelection): change the tc type to textclass_type
7333         (copySelection): change the tc type to textclass_type
7334         (copySelection): adjust for ParagraphList
7335         (pasteSelection): change the tc type to textclass_type
7336         (pasteSelection): adjust for Paragraphlist
7337         (nrOfParagraphs): simplify for ParagraphList
7338         (checkPastePossible): simplify for ParagraphList
7339         (checkPastePossible): remove unused arg
7340
7341         * ParagraphList.C (insert): handle the case where there are no
7342         paragraphs yet.
7343
7344         * CutAndPaste.h: make CutAndPaste a namespace.
7345
7346         * text3.C (dispatch): adjust
7347
7348         * text.C (breakParagraph): add a ParagraphList as arg
7349
7350         * paragraph_funcs.C (breakParagraph): change to take a
7351         BufferParams and a ParagraphList as args.
7352         (breakParagraphConservative): ditto
7353         (mergeParagraph): ditto
7354         (TeXDeeper): add a ParagraphList arg
7355         (TeXEnvironment): ditto
7356         (TeXOnePar): ditto
7357
7358         * buffer.C (readLyXformat2): adjust
7359         (insertStringAsLines): adjust
7360         (latexParagraphs): adjust
7361
7362         * CutAndPaste.C (cutSelection): use 'true' not '1' as truth value.
7363         (cutSelection): adjust
7364         (pasteSelection): adjust
7365
7366         * BufferView_pimpl.C (insertInset): adjust
7367
7368 2003-03-05  Angus Leeming  <leeming@lyx.org>
7369
7370         * commandtags.h:
7371         * LyXAction.C (init):
7372         * BufferView_pimpl.C (dispatch):
7373         * lyxfunc.C (getStatus):
7374         remove LFUN_CHILD_INSERT.
7375
7376         * factory.C (createInset): add "include" to LFUN_INSET_APPLY.
7377
7378 2003-03-05  Angus Leeming  <leeming@lyx.org>
7379
7380         * commandtags.h:
7381         * LyXAction.C (init):
7382         * src/factory.C (createInset):
7383         * lyxfunc.C (getStatus):
7384         * text3.C (dispatch):
7385         remove LFUN_INSET_EXTERNAL and LFUN_INSERT_URL
7386
7387         * factory.C (createInset): add "external" to LFUN_INSET_APPLY.
7388
7389 2003-03-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
7390
7391         * ParagraphList.C (insert): handle insert right before end()
7392         (erase): fix cases where it can be first or last paragraph.
7393
7394 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
7395
7396         * paragraph_funcs.C (TeXEnvironment): remove all usage of
7397         Paragraph::next and Paragraph::previous
7398         (TeXOnePar): ditto
7399
7400         * text.C (breakParagraph): adjust
7401
7402         * paragraph_funcs.C (breakParagraph): take a Buffer* instead of a
7403         BufferParams& as arg.
7404         (breakParagraph): use ParagraphList::insert
7405         (breakParagraphConservative): take a Buffer* instead of a
7406         BufferParams& as arg.
7407         (breakParagraphConservative): use ParagraphList::insert.
7408
7409         * buffer.C (insertStringAsLines): un-const it
7410         (insertStringAsLines): adjust
7411
7412         * ParagraphList.C (insert): new function
7413
7414         * CutAndPaste.C (pasteSelection): adjust
7415
7416         * text.C (backspace): adjust
7417
7418         * tabular.C (SetMultiColumn): adjust
7419
7420         * CutAndPaste.C (cutSelection): adjust
7421         (pasteSelection): adjust
7422
7423         * tabular.C (SetMultiColumn): make it take a Buffer* instead of a
7424         Buffer const * as arg
7425
7426         * ParagraphList.C (erase): new function
7427         * paragraph_funcs.C (mergeParagraph): use it
7428         (mergeParagraph): make it take a Buffer* instead of a
7429         BufferParams* as arg
7430
7431         * paragraph_funcs.C (breakParagraph): take ParagraphList::iterator
7432         as arg
7433         (breakParagraphConservative): ditto
7434
7435         * paragraph.h: remove the breakParagraph friend
7436
7437         * paragraph.C (eraseIntern): new function
7438         (setChange): new function
7439
7440         * paragraph_funcs.C (mergeParagraph): make it take a
7441         ParagraphList::iterator instead of a Paragraph *, adjust
7442         accordingly.
7443
7444         * paragraph.h: move an #endif so that the change tracking stuff
7445         also works in the NO_NEXT case.
7446
7447 2003-03-04  Angus Leeming  <leeming@lyx.org>
7448
7449         * commandtags.h:
7450         * LyXAction.C: new LFUN_INSET_MODIFY.
7451
7452         * BufferView_pimpl.C (dispatch): if an inset is found to be open
7453         on LFUN_INSET_APPLY, pass LFUN_INSET_MODIFY to its localDispatch.
7454
7455 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
7456
7457         * several files: ws changes only
7458
7459         * paragraph_funcs.C (TeXOnePar): take ParagraphList::iterator as args
7460         (TeXEnvironment): ditto
7461         (TeXDeeper): ditto
7462
7463         * buffer.C (makeLaTeXFile): adjust
7464         (latexParagraphs): make it take ParagraphList::iterator as args
7465
7466 2003-03-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
7467
7468         * buffer.C (latexParagraphs): adjust
7469
7470         * paragraph.C (TeXOnePar): move function...
7471         (optArgInset): move function...
7472         (TeXEnvironment): move function...
7473         * paragraph_pimpl.C (TeXDeeper): move function...
7474         * paragraph_funcs.C: ...here
7475
7476         * tabular.C (UseParbox): rewrite to use ParagraphList iterators.
7477
7478 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
7479
7480         * buffer.C (readInset): remove compability code for old Figure and
7481         InsetInfo insets
7482
7483 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
7484
7485         * buffer.C: ws changes
7486         (readInset):
7487
7488         * BufferView_pimpl.C: ditto
7489         * author.C: ditto
7490         * buffer.h: ditto
7491         * bufferlist.h: ditto
7492         * changes.h: ditto
7493         * lyxfunc.C: ditto
7494
7495 2003-02-28  Alfredo Braunstein <abraunst@libero.it>
7496
7497         * converter.[Ch]: split into itself +
7498         * graph.[Ch]
7499         * format.[Ch]
7500         * Makefile.am: += graph.[Ch] + format.[Ch]
7501         * MenuBackend.C
7502         * buffer.C
7503         * exporter.C
7504         * importer.C
7505         * lyx_main.C
7506         * lyxfunc.C
7507         * lyxrc.C: added #include "format.h"
7508
7509 2003-02-27  Angus Leeming  <leeming@lyx.org>
7510
7511         * BufferView_pimpl.C (dispatch): call a real, LyX dialog to insert
7512           a label.
7513
7514         * factory.C (createInset): add "label" to the factory.
7515
7516         * lyx_cb.[Ch] (getPossibleLabel): rewrite MenuInsertLabel to return the
7517           string and do no more.
7518
7519 2003-02-27  Angus Leeming  <leeming@lyx.org>
7520
7521         * commandtags.h:
7522         * LyXAction.C (init):
7523         * factory.C (createInset):
7524         * BufferView_pimpl.C (dispatch):
7525           collapse LFUN_XYZ_APPLY to LFUN_INSET_APPLY.
7526
7527         * lyxfunc.C (getStatus): remove LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY.
7528
7529         * lyxfunc.C (dispatch):
7530         * text3.C (dispatch): pass name to params2string.
7531
7532 2003-02-26  Angus Leeming  <leeming@lyx.org>
7533
7534         * BufferView_pimpl.C (dispatch): collapse the various LFUN_XYZ_APPLY
7535           blocks together.
7536           Rearrange the ~includes. Strip out the unnecessary ones.
7537
7538         * factory.C (createInset): reformat.
7539           create new insets for the various LFUN_XYZ_APPLY lfuns.
7540
7541 2003-02-26  John Levon  <levon@movementarian.org>
7542
7543         * lyxrow.h:
7544         * lyxrow.C: add isParStart,isParEnd helpers
7545
7546         * paragraph.h: make isInserted/DeletedText take refs
7547
7548         * paragraph_funcs.h:
7549         * paragraph_funcs.C: remove #if 0'd code
7550
7551         * lyxtext.h:
7552         * text3.C:
7553         * text2.C:
7554         * text.C: use lyxrow helpers above.
7555           Move draw and paint routines to RowPainter.
7556           Make several methods use refs not pointers.
7557           Make backgroundColor() const.
7558           Add markChangeInDraw(), isInInset().
7559           Merge changeRegionCase into changeCase.
7560           Make workWidth() shouldn't-happen code into an Assert.
7561
7562         * rowpainter.h:
7563         * rowpainter.C: new class for painting a row.
7564
7565         * vspace.h:
7566         * vspace.C: make inPixels take a ref
7567
7568 2003-02-26  Angus Leeming  <leeming@lyx.org>
7569
7570         * BufferView_pimpl.C (dispatch): use InsetCommand::localDispatch for
7571         LFUN_REF_APPLY.
7572
7573 2003-02-25  John Levon  <levon@movementarian.org>
7574
7575         * ispell.C: give the forked command a more accurate name
7576
7577 2003-02-22  John Levon  <levon@movementarian.org>
7578
7579         * toc.h:
7580         * toc.C: make TocItem store an id not a Paragraph *
7581           (bug #913)
7582
7583 2003-02-21  Angus Leeming  <leeming@lyx.org>
7584
7585         * commandtags.h: Retire LFUN_CITATION_INSERT, LFUN_CITATION_CREATE,
7586           LFUN_INSERT_BIBTEX, LFUN_BIBTEX_STYLE, LFUN_BIBDB_ADD, LFUN_BIBDB_DEL.
7587           Bring to life LFUN_DIALOG_SHOW_NEW_INSET, LFUN_DIALOG_SHOW_NEXT_INSET,
7588           LFUN_DIALOG_UPDATE, LFUN_DIALOG_HIDE, LFUN_DIALOG_DISCONNECT_INSET,
7589           LFUN_BIBITEM_APPLY, LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY,
7590           LFUN_INDEX_APPLY, LFUN_REF_APPLY, LFUN_TOC_APPLY, LFUN_URL_APPLY,
7591
7592         * BufferView_pimpl.C (dispatch):
7593         * LyXAction.C (init):
7594         * factory.C (createInset):
7595         * lyxfunc.C (getStatus, dispatch):
7596         * text3.C (dispatch): retire old LFUNs and bring new ones to life.
7597
7598 2003-02-21  Angus Leeming  <leeming@lyx.org>
7599
7600         * BufferView_pimpl.C (MenuInsertLyXFile):
7601         * lyx_cb.C (WriteAs, getContentsOfAsciiFile):
7602         * lyxfunc.C (menuNew, open, doImport):
7603           no longer pass a LyXView & to fileDlg.
7604
7605 2003-02-21  Angus Leeming  <leeming@lyx.org>
7606
7607         * BufferView_pimpl.C: replace insetbib.h with insetbibtex.h.
7608         * LyXAction.C: change, BIBKEY to BIBITEM.
7609         * buffer.C: replace insetbib.h with insetbibitem.h and insetbibtex.h.
7610         Change InsetBibKey to InsetBibitem.
7611         Change BIBKEY_CODE to BIBITEM_CODE.
7612         * commandtags.h: change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
7613         * factory.C: replace insetbib.h with insetbibitem.h.
7614         Change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
7615         * paragraph.C: replace insetbib.h with insetbibitem.h.
7616         * paragraph.[Ch]: change InsetBibKey to InsetBibitem.
7617         Change bibkey() to bibitem().
7618         * text.C: remove insetbib.h.
7619         * text2.C: replace insetbib.h with insetbibitem.h.
7620         change bibkey() to bibitem().
7621         * text3.C: remove insetbib.h.
7622         change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
7623
7624 2003-02-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7625
7626         * lyxrc.C (output): enclose user email in quotes (in case there are
7627         several words)
7628
7629 2003-02-18  John Levon  <levon@movementarian.org>
7630
7631         * buffer.h: add std::
7632
7633 2003-02-17  John Levon  <levon@movementarian.org>
7634
7635         * SpellBase.h:
7636         * ispell.h:
7637         * ispell.C:
7638         * pspell.h:
7639         * pspell.C: reworking. Especially in ispell, a large
7640           number of clean ups and bug fixes.
7641
7642         * lyxfunc.C: fix revert to behave sensibly
7643
7644 2003-02-17 André Pönitz <poenitz@gmx.net>
7645
7646         * LyXAction.C:
7647         * commandtags.h: new LFUN_INSERT_BIBKEY
7648
7649         * layout.h:
7650         * lyxlayout.C:
7651         * buffer.C:
7652         * factory.C:
7653         * text.C:
7654         * text2.C:
7655         * text3.C:
7656         * paragraph.[Ch]:
7657         * paragraph_func.C: remove special bibkey handling
7658
7659 2003-02-17  John Levon  <levon@movementarian.org>
7660
7661         * text.C (Delete): fix case where delete at the end of
7662           the very first paragraph would not merge the pars
7663
7664 2003-02-17  John Levon  <levon@movementarian.org>
7665
7666         * lyxrow.C: fix lastPrintablePos()
7667
7668 2003-02-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7669
7670         * bufferparams.C (writeLaTeX): add a std:here
7671
7672         * buffer.C: and remove a using directive there
7673
7674 2003-02-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7675
7676         * buffer.C (makeLaTeXFile): move the code that generates the
7677           preamble...
7678
7679         * bufferparams.C (writeLaTeX): ... in this new method
7680
7681         * LaTeXFeatures.C (getEncodingSet): make const
7682           (getLanguages): make const
7683
7684         * MenuBackend.C (binding): returns the binding associated to this
7685           action
7686           (add): sets the status of each item by calling getStatus. Adds
7687           some intelligence.
7688           (read): add support for OptSubMenu
7689           (expand): remove extra separator at the end of expanded menu
7690
7691 2003-02-15  John Levon  <levon@movementarian.org>
7692
7693         * BufferView.C:
7694         * BufferView_pimpl.C:
7695         * bufferlist.h:
7696         * bufferlist.C: remove pointless BufferStorage bloat. Remove
7697           inset code that had no actual effect. Remove unneeded status
7698           code.
7699
7700 2003-02-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7701
7702         * buffer.C (makeLaTeXFile): fix counting of number of line feeds
7703           in preamble
7704
7705 2003-02-14  Michael Schmitt <michael.schmitt@teststep.org>
7706
7707         * text.C (drawLengthMarker): also draw an arrow marker for
7708           symbolic lengths (medskip...)
7709
7710 2003-02-14  John Levon  <levon@movementarian.org>
7711
7712         * tabular.h:
7713         * tabular.C: better method names
7714
7715 2003-02-14  John Levon  <levon@movementarian.org>
7716
7717         * BufferView_pimpl.C:
7718         * bufferlist.C:
7719         * buffer.C:
7720         * converter.C:
7721         * lyx_cb.C:
7722         * lyxfunc.C: change prohibit/allowInput to busy(bool), as
7723           it's a more accurate name. Remove some pointless uses.
7724
7725 2003-02-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7726
7727         * text2.C (LyXText): change order of initilizers to shut off
7728           warnings
7729
7730 2003-02-14  John Levon  <levon@movementarian.org>
7731
7732         * buffer.C: use ParIterator for getParFromID()
7733
7734         * paragraph.h:
7735         * paragraph.C:
7736         * paragraph_pimpl.h:
7737         * paragraph_pimpl.C: remove unused getParFromID()
7738
7739 2003-02-14  John Levon  <levon@movementarian.org>
7740
7741         * buffer.C: remove some very old #if 0'd parse code
7742
7743 2003-02-13  John Levon  <levon@movementarian.org>
7744
7745         * text.h:
7746         * text.C:
7747         * text2.C: move hfillExpansion(), numberOfSeparators(),
7748           rowLast(), rowLastPrintable(), numberofHfills(),
7749           numberOfLabelHfills() ...
7750
7751         * lyxrow.h:
7752         * lyxrow.C: ... to member functions here.
7753
7754         * paragraph.h:
7755         * paragraph.C:
7756         * lyxtext.h:
7757         * text.C: remove LyXText::beginningOfMainBody(), and call
7758           p->beginningOfMainBody() directly. Move the check for
7759           LABEL_MANUAL into the latter.
7760
7761         * text.h:
7762         * text.C:
7763         * text2.C:
7764         * vspace.C:
7765         * BufferView.h:
7766         * BufferView.C: make defaultHeight() be a free defaultRowHeight()
7767
7768         * text.h:
7769         * text.C:
7770         * text2.C:
7771         * text3.C:
7772         * frontends/screen.C: move bv_owner private, introduce isTopLevel()
7773           to make it clear we're testing for outmost-lyxtext vs. inset's lyxtext
7774
7775 2003-02-13  John Levon  <levon@movementarian.org>
7776
7777         * CutAndPaste.C: remove debug
7778
7779 2003-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7780
7781         * paragraph.C (asString): remove two unused variables
7782
7783         * lyxtextclass.C (readTitleType):
7784           (Read):
7785           (LyXTextClass): handle new members titletype_ and titlename_
7786
7787         * buffer.C (latexParagraphs): honor LyXTextClass::titletype
7788
7789 2003-02-09  John Levon  <levon@movementarian.org>
7790
7791         * buffer.h:
7792         * buffer.C: replace hand-coded list with a map for the dep clean
7793
7794 2003-02-08  John Levon  <levon@movementarian.org>
7795
7796         * LaTeX.C: consolidate code into showRunMessage() helper
7797
7798 2003-02-08  John Levon  <levon@movementarian.org>
7799
7800         * lyxfind.C:
7801         * lyxtext.h:
7802         * text2.C:
7803         * BufferView.C: change setSelectionOverString() to setSelectionRange()
7804           and pass the size in explicitly
7805
7806         * BufferView_pimpl.h:
7807         * BufferView_pimpl.C:
7808         * BufferView.h:
7809         * BufferView.C: add getCurrentChange()
7810
7811         * BufferView_pimpl.h:
7812         * BufferView_pimpl.C: handle change lfuns
7813
7814         * CutAndPaste.C: merge the cut and copy code. Rework the cut code
7815           for changes. Mark pasted paragraphs as new.
7816
7817         * support/lyxtime.h:
7818         * support/lyxtime.C:
7819         * DepTable.C: abstract time_t as lyx::time_type
7820
7821         * LColor.h:
7822         * LColor.C: add colours for new text, deleted text, changebars
7823
7824         * LaTeXFeatures.C: add dvipost as a simple feature. Make the color
7825           package use "usenames" option.
7826
7827         * commandtags.h:
7828         * lyxfunc.C:
7829         * LyXAction.C: add change lfuns
7830
7831         * Makefile.am:
7832         * author.h:
7833         * author.C: author handling
7834
7835         * buffer.h:
7836         * buffer.C: add a per-buffer author list, with first entry as
7837           current author. Handle new .lyx tokens for change tracking. Output
7838           author list to .lyx file. Output dvipost stuff to .tex preamble.
7839           Bump lyx format to 222.
7840
7841         * bufferlist.h:
7842         * bufferlist.C: add setCurrentAuthor() to reset current author details
7843           in all buffers.
7844
7845         * bufferparams.h:
7846         * bufferparams.C: add param for tracking
7847
7848         * bufferview_funcs.C: output change info in minibuffer
7849
7850         * Makefile.am:
7851         * changes.h:
7852         * changes.C: add change-tracking structure
7853
7854         * debug.h:
7855         * debug.C: add CHANGES debug flag
7856
7857         * lyxfind.h:
7858         * lyxfind.C: add code for finding the next change piece
7859
7860         * lyxrc.h:
7861         * lyxrc.C: add user_name and user_email
7862
7863         * lyxrow.h:
7864         * lyxrow.C: add a metric for the top of the text line
7865
7866         * lyxtext.h:
7867         * text.C: implement accept/rejectChange()
7868
7869         * lyxtext.h:
7870         * text.C: paint changebars. Paint new/deleted text in the chosen
7871         colours. Strike through deleted text.
7872
7873         * paragraph.h:
7874         * paragraph.C:
7875         * paragraph_pimpl.h:
7876         * paragraph_pimpl.C: output change markers in .lyx and .tex. Pass
7877           in the current change to the insert functions. Rework erase to
7878           mark text as deleted, adding an eraseIntern() and a range-based
7879           erase(). Implement per-paragraph change lookup and
7880           accept/reject.
7881
7882         * paragraph_funcs.C: Fixup paste for change tracking.
7883
7884         * tabular.C: mark added row/columns as new.
7885
7886         * text.C: fix rowLast() to never return -1. Don't allow
7887           spellchecking of deleted text. Track transpose changes. Don't
7888           allow paragraph break or merge where appropriate.
7889
7890         * text2.C: leave cursor at end of selection after a cut.
7891
7892 2003-02-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7893
7894         * text.C (getLengthMarkerHeight):
7895         (drawLengthMarker): make the `symbolic' lengths (small/med/big)
7896         visible on screen too.
7897
7898 2003-02-07  John Levon  <levon@movementarian.org>
7899
7900         * text.C: s/LYX_PAPER_MARGIN/PAPER_MARGIN/g
7901
7902 2003-02-05  Angus Leeming  <leeming@lyx.org>
7903
7904         * lyxserver.C (read_ready): revert my patch of 11 September last year
7905         as it sends PC cpu through the roof. Presumably this means that
7906         the lyxserver will no longer run on an Alpha...
7907
7908 2003-01-30  Angus Leeming  <leeming@lyx.org>
7909
7910         * factory.C (createInset): create an InsetCommandParam of type "index"
7911         and use it to 'do the right thing'.
7912
7913         * text2.C (getStringToIndex): ensure that cursor position is always
7914         reset to the reset_cursor position.
7915
7916 2003-01-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7917
7918         * lyxfunc.C (getStatus): "buffer-export custom" should never be
7919         disabled.
7920
7921 2003-01-20  Michael Schmitt <michael.schmitt@teststep.org>
7922
7923         * bufferview.C:
7924         * lyxcb.C:
7925         * lyxfunc.C: Output messages with identical spelling, punctuation,
7926         and spaces
7927
7928 2003-01-22  Michael Schmitt  <Michael.Schmitt@teststep.org>
7929
7930         * MenuBackend.C (expandFormats): List only viewable export formats
7931         in "View" menu
7932
7933         * buffer.C (parseSingleLyXformat2Token): Fix misleading error
7934         message
7935
7936         * lyxfunc.C (getStatus): Make sure that formats other than
7937         "fax" can also be disabled
7938
7939 2003-01-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7940
7941         * text3.C (dispatch): put the lfuns that insert insets in 3
7942         groups, and call doInsertInset with appropriate arguments.
7943         (doInsertInset): new function, that creates an inset and inserts
7944         it according to some boolean parameters.
7945
7946 2003-01-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
7947
7948         * buffer.C (readFile): remember to pass on 'par' when calling
7949         readFile recursively.
7950
7951 2003-01-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7952
7953         * MenuBackend.C (expandFormats): add "..." to import formats.
7954
7955 2003-01-15  Dekel Tsur  <dekelts@tau.ac.il>
7956
7957         * paragraph.C (asString): Remove XForms RTL hacks.
7958
7959 2003-01-13  Alfredo Braunstein <abraunst@libero.it>
7960         * buffer.C: fix typo
7961
7962 2003-01-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
7963
7964         * Makefile.am (LIBS): delete var
7965         (lyx_LDADD): add @LIBS@ here instead.
7966
7967 2003-01-08  Michael Schmitt <Michael.Schmitt@teststep.org>
7968
7969         * Clarify the meaning of "wheel mouse jump"
7970
7971 2003-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7972
7973         * lyxfunc.C (getStatus): fix disabling of cut/paste of cells in a
7974         tabular in a float
7975
7976 2003-01-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7977
7978         * importer.C (Loaders): do not preallocate 3 elements in the
7979         vector, since one ends up with 6 elements otherwise
7980
7981 2002-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7982
7983         * DepTable.C (write): write the file name as last element of the
7984         .dep file (because it may contain spaces)
7985         (read): read info in the right order
7986
7987 2003-01-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7988
7989         * paragraph_pimpl.C (simpleTeXBlanks):
7990         (simpleTeXSpecialChars):
7991         * paragraph.C (simpleTeXOnePar): make `column' unsigned.
7992
7993         * tabular.C (latex): add some missing case statements. Reindent.
7994
7995         * MenuBackend.C (expandToc): remove unused variable.
7996
7997 2003-01-06  Michael Schmitt <Michael.Schmitt@teststep.org>
7998
7999         * LColor.C:
8000         * LaTeX.C:
8001         * LyXAction.C:
8002         * MenuBackend.C:
8003         * buffer.C:
8004         * exporter.C:
8005         * lyxfunc.C:
8006         * lyxrc.C: fix inconsistent usage of spaces, colons, capitalization,
8007         and the like.
8008
8009 2003-01-05  John Levon  <levon@movementarian.org>
8010
8011         * BufferView.h:
8012         * BufferView.C: add getEncoding()
8013
8014         * kbsequence.h:
8015         * kbsequence.C: do not store last keypress
8016
8017         * lyxfunc.h:
8018         * lyxfunc.C: store last keypress here instead. Pass encoding
8019           to getISOEncoded()
8020
8021 2002-12-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8022
8023         * lyx_main.C (init): remove annoying error message when following
8024         symbolic links (bug #780)
8025
8026 2002-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8027
8028         * text.C (insertChar):
8029         * lyxrc.C (getDescription): remove extra spaces
8030
8031 2002-12-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8032
8033         * lyxrc.C (getDescription): remove extra spaces
8034
8035 2002-12-20  John Levon  <levon@movementarian.org>
8036
8037         * text3.C: hack fix for page up/down across tall rows
8038
8039 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8040
8041         * text2.C (pasteEnvironmentType): avoid crash if layout-copy has
8042         not been invoked
8043
8044 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8045
8046         * lyxfunc.C (getStatus): query lyx_gui::getStatus() to catter for
8047         unimplemented lfuns. Make LFUN_THESAURUS_ENTRY status unknown if
8048         thesaurus is not compiled in
8049
8050 2002-12-17  Alfredo Braunstein <abraunst@libero.it>
8051
8052         * lyxfunc.C: correct  inversion of WORDFINDBACK/FORWARD
8053
8054 2002-12-16  Angus Leeming  <leeming@lyx.org>
8055
8056         * lyxrc.[Ch]:
8057         * lyx_main.C (init): remove override_x_deadkeys stuff.
8058
8059 2002-12-12  John Levon  <levon@movementarian.org>
8060
8061         * lyxfunc.C: use LyXKeySym->isText() as last-ditch
8062           insert. Only remove shift modifier under strict
8063           circumstances.
8064
8065 2002-12-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
8066
8067         * MenuBackend.C (expandToc): fix crash.
8068
8069 2002-12-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
8070
8071         * MenuBackend.C (expandToc): gettext on float names.
8072
8073 2002-12-03  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
8074
8075         * lyxlength.[Ch]: set default unit to UNIT_NONE,
8076         implement bool empty() [bug 490]
8077
8078 2002-12-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
8079
8080         * text2.C, CutAndPaste.C: use BoostFormat.h not boost/format.hpp
8081
8082 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
8083
8084         * several files: ws changes
8085
8086 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
8087
8088         * text2.C (setCounter): clean up a bit, use boost.format.
8089         (updateCounters): initialize par upon declaration.
8090
8091         * CutAndPaste.C (SwitchLayoutsBetweenClasses): set the layout also
8092         if the layout exists. We do not just store the layout any more.
8093         (SwitchLayoutsBetweenClasses): use boost.format
8094
8095 2002-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8096
8097         * converter.C (convert): if from and to files are the same, use a
8098         temporary files as intermediary
8099
8100 2002-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8101
8102         * commandtags.h:
8103         * LyXAction.C (init): remove LFUN_VECTOR (bug 662)
8104
8105 2002-11-27  Dekel Tsur  <dekelts@tau.ac.il>
8106
8107         * lyxrc.[Ch]: Add {roman,sans,typewriter}_font_foundry variables.
8108
8109 2002-11-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
8110
8111         * tabular.C (asciiPrintCell): use string(size, char) instead of
8112         explicit loop.
8113
8114         * sgml.C (openTag): fix order of arguments to string constructor
8115         (closeTag): ditto
8116
8117         * lyxfunc.C (dispatch): use boost.format
8118
8119         * lots of files: change "c" -> 'c'
8120
8121 2002-11-25  Dekel Tsur  <dekelts@tau.ac.il>
8122
8123         * encoding.C: Patch from Isam Bayazidi: Fix Arabic shaping.
8124
8125 2002-11-25  Angus Leeming  <leeming@lyx.org>
8126
8127         * BoostFormat.h: wrap code inside #ifdef __GNUG__ block.
8128
8129         * lyx_main.C (init): compile fix.
8130
8131 2002-11-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
8132
8133         * lyx_cb.C (start): boost.formatify
8134         do not include <iostream>
8135
8136         * lengthcommon.C: ws only
8137
8138         * boost-inst.C,BoostFormat.h: add more explict instantations
8139
8140 2002-11-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
8141
8142         * lots of files: handle USE_BOOST_FORMAT
8143
8144 2002-11-21  John Levon  <levon@movementarian.org>
8145
8146         * pspell.C: fix compile
8147
8148 2002-11-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8149
8150         * lyxfunc.C (dispatch): use boost::format
8151         (open): ditto
8152         (doImport): ditto
8153
8154         * lyxfont.C (stateText): use boost::format
8155
8156         * lyx_main.C (LyX): use boost::format
8157         (init): ditto
8158         (queryUserLyXDir): ditto
8159         (readRcFile): ditto
8160         (parse_dbg): ditto
8161         (typedef boost::function): use the recommened syntax.
8162
8163         * importer.C (Import): use boost::format
8164
8165         * debug.C (showLevel): use boost::format
8166
8167         * converter.C (view): use boost::format
8168         (convert): ditto
8169         (move): ditto
8170         (scanLog): ditto
8171
8172         * bufferview_funcs.C (currentState): use boost::format
8173
8174         * bufferlist.C (emergencyWrite): use boost::format
8175
8176         * buffer.C (readLyXformat2): use boost::format
8177         (parseSingleLyXformat2Token): ditto
8178
8179         * Makefile.am (lyx_SOURCES): add BoostFormat.h and boost-inst.C
8180
8181         * LaTeX.C (run): use boost::format
8182
8183         * Chktex.C (scanLogFile): use boost::format
8184
8185         * BufferView_pimpl.C (savePosition): use boost::format
8186         (restorePosition): ditto
8187         (MenuInsertLyXFile): ditto
8188
8189         * BoostFormat.h: help file for explicit instation.
8190
8191 2002-11-21  Dekel Tsur  <dekelts@tau.ac.il>
8192
8193         * tabular.C (latex): Support for block alignment in fixed width
8194         columns.
8195
8196 2002-11-17  John Levon  <levon@movementarian.org>
8197
8198         * BufferView_pimpl.C:
8199         * lyx_cb.C:
8200         * lyxfunc.C: split filedialog into open/save
8201
8202 2002-11-08  Juergen Vigna  <jug@sad.it>
8203
8204         * undo_funcs.C (textHandleUndo): fixed problems with undo introduced
8205         by my last patch (hopefully).
8206
8207 2002-11-08  John Levon  <levon@movementarian.org>
8208
8209         * iterators.h:
8210         * iterators.C:
8211         * buffer.h:
8212         * buffer.C:
8213         * paragraph.h:
8214         * paragraph.C:
8215         * toc.h:
8216         * toc.C: ParConstIterator, and use it (from Lars)
8217
8218 2002-11-07  Ben Stanley  <bds02@uow.edu.au>
8219
8220         * lyxtextclass.[Ch]: revise and add doxygen comments
8221
8222 2002-11-07  John Levon  <levon@movementarian.org>
8223
8224         * text.C: fix progress value for spellchecker
8225
8226         * toc.C: fix navigate menu for insetwrap inside minipage
8227
8228         * paragraph_funcs.C: added FIXME for suspect code
8229
8230 2002-11-07  John Levon  <levon@movementarian.org>
8231
8232         * BufferView_pimpl.C: fix redrawing of insets
8233           on buffer switch
8234
8235 2002-11-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8236
8237         * text2.C (updateCounters): fix bug 668
8238
8239 2002-11-04  Dekel Tsur  <dekelts@tau.ac.il>
8240
8241         * text3.C (dispatch): Do not make the buffer dirty when moving the
8242         cursor.
8243
8244 2002-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
8245
8246         * vc-backend.C: STRCONV
8247         (scanMaster): ditto
8248
8249         * text2.C (setCounter): STRCONV
8250
8251         * paragraph.C (asString): STRCONV
8252
8253         * lyxlength.C (asString): STRCONV
8254         (asLatexString): ditto
8255
8256         * lyxgluelength.C (asString): STRCONV
8257         (asLatexString): ditto
8258
8259         * lyxfunc.C (dispatch): STRCONV
8260         (open): ditto
8261
8262         * lyxfont.C (stateText): STRCONV
8263
8264         * importer.C (Import): STRCONV
8265
8266         * counters.C (labelItem): STRCONV
8267         (numberLabel): ditto
8268         (numberLabel): remove unused ostringstream o
8269
8270         * chset.C: STRCONV
8271         (loadFile): ditto
8272
8273         * bufferview_funcs.C (currentState): STRCONV
8274
8275         * buffer.C (readFile): STRCONV
8276         (asciiParagraph): ditto
8277         (makeLaTeXFile): ditto
8278
8279         * Spacing.C (writeEnvirBegin): STRCONV
8280
8281         * LaTeXFeatures.C (getLanguages): STRCONV
8282         (getPackages): ditto
8283         (getMacros): ditto
8284         (getBabelOptions): ditto
8285         (getTClassPreamble): ditto
8286         (getLyXSGMLEntities): ditto
8287         (getIncludedFiles): ditto
8288
8289         * LaTeX.C: STRCONV
8290         (run): ditto
8291         (scanAuxFile): ditto
8292         (deplog): ditto
8293
8294         * LString.h: add the STRCONV macros
8295
8296         * BufferView_pimpl.C (savePosition): STRCONV
8297         (restorePosition): ditto
8298         (MenuInsertLyXFile): ditto
8299
8300         * vc-backend.C (scanMaster): change from submatch[...] to
8301         submatch.str(...)
8302
8303         * funcrequest.C: include config.h
8304
8305         * factory.C: include config.h
8306
8307         * chset.C (loadFile): change from submatch[...] to submatch.str(...)
8308
8309         * box.C: include config.h
8310
8311         * LaTeX.C (scanAuxFile): change from submatch[...] to
8312         submatch.str(...)
8313         (deplog): ditto
8314
8315 2002-10-25  Angus Leeming  <leeming@lyx.org>
8316
8317         * BufferView_pimpl.C (cursorToggle): remove reapSpellchecker hack.
8318
8319         * ispell.[Ch] (setError): new method.
8320         * ispell.C (c-tor): move out child process into new class LaunchIspell.
8321         Use setError() insetead of goto END.
8322
8323         * lyx_cb.C (AutoSave): move out child process into new class
8324         AutoSaveBuffer.
8325
8326 2002-10-30  John Levon  <levon@movementarian.org>
8327
8328         * text3.C: make start appendix undoable
8329
8330 2002-10-24  Dekel Tsur  <dekelts@tau.ac.il>
8331
8332         * lyxlength.C (inPixels): Fix returned value.
8333
8334         * paragraph.C (TeXOnePar): Fix bug with language changes in nested
8335         environment.
8336
8337 2002-10-24  Angus Leeming  <leeming@lyx.org>
8338
8339         * lyxgluelength.h: no need to forward declare BufferParams
8340         or BufferView, so don't.
8341
8342 2002-10-21  John Levon  <levon@movementarian.org>
8343
8344         * BufferView.C: menuUndo ->undo, redo
8345
8346         * BufferView.h: document, remove dead, make some methods private
8347
8348         * paragraph_funcs.h:
8349         * paragraph_funcs.C:
8350         * CutAndPaste.C: s/pasteParagraph/mergeParagraph
8351
8352         * buffer.h:
8353         * buffer.C:
8354         * sgml.h:
8355         * sgml.C: move sgml open/close tag into sgml.C
8356
8357         * bufferview_funcs.h: unused prototype
8358
8359         * lyxfunc.h:
8360         * lyxfunc.C: remove unused
8361
8362         * lyxtext.h:
8363         * text.C: remove unused
8364
8365 2002-10-21  John Levon  <levon@movementarian.org>
8366
8367         * BufferView.h:
8368         * BufferView.C:
8369         * BufferView_pimpl.h:
8370         * BufferView_pimpl.C: fix mouse wheel handling based on
8371           patch from Darren Freeman
8372
8373 2002-10-09  Dekel Tsur  <dekelts@tau.ac.il>
8374
8375         * lyx_main.C (queryUserLyXDir): Fix automatic reconfiguration.
8376
8377 2002-10-17  Dekel Tsur  <dekelts@tau.ac.il>
8378
8379         * lyxlength.C (inPixels): Fix hanfling of negative length.
8380         Fix LyXLength::MU case.
8381
8382 2002-10-16  John Levon  <levon@movementarian.org>
8383
8384         * buffer.C: remove \\protected_separator parsing done by lyx2lyx now
8385
8386 2002-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8387
8388         * converter.C (view): add support for $$i (file name) and $$p
8389         (file path) for the viewer command. If $$i is not specified, then
8390         it is appended to the command (for compatibility with old syntax)
8391
8392 2002-10-14  Juergen Vigna  <jug@sad.it>
8393
8394         * undo_funcs.C (textHandleUndo): alter the order in which the
8395         new undopar is added to the LyXText, as we have to set first
8396         the right prev/next and then add it as otherwise the rebuild of
8397         LyXText is not correct. Also reset the cursor to the right paragraph,
8398         with this IMO we could remove the hack in "redoParagraphs()".
8399
8400 2002-10-09  Angus Leeming  <leeming@lyx.org>
8401
8402         * Bufferview_pimpl.C (dispatch): call InsetCitation::setLoadingBuffer
8403         to turn off an optimisation if a new inset is to be inserted.
8404
8405 2002-10-11 André Pönitz <poenitz@gmx.net>
8406
8407         * lyxtext.h: make some functions public to allow access
8408         from inset/lyxtext for handling LFUN_PRIOR/NEXT
8409
8410 2002-10-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8411
8412         * text3.C (dispatch): when changing layout, avoid an infinite loop
8413         [bug #652]
8414
8415 2002-10-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8416
8417         * lyxrc.C (read): treat a viewer or converter command of "none" as
8418         if it were empty.
8419
8420         * MenuBackend.C (expandFormats): for an update, also allow the
8421         formats that are not viewable
8422
8423         * lyx_main.C (queryUserLyXDir): re-run automatically the configure
8424         script if it is newer than the lyxrc.defaults in user directory
8425
8426 2002-10-07 André Pönitz <poenitz@gmx.net>
8427
8428         * text.C: Vitaly Lipatov's small i18n fix
8429
8430 2002-09-25  Angus Leeming  <leeming@lyx.org>
8431
8432         * ispell.h: doxygen fix.
8433
8434 2002-09-25  Dekel Tsur  <dekelts@tau.ac.il>
8435
8436         * buffer.h (readFile): Add a new argument to the method, to allow
8437         reading of old-format templates.
8438
8439 2002-09-24  Dekel Tsur  <dekelts@tau.ac.il>
8440
8441         * toc.C (getTocList): Get TOC from InsetWrap.
8442
8443 2002-09-16  John Levon  <levon@movementarian.org>
8444
8445         * lyxfunc.C: check tabular for cut/copy too
8446
8447 2002-09-12  John Levon  <levon@movementarian.org>
8448
8449         * LyXAction.C: tidy
8450
8451         * factory.h:
8452         * factory.C: add header
8453
8454         * paragraph_funcs.h:
8455         * paragraph_funcs.C: cleanup
8456
8457 2002-09-11  John Levon  <levon@movementarian.org>
8458
8459         * PrinterParams.h: odd/even default to true
8460
8461 2002-09-12  Rob Lahaye  <lahaye@snu.ac.kr>
8462
8463         * PrinterParams.h: update printer parameters for new xforms dialog
8464
8465 2002-09-11  Angus Leeming  <leeming@lyx.org>
8466
8467         * lyxserver.C (read_ready): re-write to make it more transparent
8468         and to make it work in coherent fashion under Tru64 Unix.
8469
8470 2002-09-11  André Pönitz <poenitz@gmx.net>
8471
8472         * commandtags.h:
8473         * LyXAction.C:
8474         * text3.C: implement LFUN_WORDSEL
8475
8476 2002-09-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
8477
8478         * lyxtextclass.h: don't include FloatList.h, forward declare instead.
8479         make floatlist_ a boost::shared_ptr<FloatList>
8480
8481         * lyxtextclass.C: include FloatList.h
8482         (LyXTextClass): initialize floatlist_
8483         (TextClassTags): add TC_NOFLOAT
8484         (Read): match "nofloat" to TC_NOFLOAT and use it.
8485         (readFloat): modify call to floatlist_
8486         (floats): ditto
8487         (floats): ditto
8488
8489         * FloatList.[Ch] (FloatList): remove commented out float
8490         initialization.
8491         (erase): new function
8492
8493 2002-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
8494
8495         * MenuBackend.C (expandToc): fix crash when there is no document
8496         open
8497
8498 2002-09-10  Dekel Tsur  <dekelts@tau.ac.il>
8499
8500         * many files: Add insetwrap.
8501
8502 2002-09-09  John Levon  <levon@movementarian.org>
8503
8504         * text2.C: remove confusing and awkward depth wraparound
8505
8506 2002-09-09  John Levon  <levon@movementarian.org>
8507
8508         * BufferView_pimpl.C: Don't use empty arg for LFUN_CHILD_INSERT
8509
8510         * buffer.h:
8511         * buffer.C: remove getIncludeonlyList()
8512
8513         * paragraph.C:
8514         * lyxfunc.C: remove headers
8515
8516 2002-09-09  Juergen Vigna  <jug@sad.it>
8517
8518         * text.C (getColumnNearX): fix form Michael this is most
8519         probably a cut&paste bug.
8520
8521 2002-09-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
8522
8523         * remove all INHERIT_LANG and INHERIT_LANGUAGE commented code
8524
8525         * LaTeXFeatures.C (useLayout): let tclass and lyt be a const
8526         references, ws changes.
8527
8528         * text2.C (init): update counters after init
8529         (insertParagraph): no need to set counter on idividual paragraphs.
8530         (setCounter): access the counters object in the textclass object
8531         on in the buffer object.
8532         (updateCounters): ditto
8533
8534         * lyxtextclass.C: include counters.h, add variable ctrs_ as
8535         shared_ptr<Counters> to avoid loading counters.h in all
8536         compilation units.
8537         (LyXTextClass): initialize ctrs_
8538         (TextClassTags): add TC_COUNTER, and ...
8539         (Read): use it here.
8540         (CounterTags): new tags
8541         (readCounter): new function
8542         (counters): new funtion
8543         (defaultLayoutName): return a const reference
8544
8545         * counters.C (Counters): remove contructor
8546         (newCounter): remove a couple of unneeded statements.
8547         (newCounter): simplify a bit.
8548         (numberLabel): some small formatting changes.
8549
8550         * buffer.[Ch]: remove all traces of counters, move the Counters
8551         object to the LyXTextClass.
8552
8553 2002-09-06  Alain Castera  <castera@in2p3.fr>
8554
8555         * tabular.C: uses \tabularnewline; uses >{...} construct from array
8556         package to set the horizontal alignment on fixed width columns.
8557
8558         * lyx_sty.C:
8559         * lyx_sty.h: added tabularnewline macro def.
8560
8561         * LaTeXFeatures.C: added NeedTabularnewline macro feature
8562
8563 2002-09-06  John Levon  <levon@movementarian.org>
8564
8565         * LyXAction.C: tooltips for sub/superscript
8566
8567         * MenuBackend.C: a bit more verbose
8568
8569         * lyxfunc.C: tiny clean
8570
8571         * undo_funcs.C: document undo_frozen
8572
8573 2002-09-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
8574
8575         * counters.C (Counters): add missing algorithm counter.
8576
8577         * text2.C (setCounter): lookup the counter with layouts latexname
8578         instead of by section number.
8579         (setCounter): use a hackish way to lookup the correct enum
8580         counter.
8581         a float name->type change
8582         reset enum couners with counter name directly instead of depth value.
8583
8584         * counters.C (Counters): remove the push_backs, change to use the
8585         float type not the float name.
8586         (labelItem): remove unused string, float name->type change
8587
8588         * counters.h: don't include vector, loose the enums and sects vectors
8589
8590 2002-09-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
8591
8592         * lyxtextclass.C (TextClassTags): add TC_FLOAT
8593         (Read): add float->TC_FLOAT to textclassTags
8594         (Read): and handle it in the switch
8595         (readFloat): new function
8596
8597         * FloatList.C (FloatList): comment out the hardcoded float
8598         definitions.
8599
8600         * lyxlayout.h: ws change.
8601
8602 2002-08-29  Dekel Tsur  <dekelts@tau.ac.il>
8603
8604         * buffer.C (readFile): Look for lyx2lyx in LYXDIR/lyx2lyx/
8605
8606 2002-09-03  Angus Leeming  <leeming@lyx.org>
8607
8608         * BufferView_pimpl.h: qualified name is not allowed in member
8609         declaration: WorkArea & Pimpl::workarea() const;
8610
8611         * factory.C: added using std::endl directive.
8612
8613         * text3.C: added using std::find and std::vector directives.
8614
8615 2002-08-29  André Pönitz <poenitz@gmx.net>
8616
8617         * lyxtext.h:
8618         * text2.C: remove unused member number_of_rows
8619
8620         * Makefile.am:
8621         * BufferView2.C: remove file, move contents to...
8622         * BufferView.C: ... here
8623
8624         * BufferView_pimpl.C:
8625         * factory.C: move more inset creation to factory
8626
8627         * vspace.C: avoid direct usage of LyXText, ws changes
8628
8629         * BufferView.[Ch]:
8630                 don't provide direct access to WorkArea, use two simple
8631                 acessors haveSelction() and workHeight() instead
8632
8633
8634 2002-08-29  John Levon  <levon@movementarian.org>
8635
8636         * BufferView_pimpl.C (dispatch): do not continue when
8637           no buffer
8638
8639 2002-08-28  André Pönitz <poenitz@gmx.net>
8640
8641         * commandtags.h: new LFUN_MOUSE_DOUBLE, LFUN_MOUSE_TRIPLE
8642
8643         * BufferView.h:
8644         * BufferView_pimpl.[Ch] move work area mouse event to LFUNs
8645
8646 2002-08-28  Rob Lahaye  <lahaye@snu.ac.kr>
8647
8648         * buffer.C: increment LYX_FORMAT to 221
8649
8650         * lyxrc.[Ch]: declare display_graphics as grfx::DisplayType and use
8651         grfx::displayTranslator.find(foo); include graphics/GraphicsTypes.h.
8652
8653         * lyxrc.C: use more "if (...) { } else { }" style (John's advice).
8654
8655         * lyx_main.C: call once the setDisplayTranslator(); is that okay here?
8656
8657 2002-08-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8658
8659         * factory.C (createInset): use LyXTextClass::floats
8660
8661         * MenuBackend.C (expandFloatListInsert):
8662         (expandFloatInsert):
8663         (expandToc):
8664
8665         * text2.C (setCounter):
8666
8667         * LaTeXFeatures.C (useFloat):
8668         (getFloatDefinitions):
8669
8670         * BufferView_pimpl.C (dispatch): use LyXTextClass::floats()
8671
8672         * lyxtextclass.[Ch]: rename layoutlist to layoutlist_; add
8673         floatlist_, with accessor floats().
8674
8675         * FloatList.h: remove global FloatList
8676
8677 2002-08-26  André Pönitz <poenitz@gmx.net>
8678
8679         * paragraph.[Ch]: Martin's patch for the \end_deeper bug
8680
8681         * BufferView.h:
8682         * BufferView2.C:
8683         * BufferView_pimpl.C:
8684         * text3.C: mun hanfling of LFUN_CUT/COPY/PASTE to LyXText
8685
8686 2002-08-25  John Levon  <levon@movementarian.org>
8687
8688         * LyXAction.C: fix margin note description
8689
8690 2002-08-24  John Levon  <levon@movementarian.org>
8691
8692         * buffer.C:
8693         * bufferlist.C:
8694         * bufferview_funcs.C:
8695         * lyxfont.C:
8696         * undo_funcs.C: cleanups
8697
8698         * lyxfunc.C: disable CUT/COPY when no selection
8699
8700 2002-08-23  Rob Lahaye  <lahaye@snu.ac.kr>
8701
8702         * lyxlength.[Ch]: use better (three letters) mnemonics for percentage units
8703         in "enum UNIT"; e.g. PTW for Percent of TextWidth
8704
8705         * lyxrc.C: graphics display is now monochrome|grayscale|color|none.
8706         Add backward compatibility to "mono", "gray" and "no".
8707
8708 2002-08-24  Dekel Tsur  <dekelts@tau.ac.il>
8709
8710         * buffer.C (readFile): Always run lyx2lyx if file_format < LYX_FORMAT
8711         (and file_format >= 200).
8712
8713 2002-08-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8714
8715         * lyxlayout.C (Read): treat LT_OPTARGS as an integer, not a bool
8716
8717 2002-08-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8718
8719         * lyxfunc.C (getStatus): handle LFUN_INSET_OPTARG
8720
8721 2002-08-20  Martin Vermeer  <martin.vermeer@hut.fi>
8722
8723         * BufferView_pimpl.C:
8724         * LyXAction.C:
8725         * buffer.C:
8726         * commandtags.h:
8727         * lyxfunc.C:
8728         * paragraph.[Ch]:
8729         * text2.C:
8730         * insets/insetoptarg.[Ch]: Added "optional argument" collapsible
8731         inset and code to make it  work with the paragraph code. The inset
8732         can be anywhere in the paragraph, but will only do the expected
8733         thing in LaTeX if the layout file contains the parameter line
8734                         OptionalArgs    1
8735         (or more generally, a nonzero value) for that layout.
8736
8737 2002-08-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
8738
8739         * paragraph.h: remove the declaration of undefined counters class
8740         function.
8741
8742 2002-08-22  Martin Vermeer <martin.vermeer@hut.fi>
8743
8744         * text2.C (setCounter):  fixed enumeration mis-count as reported by
8745         Dr. Richard Hawkins.
8746
8747 2002-08-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8748
8749         * paragraph_funcs.h: remove some unneeded includes
8750
8751         * text.C (backspace): pasteParagraph now in global scipe
8752
8753         * CutAndPaste.C (cutSelection): pasteParagraph now in global scope
8754         (pasteSelection): ditto
8755
8756         * paragraph.[Ch] (pasteParagraph): move function to global scope ...
8757         * paragraph_funcs.C (pasteParagraph): ... here
8758
8759 2002-08-20  André Pönitz <poenitz@gmx.net>
8760
8761         * commandtags.h: new LFUNs for swapping/copying table row/colums
8762
8763         * LyXAction.C:
8764         * lyxfunc.C: support for new lfuns
8765
8766 2002-08-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
8767
8768         * tabular.C:
8769         * buffer.[Ch]: remove NO_COMPABILITY stuff
8770
8771 2002-08-20  Lars Gullik Bjønnes  <larsbj@gullik.net>
8772
8773         * boost.C (throw_exception): new file, with helper function for
8774         boost compiled without exceptions.
8775
8776         * paragraph.h:
8777         * lyxlength.C:
8778         * buffer.C:
8779         * ParameterStruct.h:
8780         * ParagraphParameters.[Ch]: remove NO_PEXTRA_REALLY stuff
8781
8782         * bufferlist.C (emergencyWriteAll): use boost bind
8783
8784         * BufferView_pimpl.C (moveCursorUpdate): remove inline
8785
8786         * text.C: include paragraph_funcs.h
8787         (breakParagraph): breakParagraph is now in global scope
8788
8789         * paragraph_funcs.[Ch]: new files
8790
8791         * paragraph.C (breakParagraph,breakParagraphConservative): move to
8792         global scope
8793
8794         * buffer.C: include paragraph_funcs.h
8795         (insertStringAsLines): breakParagraph is now in global scope
8796
8797         * Makefile.am (lyx_SOURCES): add paragraph_funcs.h and
8798         paragraph_funcs.C
8799
8800         * CutAndPaste.C: include paragraph_funcs.h
8801         (cutSelection): breakParagraphConservative is now in global scope
8802         (pasteSelection): ditto
8803
8804         * buffer.h: declare oprator== and operator!= for
8805         Buffer::inset_iterator
8806
8807         * bufferlist.C (emergencyWrite): don't use fmt(...)
8808
8809         * text3.C: add using std::endl
8810
8811         * BufferView.C (moveCursorUpdate): remove default arg
8812
8813 2002-08-20  André Pönitz <poenitz@gmx.net>
8814
8815         * buffer.[Ch]: move inline functions to .C
8816
8817         * BufferView2.C:
8818         * BufferView_pimpl.C:
8819         * text.C:
8820         * buffer.[Ch]: use improved inset_iterator
8821
8822         * buffer.C:
8823         * paragraph.[Ch]: write one paragraph at a time
8824
8825 2002-08-20  Dekel Tsur  <dekelts@tau.ac.il>
8826
8827         * BufferView_pimpl.C (dispatch): Insert insetbibtex with "plain"
8828         style if style is not specified.
8829
8830 2002-08-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8831
8832         * text2.C (setCounter): when searching for right label for a
8833         caption, make sure to recurse to parent insets (so that a caption
8834         in a minipage in a figure float works) (bug #568)
8835
8836 2002-08-20  André Pönitz <poenitz@gmx.net>
8837
8838         * text3.C: new file for LyXText::dispatch() and helpers
8839
8840         * BufferView.[Ch]: move text related stuff to LyXText::dispatch()
8841
8842         * funcrequest.[Ch]: add message() do avoid direct access to LyXFunc
8843
8844 2002-08-19  André Pönitz <poenitz@gmx.net>
8845
8846         * lyxtext.h:
8847         * text.C: new LyXText::dispatch()
8848
8849         * BufferView_pimpl.C: move handling of LFUN_APPENDIX to LyXText
8850
8851 2002-08-18  Dekel Tsur  <dekelts@tau.ac.il>
8852
8853         * text.C (paintRowSelection): Fix code for rows with both RTL & LTR text.
8854
8855         * BufferView_pimpl.C (smartQuote): Insert typewriter quotes in
8856         Hebrew text.
8857
8858 2002-08-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8859
8860         * Makefile.am: use $(variables) instead of @substitutions@
8861
8862 2002-08-15  André Pönitz <poenitz@gmx.net>
8863
8864         * lyxfunc.C:
8865         * BufferView_pimpl.C: streamlining mathed <-> outer world
8866         interaction
8867
8868         * commandtags.h:
8869         * LyXAction.C: remove unused LFUN_MATH
8870
8871 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
8872
8873         * paragraph.[Ch]: add some NO_NEXT ifdefs.
8874
8875 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
8876
8877         * paragraph.C (Paragraph): reformat a bit
8878         (cutIntoMinibuffer): use builtin InsetList function instad of
8879         doing it manually.
8880         (getInset): ditto
8881
8882         * buffer.C: include boost/bind.hpp, add using std::for_each
8883         (writeFileAscii): use ParagraphList iterators
8884         (validate): use for_each for validate traversal of paragraphs
8885         (getBibkeyList): use ParagraphList iterators
8886         (resizeInsets): use for_each to resizeInsetsLyXText for all
8887         paragraphs.
8888         (getParFromID): use ParagraphList iterators
8889
8890         * BufferView2.C (lockInset): use paragraph list and iterators
8891
8892 2002-08-14  John Levon  <levon@movementarian.org>
8893
8894         * lyxserver.C: remove spurious xforms include
8895
8896 2002-08-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8897
8898         * lyxfunc.C (getStatus): disable math-extern outside of math mode
8899
8900 2002-08-13  André Pönitz <poenitz@gmx.net>
8901
8902         * LyXAction.[Ch]:
8903         * lyxfunc.C: further cleaning
8904
8905 2002-08-13  André Pönitz <poenitz@gmx.net>
8906
8907         * funcrequest.h: new constructor
8908
8909         * funcrequest.C: move stuff here from .h
8910
8911         * Makefile.am:
8912         * BufferView_pimpl.C:
8913         * LyXAction.C:
8914         * toc.C:
8915         * lyxfunc.C: subsequent changes
8916
8917         * lyxfunc.h: new view() member function
8918
8919         * lyxfunc.C: subsequent changes
8920
8921 2002-08-13  Angus Leeming  <leeming@lyx.org>
8922
8923         * BufferView2.C:
8924         * BufferView_pimpl.C:
8925         * buffer.C:
8926         * converter.C:
8927         * importer.C:
8928         * lyxfunc.C:
8929         * lyxvc.C:
8930         * toc.C:
8931         * vc-backend.C:
8932         changes due to the changed LyXView interface that now returns references
8933         to member variables not pointers.
8934
8935 2002-08-13  Angus Leeming  <leeming@lyx.org>
8936
8937         * WordLangTuple (word, lang_code): return references to strings,
8938         not strings.
8939
8940         * BufferView.h:
8941         * SpellBase.h:
8942         * lyxtext.h: forward-declare WordLangTuple.
8943
8944         * BufferView2.C:
8945         * ispell.C:
8946         * pspell.C:
8947         * text.C: #include "WordLangTuple.h".
8948
8949         * lyxtext.h:
8950         * text.C: (selectNextWordToSpellcheck): constify return type.
8951
8952 2002-08-12  Martin Vermeer <martin.vermeer@hut.fi>
8953
8954         * buffer.C:
8955         * buffer.h:
8956         * lyxtext.h:
8957         * paragraph.C:
8958         * paragraph_pimpl.h:
8959         * text.C:
8960         * text2.C:
8961         * undo_funcs.C: replaced per-paragraph counter logic by per-buffer, as
8962         suggested by Angus.
8963         Made updateCounter always count from start of buffer, and removed
8964         second argument (par).
8965         Reverted floats number display to '#'. Perhaps I'll try again when the
8966         code base is sanitized a bit.
8967
8968 2002-08-12  Angus Leeming  <leeming@lyx.org>
8969
8970         * buffer.[Ch] (getLabelList): constify.
8971
8972 2002-08-07  André Pönitz <poenitz@gmx.net>
8973
8974         * commandtags.h: new LFUN_MOUSE_(PRESS|MOTION|RELEASE)
8975
8976         * funcrequest.h: extension to keep mouse (x,y) position
8977
8978 2002-08-12  Juergen Vigna  <jug@sad.it>
8979
8980         * BufferView2.C (insertErrors): forbid undo when inserting error
8981         insets.
8982
8983         * CutAndPaste.C (SwitchLayoutsBetweenClasses): ditto
8984
8985 2002-08-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
8986
8987         * ParagraphList.[Ch]: new files
8988
8989         * Makefile.am (lyx_SOURCES): add ParagraphList.[Ch]
8990
8991         * BufferView2.C (lockInset): ParagraphList changes
8992         * toc.C: ditto
8993         * text2.C: ditto
8994         * bufferlist.C: ditto
8995         * buffer.h: ditto
8996         * buffer.C: ditto
8997
8998 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
8999
9000         * paragraph_pimpl.h: remove inclusion of boost/array.hpp, remove
9001         unused class variable counter_,
9002
9003         * paragraph.[Ch] (getFirstCounter): delete unused function
9004
9005         * counters.C: include LAssert.h
9006         (reset): add a new function with no arg, change other version to
9007         not have def. arg and to not allow empty arg.
9008
9009         * text2.C (setCounter): remove empty arg from call to Counters::reset
9010
9011 2002-08-11  John Levon  <levon@movementarian.org>
9012
9013         * Makefile.am: add WordLangTuple.h
9014
9015 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
9016
9017         * paragraph.C, ToolbarDefaults.h, kbsequence.h, lyx_main.C,
9018         lyxfunc.C lyxlex_pimpl.C: ws changes only.
9019
9020         * insets/insettext.C: InsetList changes
9021
9022         * graphics/GraphicsSupport.C (operator()): InsetList changes
9023
9024         * toc.C (getTocList): InsetList changes
9025
9026         * paragraph_pimpl.[Ch]: InsetList changes
9027
9028         * paragraph.[Ch]: InsetList changes
9029
9030         * buffer.C (inset_iterator): InsetList changes
9031         (setParagraph): ditto
9032         * buffer.h (inset_iterator): ditto
9033         * iterators.C (operator++): ditto
9034         * iterators.h: ditto
9035
9036         * Makefile.am (lyx_SOURCES): add InsetList.C and InsetList.h
9037
9038         * InsetList.[Ch]: new files, most InsetList handling moved out of
9039         paragraph.C.
9040
9041         * BufferView2.C (removeAutoInsets): InsetList changes
9042         (lockInset): ditto
9043         (ChangeInsets): ditto
9044
9045 2002-08-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
9046
9047         * paragraph_pimpl.h (empty): new function
9048
9049         * paragraph.[Ch] (empty): new function
9050
9051         * other files: use the new Paragraph::empty function
9052
9053 2002-08-09  John Levon  <levon@movementarian.org>
9054
9055         * lyxtext.h: remove unused refresh_height
9056
9057 2002-08-09  John Levon  <levon@movementarian.org>
9058
9059         * Makefile.am:
9060         * sgml.h:
9061         * sgml.C:
9062         * buffer.C:
9063         * paragraph.h:
9064         * paragraph.C: move sgml char escaping out of paragraph
9065
9066         * paragraph.h:
9067         * paragraph.C: remove id setter
9068
9069         * buffer.C:
9070         * paragraph.C:
9071         * paragraph_pimpl.C: remove dead tex_code_break_column
9072
9073         * bufferview_funcs.C: small cleanup
9074
9075         * lyxfunc.C: remove dead proto
9076
9077         * lyxtext.h: make some stuff private. Remove some dead stuff.
9078
9079         * lyxgluelength.C: make as[LyX]String() readable
9080
9081 2002-08-08  John Levon  <levon@movementarian.org>
9082
9083         * LyXAction.h:
9084         * LyXAction.C:
9085         * MenuBackend.C:
9086         * ToolbarDefaults.C:
9087         * lyxfunc.C:
9088         * lyxrc.C:
9089         * toc.C: lyxaction cleanup
9090
9091 2002-08-08  John Levon  <levon@movementarian.org>
9092
9093         * BufferView2.C: small cleanup
9094
9095         * lyxfind.h:
9096         * lyxfind.C: move unnecessary header into the .C
9097
9098 2002-08-08  John Levon  <levon@movementarian.org>
9099
9100         * funcrequest.h: just tedious nonsense
9101
9102         * lyx_main.h:
9103         * lyx_main.C: cleanups
9104
9105         * buffer.C:
9106         * vspace.C: remove dead header lyx_main.h
9107
9108 2002-08-07  Angus Leeming  <leeming@lyx.org>
9109
9110         * Paragraph.[Ch]:
9111         * paragraph_pimpl.h:
9112         Forward declare class Counters in paragraph.h by moving the ctrs member
9113         variable into Paragraph::Pimpl.
9114         (counters): new method, returning a reference to pimpl_->ctrs.
9115
9116         * text2.C: ensuing changes.
9117
9118 2002-08-07  John Levon  <levon@movementarian.org>
9119
9120         * BufferView_pimpl.C (resizeCurrentBuffer): update scrollbar
9121
9122         * BufferView_pimpl.C: announce X selection on double/triple
9123           click
9124
9125         * lyx_main.C: use correct bool in batch dispatch
9126
9127         * counters.h: srcdocs (from Martin Vermeer and Angus Leeming)
9128
9129 2002-08-07  André Pönitz <poenitz@gmx.net>
9130
9131         * funcrequest.h: new class to wrap a kb_action and its argument
9132
9133         * BufferView.[Ch]:
9134         * BufferView_pimpl[Ch]:
9135         * LaTeX.C:
9136         * LyXAction.[Ch]:
9137         * lyxfunc.[Ch]:
9138         * lyxrc.C: subsequent changes
9139
9140
9141 2002-08-07  John Levon  <levon@movementarian.org>
9142
9143         * BufferView_pimpl.C (redoCurrentBuffer): fix screen update when
9144           document options change.
9145
9146 2002-08-06  Martin Vermeer  <martin.vermeer@hut.fi>
9147
9148         * counters.[Ch]
9149         * text2.C
9150         * paragraph.[Ch]
9151         * makefile.am: move counters functionality over from
9152         text2.C/paragraph.[Ch] to counters.[Ch], and make proper C++.
9153
9154 2002-08-06  John Levon  <levon@movementarian.org>
9155
9156         * WordLangTuple.h: new file for word + language code tuple
9157
9158         * SpellBase.h:
9159         * pspell.h:
9160         * pspell.C:
9161         * ispell.h:
9162         * ispell.C:
9163         * lyxtext.h:
9164         * text.C:
9165         * text2.C:
9166         * BufferView.h:
9167         * BufferView2.C: use WordLangTuple
9168
9169         * layout.h:
9170         * buffer.C: remove very dead LYX_LAYOUT_DEFAULT
9171
9172 2002-08-06  John Levon  <levon@movementarian.org>
9173
9174         * lyx_main.C: fix cmdline batch handling
9175
9176 2002-08-06  André Pönitz <poenitz@gmx.net>
9177
9178         * lyxrc.C: set default for show_banner to true
9179
9180 2002-08-06  John Levon  <levon@movementarian.org>
9181
9182         * pspell.C: fix a crash, and allow new aspell to work
9183
9184 2002-08-06  John Levon  <levon@movementarian.org>
9185
9186         * lyxfunc.C:
9187         * kbmap.C: small cleanup
9188
9189         * vspace.h:
9190         * vspace.C: add const
9191
9192 2002-08-05  John Levon  <levon@movementarian.org>
9193
9194         * LyXAction.C: back to tabular-insert
9195
9196 2002-08-04  John Levon  <levon@movementarian.org>
9197
9198         * BufferView.h:
9199         * BufferView.C: cosmetic change
9200
9201         * BufferView_pimpl.C: s/IGNORE_CODE/NOTE_CODE/
9202
9203         * bufferlist.C:
9204         * buffer.h:
9205         * buffer.C:
9206         * lyxcb.h:
9207         * lyxcb.C:
9208         * lyxserver.C:
9209         * lyxvc.C:
9210         * vc-backend.C:
9211         * BufferView2.C: purge all "Lyx" not "LyX" strings
9212
9213         * lyxcursor.h:
9214         * lyxcursor.C: attempt to add some documentation
9215
9216         * lyxfunc.C:
9217         * commandtags.h:
9218         * LyXAction.C:
9219         * ToolbarDefaults.C:
9220         * BufferView_pimpl.C: remove LFUN_DIALOG_TABULAR_INSERT and
9221           merge with LFUN_TABULAR_INSERT
9222
9223         * Makefile.am:
9224         * SpellBase.h:
9225         * ispell.h:
9226         * ispell.C:
9227         * pspell.h:
9228         * pspell.C: split up i/pspell implementations into separate
9229           files, many cleanups
9230
9231         * lyxlex.C: unrevert, with a proper fix for prefix.length() == 0
9232
9233         * text2.C: some cleanup
9234
9235         * lyxfunc.C: don't check for isp_command == "none" any more, it
9236           didn't make any sense
9237
9238 2002-08-06      Martin Vermeer <martin.vermeer@hut.fi>
9239
9240         * counters.[Ch]
9241         * text2.C
9242         * paragraph.[Ch]
9243         * makefile.am: move counters functionality over
9244         from text2.C/paragraph.[Ch] to counters.[Ch], and
9245         make proper C++.
9246 2002-08-02  John Levon  <levon@movementarian.org>
9247
9248         * buffer.C: s/lyxconvert/lyx2lyx/
9249
9250 2002-08-02  Angus Leeming  <leeming@lyx.org>
9251
9252         * lyxlex.C: revert John's change as it breaks reading of the user
9253         preamble.
9254
9255 2002-08-02  Angus Leeming  <leeming@lyx.org>
9256
9257         * importer.C (Import):
9258         * lyxfunc.C (moveCursorUpdate, dispatch, view_status_message):
9259         changes due to LyXView::view() now returning a boost::shared_ptr.
9260
9261 2002-08-02  John Levon  <levon@movementarian.org>
9262
9263         * lyxlex.C: small cleanup
9264
9265 2002-08-02  John Levon  <levon@movementarian.org>
9266
9267         * text2.C (status): small cleanup, no logic change
9268
9269 2002-08-01  John Levon  <levon@movementarian.org>
9270
9271         * buffer.h:
9272         * buffer.C (writeFile): don't output alerts, caller
9273           handles this
9274
9275         * bufferlist.C:
9276         * lyx_cb.C: from above
9277
9278         * lyxfunc.C: allow to open non-existent files
9279
9280 2002-07-31  John Levon  <levon@movementarian.org>
9281
9282         * lyxserver.C: don't let incidental errors get
9283           in the way (errno)
9284
9285 2002-07-30  John Levon  <levon@movementarian.org>
9286
9287         * lyxfunc.C: disable character dialog in ERT inset (partial fix)
9288
9289 2002-07-30  John Levon  <levon@movementarian.org>
9290
9291         * lyxserver.h:
9292         * lyxserver.C: remove I/O callback too
9293
9294 2002-07-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9295
9296         * lyxfunc.C (getStatus): disable LFUN_LATEX_LOG when there is no
9297         log.
9298
9299 2002-07-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
9300
9301         * many files: strip,frontStrip -> trim,ltrim,rtrim
9302
9303 2002-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
9304
9305         * PrinterParams.h: remove extern containsOnly, and include
9306         support/lstrings.h instead.
9307
9308         * LaTeX.C (scanAuxFile): modify because of strip changes
9309         (deplog): ditto
9310         * buffer.C (makeLaTeXFile): ditto
9311         * bufferparams.C (writeFile): ditt
9312         * lyxfont.C (stateText): ditto
9313         * lyxserver.C (read_ready): ditto
9314         * vc-backend.C (scanMaster): ditto
9315
9316         * BufferView_pimpl.h: ws changes
9317
9318         * BufferView_pimpl.C: inlude boost/signals/connection.hpp
9319
9320 2002-07-26  André Pönitz <poenitz@gmx.net>
9321
9322         * kb_sequence.C: remove unnedred usings
9323
9324 2002-07-26  Juergen Vigna  <jug@sad.it>
9325
9326         * lyxfind.C (LyXReplace): we have to check better if the returned
9327         text is not of theLockingInset()->getLockingInset().
9328
9329 2002-07-25  Juergen Vigna  <jug@sad.it>
9330
9331         * lyxfind.C (LyXReplace): don't replace if we don't get the
9332         right LyXText.
9333
9334         * undo_funcs.C (createUndo): remove debugging code.
9335
9336 2002-07-25  Dekel Tsur  <dekelts@tau.ac.il>
9337
9338         * buffer.C (parseSingleLyXformat2Token): Use default placement
9339         when reading old floats.
9340
9341         * FloatList.C (FloatList): Change the default placement of figure
9342         and tables to "tbp".
9343
9344 2002-07-25  John Levon  <moz@compsoc.man.ac.uk>
9345
9346         * MenuBackend.C: using std::max
9347
9348 2002-07-25  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9349
9350         * MenuBackend.C (expandToc):
9351         (expandToc2): code moved from xforms menu frontend. It is now
9352         generic and TOCs are transparent to menu frontends.
9353
9354 2002-07-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9355
9356         * toc.C (getTocList): protect against buf=0
9357
9358         * MenuBackend.C (expand): move from Menu to MenuBackend; pass a
9359         Menu as first parameter. Now, this calls itself recursively to
9360         expand a whole tree (this will be useful for TOC handling)
9361         (expandFloatInsert): remove 'wide' version of floats
9362
9363         * MenuBackend.h (submenuname): returns the name of the submenu.
9364         (submenu): returns the submenu itself, provided it has been
9365         created by MenuBackend::expand
9366
9367 2002-07-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9368
9369         * paragraph_pimpl.C (simpleTeXSpecialChars): close fonts before
9370         insets which have noFontChange == true. (bug #172)
9371
9372 2002-07-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9373
9374         * BufferView_pimpl.C: add connection objects and use them...
9375         (Pimpl): here.
9376
9377 2002-07-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9378
9379         * MenuBackend.C (expandLastfiles):
9380         (expandDocuments):
9381         (expandFormats):
9382         (expandFloatListInsert):
9383         (expandFloatInsert):
9384         (expand): split expand in parts
9385
9386 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
9387
9388         * lyx_gui.C: use lyx_gui::exit()
9389
9390 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
9391
9392         * LyXAction.C: show the failing pseudo action
9393
9394 2002-07-22  Dekel Tsur  <dekelts@tau.ac.il>
9395
9396         * buffer.C (readFile): Run the lyxconvert script in order to read
9397         old files.
9398
9399 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
9400
9401         * LyXAction.C:
9402         * commandtags.h:
9403         * lyxfunc.C: remove LFUN_ADD_TO_TOOLBAR
9404
9405 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
9406
9407         * LyXAction.C:
9408         * commandtags.h:
9409         * lyxfunc.C: remove LFUN_TOOLBAR_PUSH
9410
9411 2002-07-22  Herbert Voss  <voss@lyx.org>
9412
9413         * lengthcommon.C:
9414         * lyxlength.[Ch]: add support for the vertical lengths
9415
9416 2002-07-21  John Levon  <moz@compsoc.man.ac.uk>
9417
9418         * toc.[Ch]: std:: fixes
9419
9420 2002-07-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9421
9422         * lyxrc.C: do not include lyx_main.h
9423
9424         * LaTeXFeatures.h: use a list<string> instead of a vector<string>
9425         for layouts
9426
9427         * lyxrc.C:
9428         * encoding.C:
9429         * bufferlist.C:
9430         * BufferView2.C: include "lyxlex.h"
9431
9432         * tabular.h:
9433         * bufferparams.h: do not #include "lyxlex.h"
9434
9435         * lyxtextclasslist.C (Add): remove method
9436         (classlist): renamed to classlist_
9437
9438         * paragraph_pimpl.C:
9439         * paragraph.C:
9440         * text2.C:
9441         * CutAndPaste.C:
9442         * bufferview_funcs.C:
9443         * bufferlist.C:
9444         * text.C:
9445         * LaTeXFeatures.C:
9446         * buffer.C:
9447         * toc.C (getTocList): use BufferParams::getLyXTextClass
9448
9449         * toc.C (getTocList): use InsetFloat::addToToc
9450
9451         * toc.[Ch]: new files, containing helper functions to handle table
9452         of contents
9453
9454         * lyxfunc.C (dispatch): no need to remove spaces around command
9455         given as a string
9456         (getStatus): handle LFUN_SEQUENCE by returning the status of the
9457         first command of the sequence; it is not very clever, but I do not
9458         have a better idea, actually
9459
9460         * LyXAction.C (LookupFunc): make sure to remove space at the
9461         beginning and end of the command
9462
9463 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9464
9465         * MenuBackend.C (getMenubar): new method: return the menubar of
9466         this menu set
9467         (read): treat differently reading of menu and menubar (in
9468         particular, the menubar has no name now)
9469         (Menu::menubar): remove
9470
9471         * lyxfunc.C (dispatch): add 'done' message to minibuffer when
9472         saving is finished
9473
9474 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
9475
9476         * BufferView_pimpl.C (workAreaButtonRelease): Fix opening of
9477         a bibitem inset in a RTL paragraph.
9478
9479 2002-07-20  John Levon  <moz@compsoc.man.ac.uk>
9480
9481         * paragraph_pimpl.C: constify
9482
9483         * BufferView_pimpl.C:
9484         * LaTeX.C:
9485         * lyxfunc.C: fix dispatch in a nicer way
9486
9487 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9488
9489         * lyxfunc.C (dispatch):
9490         * BufferView_pimpl.C:
9491         * BufferView_pimpl.h:
9492         * BufferView.C:
9493         * BufferView.h: rename Dispatch() to dispatch()
9494
9495         * LaTeXFeatures.C (useLayout): honor LyXLayout::depends_on()
9496
9497         * lyxlayout.C (Read): honor DependsOn tag
9498
9499         * lyxlayout.[Ch] (depends_on): new method
9500
9501         * version.C.in: update lyx_docversion
9502
9503         * LaTeXFeatures.C (getMacros): only define \LyX when needed
9504
9505         * paragraph.C (validate): remove from here...
9506         * paragraph_pimpl.C (validate): ... and move here
9507         (isTextAt): make it const
9508
9509         * buffer.C (getLists): ws cleanup
9510
9511 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
9512
9513         * language.C (read): Use iso8859-1 encoding in latex_lang
9514         (this prevents LyX from crashing when using iso10646-1 encoding).
9515
9516 2002-07-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9517
9518         * text2.C (toggleInset): if cursor is inside an inset, close the
9519         inset and leave cursor _after_ it
9520
9521 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
9522
9523         * lyxfunc.C: move minibuffer completion handling out of here
9524
9525 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
9526
9527         * BufferView_pimpl.C:
9528         * LaTeX.C: fix dispatch calls
9529
9530 2002-07-19  Dekel Tsur  <dekelts@tau.ac.il>
9531
9532         * text.C (drawChars): Fix Arabic text rendering.
9533
9534 2002-07-18  John Levon  <moz@compsoc.man.ac.uk>
9535
9536         * LyXAction.C:
9537         * commandtags.h:
9538         * lyxfunc.C: remove message-push/pop
9539
9540         * lyxserver.C:
9541         * lyxfunc.h:
9542         * lyxfunc.C: rationalise some code by removing verboseDispatch
9543           in favour of a bool argument to dispatch()
9544
9545 2002-07-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9546
9547         * lyx_main.C (init): make sure to read symlinks as absolute paths
9548
9549 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
9550
9551         * lyxfunc.h:
9552         * lyxfunc.C: no need for commandshortcut to be a member
9553
9554 2002-07-15  André Pönitz <poenitz@gmx.net>
9555
9556         * converter.C: add support for $$s (scripts from lib/scripts dir)
9557         * lyx_main.C: white space
9558
9559 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
9560
9561         * bufferlist.C:
9562         * lyxrc.h:
9563         * lyxrc.C: remove second exit confirmation
9564
9565 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
9566
9567         * BufferView.h:
9568         * BufferView.C:
9569         * BufferView2.C:
9570         * BufferView_pimpl.h:
9571         * BufferView_pimpl.C:
9572         * lyxfunc.C: s/setState/switchKeyMap/, s/showState/view_state_changed/
9573
9574 2002-07-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9575
9576         * MenuBackend.C (expand): add numeric shortcuts to document menu
9577
9578         * lyxrc.C (getDescription): remove RC_NEW_ASK_FILENAME
9579
9580 2002-07-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9581
9582         * lyxfont.C (setLyXFamily):
9583         (setLyXSeries):
9584         (setLyXShape):
9585         (setLyXSize):
9586         (setLyXMisc):
9587         (lyxRead):
9588         * debug.C (value):
9589         * buffer.C (asciiParagraph): use ascii_lowercase
9590
9591 2002-07-15  Mike Fabian  <mfabian@suse.de>
9592
9593         * lyxlex_pimpl.C (search_kw):
9594         * lyxlex.C (getLongString):
9595         * converter.h (operator<):
9596         * converter.C (operator<):
9597         * buffer.C (parseSingleLyXformat2Token):
9598         (asciiParagraph):
9599         * ToolbarDefaults.C (read):
9600         * MenuBackend.C (checkShortcuts):
9601         (read):
9602         * LColor.C (getFromGUIName):
9603         (getFromLyXName): use the compare_ascii_no_case instead of
9604         compare_no_case, because in turkish, 'i' is not the lowercase
9605         version of 'I', and thus turkish locale breaks parsing of tags.
9606
9607 2002-07-16  Angus Leeming  <leeming@lyx.org>
9608
9609         * BufferView_pimpl.C (buffer): Previews::generateBufferPreviews
9610         now takes a Buffer const & argument.
9611
9612 2002-07-15  John Levon  <moz@compsoc.man.ac.uk>
9613
9614         * BufferView.C (resize): check there's a buffer to resize
9615
9616 2002-07-14  John Levon  <moz@compsoc.man.ac.uk>
9617
9618         * lyxfunc.C: remove dead code
9619
9620         * lyxserver.h:
9621         * lyxserver.C: use lyx_guii::set_read_callback
9622
9623 2002-07-13  Dekel Tsur  <dekelts@tau.ac.il>
9624
9625         * lyxfunc.C (dispatch): Correct cursor behaviour when exiting
9626         an inset in a RTL paragraph.
9627
9628 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
9629
9630         * lyxfunc.C: repaint after a font size update
9631
9632 2002-07-15  André Pönitz <poenitz@gmx.net>
9633
9634         * lyxlength.C: inBP should be able to return negative values
9635
9636 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
9637
9638         * lyxfunc.C: use lyx_gui::update_fonts()
9639
9640 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
9641
9642         * lyxfunc.C: use lyx_gui::update_color()
9643
9644 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
9645
9646         * bufferlist.C:
9647         * lyxfunc.h:
9648         * lyxfunc.C:
9649         * lyxrc.h:
9650         * lyxrc.C: remove file->new asks for name option, and let
9651           buffer-new take an argument
9652
9653 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
9654
9655         * BufferView_pimpl.C: remove unneeded extra repaint()
9656
9657 2002-07-10  John Levon  <moz@compsoc.man.ac.uk>
9658
9659         * LyXAction.C: allow command-sequence with NoBuffer
9660
9661         * lyxfunc.C: don't insist on trailing ';' for command-sequence
9662
9663 2002-07-10  Angus Leeming  <leeming@lyx.org>
9664
9665         * lyxrc.[Ch]: preview_scale_factor should be a float not an int.
9666
9667 2002-07-09  Angus Leeming  <leeming@lyx.org>
9668
9669         * lyxrc.[Ch]: added preview_hashed_labels and preview_scale_factor.
9670
9671 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
9672
9673         * lengthcommon.h: whitespace
9674
9675         * lyxfunc.C: update scrollbar after goto paragraph
9676
9677         * lyxtext.h: factor out page break drawing, and fix it so
9678           page break/added space paints as selected nicely
9679
9680 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
9681
9682         * BufferView_pimpl.C: add FIXMEs, clean up a little
9683
9684 2002-07-09  André Pönitz <poenitz@gmx.net>
9685
9686         * lyxfont.[Ch]: support for wasy symbols
9687
9688 2002-07-08  André Pönitz <poenitz@gmx.net>
9689
9690         * BufferView_pimpl.C: apply John's patch for #93.
9691
9692 2002-07-05  Angus Leeming  <leeming@lyx.org>
9693
9694         * BufferView_pimpl.C (buffer): generate previews if desired.
9695
9696         * LColor.h: add "preview" to the color enum.
9697
9698         * LColor.C (LColor): add a corresponding entry to the items array.
9699
9700         * buffer.C (~Buffer): remove any previewed LaTeX snippets associated
9701         with this buffer.
9702
9703 2002-07-05  Angus Leeming  <leeming@lyx.org>
9704
9705         * buffer.[Ch] (makeLaTeXFile): create two methods where there was one.
9706         The body of the code is now in the method that is passed an ostream &
9707         rather than a file name.
9708         Pass an additional only_preamble parameter, useful for the forthcoming
9709         preview stuff.
9710
9711 2002-07-03  André Pönitz <poenitz@gmx.net>
9712
9713         * lyxfunc.C: simplify getStatus() a bit for math stuff
9714
9715 2002-07-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9716
9717         * BufferView_pimpl.C (workAreaResize): add an unconditional repaint.
9718
9719 2002-06-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9720
9721         * text.C (changeRegionCase): do not change case of all the
9722         document when region ends at paragraph end (bug #461)
9723
9724 2002-07-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9725
9726         * paragraph.C (startTeXParParams):
9727         (endTeXParParams): add \protect when necessary
9728
9729 2002-06-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9730
9731         * BufferView_pimpl.C (workAreaExpose): remove warning
9732
9733 2002-06-27  Angus Leeming  <leeming@lyx.org>
9734
9735         * Makefile.am: add lyxlayout_ptr_fwd.h.
9736
9737 2002-06-26  André Pönitz <poenitz@gmx.net>
9738
9739         * lyxrc.[Ch]: introduce \preview, revive half-dead \show_banner
9740
9741 2002-06-25  Angus Leeming  <leeming@lyx.org>
9742
9743         * lyxfunc.C (dispatch): Comment out the call to
9744         grfx::GCache::changeDisplay. The method no longer exists now that the
9745         pixmap generation part of the graphics loader has been moved into
9746         InsetGraphics.
9747
9748 2002-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9749
9750         * text2.C: layout as layout
9751
9752         * text.C: layout as layout
9753
9754         * tabular.C (OldFormatRead): layout as layout
9755
9756         * paragraph_pimpl.C (TeXDeeper): layout as layout
9757         (realizeFont): layout as layout
9758
9759         * paragraph.C (writeFile): layout as layout
9760         (validate): layout as layout
9761         (getFont): layout as layout
9762         (getLabelFont): layout as layout
9763         (getLayoutFont): layout as layout
9764         (breakParagraph): layout as layout
9765         (stripLeadingSpaces): layout as layout
9766         (getEndLabel): layout as layout
9767         (getMaxDepthAfter): layout as layout
9768         (applyLayout): layout as layout
9769         (TeXOnePar): layout as layout
9770         (simpleTeXOnePar): layout as layout
9771         (TeXEnvironment): layout as layout
9772         (layout): layout as layout
9773         (layout): layout as layout
9774
9775         * lyxtextclass.C (compare_name): new functor to work with
9776         shared_ptr, layout as layout
9777         (Read): layout as layout
9778         (hasLayout): layout as layout
9779         (operator): layout as layout
9780         (delete_layout): layout as layout
9781         (defaultLayout): layout as layout
9782
9783         * lyxlayout_ptr_fwd.h: new file
9784
9785         * lyxlayout.C (Read): layout as layout
9786
9787         * lyx_cb.C (MenuInsertLabel): layout as layout
9788
9789         * bufferlist.C (newFile): layout as layout
9790
9791         * buffer.C (readLyXformat2): layout as layout
9792         (parseSingleLyXformat2Token): layout as layout
9793         (insertStringAsLines): layout as layout
9794         (asciiParagraph): layout as layout
9795         (latexParagraphs): layout as layout
9796         (makeLinuxDocFile): layout as layout
9797         (simpleLinuxDocOnePar): layout as layout
9798         (makeDocBookFile): layout as layout
9799         (simpleDocBookOnePar): layout as layout
9800         (getLists): layout as layout
9801
9802         * LaTeXFeatures.C (getTClassPreamble): layout as layout
9803
9804         * CutAndPaste.C (cutSelection): layout as layout
9805         (pasteSelection): layout as layout
9806         (SwitchLayoutsBetweenClasses): layout as layout
9807
9808         * BufferView_pimpl.C (Dispatch): layout as layout
9809         (smartQuote): layout as layout
9810
9811         * BufferView2.C (unlockInset): layout as layout
9812
9813 2002-06-24  André Pönitz <poenitz@gmx.net>
9814
9815         * lyxfunc.C: fix #487
9816
9817 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
9818
9819         * lyxrc.h:
9820         * lyxrc.C:
9821         * lyxfunc.C: remove display_shortcuts, show_banner
9822
9823 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
9824
9825         * Buffer_pimpl.C: oops, update on resize
9826
9827 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
9828
9829         * buffer.C:
9830         * converter.C:
9831         * exporter.C:
9832         * lyxfunc.C:
9833         * BufferView.h:
9834         * BufferView.C: use repaint()
9835
9836         * BufferView_pimpl.h:
9837         * BufferView_pimpl.C: s/updateScreen()/repaint()/
9838           as it's a clearer description. Remove superfluous
9839           redraws.
9840
9841 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
9842
9843         * text.C: fix bug 488. Not ideal, but getting
9844           getWord() to work properly for the insets that
9845           matter is more difficult ...
9846
9847 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
9848
9849         * BufferView_pimpl.C:
9850         * LyXAction.C:
9851         * commandtags.h:
9852         * lyxfunc.C: remove the six million index lyxfuncs to just
9853           one, and DTRT (bug 458)
9854
9855 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
9856
9857         * BufferView.h:
9858         * BufferView.C:
9859         * BufferView_pimpl.h:
9860         * BufferView_pimpl.C: clean up resize() stuff,
9861           and unnecessary updateScreen()s
9862
9863 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
9864
9865         * BufferView.h:
9866         * BufferView.C:
9867         * BufferView_pimpl.h:
9868         * BufferView_pimpl.C:
9869         * lyxfind.h:
9870         * lyxfind.C:
9871         * minibuffer.C: remove focus management of workarea,
9872           not needed. Use screen's greyOut()
9873
9874 2002-06-17  Herbert Voss  <voss@lyx.org>
9875
9876         * converter.C: (convert) do not post a message, when converting
9877         fails, let the calling function decide what to do in this case
9878
9879 2002-06-18  John Levon  <moz@compsoc.man.ac.uk>
9880
9881         * lyxfunc.C: tidy up a little
9882
9883 2002-06-16    <alstrup@diku.dk>
9884
9885         * BufferView_pimpl.C (Pimpl): Use WorkAreaFactory.
9886         Got rid of FORMS_H_LOCATION include. Now we are
9887         GUII.
9888
9889 2002-06-15  LyX Development team  <lyx@rilke>
9890
9891         * buffer.[Ch] (sgmlOpenTag):
9892         (sgmlCloseTag): Added support for avoiding pernicious mixed
9893         content. Return number of lines written.
9894
9895         (makeLinuxDocFile):
9896         (makeDocBookFile): Fixed calls to sgml*Tag.
9897         Simple white space clean.
9898
9899         (simpleDocBookOnePar): Simple white space clean.
9900
9901         * tabular.[Ch] (docBook): Renamed to docbook and got another
9902         argument to related with the pernicious mixed content.
9903
9904         (docbookRow): Fixed calls for docbook inset method.
9905
9906 2002-06-15  Lyx Development team  <larsbj@birdstep.com>
9907
9908         * lyxfunc.[Ch]: Use LyXKeySym instead of KeySym,
9909         so it's X11 independent.
9910
9911         * kb*.[Ch]: ditto.
9912
9913         * BufferView_pimpl.[Ch] (workAreaKeyPress): ditto.
9914
9915 2002-06-15  Lyx Development team  <lyx@electronia>
9916
9917         * intl.h: Renamed getTrans to getTransManager.
9918
9919 2002-06-14  Angus Leeming  <leeming@lyx.org>
9920
9921         * Makefile.am: nuke forgotten stl_string_fwd.h.
9922
9923 2002-06-12  Angus Leeming  <leeming@lyx.org>
9924
9925         * stl_string_fwd.h: unused and non-compliant anyway. Nuked.
9926
9927 2002-06-13  Angus Leeming  <leeming@lyx.org>
9928
9929         * LaTeX.C:
9930         * vspace.C: wrap using std::sscanf inside a CXX_GLOBAL_CSTD block.
9931
9932 2002-06-12  Andrew Zabolotny  <zap@cobra.ru>
9933
9934         * kbmap.C (getiso): add support for cyrillic and greek
9935
9936 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9937
9938         * BufferView.h:
9939         * BufferView.C:
9940         * BufferView_pimpl.h:
9941         * BufferView_pimpl.C: move bogus scrolling logic
9942           to xforms
9943
9944 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9945
9946         * lyxfunc.C:
9947         * BufferView_pimpl.C: view->resize() change
9948
9949 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9950
9951         * BufferView_pimpl.C: topCursorVisible
9952           prototype change
9953
9954 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9955
9956         * Makefile.am:
9957         * lyx_gui.h:
9958         * lyx_gui.C: move to frontends/
9959
9960         * main.C:
9961         * lyx_main.h:
9962         * lyx_main.C: changes from above
9963
9964 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9965
9966         * intl.C:
9967         * intl.h:
9968         * kbmap.C:
9969         * kbsequence.C:
9970         * lyx_cb.C:
9971         * lyx_main.C: minor tidy
9972
9973 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9974
9975         * BufferView_pimpl.h:
9976         * BufferView_pimpl.C:
9977         * BufferView.h:
9978         * BufferView.C: make painter() const,
9979           remove dead code
9980
9981         * BufferView2.C: use screen() accessor
9982
9983         * lyx_main.h:
9984         * lyx_main.C: some minor cleanup
9985
9986 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9987
9988         * BufferView_pimpl.h:
9989         * BufferView_pimpl.C: remove enter/leaveView,
9990           use workHeight()
9991
9992 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
9993
9994         * BufferView.h:
9995         * BufferView.C:
9996         * BufferView2.C:
9997         * BufferView_pimpl.h:
9998         * BufferView_pimpl.C: only construct screen once,
9999           rename
10000
10001         * lyxrc.C: remove pointless comment
10002
10003 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
10004
10005         * BufferView.h:
10006         * BufferView.C: remove active() and belowMouse()
10007
10008         * BufferView_pimpl.h:
10009         * BufferView_pimpl.C: use workarea() not workarea_,
10010           and make it use a scoped_ptr instead
10011
10012 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
10013
10014         * lyx_gui.C: add debug message on BadWindow
10015
10016 2002-06-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10017
10018         * sp_spell.C: fdopen is not part of the C++ standard.
10019
10020         * paragraph.C (InsetIterator): use >= instead of ==
10021
10022 2002-06-07  Angus Leeming  <leeming@lyx.org>
10023
10024         Fixes needed to compile with Compaq cxx 6.5.
10025         * BufferView_pimpl.C:
10026         * DepTable.C:
10027         * buffer.C:
10028         * converter.C:
10029         * encoding.C:
10030         * lyx_gui.C:
10031         * lyx_main.C:
10032         * lyxtextclasslist.C:
10033         * minibuffer.C:
10034         * sp_spell.C:
10035         * tabular_funcs.C:
10036         * vc-backend.C:
10037         all c-library variables have been moved into namespace std. Wrap
10038         using std::xyz declarations inside a #ifndef CXX_GLOBAL_CSTD block.
10039
10040         * lyxlength.C:
10041         * tabular-old.C:
10042         * tabular.C:
10043         Add a using std::abs declaration.
10044
10045         * kbmap.h (modifier_pair):
10046         * paragraph.h (InsetTable, InsetList):
10047         * lyxfont.h (FontBits):
10048         type definition made public.
10049
10050         * bufferlist.C (emergencyWriteAll): the compiler complains that
10051         there is more than one possible lyx::class_fun template to choose from.
10052         I re-named the void specialisation as lyx::void_class_fun.
10053
10054         * lyxfont.C (FontBits' operator==, operator!=): taken out of class.
10055
10056         * tabular_funcs.C: lstrings.h must come before tabular_funcs.h or
10057         the compiler is is unable to find tostr in write_attribute.
10058
10059 2002-06-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10060
10061         * buffer.C (sgmlError): hide #warning
10062
10063 2002-06-05  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10064
10065         * xtl/*: get rid of xtl, which is not in use anyway
10066
10067         * LyXAction.C (init):
10068         * commandtags.h: remove BUFFER_PRINT and BUFFER_PARAMS_GET, which
10069         were unimplemented xtl experimentation
10070
10071 2002-06-04  André Pönitz <poenitz@gmx.net>
10072
10073         * lyxfunc.C: disable array operation on simple formulae
10074
10075 2002-06-03  John Levon  <moz@compsoc.man.ac.uk>
10076
10077         * converter.C: constify a bit
10078
10079 2002-06-02  John Levon  <moz@compsoc.man.ac.uk>
10080
10081         * lyx_gui.C: check xforms version correctly
10082
10083 2002-04-30  Herbert Voss  <voss@lyx.org>
10084
10085         * buffer.C (parseSingleLyXformat2Token): fix bug with ignored
10086         "keep" option
10087
10088 2002-05-31  John Levon  <moz@compsoc.man.ac.uk>
10089
10090         * lyxvc.C: fix bug 416 (make sure buffer is saved before
10091           attempt to register it with a VCS)
10092
10093 2002-05-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10094
10095         * lyx_main.C (init): honor variables LYX_DIR_13x and
10096         LYX_USERDIR_13x
10097
10098 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
10099
10100         * buffer.h:
10101         * buffer.C:
10102         * lyx_main.C: fix a crash on bad command line,
10103           and give a useful exit status on error
10104
10105         * lyxfunc.C (doImport): allow -i lyx to work
10106
10107 2002-03-30  André Pönitz <poenitz@gmx.net>
10108
10109         * lyxfunc.C: mathed font changes
10110
10111 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
10112
10113         * LaTeX.C:
10114         * importer.h:
10115         * importer.C:
10116         * lyx_sty.h:
10117         * lyx_sty.C:
10118         * lyxlex.C:
10119         * lyxrow.h:
10120         * lyxtext.h:
10121         * paragraph.h:
10122         * paragraph.C:
10123         * texrow.h:
10124         * texrow.C:
10125         * text.C:
10126         * trans_mgr.h: srcdocs, and some minor cleanups
10127
10128 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10129
10130         * paragraph_pimpl.C (isTextAt): rewrite to be much faster (do not
10131         call getFont all the time)
10132
10133 2002-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10134
10135         * switch from SigC signals to boost::signals
10136
10137 2002-05-29  André Pönitz <poenitz@gmx.net>
10138
10139         * paragraph_pimpl.C (getChar): don't call size() too often...
10140
10141 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10142
10143         * paragraph_pimpl.C (insertChar): do not try to update tables when
10144         appending (pos == size())
10145
10146         * buffer.C (parseSingleLyXformat2Token): reorder a bit the tests
10147         in order to reduce drastically the number of comparisons needed to
10148         parse a large document
10149
10150 2002-05-29  André Pönitz <poenitz@gmx.net>
10151
10152         * text.C:
10153         * text2.C:
10154         * lyxtextclass.C:
10155         * sp_pspell.h:
10156         * textclasslist.[Ch]:
10157         * sp_ispell.h: whitespace change
10158
10159 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10160
10161         * lyxserver.C (callback): tentative fix of lyxserver. Does not use
10162         lyxaction directly now.
10163
10164 2002-05-27  John Levon  <moz@compsoc.man.ac.uk>
10165
10166         * trans.C:
10167         * lyxfont.C:
10168         * lyxvc.C: remove unused headers
10169
10170 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
10171
10172         * Makefile.am:
10173         * buffer.h:
10174         * undostack.h:
10175         * undostack.C:
10176         * undo_funcs.h:
10177         * undo_funcs.C: some cleanups. Use shared_ptr
10178           and a template for the undo stacks.
10179
10180 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
10181
10182         * BufferView_pimpl.h:
10183         * BufferView_pimpl.C:
10184         * kbmap.h:
10185         * kbmap.C:
10186         * kbsequence.h:
10187         * kbsequence.C:
10188         * lyxfunc.h:
10189         * lyxfunc.C:
10190         * text2.C: use key_state/mouse_state
10191
10192 2002-05-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10193
10194         * vc-backend.C (scanMaster): use boost regex and get rid of LRegex
10195         and LSubstring
10196
10197         * chset.C: change include order
10198         (loadFile): use boost regex and get rid of LRegex and LSubstring
10199
10200         * Makefile.am (BOOST_LIBS): new variable
10201         (lyx_LDADD): use it
10202
10203         * LaTeX.C: change include order.
10204         (scanAuxFile): use boost regex and get rid of LRegex and
10205         LSubstring
10206         (deplog): ditto
10207
10208 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
10209
10210         * ColorHandler.h:
10211         * ColorHandler.C:
10212         * FontInfo.h:
10213         * FontInfo.C: moved to frontends/xforms/
10214
10215         * FontLoader.h:
10216         * FontLoader.C: moved into frontends for GUIIzation
10217
10218         * Makefile.am:
10219         * lyx_gui.C:
10220         * lyxfont.C:
10221         * lyxfunc.C: changes from above
10222
10223 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
10224
10225         * LColor.C: remove spurious X include
10226
10227         * BufferView_pimpl.C:
10228         * Makefile.am:
10229         * font.h:
10230         * font.C:
10231         * text.C:
10232         * text2.C: move font metrics to frontends/
10233
10234 2002-05-24  Juergen Vigna  <jug@sad.it>
10235
10236         * undo_funcs.C (textHandleUndo): fix the cursor selection after
10237         setting the undo_cursor.
10238
10239         * ParagraphParameters.h: include local includes first.
10240
10241 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
10242
10243         * BufferView_pimpl.C:
10244         * BufferView_pimpl.h:
10245         * Makefile.am:
10246         * WorkArea.h:
10247         * WorkArea.C:
10248         * screen.C: move WorkArea into frontends/
10249
10250         * lyxscreen.h:
10251         * screen.C:
10252         * text.C:
10253         * BufferView.C:
10254         * BufferView2.C: move LyXScreen into frontends/
10255
10256         * lyxlookup.h:
10257         * lyxlookup.C:
10258         * lyx_gui.C: move lyxlookup into frontends/xforms/
10259
10260 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
10261
10262         * BufferView2.C:
10263         * BufferView_pimpl.C:
10264         * FontLoader.C:
10265         * LyXView.h:
10266         * LyXView.C:
10267         * Makefile.am:
10268         * WorkArea.C:
10269         * XFormsView.h:
10270         * XFormsView.C:
10271         * buffer.C:
10272         * bufferlist.C:
10273         * bufferview_funcs.C:
10274         * converter.C:
10275         * importer.C:
10276         * lyx_cb.C:
10277         * lyx_gui.C:
10278         * lyx_main.C:
10279         * lyx_find.C:
10280         * lyxfunc.C:
10281         * lyxvc.C:
10282         * minibuffer.C:
10283         * text.C:
10284         * text2.C:
10285         * trans.C:
10286         * vc-backend.C: move LyX/XFormsView into frontends/
10287
10288 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
10289
10290         * Makefile.am:
10291         * PainterBase.C:
10292         * PainterBase.h:
10293         * Painter.C:
10294         * Painter.h:
10295         * WorkArea.C:
10296         * WorkArea.h:
10297         * screen.C:
10298         * tabular.C:
10299         * text.C:
10300         * text2.C: move Painter to frontends/
10301
10302 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10303
10304         * buffer.C: comment out some some code that depend upon lyx_format
10305         < 220
10306
10307         * paragraph.h (NO_PEXTRA_REALLY): turn off all pextra
10308         * ParagraphParameters.h (NO_PEXTRA_REALLY): ditto
10309
10310         * buffer.h (NO_COMPABILITY): turn off compability
10311
10312         * ColorHandler.C: include scoped_array.hpp
10313
10314         * font.C: Use more specific smart_ptr header.
10315         * Painter.C: ditto
10316         * gettext.C: ditto
10317         * ShareContainer.h: ditto
10318         * lyx_main.h: ditto
10319         * kbmap.h: ditto
10320         * FontInfo.h: ditto
10321         * BufferView_pimpl.h: ditto
10322         * ColorHandler.h: ditto
10323
10324         * kbmap.C (defkey): change call to shared_ptr::reset
10325
10326 2002-05-21  Juergen Vigna  <jug@sad.it>
10327
10328         * buffer.C (insertErtContents): fix to insert ert asis if it is
10329         non empty. Skip it completely if it contains only whitespaces.
10330
10331 2002-05-15  John Levon  <moz@compsoc.man.ac.uk>
10332
10333         * BufferView_pimpl.C:
10334         * BufferView2.C: clear selection on paste (bug 393)
10335
10336 2002-05-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10337
10338         * DepTable.C: include ctime
10339
10340 2002-05-11  Dekel Tsur  <dekelts@tau.ac.il>
10341
10342         * buffer.C (latexParagraphs): Add new argument (moving_arg).
10343
10344 2002-05-14  Juergen Vigna  <jug@sad.it>
10345
10346         * text.C (breakParagraph): fixed function to honor the keepempty
10347         layout in the right maner and also to permit the right breaking
10348         algorithm on empty or non empyt keepempty paragraphs.
10349
10350         * paragraph.C (breakParagraph): we have to check also if the par
10351         is really empty (!size()) for isempty otherwise we do the wrong
10352         paragraph break.
10353
10354 2002-05-10  Juergen Vigna  <jug@sad.it>
10355
10356         * buffer.[Ch] : The following are only changes to the ert
10357         compatibility read reading old LaTeX layout and font stuff and
10358         convert it to ERTInsets.
10359
10360         * buffer.h: added isErtInset().
10361
10362         * buffer.C (struct ErtComp): add a fromlayout bool to check
10363         if we're inside a LaTeX layout.
10364         (isErtInset): new helper function.
10365         (insertErtContents): look for other ert insets before this one
10366         and insert the contents there, so that we don't have subsequent
10367         ERT insets with nothing between them. This way we create only one
10368         inset with multiple paragraphs. Also check if we don't insert only
10369         spaces ' ' as they are ignored anyway afterwards in the .tex file
10370         so if we have only spaces we will ignore this latex part in the
10371         new file.
10372         (parseSingleLyXformat2Token \\layout): better compatibility when
10373         reading layout-latex stuff.
10374         (parseSingleLyXformat2Token \\lang): put the insetERT in the right
10375         language tag.
10376         (parseSingleLyXformat2Token \\begin_inset): don't reset ert_comp
10377         stuff after reading the inset only get the information back from
10378         the stack.
10379
10380 2002-05-10  Dekel Tsur  <dekelts@tau.ac.il>
10381
10382         * buffer.C (makeLaTeXFile): Put language options after loading babel.
10383
10384         * LaTeXFeatures.C (getBabelOptions): New method.
10385
10386 2002-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10387
10388         * BufferView_pimpl.C (Dispatch): work around missing argument for
10389         'layout'
10390
10391 2002-05-08  Juergen Vigna  <jug@sad.it>
10392
10393         * text.C (leftMargin): handle paragraph leftindent.
10394
10395         * paragraph.C (writeFile): write the new \\leftindent tag.
10396         (validate): handle leftindent code.
10397         (TeXEnvironment): handle paragraphleftindent code again.
10398
10399         * lyx_sty.h: changed ParagraphIndent to ParagraphLeftIndent.
10400
10401         * buffer.C (parseSingleLyXformat2Token): added compatibility code
10402         for paragrap_extra indent code and new token \\leftindent.
10403         (latexParagraphs): handle the leftindent as environment.
10404
10405         * ParameterStruct.h: added leftindent support.
10406
10407         * ParagraphParameters.C (leftIndent): added support functions for
10408         the paragraph left indent.
10409
10410         * LaTeXFeatures.C: change paragraphindent to paragraphleftindent seems
10411         more appropriate.
10412
10413 2002-05-05  Dekel Tsur  <dekelts@tau.ac.il>
10414
10415         * paragraph.C (isRightToLeftPar): Return false for a paragraph
10416         inside insetERT.
10417
10418         * text.C (computeBidiTables): No bidi in insetERT.
10419
10420         * BufferView_pimpl.C (setState): Fix keymap handling inside insetERT
10421         in RTL documents.
10422
10423 2002-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10424
10425         * version.C.in: pre 5
10426
10427 2002-05-02  José Matos  <jamatos@fep.up.pt>
10428         * buffer.C (makeDocBookFile): white space changes, add newline to
10429         command styles.
10430         (simpleDocBookOnePar): protect <emphasis> inside a CDATA section.
10431
10432         * tabular.C (docBook): fix typo.
10433
10434 2002-05-03  Juergen Vigna  <jug@sad.it>
10435
10436         * screen.C (drawFromTo): recalculate the rowpointer if we had a
10437         change in LyXText as we can not be sure it was not freed.
10438         (drawOneRow): remove unused code.
10439
10440         * text.C (drawInset): redo the calculation of the need_break_row as
10441         it could have a row which was already freed.
10442         (draw): look at the return value of drawInset and return false if
10443         it also returned false.
10444         (paintRowText): look at the return value of draw and return false if
10445         it also returned false.
10446
10447         * lyxtext.h: added bool return type to drawInset() and draw() so that
10448         if we have a change in the row so that the rowbreak has to be redone
10449         we abort drawing as it will be called again.
10450
10451 2002-05-02  Juergen Vigna  <jug@sad.it>
10452
10453         * BufferView_pimpl.C (moveCursorUpdate): make repaint if we had
10454         a change in the maintext also if we're inside an inset.
10455         (Dispatch): set the cursor again after a break line and after the
10456         screen has been updated as it could be we're in a different row.
10457
10458         * text2.C (fixCursorAfterDelete): check to make sure we don't request
10459         to set the cursor behind the pargraph with > size().
10460         (setCursor): check also for the same paragraph when checking where
10461         to put the cursor if we have a NFR inset.
10462
10463         * buffer.C (parseSingleLyXformat2Token): move the compatibility
10464         parts of layout read further up as it still was in the wrong
10465         position.
10466
10467 2002-05-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10468
10469         * screen.C (drawFromTo): change sine fullRebreak always return
10470         true.
10471
10472         * buffer.C (parseSingleLyXformat2Token): reindent some
10473
10474         * BufferView_pimpl.C (update): change since fullRebreak always
10475         return true.
10476         (Dispatch): git rid of the last hardcoded "Standard"s.
10477
10478 2002-05-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10479
10480         * text2.[Ch] (fullRebreak): make it return void now that we always
10481         returned true.
10482
10483 2002-04-30  Juergen Vigna  <jug@sad.it>
10484
10485         * buffer.C (parseSingleLyXformat2Token): reset the font before the
10486         ert compatibility check for "latex" layout.
10487
10488 2002-04-29  Dekel Tsur  <dekelts@tau.ac.il>
10489
10490         * buffer.C (parseSingleLyXformat2Token): Fix reading of old format
10491         minipages: use col% instead of p%, and also use the current font.
10492         (makeLaTeXFile): Fix use babel condition.
10493         (parseSingleLyXformat2Token): Correct font when reading old floats.
10494
10495 2002-04-28  Dekel Tsur  <dekelts@tau.ac.il>
10496
10497         * BufferView_pimpl.C (Dispatch): Check that float type exists when
10498         inserting list of floats.
10499
10500 2002-04-25  Herbert Voss  <voss@lyx.org>
10501
10502         * MenuBackend.C (expand): don't add the graphics extensions to the
10503         export menu
10504
10505 2002-04-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10506
10507         * CutAndPaste.C (SwitchLayoutsBetweenClasses): when converting a
10508         non-existing layout, do not complain if it was the default layout
10509         of the original class (bug #342)
10510
10511 2002-04-24  Juergen Vigna  <jug@sad.it>
10512
10513         * BufferView_pimpl.C (workAreaButtonPress): fix handling of mouse-wheel
10514         (workAreaButtonRelease): don't do anything if it was a mouse-wheel
10515
10516 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
10517
10518         * buffer.C (getBibkeyList): If using \bibliography, return the
10519         option field with the reference itself. Enables us to provide natbib
10520         support when using \bibliography.
10521
10522 2002-04-23  Mike Ressler  <mike.ressler@alum.mit.edu>
10523
10524         * lyxtextclass.[Ch]: add layout keyword ProvidesNatbib.
10525
10526         * LaTeXFeatures.C: do not add \usepackage{natbib} to tex file if
10527         natbib is provided by the LaTeX class.
10528
10529 2002-04-23  Juergen Vigna  <jug@sad.it>
10530
10531         * BufferView_pimpl.[Ch]: remove use of wrong and unneeded insetSleep/
10532         Wakeup functions.
10533
10534         * BufferView.[Ch]: remove not needed insetSleep/Wakeup functions.
10535
10536 2002-04-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10537
10538         * lyxfunc.C (getStatus): LFUN_PROTECTED_SPACE is allowed in maths
10539
10540         * paragraph_pimpl.C (simpleTeXSpecialChars): remove bogus
10541         ensuremath around textordmasculine, textordfeminine and
10542         textdegree.
10543
10544 2002-04-19  Juergen Vigna  <jug@sad.it>
10545
10546         * BufferView_pimpl.C (resizeCurrentBuffer): resize the insets before
10547         reinitializing the buffer otherwise row-dimensions may be wrong.
10548         (update): reset also the selection cursors if they do exits otherwise
10549         their x/y positions may be wrong.
10550
10551         * text2.C (cursorDown): don't enter the inset if we came from a row
10552         above and are one row over the inset.
10553
10554         * lyxfunc.C (dispatch): update paragraph layout after LFUN_ESCAPE when
10555         really leaving an inset.
10556
10557 2002-04-18  Juergen Vigna  <jug@sad.it>
10558
10559         * BufferView_pimpl.C (Dispatch): fixed to change layout also if one
10560         of the selected paragraph does not have the selected layout also if
10561         the last one had!
10562
10563         * text2.C (setLayout): fixed bug which did not change last selected
10564         paragraph.
10565
10566         * tabular.C (OldFormatRead): check also for \\end_inset as Lars
10567         changed the read and substituted \\end_float with \\end_inset!
10568
10569         * BufferView_pimpl.C (cursorPrevious):
10570         (cursorNext): fixed to make it work with rows heigher than the work
10571         area without moving the cursor only the draw of the row.
10572         (workAreaMotionNotify): fix jumping over high rows.
10573
10574 2002-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10575
10576         * lyxtextclass.C (Read): fix bit adding, bug discovered by Mike
10577         Ressler.
10578
10579 2002-04-16  Juergen Vigna  <jug@sad.it>
10580
10581         * text2.C (setCursor): set also the irow().
10582         (setCursorFromCoordinates): fixed to set the (i) cursor values right!
10583         (cursorUp):
10584         (cursorDown): support for locking an inset if the x_fix value goes
10585         inside it. That way I can transverse insets too with cursor up/down.
10586
10587         * lyxrow.h: added irow helper function same as other (i) functions.
10588
10589         * BufferView_pimpl.C (cursorPrevious):
10590         (cursorNext): fixed for insets!
10591
10592 2002-04-15  Juergen Vigna  <jug@sad.it>
10593
10594         * BufferView_pimpl.C (insetDimensions): use ix/iy values for inset
10595         position otherwise it is wrong in some cases.
10596
10597         * lyxfunc.C (dispatch): fix FINISHED UP/DOWN to handle x position
10598         inside the inset before the call.
10599
10600 2002-04-16  Angus Leeming  <a.leeming@ic.ac.uk>
10601
10602         * buffer.[Ch] (getBibkeyList): make it const.
10603
10604 2002-04-12  Juergen Vigna  <jug@sad.it>
10605
10606         * BufferView_pimpl.C (workAreaMotionNotify): use new ix() cursor pos.
10607
10608         * text2.C (getCursorX): new helper function
10609         (setCursor): compute also ix_
10610         (setCursorFromCoordinates): set also ix.
10611
10612         * lyxcursor.h: added ix_ and helper functions.
10613
10614         * BufferView_pimpl.C (workAreaMotionNotify): forgot to use iy().
10615
10616         * buffer.C (insertStringAsLines): dont break paragraph if the this
10617         paragraph is inside an inset which does not permit it!
10618
10619         * text.C (breakParagraph): honor keepempty flag and break the paragraph
10620         also with no chars on this paragraph.
10621         (paintRowText): only paint stuff if it's inside the workarea!
10622
10623         * paragraph.C (breakParagraph): honor keepempty flag and break the
10624         paragraph always below not above.
10625
10626         * BufferView2.C (unlockInset): update the paragraph layout on inset
10627         unlock as we changed paragraph in such a case.
10628
10629         * lyxfind.C (LyXFind): clear the former selection if not found!
10630
10631         * text2.C (insertInset): freeze Undo after setUndo so that it is not
10632         again called in insertChar().
10633
10634         * text.C (leftMargin): return LYX_PAPER_MARGIN if this row contains
10635         an inset which uses the whole row!
10636         (rightMargin): ditto.
10637         (insertChar): force a rebreak if we inserted an inset!
10638
10639 2002-03-28  Herbert Voss  <voss@lyx.org>
10640
10641         * lyxlength.[Ch]: add inBP() to get the right PS-point
10642         units (BigPoint). With inPixels we have rounding errors
10643
10644 2002-04-11  Juergen Vigna  <jug@sad.it>
10645
10646         * text2.C (setCursorFromCoordinates): set iy to the right value.
10647         (setCursor): add check if row->previous exists!
10648
10649         * buffer.C (parseSingleLyXformat2Token): reset font after read of
10650         an old float_type as this was the case in the old code!
10651
10652         * paragraph.C (simpleTeXOnePar): fix closing of foreignlanguage tags.
10653
10654         * BufferView2.C (showLockedInsetCursor): use iy
10655         (fitLockedInsetCursor): ditto
10656
10657         * BufferView_pimpl.C (checkInset): use LyXCursor::iy for baseline of
10658         locked insets as there we have the right value now.
10659
10660         * lyxcursor.C: added iy_ variable and iy functions to set to the
10661         baseline of cursor-y of the locked inset.
10662
10663         * text2.C (setCursorFromCoordinates): set LyXCursor::iy.
10664         (setCursor): fixed for insets which need a full row.
10665
10666         * text.C (rowLastPrintable): don't ignore the last space when before
10667         an inset which needs a full row.
10668         (numberOfSeparators): use rowLastPrintable and <= last to honor a space
10669         as last character of a row when before a inset which needs a full row.
10670
10671 2002-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10672
10673         * version.C.in: update date
10674
10675         * text2.C (fullRebreak): try to always return true and see what
10676         happens...
10677
10678 2002-04-04  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10679
10680         * MenuBackend.C (expand): use Floating::listName
10681
10682         * FloatList.C (FloatList): add listName argument to the built-in
10683         floats
10684
10685         * Floating.[Ch]: add listName member, which is the 'List of XXX'
10686         text associated with the float.
10687
10688 2002-04-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10689
10690         * MenuBackend.C (expand): change label "Wide xxx" to "xxx (wide)".
10691
10692 2002-04-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10693
10694         * ShareContainer.h: add a couple of missing typenames.
10695
10696 2002-04-02  Angus Leeming  <a.leeming@ic.ac.uk>
10697
10698         * lyxrc.C (getDescription): use _() correctly rather than N_().
10699
10700 2002-03-28  Herbert Voss  <voss@lyx.org>
10701
10702         * lyxlength.C: compatibility stuff for < 1.1.6fix4 and
10703         "old" 1.2.0 files which use c%, l%, p% t% instead of text%, ...
10704
10705 2002-04-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10706
10707         * lyx_main.C (init): use environment variable LYX_DIR_12x instead
10708         of LYX_DIR_11x. Same for LYX_USERDIR_12x.
10709
10710 2002-03-29  Juergen Vigna  <jug@sad.it>
10711
10712         * lyxfunc.C (dispatch): add a missing fitCursor call.
10713
10714         * BufferView2.C (fitLockedInsetCursor): the inset needs to know if
10715         it was scrolled by a cursor move, so return the bool status.
10716
10717         * BufferView.C (fitCursor): return the bool flag also to the outside
10718         world as this is needed.
10719
10720         * screen.C (toggleToggle): don't subtract the offset if it's positive.
10721
10722         * BufferView_pimpl.C (workAreaButtonPress): just lock the inset don't
10723         call the edit() as it is not needed (and wrong) IMO.
10724         (workAreaButtonPress): set the screen_first variable before evt.
10725         unlock the inset as this may change screen_first and then we have
10726         a wrong y position for the click!
10727
10728 2002-03-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10729
10730         * MenuBackend.C (expand): another translation that I missed
10731
10732 2002-03-28  Juergen Vigna  <jug@sad.it>
10733
10734         * screen.C (toggleToggle): fix for insettexts y_offset on drawing.
10735
10736         * tabular.C (OldFormatRead): fix ert compatibility read inside cells.
10737
10738 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10739
10740         * lyxfunc.C (getStatus): return 'disabled' early for LFUN_NOACTION
10741
10742         * MenuBackend.C (expand): fix export/view/update when there is no
10743         document open.
10744
10745 2002-03-27  Herbert Voss  <voss@lyx.org>
10746
10747         * lengthcommon.C: change c%, l%, p% t% to col%, line%, page%
10748         and text%
10749
10750 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10751
10752         * bufferview_funcs.C (currentState): only show paragraph number
10753         for is DEVEL_VERSION is set.
10754
10755         * lyxfunc.C (dispatch): put warning in INFO channel
10756
10757         * MenuBackend.C (expand): translate the name of floats
10758
10759         * FloatList.C (FloatList): mark the float names for translation
10760
10761         * converter.C (convert): use LibScriptSearch
10762
10763 2002-03-26  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10764
10765         * MenuBackend.C (defaults): fix default menu (we might as well get
10766         rid of it...)
10767
10768 2002-03-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10769
10770         * lyxvc.C (registrer): register the file with CVS if it's in a CVS
10771         directory.
10772
10773 2002-03-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10774
10775         * lyxvc.C: reorder includes.
10776
10777 2002-03-25  John Levon  <moz@compsoc.man.ac.uk>
10778
10779         * BufferView_pimpl.C (updateScrollbar): update on buffer switch
10780           properly
10781
10782 2002-03-19  John Levon  <moz@compsoc.man.ac.uk>
10783
10784         * CutAndPaste.C: change layouts earlier on paste
10785           to avoid crashing when calling getFont()
10786
10787 2002-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
10788
10789         * PrinterParams.h: #include "lyxrc.h" and remove that bloody
10790         irritating #error.
10791
10792 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10793
10794         * WorkArea.C: remove 'Pending' debug message.
10795
10796         * most files: ws cleanup
10797
10798         * buffer.[Ch]: ws changes
10799
10800         * Makefile.am (LYX_CONV_LIBS): remove ld -r stuff.
10801
10802 2002-03-21  Juergen Vigna  <jug@sad.it>
10803
10804         * tabular.C (SetMultiColumn): collapse also the contents of the
10805         cells and set the last border right. Added a Buffer const * param.
10806
10807 2002-03-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10808
10809         * Makefile.am (LYX_CONV_LIBS): select libs depending on partial
10810         linking or not.
10811
10812 2002-03-19  Juergen Vigna  <jug@sad.it>
10813
10814         * text2.C (clearSelection): reset also xsel_cache.
10815
10816         * BufferView_pimpl.C (Dispatch): call WorkArea::haveSelection(false)
10817         where it needs to be called (John tells us to do so too :)
10818         (selectionLost): reset sel_cache.
10819
10820         * WorkArea.C (event_cb): leave ret to 0 (John tells us to do so :)
10821
10822 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10823
10824         * text2.C (setCursorIntern): put debuging code in INSETS channel
10825
10826 2002-03-19  André Pönitz <poenitz@gmx.net>
10827
10828         * lyxfunc.C: tiny whitespace change
10829
10830 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10831
10832         * ToolbarDefaults.C (init):
10833         * LyXAction.C (init):
10834         * commandtags.h:
10835         * BufferView_pimpl.C (Dispatch):
10836         * lyxfunc.C (dispatch): remove LFUN_DEPTH
10837
10838 2002-03-19  Allan Rae  <rae@lyx.org>
10839
10840         * exporter.C (Export): removeAutoInsets before doing anything else.
10841         While I've just introduced a dependency on BufferView this really is
10842         the best place to clean the buffer otherwise you need to cleanup in
10843         a dozen places before calling export or cleanup in a dozen functions
10844         that export calls.
10845
10846         * converter.C (runLaTeX):
10847         (scanLog): Better handling of removeAutoInsets and screen updates.
10848
10849         * lyxfunc.C (dispatch): small whitespace changes
10850
10851 2002-03-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10852
10853         * WorkArea.C (C_WorkAreaEvent): return a value.
10854         (event_cb): return 1 if we handled the event, 0 otherwise.
10855
10856         * lyx_gui.C (LyX_XErrHandler): don't abort on BadWindow
10857
10858 2002-03-18  Juergen Vigna  <jug@sad.it>
10859
10860         * tabular.C (LeftAlreadyDrawed): fixed for multicolumn borders.
10861         (GetAdditionalWidth): ditto.
10862         (RightLine): ditto.
10863         (LeftLine): ditto.
10864
10865         * BufferView2.C (copy): use getLyXText() so that we do it inside an
10866         inset if we're there actually (probably not used right now but this
10867         is the direction to go for unifying code).
10868         (paste): disable code to clear the selection.
10869
10870         * BufferView_pimpl.C (workAreaButtonPress): check also for a selection
10871         inside an InsetText and move the check further up as it is in the
10872         wrong place.
10873
10874         * text2.C (pasteSelection): set a selection over the pasted text.
10875
10876 2002-03-14  Kayvan A. Sylvan  <kayvan@sylvan.com>
10877
10878         * Makefile.am (lyx_DEPENDENCIES): Swap the order of libfrontend
10879         and libgraphics to build on Cygwin.
10880
10881 2002-03-15  Juergen Vigna  <jug@sad.it>
10882
10883         * CutAndPaste.C (SwitchLayoutsBetweenClasses): fix the wrong use of
10884         inserting an Inset into the paragraph. I know this is not the best
10885         fix but we already use current_view in CutAndPaste so we will remove
10886         all of it's using at the same time.
10887
10888         * buffer.C (sgmlError): deactivated function till it is rewritten in
10889         the right mode, now it can create problems.
10890
10891         * paragraph.C (isLineSeparator): check if getInset returns != 0,
10892         before accessing it.
10893
10894 2002-03-14  Juergen Vigna  <jug@sad.it>
10895
10896         * undo_funcs.C (textHandleUndo): do the right thing when updating
10897         the inset after the undo/redo.
10898
10899         * text2.C (setCursor): just some testcode for #44 not ready yet.
10900
10901         * undo_funcs.C (textHandleUndo): set the next() and previous()
10902         pointers of the paragraph to 0 before deleting otherwise we have
10903         problems with the Paragraph::[destructor].
10904
10905         * text.C (breakParagraph): IMO we should ALWAYS force a real undo
10906         on a paragraph insertion.
10907
10908 2002-03-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10909
10910         * buffer.C (asciiParagraph): use += operator for char append to
10911         string.
10912
10913         * paragraph.C (getFontSettings): compare >= not just >
10914         (highestFontInRange): ditto
10915         (setFont): ditto
10916
10917 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10918
10919         * paragraph.C: change several algorithm to be more appripriate for
10920         the problem domain. This is lookip in FontList and in the InsetList.
10921
10922 2002-03-13  André Pönitz <poenitz@gmx.net>
10923
10924         * commandtags.h:
10925         * LyXAction.C: remove unused LFUN_MATH_MACROARG
10926
10927 2002-03-06  John Levon  <moz@compsoc.man.ac.uk>
10928
10929         * commandtags.h:
10930         * LyXAction.C:
10931         * lyxfunc.C:
10932         * BufferView_pimpl.C: remove unused LFUN_CORE, LFUN_TEXT_INSET
10933
10934 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10935
10936         * Painter.C (display): anon helper function, adjust code for this
10937         change.
10938         (pixmap): remove function.
10939
10940         * Painter.h: remove private display variable.
10941
10942         * PainterBase.[Ch]: remove dummy[123] cruft, ws changes
10943
10944 2002-03-13  Angus Leeming  <a.leeming@ic.ac.uk>
10945
10946         * WorkArea.[Ch]: remove figinset_canvas cruft.
10947
10948 2002-03-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10949
10950         * lyxtextclass.C (operator): add one item cache optimization.
10951
10952         * bufferlist.h: doxy changes
10953
10954         * bufferlist.C: ws changes
10955
10956         * DepTable.[Ch] (ext_exist): place const in the right spot.
10957
10958         * BufferView_pimpl.C (resizeCurrentBuffer): further refine when to
10959         call resizeInsets.
10960         (workAreaExpose): call resizeInsets when the with BufferView changes.
10961         (Dispatch): adjust for protectedBlank removal
10962         (specialChar): call updateInset if the insert went ok.
10963
10964         * BufferView_pimpl.[Ch] (protectedBlank): remove func, use
10965         specialChar instead.
10966
10967         * BufferView2.C (ChangeInsets): remove warning add FIXME comment
10968
10969         * BufferView.h: doxy change
10970
10971         * Makefile.am (INCLUDES): remove @FRONTEND_INCLUDES@
10972
10973         * lyxtextclass.C (operator[]): remove non-const version
10974         (defaultLayout): remove non-const version
10975
10976 2002-03-12  Juergen Vigna  <jug@sad.it>
10977
10978         * BufferView_pimpl.C (resizeCurrentBuffer): only resize insets if we
10979         did resize the LyXText too.
10980
10981         * buffer.C (readLyXformat2): set layout information on newly allocated
10982         paragraphs.
10983
10984         * tabular.C (OldFormatRead): set layout information on the paragraph.
10985
10986 2002-03-12  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
10987
10988         * buffer.C (simpleDocBookOnePar): fix empty definition case for now.
10989
10990 2002-03-11  Juergen Vigna  <jug@sad.it>
10991
10992         * BufferView_pimpl.C (cursorPrevious): remove old cruft which is
10993         plainly wrong.
10994         (resizeCurrentBuffer): force also the insets to resize themselfes.
10995         (moveCursorUpdate): fixed up for InsetText.
10996
10997 2002-03-08  Angus Leeming  <a.leeming@ic.ac.uk>
10998
10999         * commandtags.h:
11000         * LyXAction.C: add LFUN_TOOLTIPS_TOGGLE, "toggle-tooltips"
11001         * lyxfunc.C (getStatus(LFUN_TOOLTIPS_TOGGLE)): set flag based on
11002         value of Dialogs::tooltipsEnabled().
11003         (dispatch(LFUN_TOOLTIPS_TOGGLE)): emit signal Dialogs::toggleTooltips.
11004
11005 2002-03-08  Juergen Vigna  <jug@sad.it>
11006
11007         * BufferView_pimpl.C (updateInset): update inset inside inset also
11008         if it isn't inside theLockingInset().
11009
11010 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11011
11012         * buffer.C (asciiParagraph): redo some of the word and line length
11013         handling.
11014         (getLists): look for Caption instead of caption.
11015
11016 2002-03-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11017
11018         * buffer.C (Buffer): initialize niceFile to true
11019         (makeLaTeXFile):
11020         (makeLinuxDocFile):
11021         (makeDocBookFile): make sure niceFile is true on exit
11022
11023 2002-03-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11024
11025         * buffer.C (makeLaTeXFile): escape ~ in \input@path
11026
11027 2002-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
11028
11029         * LyXSendto.C: remove.
11030         * LyXView.C (c-tor): clean-up Jürgen's #if 0 correctly.
11031         * lyx_gui.C: remove now-redundant comment.
11032         * ColorHandler.h: remove forward declaration of class WorkArea.
11033         * lyxfunc.C: remove #include "WorkArea.h".
11034
11035 2002-03-07  Juergen Vigna  <jug@sad.it>
11036
11037         * undo_funcs.C (textHandleUndo): fix problems when the paragraph
11038         got moved away with the DEPM and also set the inset_owner always
11039         right which before could have been omitted.
11040
11041 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11042
11043         * buffer.C (parseSingleLyXformat2Token): use default layout is the
11044         wanted layout is not found.
11045
11046 2002-03-07  Juergen Vigna  <jug@sad.it>
11047
11048         * CutAndPaste.C (cutSelection): another layout settings forgotten.
11049
11050 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11051
11052         * paragraph.C (breakParagraph): use default layout not layout of
11053         prev paragraph.
11054         (Paragraph): clear ParagraphParameters.
11055
11056 2002-03-06  Juergen Vigna  <jug@sad.it>
11057
11058         * buffer.C (parseSingleLyXformat2Token): changed "%" to "p%" as
11059         otherwise it would not be a valid lenght. Fixed a special case in
11060         the minipage compatibility read where we end the document with a
11061         minipage.
11062
11063         * text2.C (deleteEmptyParagraphMechanism): check if old_cursor.par()
11064         was set as it could be 0 for InsetTexts first entry.
11065
11066 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11067
11068         * paragraph.C (writeFile): if layout is empty write out
11069         defaultLayoutName().
11070
11071         * buffer.C (parseSingleLyXformat2Token): if we have a buggy .lyx
11072         file without named layout we set layout to defaultLayoutName().
11073
11074 2002-03-06  Juergen Vigna  <jug@sad.it>
11075
11076         * CutAndPaste.C (copySelection): set layout for new paragraph.
11077
11078         * text.C (prepareToPrint): leave ERT inset left aligned
11079         (leftMargin): don't indent paragraphs inside ERT insets
11080
11081 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11082
11083         * paragraph.C (breakParagraph): dont call clear do the work manually
11084
11085         * paragraph.[Ch] (clear): remove function
11086
11087 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11088
11089         * paragraph.C (Paragraph): dont call clear, the work has already
11090         been done.
11091
11092         * lyxtextclass.C (operator): assert if n is empty
11093
11094         * CutAndPaste.C (cutSelection): dont call Paragraph::clear, do the
11095         work manually instead.
11096
11097 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
11098
11099         * BufferView_pimpl.C: protect selectionLost against text == 0
11100
11101 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11102
11103         * text.C (breakParagraph): fix a setting layout to '0' problem.
11104
11105 2002-03-05  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
11106
11107         * buffer.C (makeLinuxDocFile, makeDocBookFile): take in account the
11108         final location of file, for the included files, and graphics.
11109
11110 2002-03-05  Juergen Vigna  <jug@sad.it>
11111
11112         * CutAndPaste.C (pasteSelection): fix the depth level on paste.
11113
11114 2002-03-04  Juergen Vigna  <jug@sad.it>
11115
11116         * lyx_cb.C (getContentsOfAsciiFile): new helper function.
11117
11118         * tabular.C (calculate_width_of_column_NMC): fixed to use also the
11119         last column of multicolumn cells.
11120         (SetWidthOfMulticolCell): recalculate NMC and real columns.
11121
11122 2002-03-04  Jose Abilio Oliveira Matos  <jamatos@novalis.fc.up.pt>
11123
11124         * exporter.C (Export): for linuxdoc and docbook the buffer is a nice
11125         file if it doesn't go to a temporary file.
11126
11127         * buffer.C (sgmlOpenTag):
11128         (sgmlCloseTag):  remove extra newline insertion.
11129
11130 2002-03-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11131
11132         * text.C (getRowNearY): comment out debug msg
11133
11134 2002-03-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11135
11136         * text2.C: first -> first_y
11137
11138         * text.C (getRowNearY): add some attemts at a possible
11139         optimization, not working.
11140
11141         * tabular.[Ch]: add BufferParams to several function so that newly
11142         created paragraph can be initialized to he default layotu for the
11143         buffers textclass.
11144
11145         * tabular-old.C (ReadOld): add buf->params to call of Init
11146
11147         * screen.C: rename text->first to text->first_y
11148
11149         * paragraph.C (breakParagraph): always set layout in the broken
11150         paragraph
11151
11152         * lyxtextclass.C (Read): remove lowercase
11153         (hasLayout): ditto
11154         (operator): ditto
11155         (delete_layout): ditto
11156
11157         * lyxtext.h: rename first -> first_y
11158
11159         * lyxlayout.C (Read): remove lowercase
11160         (name): ditto
11161         (setName): ditto
11162         (obsoleted_by): ditto
11163
11164         * bufferlist.C (newFile): set layout on first paragrpah of new buffers.
11165
11166         * buffer.C (insertErtContents): add params are to InsetERT
11167         (parseSingleLyXformat2Token): add code to check if a paragraphs
11168         layout really exist.
11169         (parseSingleLyXformat2Token): add params to several inset
11170         constructors
11171         (asciiParagraph): remove lowercase, do the layout comparisons with
11172         no_case
11173
11174         * BufferView_pimpl.C (cursorNext): first -> first_y
11175         (resizeCurrentBuffer): first -> first_y
11176         (updateScrollbar): first -> first_y
11177         (scrollCB): first -> first_y
11178         (workAreaMotionNotify): first -> first_y
11179         (workAreaButtonPress): first -> first_y
11180         (checkInsetHit): first -> first_y
11181         (cursorPrevious): first -> first_y
11182         (cursorNext): first -> first_y
11183         (Dispatch): add buffer_->params to severl inset contructors
11184
11185 2002-03-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11186
11187         * lyxlayout.C (Read): remove some debug info that I forgot.
11188
11189         * buffer.C (makeLaTeXFile): fix calling of LaTeXFeatures, and
11190         clean up the code slightly.
11191         (makeLinuxDocFile): ditto
11192         (makeDocBookFile): ditto
11193
11194         * text2.C: layout as string
11195
11196         * text.C: layout as string
11197
11198         * paragraph_pimpl.C: layout as string
11199
11200         * paragraph.[Ch]: layout as string
11201
11202         * lyxtextclasslist.[Ch]: layout as string
11203
11204         * lyxtextclass.[Ch]: layout as string
11205
11206         * lyxtext.h: layout as string
11207
11208         * lyxlayout.[Ch]: layout as string
11209
11210         * lyx_cb.C: layout as string
11211
11212         * bufferview_funcs.C: layout as string
11213
11214         * bufferparams.C: layout as string
11215
11216         * buffer.C: layout as string
11217
11218         * LyXView.[Ch]: layout as string
11219
11220         * LaTeXFeatures.[Ch]: layout as string
11221
11222         * CutAndPaste.C (SwitchLayoutsBetweenClasses): layout as string
11223
11224         * BufferView_pimpl.C: change current_layout to string, remove
11225         lyx::layout_type.
11226         (Dispatch):
11227         (smartQuote):
11228         (insertInset):
11229         (workAreaButtonRelease): layout as string
11230
11231         * BufferView2.C (unlockInset): adjust
11232
11233         * vspace.C (asLatexCommand): use an explict temp variable.
11234
11235 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
11236
11237         * Makefile.am: use FRONTEND_*
11238
11239 2002-03-01  Juergen Vigna  <jug@sad.it>
11240
11241         * tabular.C (SetWidthOfMulticolCell): changed to something better
11242         I hope but still work in progress.
11243         (recalculateMulticolumnsOfColumn): renamed function from
11244         recalculateMulticolCells as it is more appropriate now.
11245         (SetWidthOfCell): calculate multicols better.
11246
11247 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11248
11249         * minibuffer.C (MiniBuffer): reset timout to 6000, as it was before.
11250
11251         * lyxfunc.C (processKeySym): print sequence also if it is
11252         `deleted' (complete)
11253
11254         * kbsequence.C (print): print sequence even if it is deleted
11255         (complete would be a better word, actually).
11256
11257         * lyxfunc.C (dispatch): print complete options after a prefix key
11258
11259         * vspace.C (asLatexCommand): rewrite in a slightly different form.
11260
11261 2002-03-01  Martin Vermeer  <martin.vermeer@hut.fi>
11262
11263         * text2.C (setCharFont): eliminate setCharFont code duplication.
11264
11265 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11266
11267         * BufferView_pimpl.C (Dispatch): remove bogus handling of
11268         LFUN_TABULAR_FEATURE (bug #177)
11269
11270 2002-02-29 ;-)  Angus Leeming  <a.leeming@ic.ac.uk>
11271
11272         * Makefile.am: remove figure.h
11273
11274 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
11275
11276         * Bufferview_pimpl.C:
11277         * CutAndPasteC:
11278         * LaTeX.C:
11279         * LyXSendto.C:
11280         * buffer.C:
11281         * bufferlist.C:
11282         * converter.C:
11283         * language.C:
11284         * lyxfunc.C:
11285         * lyxvc.C:
11286         * paragraph.C:
11287         * text.C:
11288         * text2.C: remove #include "lyx_gui_misc.h".
11289
11290         * LaTeX.C: added #include <cstdio>
11291
11292 2002-02-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11293
11294         * paragraph.C (getMaxDepthAfter): new method. The maximal depth
11295         that the paragraph following this one can have.
11296
11297         * text2.C (incDepth): use Paragraph::getMaxDepthAfter
11298
11299         * vspace.C (asLatexCommand): fix bogus gcc warning
11300
11301         * Makefile.am (lyx_SOURCES): remove vms_defines.h
11302
11303 2002-02-27  Martin Vermeer  <martin.vermeer@hut.fi>
11304
11305         * text2.C (setLayout): get rid of redundant code
11306
11307 2002-02-26  Martin Vermeer  <martin.vermeer@hut.fi>
11308
11309         * text2.C (incDepth): make sure depth cannot be increased beyond
11310         reasonable values.
11311
11312 2002-02-20  Angus Leeming  <a.leeming@ic.ac.uk>
11313
11314         * lyxfunc.C (dispatch): act on LFUN_FORKS_SHOW and LFUN_FORKS_KILL.
11315         also call grfx::GCache::changeDisplay if the graphicsbg color changes.
11316
11317         * PainterBase.h (image):
11318         * Painter.[Ch] (image): now accepts a grfx::GImage const & rather than
11319         a LyXImage const *.
11320
11321 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
11322
11323         * BufferView.C:
11324         * BufferView.h:
11325         * BufferView_pimpl.C:
11326         * BufferView_pimpl.h:
11327         * LaTeXFeatures.C:
11328         * LyXAction.C:
11329         * LyXView.C:
11330         * Makefile.am:
11331         * UpdateList.h:
11332         * UpdateList.C:
11333         * buffer.C:
11334         * figure.h:
11335         * figureForm.C:
11336         * figureForm.h:
11337         * figure_form.C:
11338         * figure_form.h:
11339         * lyx_cb.C:
11340         * lyx_gui.C:
11341         * lyx_gui_misc.C:
11342         * lyxfunc.C:
11343         * sp_base.h:
11344         * sp_ispell.h:
11345         * sp_pspell.h:
11346         * sp_spell.C: remove fig inset, and the crap house of
11347           cards that follows it
11348
11349 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
11350
11351         * Makefile.am:
11352         * lyxserver.C:
11353         * os2_defines.h:
11354         * os2_errortable.h:
11355         * nt_defines.h: move .h into support/
11356
11357         * vms_defines.h: remove
11358
11359         * WorkArea.C: add space in debug output
11360
11361         * text2.C:
11362         * paragraph.C:
11363         * buffer.C: add WITH_WARNINGS
11364
11365         * vc-backend.h:
11366         * vc-backend.C:
11367         * bufferlist.C: s/retrive/retrieve/, add docs
11368
11369         * vspace.h:
11370         * vspace.C:
11371         * kbmap.h:
11372         * lyxlength.h:
11373         * lyxgluelength.h:
11374         * length_common.h:
11375         * chset.h:
11376         * chset.C: add docs
11377
11378         * lyxgui.C: add ID to X error handler
11379
11380         * lyxtestclass.c: fix typo
11381
11382 2002-02-26  Juergen Vigna  <jug@sad.it>
11383
11384         * tabular_funcs.C (write_attribute): changed so that some default
11385         attributes are not written at all.
11386         (getTokenValue): set default values before trying to read the
11387         value so we have the return value always set as default if we don't
11388         find the token we search for.
11389
11390         * tabular.C (Write): write bools as bools not as strings!
11391
11392 2002-02-22  Juergen Vigna  <jug@sad.it>
11393
11394         * BufferView_pimpl.C (workAreaButtonPress): call edit() before calling
11395         insetButtonPress for HIGHLY_EDITABLE_INSETS seems saner (fix #250).
11396
11397         * text.C (leftMargin): don't add an indent for paragraphs inside
11398         tabular cells (fix #208).
11399
11400 2002-02-21  José Matos  <jamatos@fep.up.pt>
11401
11402         * tabular.C (docBook): fixed support for long tables.
11403
11404 2002-02-20  Juergen Vigna  <jug@sad.it>
11405
11406         * text2.C (getFont): get the drawing font of the Inset if this
11407         paragraph is inside an inset (only important for InsetERT for now).
11408
11409         * buffer.C (insertErtContents): use new lanugage params in ERT
11410         constructor.
11411
11412         * CutAndPaste.C: commenting out seemingly uneeded code.
11413
11414 2002-02-19  Allan Rae  <rae@lyx.org>
11415
11416         * BufferView2.C (removeAutoInsets): fix remaining freed memory read.
11417         Iterators might be simple to use but they also get invalidated.
11418         (removeAutoInsets): renamed saved cursor tracking variables and added
11419         some comments to clarify what everything does.
11420
11421 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
11422
11423         * Chktex.C:
11424         * LaTeX.C:
11425         * LyXSendto.C:
11426         * converter.C:
11427         * lyx_cb.C:
11428         * vc-backend.C: Changes due to the renaming of support/syscall.[Ch] as
11429         support/systemcall.[Ch] and of class Systemcalls as class SystemCall.
11430
11431         * lyxfunc.C:
11432         * vc-backend.h: remove #include "support/syscall.h"
11433
11434         * LaTeX.C:
11435         * LyXSendto.C:
11436         * converter.C: rearrange #includes in Lars' approved fashion.
11437
11438         * LyXView.[Ch]: make autosave_timeout a pointer to Timeout. Can thus
11439         forward declare class Timeout in the header file.
11440
11441         * XFormsView.C: changes due to the above.
11442
11443         * minibuffer.[Ch]: make timer and stored_timer pointers to Timeout,
11444         similar to LyXView.
11445
11446         * commandtags.h: add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to the enum.
11447         * LyXAction.C (init): add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to items[]
11448
11449 2002-02-18  José Matos  <jamatos@fep.up.pt>
11450
11451         * buffer.C (simpleDocBookOnePar): if paragraph style is CDATA escapes
11452         insets contents.
11453
11454 2002-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
11455
11456         * a lot of small ws changes
11457         * add a lot of using std::XXX
11458         * use std construcs some places where approp.
11459         * use some exisint stuff from lyxfunctional where approp.
11460         * Make file changes to use partial linking (lets test this now...)
11461
11462 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
11463
11464         * Chktex.C:
11465         * buffer.C:
11466         remove #include "support/syscontr.h" as it's redundant. Always has been.
11467
11468         * Chktex.C:
11469         * LaTeX.C:
11470         * LyXSendto.C:
11471         * converter.C:
11472         * lyx_cb.C:
11473         * vc-backend.C:
11474         change Systemcalls::System to Systemcalls::Wait and
11475         change Systemcalls::SystemDontWait to Systemcalls::DontWait.
11476         No change of functionality, just reflects the stripped down Systemcalls
11477         class.
11478
11479 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
11480
11481         * debug.[Ch]: add a GRAPHICS type to the enum.
11482
11483 2002-02-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11484
11485         * text.C (nextBreakPoint): use Paragraph::isLineSeparator
11486
11487         * paragraph.C (isLineSeparator): call Inset::isLineSeparator if
11488         there is an inset.
11489
11490 2002-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11491
11492         * lyxfunc.C (getStatus): change the rules for LFUN_INSET_TOGGLE to
11493         match the changes below.
11494
11495         * text2.C (toggleInset): if there is not editable inset at cursor
11496         position, try to see if cursor is _inside_ a collapsable inset
11497         and close it.
11498
11499 2002-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11500
11501         * lyxfunc.C (getStatus): handle LFUN_SWITCHBUFFER so that the
11502         document menu has a nice checkbox
11503
11504 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11505
11506         * lyxlength.C (asLatexString): change PW to output as percent of
11507         \textwidth.
11508
11509         * lengthcommon.C: change '%' to 't%'
11510
11511         * lyxfunc.C (dispatch): a few comments from Martin
11512
11513 2002-02-06  John Levon  <moz@compsoc.man.ac.uk>
11514
11515         * WorkArea.h:
11516         * WorkArea.C:
11517         * BufferView_pimpl.h:
11518         * BufferView_pimpl.C: clear our selection when X tells us we've lost
11519           the X selection.
11520
11521 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11522
11523         * vspace.C (inPixels): fix compiler warning
11524
11525 2002-02-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11526
11527         * lyxfunc.C (getStatus): fix status message for disabled commands.
11528
11529 2002-02-01  John Levon  <moz@compsoc.man.ac.uk>
11530
11531         * BufferView_pimpl.C: fix crash on close buffer
11532         during selection (#227)
11533
11534 2002-01-27  Herbert Voss  <voss@lyx.org>
11535
11536         * buffer.C: link old Figure to new graphic inset
11537
11538 2002-01-26  Dekel Tsur  <dekelts@tau.ac.il>
11539
11540         * FontLoader.C (getFontinfo): Change the latex font names in order
11541         to match the names of type1inst.
11542
11543 2002-01-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11544
11545         * WorkArea.C (WorkArea): initialize the scrollbar bounds.
11546
11547         * DepTable.C (sumchange): do not evaluate end() on every iteratrion.
11548         (extchanged): ditto
11549         (ext_exist): ditto
11550         (remove_files_with_extension): ditto
11551         (remove_file): ditto
11552         (write): ditto
11553
11554         * BufferView_pimpl.C (updateScrollbar): do the right thing if the
11555         document is smaller than the work area height. Do not initialize
11556         static variables to 0.
11557
11558 2002-01-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11559
11560         * lyx_gui.C (init): give the toolbar tooltips a normal font.
11561
11562         * lyxfunc.C (getStatus): handle LFUN_LAYOUT like
11563         LFUN_LAYOUT_PARAGRAPHS.
11564
11565         * tabular.C (GetCellFromInset): new method. Finds an inset in a
11566         tabular. It is possible to provide a possible cell, which will
11567         typically be the actcell from the corresponding insettabular
11568
11569         * lyxfunc.C (getStatus): small cleanup; disable
11570         LFUN_LAYOUT_PARAGRAPHS in insets where forceDefaultParagraphs is
11571         true
11572
11573 2002-01-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11574
11575         * tabular.C (Validate): remove broken optimization (fixes bug #201)
11576
11577         * paragraph.C (startTeXParParams):
11578         (endTeXParParams): new methods. The LaTeX code to
11579         start/end paragraph formatting
11580         (simpleTeXOnePar): call startTeXParParams also when paragraph is
11581         empty (fixes bug #200)
11582
11583         * vspace.C (inPixels): adapt to the change below
11584         (inPixels): [later] more cleanups (remove unused variables)
11585
11586         * lyxlength.C (inPixels): change to use a width and a height as
11587         parameter.
11588
11589 2002-01-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11590
11591         * lyxlength.C (asLatexString): \pagewidth is not a LaTeX macro.
11592         Replaced with \paperwidth
11593
11594         * DepTable.C (insert): add std:: qualifier
11595
11596 2002-01-18  Allan Rae  <rae@lyx.org>
11597
11598         * text2.C (removeRow): add comment.  Should other refresh_?? vars be
11599         updated also?
11600
11601         * text.C (drawInset): Turned out I didn't know enough about how
11602         rebreaking worked.  This fixes most of the redraw problems.  I see
11603         an occasional cursor trail when a line is broken now and the cursor
11604         placement can seem out by a few pixels also after a rebreak.
11605
11606 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11607
11608         * buffer.C (parseSingleLyXformat2Token): update because minipage
11609         width is now a LyXLength
11610
11611         * lyxlength.C (inPixels): new method, extracted from VSpace::inPixels
11612
11613         * BufferView_pimpl.C (smartQuote): fix insertion of quote inset in
11614         math insets
11615
11616 2002-01-17  Juergen Vigna  <jug@sad.it>
11617
11618         * lyxfunc.C (dispatch): fixed PARAGRAPH_GOTO
11619
11620         * BufferView2.C (lockInset): call edit() so that theLockingInset()
11621         is set correctly and the inset is updated correctly.
11622
11623 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11624
11625         * CutAndPaste.C (pasteSelection): move the setInsetOwner call at
11626         the beginning of the loop.
11627
11628 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
11629
11630         * lyxrc.C: improve help for use_scalable_fonts
11631
11632 2002-01-17  Allan Rae  <rae@lyx.org>
11633
11634         * lyx_cb.C (ShowMessage): make sure we have a user and an owner.
11635
11636 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11637
11638         * CutAndPaste.C (pasteSelection): when pasting multiple paragraph,
11639         make sure to set their inset_owner to the right value (bug #171)
11640
11641 2001-12-12  Ben Stanley  <bds02@uow.edu.au>
11642
11643         * DepTable.h
11644         * DepTable.C: Implement mtime checking to reduce time spent doing
11645         CRCs.
11646
11647 2002-01-16  Juergen Vigna  <jug@sad.it>
11648
11649         * tabular.C (GetAdditionalHeight): one of error fixed.
11650
11651         * lyxrc.C (output): small fix in writing use_pspell.
11652
11653 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
11654
11655         * sp_base.h: #include LString.h
11656
11657 2002-01-16  Allan Rae  <rae@lyx.org>
11658
11659         * text2.C (removeRow): refresh_row needs a valid row.  Or does it?
11660         Can someone check this please?
11661
11662         * text.C (drawInset): It was possible that p.row would be removed by
11663         breakAgainOneRow upsetting a few other settings.  There may be another
11664         small tweak possible by setting need_break_row = 0 when p.row has been
11665         removed but I don't know enough about the logic here.
11666
11667 2002-01-15  Allan Rae  <rae@lyx.org>
11668
11669         * text.C (insertChar): removed conditional truism.
11670
11671         * BufferView2.C (removeAutoInsets): More tweaks.
11672         cur_par_prev could be a stray pointer.  Check for trailing empty line
11673         in case last line was cur_par and only had an error inset on it.
11674
11675 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11676
11677         * lyx_cb.C (MenuWrite): buffer->fileName is guaranteed to be
11678         absolute
11679
11680         * vc-backend.C (most methods):
11681         * exporter.C (Export):
11682         * converter.C (convert):
11683         (runLaTeX):
11684         * LyXSendto.C (SendtoApplyCB):
11685         * lyxfunc.C (dispatch):
11686         (menuNew):
11687         (open):
11688         (doImport):
11689         * lyx_cb.C (AutoSave):
11690         (InsertAsciiFile):
11691         * BufferView_pimpl.C (MenuInsertLyXFile):
11692         * buffer.C (runChktex): use Buffer::filePath().
11693
11694         * buffer.h: rename filename to filename_; rename filepath to
11695         filepath_ and make it private
11696         (filePath): new method
11697
11698         * buffer.C (writeFile): use fileName()
11699         (getLatexName):
11700
11701         * lyx_main.C (init): fix starting  of LyX when the binary is a
11702         link from so,ewhere else.
11703
11704         * minibuffer.C: include <cctype> for isprint
11705
11706 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
11707
11708         * buffer.C (parseSingleLyXformat2Token): changes associated with the
11709         change of InsetMinipage::width to InsetMinipage::pageWidth to avoid the
11710         name clash with InsetCollapsable's width function.
11711
11712 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11713
11714         * lastfiles.C: include <iterator>
11715
11716 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
11717
11718         * BufferView2.C (ChangeRefsIfUnique): use lyx::count rather than
11719         std::count.
11720
11721         * buffer.C (makeLaTeXFile): ditto.
11722         Also make loop operation more transparent.
11723
11724 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
11725
11726         * ToolbarDefaults.C: remove trailing comma closing namespace.
11727
11728         * WorkArea.h: remove WorkArea:: from declaration of event_cb.
11729
11730         * lyxfunc.[Ch]: clean-up declaration of verboseDispatch functions
11731         as in WorkArea.
11732
11733         * trans.C (Load): comment out unused variable, allowed.
11734
11735 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
11736
11737         * minibuffer.[Ch] (append_char): new method to recieve input from the
11738         drop-down completion browser. If a key was pressed, then recieve this
11739         char and append it to the existing string.
11740         (peek_event): modify the positioning data passed to the completion
11741         browser so that it can be placed above the minibuffer rather than below.
11742 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11743
11744         * LyXAction.C (init): alloe error-next for readonly documents.
11745
11746         * BufferView2.C (ChangeRefsIfUnique): use standard version of
11747         count.
11748
11749 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11750
11751         * bufferlist.C (readFile): create the buffer _after_ checking that
11752         the file exists.
11753
11754         * lyxfunc.C (verboseDispatch): fix handling of arguments
11755
11756         * lyxrc.C (setDefaults): do not initialize document_path to $HOME.
11757
11758         * lyxrc.C: use string::erase() instead of initializing to "".
11759
11760
11761 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
11762
11763         * BufferView_pimpl.h:
11764         * BufferView_pimpl.C:
11765         * WorkArea.h:
11766         * WorkArea.C:
11767         * text2.C: tell X when we have made a selection for copying
11768
11769 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11770
11771         * BufferView_pimpl.C (MenuInsertLyXFile):
11772         * lyxfunc.C (menuNew):
11773         (open):
11774         (doImport): add shortcuts to directory buttons
11775
11776         * BufferView_pimpl.C (workAreaButtonRelease): remove dead code (to
11777         open a float)
11778
11779         * lyxfunc.C (setStatusMessage):
11780         (getStatusMessage): new methods
11781         (getStatus):use setStatusMessage instead of setErrorMessage
11782         (dispatch): when function is disabled, set error message here
11783         [instead of in getStatus previously]
11784
11785         * BufferView_pimpl.C (workAreaButtonRelease): update
11786         toolbar/menubar here too.
11787
11788 2002-01-13  Allan Rae  <rae@lyx.org>
11789
11790         * BufferView2.C (removeAutoInsets): finished off earlier fix.
11791         Now seems indestructible.  Remaining task is to audit all other
11792         code affected by deleteEmptyParagraphMechanism.  One small quirk
11793         left is that an empty document with an error in the preamble can
11794         be made to report an error but no error box appears.  I don't know
11795         where it goes.
11796         (removeAutoInsets): Improved comments.
11797
11798 2002-01-13  John Levon  <moz@compsoc.man.ac.uk>
11799
11800         * Thesaurus.h:
11801         * Thesaurus.C: update for Aiksaurus 0.14
11802
11803 2002-01-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11804
11805         * text2.C (firstParagraph): removed member function, all uses
11806         replaces with ownerParagraph
11807         (redoParagraphs): here
11808         (updateInset): here
11809         (toggleAppendix): here
11810         * BufferView2.C (insertErrors): here
11811         (setCursorFromRow): here
11812
11813 2002-01-13  Allan Rae  <rae@lyx.org>
11814
11815         * BufferView2.C (removeAutoInsets): ensure we have a valid cursor if
11816         the old cursor is now invalid due to deleteEmptyParagraphMechanism.
11817         There is still a way to segfault this although you may have to do this
11818         multiple times: Have an InsetERT with an unknown command in it.
11819         View->DVI, move cursor between Error box and InsetERT and hit <Enter>,
11820         <down-arrow>, <Enter> again, View->DVI, BANG!
11821
11822         * text2.C (setCursor):
11823         (deleteEmptyParagraphMechanism):
11824         * lyxtext.h (setCursor):
11825         (deleteEmptyParagraphMechanism): return true if the paragraph was deleted.
11826         Making use of the return value may help fix other bugs.
11827
11828 2002-01-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11829
11830         * lyxfunc.C (dispatch): update toolbar/menubar after dispatching.
11831
11832         * LyXView.C (updateMenubar): call MenuBar::update here
11833         (updateToolbar): but not here
11834         (showState): do not update toolbar/menubar
11835
11836         * LyXAction.[Ch]: move isPseudoAction to the C file, since nobody
11837         should need to care about that.
11838
11839         * lyxfunc.C (verboseDispatch): simplify a bit
11840         (getStatus): have a version which takes a pseudoaction, and
11841         another which requires a (kb_action,string).
11842
11843         * LyXAction.C (retrieveActionArg): make it work also when action
11844         is not a pseudo-action.
11845         (getActionName): simplify a bit
11846         (helpText):
11847
11848 2002-01-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11849
11850         * lyxfunc.C (verboseDispatch): new families of methods with
11851         several ways to specify a command and a bool to indicate whether
11852         the command name and shortcut should be displayed in minibuffer
11853         (eventually, we could extend that to a finer bitmask like
11854         SHORTCUT|CMDNAME|CMDRESULT, or whatever).
11855         (dispatch): the pristine dispatch command which just, well,
11856         dispatchs! Note it still sets its result to minibuffer; I'm not
11857         sure we want that.
11858
11859         * lyxfunc.h: remove setHintMessage
11860
11861         * vc-backend.C: use LFUN_MENURELOAD instead of "buffer-reload"
11862
11863 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11864
11865         * BufferView_pimpl.C (specialChar): delete new inset if we have
11866         not been able to insert it.
11867
11868         * kbmap.C: revert to using int instead of kb_action, since all we
11869         are dealing with is pseudo-actions.
11870
11871         * LyXAction.C (searchActionArg): change to return int instead of
11872         kb_action, since the result is a pseudoaction.
11873
11874 2002-01-12  Dekel Tsur  <dekelts@tau.ac.il>
11875
11876         * buffer.C (insertErtContents): Fix (partially) the font bug.
11877
11878 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
11879
11880         * BufferView2.C (ChangeRefsIfUnique): use the HP version of std::count
11881         as the other one is broken on my machine!
11882
11883 2002-01-10  Martin Vermeer  <martin.vermeer@hut.fi>
11884
11885         * commandtags.h:
11886         * LyXAction.C: two new LFUNS, LFUN_FRAK and LFUN_ITAL.
11887
11888 2002-01-10  Angus Leeming  <a.leeming@ic.ac.uk>
11889
11890         * lyxrc.[Ch]: change names and descriptions of popup font variables to
11891         reflect their actual use. Provide compatibility code for older lyxrc
11892         files.
11893
11894         * lyx_gui.C (init): revoke change of 2002-01-07 of popup font style to
11895         FL_NORMAL_STYLE.
11896         change names of popup font variables in line with the changes to lyxrc.C
11897
11898 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11899
11900         * buffer.C (asciiParagraph): avoid outputing a word twice after
11901         an inset.
11902
11903         * lyxrc.C (getDescription): document that document_path and
11904         template_path can be empty.
11905
11906 2002-01-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11907
11908         * LaTeXFeatures.C (getMacros):
11909         * buffer.C (validate): rename feature "amsstyle" to "amsmath"
11910
11911         * buffer.C (makeLaTeXFile): remove test for "amsstyle" from here.
11912
11913         * LaTeXFeatures.C (useFloat): require "float" here instead of in
11914         getPackages.
11915         (getPackages): rename feature "floats" to "float". Use an array to
11916         iterate over 'simple' features (i.e. just a \usepackage). Add
11917         handling of "amsmath" (renamed from "amsstyle").
11918
11919 2001-12-29  Michael A. Koziarski  <michael@koziarski.org>
11920
11921         * LaTeXFeatures.C (require): Prevent duplicate entries in the
11922         features list.
11923
11924 2002-01-08  Angus Leeming  <a.leeming@ic.ac.uk>
11925
11926         * FuncStatus.C: small compile fix for DEC cxx. Doesn't like
11927         FuncStaus::FuncStatus & FuncStaus::some_method().
11928
11929 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
11930
11931         * FuncStatus.[Ch]: new files. This is a rewrite as a proper class
11932         of the func_satus stuff. Edited and massaged in various ways by
11933         JMarc.
11934
11935         * lyxfunc.C (getStatus): use FuncStatus
11936
11937 2002-01-08  Juergen Vigna  <jug@sad.it>
11938
11939         * text.C (nextBreakPoint): use function Inset::isChar().
11940
11941         * paragraph.C (TeXOnePar): use function
11942         Inset::forceDefaultParagraphs.
11943
11944         * buffer.C (latexParagraphs): use function
11945         Inset::forceDefaultParagraphs.
11946
11947 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
11948
11949         * lyx_gui.C (init): set the style of the menu popups to
11950         FL_BOLD_STYLE, thereby fixing bugzilla bug #32.
11951
11952 2002-01-07  Juergen Vigna  <jug@sad.it>
11953
11954         * text.C (setHeightOfRow): small fix
11955         (prepareToPrint): don't look at alignment if we don't have the place
11956         for doing it.
11957
11958 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
11959
11960         * box.C: New file. Move the Box methods and functions out of box.h,
11961         following Lars' suggestion.
11962
11963 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
11964
11965         * box.h: #include "support/LOstream.h", needed for inlined function.
11966
11967         * lyxtextclass.C:
11968         * lyxtextclasslist.C: added some using std declarations.
11969
11970 2002-01-06  John Levon  <moz@compsoc.man.ac.uk>
11971
11972         * box.h: make signed dimensions to allow insets wider than
11973           the screen (bug #162)
11974
11975         * BufferView_pimpl.C: add some insetHit debug
11976
11977 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
11978
11979         * vc-backend.C: add FIXME
11980
11981 2002-01-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11982
11983         * lyxfunc.C (getStatus): enable code for showing math font status
11984         in toolbar/menu.
11985
11986 2002-01-07  Juergen Vigna  <jug@sad.it>
11987
11988         * text.C (nextBreakPoint): removed debug output not needed anymore.
11989
11990 2002-01-06  Juergen Vigna  <jug@sad.it>
11991
11992         * text.C (nextBreakPoint): fixed up this function we had this bug
11993         since ever but now hopefully we break row better.
11994         (insertChar): we have to check if an inset is the next char as it
11995         could now happen that a large inset is causing a break.
11996
11997 2002-01-05  Juergen Vigna  <jug@sad.it>
11998
11999         * BufferView2.C (showLockedInsetCursor): don't draw the inset cursor
12000         if it doesn't like to be drawed.
12001
12002 2002-01-04  Juergen Vigna  <jug@sad.it>
12003
12004         * BufferView2.C (lockInset): forgot to set a cursor.
12005
12006         * lyxfunc.C (dispatch): add a finishUndo() in LFUN_ESCAPE.
12007
12008 2002-01-03  Martin Vermeer  <martin.vermeer@hut.fi>
12009
12010         * FormMathsPanel.C:
12011         * FormMathsPanel.h
12012         * MathsSymbols.C:
12013         * form_maths_panel.C:
12014         * form_maths_panel.h:
12015         * form_maths_panel.fd: implemented sub- and super- buttons in math
12016         panel.
12017
12018         * lyx_main.C: Revised hardwired bindings to allow original _ and ^
12019         (or ^ space) to be used as in TeX (req'd by André).
12020
12021         * lyxfunc.C: Allow ^ and _ again to be used both as
12022         super/subscript (mathed) and as themselves (in text).
12023
12024 2002-01-03  Allan Rae  <rae@lyx.org>
12025
12026         * LyXView.C (updateWindowTitle): Setup a short icon title of either
12027         "LyX" or the filename of the current buffer if it has one.  This is a
12028         modified form of John Levon's patch.
12029
12030         * XFormsView.C (setWindowTitle): also set icon title.
12031
12032         * LyXView.h (setWindowTitle): signature changed.
12033         * XFormsView.h (setWindowTitle): ditto.
12034
12035 2002-01-02  Juergen Vigna  <jug@sad.it>
12036
12037         * tabular.C (AppendColumn): hopefully fixed this memory access problem.
12038
12039 2001-12-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12040
12041         * screen.C (topCursorVisible): introduce a temp var for
12042         text->cursor.row(), handle the case where this row is null. (kindo
12043         hachish)
12044
12045         * text2.C (setCursor): add a couple of asserts.
12046
12047         * paragraph.h (inset_iterator): add -> operator
12048
12049         * paragraph.[Ch] (autoDeleteInsets): remove member function
12050
12051         * BufferView2.C (removeAutoInsets): rewrite to handle the old
12052         cursor pos correctly and handle inset deletion by itself.
12053         (insertErrors): move iterator declaration out of for expression
12054
12055         * lyxtextclass.C: add <algorithm>
12056
12057         * Makefile.am: added the new files to sources, removed layout.C
12058
12059         * layout.C: removed file
12060
12061         * layout.h: remove LYX_DUMMY_LAYOUT
12062
12063         * lyxtextclasslist.C (NumberOfLayout): do not special case dummy
12064         layout.
12065
12066         * lyxlayout.[Ch]:
12067         * lyxtextclass.[Ch]:
12068         * lyxtextclasslist.[Ch]: new files
12069
12070         * include order changes to a lot of files, also changes because of
12071         the six new files.
12072
12073 2001-12-27  Juergen Vigna  <jug@sad.it>
12074
12075         * buffer.C (asciiParagraph): more fixes.
12076
12077         * tabular.C (ascii): make ascii export support export of only the
12078         data separated by a column-delimiter.
12079         (ascii): better support for ascii export.
12080
12081         * buffer.C (asciiParagraph): rewrote to hopefully work as expected!
12082
12083 2001-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12084
12085         * tabular_funcs.C: use a "using std::getline" instead of the
12086         previous fix from Angus (necessary for cxx + lyxstring)
12087
12088 2001-12-24  Juergen Vigna  <jug@sad.it>
12089
12090         * BufferView_pimpl.C (tripleClick): fixed for InsetText.
12091
12092         * buffer.C (parseSingleLyXformat2Token): fixed 2 compatibility read
12093         problems. First check a minipage also if we have some ert-contents
12094         (not only on par->size(), second set the right depth of the paragraph
12095         on the relink to the root-paragraph-list!
12096
12097         * undo_funcs.C (textHandleUndo): fixed a stupid earlier wrong fix
12098         which then did not anymore update the main paragraphs on undo/redo!
12099
12100 2001-12-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12101
12102         * lyxfunc.C (getStatus): use func_status::toggle to simplify the
12103         code. Support all font-changing funcs (even those which are not in
12104         menu currently). Support for reporting font settings in
12105         mathed (disabled until Andre provides a function on mathed's side).
12106
12107         * func_status.h (toggle): small helper function to set toggle
12108         state on a flag.
12109
12110 2001-12-21  Angus Leeming  <a.leeming@ic.ac.uk>
12111
12112         * tabular_funcs.C: getline -> std::getline
12113
12114 2001-12-21  Juergen Vigna  <jug@sad.it>
12115
12116         * undo_funcs.C (textHandleUndo): fixed a case where tmppar3 is
12117         accessed and could be 0 (I couldn't generate this but it seems
12118         Michael could!).
12119
12120 2001-12-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12121
12122         * tabular_funcs.C: add LIstream.h, move write_attribute to..
12123         * tabular_funcs.h: here and include iosfwd
12124
12125 2001-12-20  Juergen Vigna  <jug@sad.it>
12126
12127         * undo_funcs.C (textHandleUndo): fixed crash when undo_cursor not
12128         inside inset but undo_par was.
12129
12130 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12131
12132         * Thesaurus.C: always include <config.h> in sources.
12133
12134         * Painter.h:
12135         * lyxlookup.h:
12136         * box.h: do not include <config.h> in header files
12137
12138         * text.C (paintLastRow): remove unused variable
12139
12140         * text.C (transformChar):
12141         (insertChar):
12142         * tabular-old.C (getTokenValue): use IsDigit instead of isdigit.
12143
12144         * Painter.C (text):
12145         * font.C (width): rewrite to use uppercase() instead of
12146         islower/toupper.
12147
12148         * lyxfind.C (IsStringInText): use uppercase instead of toupper.
12149
12150 2001-12-12  John Levon  <moz@compsoc.man.ac.uk>
12151
12152         * lyxfind.C: clean up of find failure position change
12153
12154 2001-12-20  Juergen Vigna  <jug@sad.it>
12155
12156         * Makefile.am (lyx_SOURCES): added tabular_funcs.[hC].
12157
12158         * tabular.C (isValidRow): added to check if we're in a LT-h/f row.
12159         (TeXRow): added to LaTeX a single tabular row.
12160         (TeXLongtableHeaderFooter): added to output LT-h/f data.
12161         (Latex): simplified and finally good LT-h/f support.
12162         (various_functions): just small adaptions for LT-h/f support.
12163
12164         * tabular_funcs.[hC]: added and moved here all not classfunctions
12165         of LyXTabular.
12166
12167 2001-12-19  Juergen Vigna  <jug@sad.it>
12168
12169         * tabular.[Ch]: better support for longtabular options (not finished
12170         yet!)
12171
12172 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12173
12174         * text.C (paintLastRow): use the label font instead of the font of
12175         the last character to compute the size of *_BOX. This makes more
12176         sense and avoids a crash with empty paragraphs.
12177         Use Painter::rectangle to draw EMPTY_BOX.
12178
12179 2001-12-19  Juergen Vigna  <jug@sad.it>
12180
12181         * undo_funcs.C (textHandleUndo): fixed setting of inset_owner of
12182         the paragraphs if the replaced paragraph is not the first one!
12183         Tried to delete not used paragraphs but does not work yet so for
12184         now it's inside #ifdef's and by default off!
12185
12186 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12187
12188         * MenuBackend.C: include "lyx_main.h" instead of declaring
12189         lastfiles (actually was declared as LastFiles* instead of a
12190         scoped_ptr).
12191
12192 2001-12-17  Juergen Vigna  <jug@sad.it>
12193
12194         * tabular.C (AppendColumn): applied John's fix
12195
12196 2001-12-15  John Levon  <moz@compsoc.man.ac.uk>
12197
12198         * BufferView.h:
12199         * BufferView.C:
12200         * BufferView_pimpl.h:
12201         * BufferView_pimpl.C: cleanup and fix of checkInsetHit().
12202
12203         * Makefile.am:
12204         * box.h: new start of class for above
12205
12206         * lyxfunc.C: ignore space-only minibuffer dispatches.
12207           Show the command name when it doesn't exist
12208
12209         * minibuffer.C: don't add empty lines to the history
12210
12211         * minibuffer.C: add a space on dropdown completion
12212
12213 2001-12-14  John Levon  <moz@compsoc.man.ac.uk>
12214
12215         * text.C: fix line above/below drawing in insets
12216
12217 2001-12-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12218
12219         * lyxlength.C (LyXLength): Initialize private variables.
12220
12221 2001-12-15  Dekel Tsur  <dekelts@tau.ac.il>
12222
12223         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Use buffer language
12224         when inserting error insets.
12225
12226 2001-12-13  Juergen Vigna  <jug@sad.it>
12227
12228         * undo_funcs.C (textRedo/Undo): fixed as the first paragraph was
12229         actually sometimes the before-paragraph.
12230         (setUndo): don't clear the redostack if we're not actually undoing!
12231
12232 2001-12-06  Juergen Vigna  <jug@sad.it>
12233
12234         * undo_funcs.C (textHandleUndo): well after John's hint I got here
12235         and fixed redoing of main paragraph, so we can use it now ;)
12236
12237         * text2.C (redoParagraphs): fixed a crash when having only 1 row!
12238
12239 2001-12-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12240
12241         * undo_funcs.C (textHandleUndo): undo undo leak fix below, as per
12242         Juergen's request
12243
12244 2001-12-13  André Pönitz <poenitz@gmx.net>
12245
12246         * undostack.[Ch]:
12247         * undo_func.C: minor cleanup
12248
12249 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12250
12251         * FontLoader.C (getFontinfo): only use symbol fonts with encoding
12252         -adobe-fontspecific. At least Mandrake and Redhat have a symbol
12253         font in urw-fonts package which is marked as -urw-fontspecific and
12254         does not work (incidentally, changing the encoding in the
12255         fonts.dir of this package to -adobe-fontspecific fixes the
12256         problem).
12257
12258         * undo_funcs.C (textHandleUndo): fix leak in undo, but now there
12259         is a crash when undoing first paragraph (Juergen, please take a
12260         look). THis does not mean the undo fix is wrong, just that it
12261         uncovers problems.
12262
12263         * text2.C (ownerParagraph): let the (int,Paragraph*) version call
12264         the (Paragraph*) version when needed instead of duplicating the
12265         code.
12266
12267         * text.C (workWidth): use Inset::parOwner to find out where the
12268         inset has been inserted. This is a huge performance gain for large
12269         documents with lots of insets. If Inset::parOwner is not set, fall
12270         back on the brute force method
12271
12272         * paragraph_pimpl.C (insertInset):
12273         * paragraph.C (Paragraph):
12274         (cutIntoMinibuffer): set parOwner of insets when
12275         inserting/removing them
12276
12277         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
12278
12279 2001-12-12  Martin Vermeer  <martin.vermeer@hut.fi>
12280
12281         * commandtags.h:
12282         * LyXAction.C:
12283         * lyx_main.C:
12284         * lyxfunc.C:
12285         * mathed/formulabase.C:
12286         * mathed/math_cursor.[Ch]:
12287         make sub/superscript into functions LFUN_SUB/SUPERSCRIPT.
12288
12289
12290 2001-12-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12291
12292         * lyxlength.[Ch] (operator!=): new function
12293
12294 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12295
12296         * text.C (workWidth): use Inset::parOwner to find out where the
12297         inset has been inserted. This is a huge performance gain for large
12298         documents with lots of insets. If Inset::parOwner is not set, fall
12299         back on the brute force method
12300
12301         * paragraph_pimpl.C (insertInset):
12302         * paragraph.C (Paragraph):
12303         (cutIntoMinibuffer): set parOwner of insets when
12304         inserting/removing them
12305
12306         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
12307
12308 2001-12-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12309
12310         * tabular-old.C (getTokenValue):
12311         * tabular.C (getTokenValue):
12312         (write_attribute): new versions for LyXLength
12313         (everywhere): adjust the use of widths
12314
12315         * tabular.h: change the type of widths from string to LyXLength
12316
12317 2001-12-11  Ben Stanley <bds02@uow.edu.au>
12318
12319         * paragraph.C: fixed missing line number count when exporting
12320         Environments to LaTeX file
12321
12322         * buffer.C: added informational message for checking line numbers.
12323
12324 2001-12-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12325
12326         * text2.C (deleteEmptyParagraphMechanism): if there is only one
12327         paragraph, do the 'double space' part, but not the 'empty
12328         paragraph' one.
12329
12330         * text.C (workWidth): small optimization
12331         (getLengthMarkerHeight): use minimal size for negative lengths.
12332
12333 2001-12-11  Dekel Tsur  <dekelts@tau.ac.il>
12334
12335         * lyxfont.C (GUIFamilyNames): Fix GUIFamilyNames array
12336
12337         * FontLoader.C (getFontinfo): Use "*-eufrak-medium"
12338
12339 2001-12-11  André Pönitz <poenitz@gmx.net>
12340
12341         * FontLoader.C:
12342         * lyxfont.[Ch]: support for fraktur font used by \mathfrak
12343
12344 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
12345
12346         * text2.C: keep selection on a setFont()
12347
12348 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
12349
12350         * lyx_cb.C: another bv->text misuse, from insert label
12351
12352 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
12353
12354         * kbsequence.h:
12355         * kbsequence.C: re-instate nmodifier mask
12356
12357 2001-12-12  Angus Leeming  <a.leeming@ic.ac.uk>
12358
12359         * lyx_main.h: make lyxGUI private.
12360
12361 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
12362
12363         * lyxfind.C: place the cursor correctly on failed search
12364
12365 2001-12-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
12366
12367         * text.C (getLengthMarkerHeight): for small heights, the arrows
12368         are not always on top/bottom of the text
12369         (drawLengthMarker): smaller arrows; take the left margin in
12370         account; draw also vfills.
12371         (paintFirstRow):
12372         (paintLastRow): remove special code for vfill and standard spaces,
12373         since everything is handled in drawLengthMarker now.
12374
12375 2001-12-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12376
12377         * buffer.C (insertErtContents): try to handle font and language
12378         interaction a bit better.g
12379
12380         * ColorHandler.C (updateColor): change the hash to cover the whole
12381         LColor enum, ws cleanup
12382         (getGCLinepars): ditto
12383         (getGCLinepars): only lookup in the linecache once.
12384
12385 2001-12-07  Dekel Tsur  <dekelts@tau.ac.il>
12386
12387         * iterators.C (operator++): Make the iterator more robust
12388
12389         * BufferView2.C (removeAutoInsets): Use paragraph iterators
12390         (John's patch)
12391         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Ditto
12392
12393 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12394
12395         * lyxtext.h:
12396         * text.C: better added space drawing
12397
12398 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12399
12400         * LyXView.C:
12401         * BufferView2.C: fix layout combo update on inset unlock
12402
12403 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12404
12405         * Makefile.am: don't compile unused files
12406
12407 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12408
12409         * lyxfunc.C:
12410         * commandtags.h:
12411         * LyXAction.C: remove old LFUN_LAYOUTNO
12412
12413 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12414
12415         * paragraph_pimpl.h:
12416         * paragraph_pimpl.C: isTextAt() doesn't need font param
12417
12418 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12419
12420         * lyxlex.h:
12421         * lyxlex.C: little cleanup
12422
12423 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
12424
12425         * BufferView_pimpl.C: fix insertAscii for insets
12426
12427 2001-12-05  Juergen Vigna  <jug@sad.it>
12428
12429         * CutAndPaste.C (pasteSelection): remove not allowed insets/chars and
12430         set the right font on the "multi" paragraph paste!
12431
12432 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12433
12434         * trans_decl.h:
12435         * trans_mgr.[Ch]:
12436         * trans.[Ch]:
12437         * lyxgluelength.C:
12438         * lyxlength.C: remove out-commented code.
12439
12440         * BufferView_pimpl:
12441         * CutAndPaste.C:
12442         * DepTable.C:
12443         * buffer.C:
12444         * chset.C:
12445         * lastfiles.C:
12446         * lyxlex.C:
12447         * lyxlex_pimpl.C:
12448         * lyxserver.C:
12449         * screen.C:
12450         * tabular-old.C:
12451         * tabular.C:
12452         * text.C:
12453         * trans_mgr.C:
12454         * vc-backend.C: change "while(" to "while ("
12455
12456         * lyxlength.[Ch]: add zero function to check if length is zero or
12457         not
12458         * lyxgluelength.C: use it
12459
12460 2001-12-05  Allan Rae  <rae@lyx.org>
12461
12462         * lyxlength.C: Attempted a fix for the abs(int) header selection.
12463         Works for 2.95.3, from what I understand of Garst's reports this should
12464         work for other g++ versions.  We're screwed if the abs(int) definition
12465         changed between bugfix releases of gcc.
12466
12467 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
12468
12469         * text.C: fix chapter label offset !
12470
12471 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
12472
12473         * lyxtext.h:
12474         * text.C: fix hfill at end of line, clean up
12475
12476 2001-12-04  Juergen Vigna  <jug@sad.it>
12477
12478         * undo_funcs.C (textHandleUndo): added a call to inset->update() so
12479         that we force an update of the inset and it's owners if neccessary.
12480
12481 2001-12-03  Juergen Vigna  <jug@sad.it>
12482
12483         * text.C (rowLast): simplified code
12484
12485 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
12486
12487         * lyxfunc.C: fix show options on timeout
12488
12489 2001-12-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12490
12491         * screen.C (topCursorVisible): scroll half a page when the cursor
12492         reached top of bottom of screen
12493
12494 2001-12-02  John Levon  <moz@compsoc.man.ac.uk>
12495
12496         * minibuffer.C: deactivate on loss of focus
12497
12498 2001-12-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12499
12500         * vspace.[Ch] (operator!=): add operator.
12501
12502 2001-12-01  John Levon  <moz@compsoc.man.ac.uk>
12503
12504         * BufferView_pimpl.C: refuse to open an inset when
12505         there's a selection.
12506
12507 2001-11-30  John Levon  <moz@compsoc.man.ac.uk>
12508
12509         * BufferView_pimpl.C: allow to click on RHS of full row insets
12510
12511 2001-11-30  Juergen Vigna  <jug@sad.it>
12512
12513         * tabular.C (LyXTabular): add a same_id to set the same id's in the
12514         insets for undo reasons.
12515
12516 2001-11-28  André Pönitz <poenitz@gmx.net>
12517
12518         * vspace.[Ch]: cosmetical changes
12519
12520 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
12521
12522         * LyXAction.h:
12523         * LyXAction.C:
12524         * lyxfunc.h:
12525         * lyxfunc.C:
12526         * kbmap.h:
12527         * kbmap.C:
12528         * lyxrc.C:
12529         * kbsequence.h:
12530         * kbsequence.C: part re-write of old kb code
12531
12532         * Painter.C:
12533         * WorkArea.C: remove Lgb_bug_find_hack
12534
12535 2001-11-30  José Matos <jamatos@fep.up.pt>
12536
12537         * buffer.C (makeDocBookFile): add a comment to point a hack.
12538         (simpleDocBookOnePar): changed a PAR::META_INSET to isInset().
12539         Fixed a double write of labels.
12540
12541 2001-11-29 Ben Stanley <bds02@uow.edu.au>
12542
12543         * LaTeX.C:
12544         * LaTeX.h Fixed bug in LaTeX class where it would not
12545         re-run latex if no depfiles were changed, but the .dvi was removed.
12546
12547 2001-11-28  André Pönitz <poenitz@gmx.net>
12548
12549         * all the files from the change on 2001/11/26:
12550         use lyx::layout_type instead of LyXTextClass::size_type
12551         use lyx::textclass_type instead of LyXTextClassList::size_type
12552
12553 2001-11-29  Juergen Vigna  <jug@sad.it>
12554
12555         * text.C: added support for paragraph::isFreeSpacing()
12556
12557         * buffer.C: same as above
12558
12559         * paragraph.h: inserted isFreeSpacing() function to enable
12560         FreeSpacing inside InsetERT.
12561
12562         * CutAndPaste.C (cutSelection/copySelection): set the inset_owner
12563         of the paragraph's in the cut/copy buffer to 0!
12564
12565         * text2.C (removeRow): remove the assert as it can!
12566
12567         * lyxtext.h: added helper function firstRow returning firstrow and
12568         made firstrow private again.
12569
12570         * BufferView2.C (lockInset): don't relock if we're already locked!
12571
12572         * text2.C (deleteEmptyParagraphMechanism): don't do anything if it's
12573         the only paragraph.
12574         (removeRow): added Assert::(firstrow)
12575
12576         * debug.C: forgot to add INSETTEXT here.
12577
12578 2001-11-28  Juergen Vigna  <jug@sad.it>
12579
12580         * sp_spell.C (initialize): changed error text to more general
12581         spellchecker command use (not only ispell!)
12582
12583         * bufferlist.C (qwriteAll): fixed "Cancel" button handling!
12584
12585         * debug.h: inserted one for debugging INSETTEXT (and InsetTabular)!
12586
12587 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
12588
12589         * vspace.C: initialise lyxgluelength on failure
12590
12591 2001-11-28  Allan Rae  <rae@lyx.org>
12592
12593         * text.C (paintLastRow): g++-2.95.3 and others don't like variable
12594         declaration & definition that looks like a function declaration.
12595
12596 2001-11-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12597
12598         * BufferView2.C (copy):
12599         (copyEnvironment): do not clear the selection when doing a copy.
12600
12601         * text.C (paintFirstRow): compilation fix
12602
12603 2001-11-27  Ben Stanley  <bds02@uow.edu.au>
12604
12605         * tabular.C (Latex): correct line count when writing latex.
12606
12607 2001-11-27  John Levon  <moz@compsoc.man.ac.uk>
12608
12609         * paragraph_pimpl.h:
12610         * paragraph_pimpl.C: tidy, and fix font-change in "LaTeX"
12611           bug a bit
12612
12613 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
12614
12615         * text.C:
12616         * LColor.h:
12617         * LColor.C: change vfillline->added_space
12618
12619         * text.C: add markers and text for added space
12620
12621         * vspace.C: fix comment
12622
12623 2001-11-28  André Pönitz <poenitz@gmx.net>
12624
12625         * paragraph.C: whitespace changes
12626         * all the other files from the change on 2001/11/26:
12627         change *::pos_type into lyx::pos_type
12628
12629 2001-11-27  Dekel Tsur  <dekelts@tau.ac.il>
12630
12631         * buffer.C (parseSingleLyXformat2Token): Set the language to the
12632         language of the document when inserting error insets.
12633
12634 2001-11-26  André Pönitz <poenitz@gmx.net>
12635
12636         * BufferView_pimpl.[Ch]:
12637         *       CutAndPaste.C:
12638         * buffer.[Ch]:
12639         * lyxcursor.[Ch]:
12640         * lyxfind.C:
12641         * lyxfunc.C:
12642         * lyxrow.[Ch]:
12643         * paragraph.[Ch]:
12644         * paragraph_pimpl.[Ch]:
12645         * sp_spell.C:
12646         * text.C:
12647         * text2.C: reduce header dependencies, introduce type for positions
12648
12649 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
12650
12651         * <various>: change to use Alert.h
12652
12653 2001-11-25  Dekel Tsur  <dekelts@tau.ac.il>
12654
12655         * buffer.C (parseSingleLyXformat2Token): Insert an error inset
12656         when encountering an unknown token.
12657         (readLyXformat2): Show an error message if there were unknown tokens.
12658
12659 2001-11-22  John Levon  <moz@compsoc.man.ac.uk>
12660
12661         * BufferView2.C:
12662         * BufferView_pimpl.C:
12663         * buffer.C:
12664         * paragraph.h:
12665         * text.C:
12666         * text2.C: use par->isInset()
12667
12668 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
12669
12670         * paragraph_pimpl.h:
12671         * paragraph_pimpl.C: cleanup
12672
12673 2001-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12674
12675         * text2.C (removeRow):
12676         * text.C (setHeightOfRow): remove useless (and costly) call to
12677         getRow.
12678
12679 2001-11-20  Allan Rae  <rae@lyx.org>
12680
12681         * paragraph.C (insertFromMinibuffer): Fix for inset related crashes.
12682         Now need Inset*::checkInsertChar() to return true for appropriate
12683         cases so that the characters in the minibuffer will actually be
12684         inserted.
12685
12686 2001-11-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12687
12688         * text.C: change the order of the includes.
12689         (workWidth): initialize it at once.
12690         (workWidth): make maxw unsigned
12691         (setHeightOfRow): remove unused variable (inset)
12692         (selectSelectedWord): remove unused variable (inset)
12693         (paintRowText): fix drawing of hfill characters, and clean up a bit.
12694
12695 2001-11-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12696
12697         * lyxserver.C (emergencyCleanup): do not try to close pipes if
12698         server is not running.
12699         (openConnection):
12700         (closeConnection): add debug info when server is disabled.
12701
12702         * ColorHandler.C (getGCForeground): send debug message to GUI
12703         channel.
12704
12705         * lyxrc.C: do not include lyxserver.h and tex-strings.h.
12706
12707         * kbmap.C (bind): modify because return conventions of
12708         kb_sequence::parse have changed.
12709
12710         * kbsequence.C (parse): only ignore spaces and not any stupid
12711         control character. This avoids tests like s[i] <= ' ', which are
12712         guaranteed to fail with 8bit characters and signed chars.
12713         Change return code to string::npos when there have been no error
12714         (0 was a bad idea when error is at first character)
12715
12716 2001-11-14  José Matos  <jamatos@fep.up.pt>
12717
12718         * buffer.h:
12719         * buffer.C (simpleDocBookOnePar): removed unused argument.
12720
12721 2001-11-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12722
12723         * text.C (selectNextWordToSpellcheck): do not test explicitely for
12724         insets which are part of a word. Paragraph::isLetter takes care of
12725         that now. Use Paragraph::isInset to identify insets.
12726         (selectSelectedWord): do not test for hyphenation break.
12727
12728         * BufferView_pimpl.C (smartQuote): use Inset::isSpace, so
12729         that protected spaces are considered as spaces.
12730
12731         * paragraph.C (isLetter): cleanup the code for ispell extras; use
12732         Inset::isLetter.
12733
12734 2001-11-12  John Levon  <moz@compsoc.man.ac.uk>
12735
12736         * lyxserver.h:
12737         * lyxserver.C: fix it. and small cleanup.
12738
12739 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
12740
12741         * BufferView_pimpl.C: use inline helpers
12742
12743         * LaTeXFeatures.h:
12744         * LaTeXFeatures.C: fix typos
12745
12746         * Spacing.h:
12747         * Spacing.C: move spacing_string into class
12748
12749         * ToolbarDefaults.C: move stuff into namespace anon
12750
12751         * layout.h: update enum
12752
12753         * lyxfunc.C: use better debug
12754
12755         * minibuffer.h: fix typo
12756
12757         * debug.h:
12758         * debug.C:
12759         * WorkArea.C: add and use Debug::WORKAREA
12760
12761         * lyxtext.h:
12762         * text.C:
12763         * text2.C: code re-organisation, inline helpers
12764
12765 2001-11-09  Michael A. Koziarski <michael@koziarski.org>
12766
12767         * Layout.C: replaced a few cases of std::vector.size() == 0 with
12768         std::vector.empty().
12769
12770 2001-11-09  Allan Rae  <rae@lyx.org>
12771
12772         * paragraph.C (TeXOnePar): remove old, now-irrelevent comments about
12773         '\n's after tables.  Tabular and ERT inset work now makes this no
12774         longer necessary.
12775
12776 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
12777
12778         * minibuffer.h:
12779         * minibuffer.C: fix crash, improve drop-down completion
12780
12781 2001-11-06  John Levon  <moz@compsoc.man.ac.uk>
12782
12783         * lyxserver.h:
12784         * lyxserver.C: invalidate fd's when doing endPipe()
12785
12786 2001-11-08  José Matos  <jamatos@fep.up.pt>
12787
12788         * buffer.C (sgmlLineBreak): renamed from linux_doc_line_break.
12789         (simpleDocBookOnePar): removed code made obsolete by the new inset code.
12790
12791         * paragraph.h:
12792         * paragraph.C (sgmlConvertChar): renamed from linuxDocConvertChar.
12793
12794 2001-11-07  José Matos  <jamatos@fep.up.pt>
12795
12796         * buffer.h:
12797         * buffer.C (sgmlError): linuxDocError renamed, and made public, added
12798         const qualifier.
12799
12800         * buffer.C (sgmlOpenTag):
12801         * buffer.C (sgmlCloseTag): removed debug info.
12802
12803         * buffer.h (sgmlOpenTag):
12804         * buffer.h (sgmlCloseTag): made public.
12805
12806 2001-11-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12807
12808         * buffer.C (saveParamsAsDefaults):
12809         * lyx_cb.C (MenuLayoutSave): remove
12810
12811         * LyXAction.C (init):
12812         * commandtags.h:
12813         * lyxfunc.C (dispatch): remove LFUN_LAYOUT_SAVE_DEFAULT.
12814
12815 2001-11-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12816
12817         * buffer.C (setPaperStuff): removed from here...
12818
12819         * bufferparams.C (setPaperStuff): ... and moved there.
12820
12821 2001-11-03  John Levon  <moz@compsoc.man.ac.uk>
12822
12823         * minibuffer.h:
12824         * minibuffer.C:
12825         * XFormsView.C: add support for drop-down completion
12826
12827 2001-11-03  Dekel Tsur  <dekelts@tau.ac.il>
12828
12829         * paragraph.C (TeXOnePar): Correct placement of \selectlanguage
12830         commands.
12831
12832 2001-10-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12833
12834         * gettext.C (locale_init): set LC_NUMERIC to "C" even if nls is
12835         disabled.
12836
12837 2001-10-30  John Levon  <moz@compsoc.man.ac.uk>
12838
12839         * lyx_main.C: change ref to known bugs
12840
12841 2001-10-30  Kayvan A. Sylvan  <kayvan@sylvan.com>
12842
12843         * LaTeXFeatures.C (getPackages): Use lyxskak.sty now instead
12844         to work around older babel problems.
12845
12846 2001-10-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
12847
12848         * LaTeXFeatures.[hC]: Now uses skak.sty for chess material.
12849
12850 2001-10-24  Juergen Vigna  <jug@sad.it>
12851
12852         * tabular-old.C (ReadOld): below variable changes reflected.
12853
12854         * tabular.[Ch]: added ltType struct for longtable header/footer
12855         defines and changed all instances where they are used. Added
12856         future support for double top/bottom rows.
12857
12858 2001-10-24  José Matos  <jamatos@fep.up.pt>
12859
12860         * buffer.h (docbookHandleCaption):
12861         * buffer.C (docbookHandleCaption): removed unused function.
12862         (makeDocBookFile): moved docbook supported version to v4.1.
12863
12864 2001-10-24  José Matos  <jamatos@fep.up.pt>
12865
12866         * tabular.h:
12867         * tabular.C (docbookRow): new function to export docbook code of a row.
12868         (DocBook): now honors the longtable flags.
12869
12870 2001-10-23  José Matos  <jamatos@fep.up.pt>
12871
12872         * LaTeXFeatures.h:
12873         * LaTeXFeatures.C (getLyXSGMLEntities): new function to get the name
12874         of the lyx defined sgml entities used in a docbook/linuxdoc document.
12875
12876         * buffer.C (makeLinuxDocFile):
12877         (makeDocBookFile): reworked the preamble, more clean, and with
12878         support for lyx defined entities. Changed the document declaration
12879         to be more XML friendly.
12880
12881         * tabular.C (DocBook): removed / terminator to be more SGML friendly,
12882         if we need to output XML that should be done with a filter.
12883
12884 2001-10-22  Juergen Vigna  <jug@sad.it>
12885
12886         * sp_pspell.h (class PSpell): add alive function needed in the
12887         controller to see if the spellchecker could be started.
12888
12889 2001-10-22  Juergen Vigna  <jug@sad.it>
12890
12891         * buffer.C (insertStringAsLines): modify the font for inserting
12892         chars in certain conditions by calling checkInsertChar(font).
12893
12894 2001-10-19  Juergen Vigna  <jug@sad.it>
12895
12896         * text.C (workWidth): use getRow instead of wrong algorithm.
12897         (setHeightOfRow): fix for MARGIN_RIGHT_ADDRESS_BOX
12898
12899 2001-10-19  John Levon  <moz@compsoc.man.ac.uk>
12900
12901         * lyxserver.h:
12902         * lyxserver.C:
12903         * lyx_main.h:
12904         * lyx_main.C: add emergencyCleanup (remove pipes on crash)
12905
12906 2001-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12907
12908         * text.C (workWidth): do not search for the exact row when
12909         margintype is not MARGIN_RIGHT_ADDRESS_BOX. This is an
12910         optimization for big documents.
12911
12912 2001-10-18  Juergen Vigna  <jug@sad.it>
12913
12914         * text.C (workWidth): new function with added Inset * parameter.
12915
12916 2001-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12917
12918         * text2.C (setCursorFromCoordinates): use Paragraph::size_type
12919
12920         * lyxtext.h: change type of refresh_pos to Paragraph::size_type;
12921         change return type of getColumnNearX.
12922
12923
12924         * text.C (changeRegionCase): use uppercase/lowercase instead of
12925         toupper/tolower.
12926         (leftMargin):
12927         (rightMargin): simplify code by factoring out the uses of
12928         textclasslist.
12929         (labelFill):
12930         (numberOfHfills):
12931         (setHeightOfRow):
12932         (appendParagraph): use Paragraph::size_type
12933
12934 2001-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12935
12936         * vspace.C (asLatexString): add a missing break
12937
12938 2001-10-15  Herbert Voss  <voss@perce.de>
12939
12940         * vspace.C (asLatexString): fix bug in output of string for l% and p%.
12941
12942 2001-10-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12943
12944         * lyxfunc.C (getStatus): disable thesaurus when aiksaurus library
12945         is not available.
12946
12947 2001-10-10  André Pönitz <poenitz@gmx.net>
12948
12949         * lyxfunc.C: removed greek_kb_flag.
12950
12951 2001-10-10  Herbert Voss  <voss@perce.de>
12952
12953         * lyx_main.C: delete global string help_lyxdir.
12954
12955 2001-10-09  Herbert Voss  <voss@perce.de>
12956
12957         * commandtags.h (kb_action): added LFUN_HELP_TEXINFO.
12958
12959         * LyXAction.C (init): added LFUN_HELP_TEXINFO to items array.
12960
12961         * lyx_main.C: added global string help_lyxdir.
12962
12963         * lyxfunc.C (dispatch): added LFUN_HELP_TEXINFO to switch.
12964
12965 2001-10-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
12966
12967         * lyxrc.C (set_font_norm_type): support iso8859-4
12968
12969 2001-07-02  Claus Hentschel  <claus.hentschel@mbau.fh-hannover.de>
12970
12971         * LaTeX.C (deplog): add another regex for MikTeX
12972
12973 2001-10-05  Adrien Rebollo  <adrien.rebollo@gmx.fr>
12974
12975         * lyxrc.C (set_font_norm_type): support iso8859-3
12976
12977 2001-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12978
12979         * BufferView_pimpl.C (tripleClick): fix stupid logic error.
12980
12981         * LaTeXFeatures.C: remove special case of french and index
12982
12983         * buffer.C (makeLaTeXFile): _really_ load babel late (i.e. just
12984         before \begin{document}). This solves several incompatibilities.
12985
12986 2001-10-03  Garst Reese  <reese@isn.net>
12987
12988         * lyx_cb.C: change CheckTex error msg.
12989
12990 2001-10-03  José Matos  <jamatos@fep.up.pt>
12991
12992         * buffer.C (simpleDocBookOnePar): add support for pass_thru.
12993
12994 2001-10-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12995
12996         * .cvsignore: update
12997
12998         * lyx_main.C (commandLineVersionInfo): use new style version info.
12999
13000         * buffer.C (writeFile):
13001         (makeLaTeXFile):
13002         (makeLinuxDocFile):
13003         (makeDocBookFile): use lyx_docversion instead of LYX_DOCVERSION.
13004
13005         * WorkArea.C (WorkArea): use lyx_version instead of LYX_VERSION.
13006
13007         * version.h: update to use stuff in version.C
13008
13009         * version.C.in: new file. Contains version information determined
13010         at compile time. This is a merging of version.h and
13011         version_info.h.in.
13012
13013 2001-10-03  Juergen Vigna  <jug@sad.it>
13014
13015         * BufferView_pimpl.C (update): don't change "dirty" status in
13016         updateInset call.
13017
13018 2001-10-03  Angus Leeming  <a.leeming@ic.ac.uk>
13019
13020         * WorkArea.C (c-tor): re-position version string slightly.
13021
13022 2001-10-02  Angus Leeming  <a.leeming@ic.ac.uk>
13023
13024         * BufferView_pimpl.C (buffer): remove call to WorkArea::show() and
13025         revert to previous code.
13026
13027         WorkArea.[Ch]: (show, destroySplash): methods removed.
13028
13029         WorkArea.C: rework code so that it's an amalgam of the codes before and
13030         after the splash screen was moved to WorkArea.
13031
13032 2001-10-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13033
13034         * lyxrc.C (read):
13035         * vspace.C (inPixels):
13036         (lyx_advance):
13037         * kbmap.C (bind):
13038         * buffer.C (insertStringAsLines):
13039         (asciiParagraph): fix types to be large enough
13040
13041         * lyxlex_pimpl.h: change member status from short to int
13042
13043         * layout.h: fix type of endlabeltype
13044
13045         * kbmap.C (bind):
13046         * kbsequence.C (parse): change return type to string::size_type
13047
13048         * LaTeX.C (updateBibtexDependencies): comment out unneeded
13049         variable
13050
13051         * Bullet.C (bulletSize):
13052         (bulletEntry): do not use short ints as parameters
13053
13054         * BufferView2.C (insertLyXFile): change a char to an int.
13055
13056         * WorkArea.C (WorkArea): remove unneeded floats in computation
13057
13058 2001-10-01  Dekel Tsur  <dekelts@tau.ac.il>
13059
13060         * buffer.C (asciiParagraph): Treat '\\' as other chars.
13061
13062         * paragraph.C (asString): Do not ignore newline/hfill chars when
13063         copying to the clipboard.
13064
13065 2001-09-29  Dekel Tsur  <dekelts@tau.ac.il>
13066
13067         * paragraph_pimpl.C (simpleTeXSpecialChars): Call to textrow.start
13068         after a multi-line inset.
13069
13070 2001-09-28  Dekel Tsur  <dekelts@tau.ac.il>
13071
13072         * paragraph.C (validate): Set NeedLyXFootnoteCode
13073
13074 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
13075
13076         * lyxfont.C (LyXSizeNames): changed increase-error to increase
13077         and decrease-error to decrease.
13078
13079 2001-09-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13080
13081         * text2.C (deleteEmptyParagraphMechanism): reformat a bit to make
13082         it more readable (should be equivalent)
13083
13084 2001-09-27  Adrien Rebollo  <adrien.rebollo@gmx.fr>
13085
13086         * paragraph_pimpl.C (simpleTeXSpecialChars): handle latin9 too.
13087
13088 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13089
13090         * text2.C (fixCursorAfterDelete): new method. Fixes the parameters
13091         of a cursor (row, etc.) after a character has been deleted
13092         (deleteEmptyParagraphMechanism): call the method above on _all_
13093         cursors held by the LyXText when a double space has been
13094         detected/deleted.
13095
13096 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
13097
13098         * BufferView_pimpl.C (buffer): call WorkArea::show to pop-up the
13099         pixmap.
13100         (resizeCurrentBuff): remove code to destroy the old splash dialog.
13101
13102         * WorkArea.[Ch]: add the "LyX" pixmap and version string to the
13103         background. Use greyOut() and the new show() methods to toggle between
13104         the foreground and background. Add code to remove the splash after
13105         its initial showing.
13106
13107         * lyx_gui.C: Remove dependency on frontends/Dialogs.h.
13108         (create_forms): no longer call Dialogs::showSplash.
13109
13110 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13111
13112         * .cvsignore: add version_info.h
13113
13114 2001-09-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13115
13116         * version_info.h.in: new file
13117
13118         * Makefile.am: add version_info.h.in
13119
13120         * lyx_main.C (commandLineVersionInfo): use version_info defined in
13121         version_info.h instead of VERSION_INFO
13122
13123 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
13124
13125         * text.C (selectNextWordToSpellcheck): reverted change to if-block.
13126         The ERT inset now returns string().
13127
13128 2001-09-21  Angus Leeming  <a.leeming@ic.ac.uk>
13129
13130         * lyxtext.h, text.C (selectNextWord): renamed as
13131         selectNextWordToSpellcheck.
13132
13133         * text.C (selectNextWordToSpellcheck): Modified to not select
13134         words inside an ERT inset.
13135
13136 2001-09-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13137
13138         * lyx_cb.C (MenuLayoutSave): change a bit the question
13139
13140         * sp_base.h: include <sys/types.h>
13141
13142 2001-09-18  Angus Leeming  <a.leeming@ic.ac.uk>
13143
13144         * LColor.[Ch]: added graphicsbg to color enum and to ColorEntry.
13145
13146 2001-09-20  Michael Schmitt  <Michael.Schmitt@teststep.org>
13147
13148         * several files: fix typos in user-visible strings
13149
13150 2001-09-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13151
13152         * text2.C (pasteSelection): do not set the selection, since it
13153         will be cleared later. Actually, the intent was to fix the way the
13154         selection was set, but I figured rmoving the code was just as good.
13155
13156 2001-09-19  Dekel Tsur  <dekelts@tau.ac.il>
13157
13158         * FontLoader.C (available): Check if font is available without
13159         loading the font.
13160
13161 2001-09-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
13162
13163         * lyxrc.[Ch]: added auto_reset_options variable and associated code.
13164
13165 2001-09-13  Angus Leeming  <a.leeming@ic.ac.uk>
13166
13167         * lyxrc.[Ch]: added display_graphics variable and associated code.
13168
13169 2001-09-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13170
13171         * bufferparams.C (hasClassDefaults): new method. Returns true if
13172         the buffer parameters correspond to known class defaults
13173
13174 2001-09-17  Angus Leeming  <a.leeming@ic.ac.uk>
13175
13176         * XFormsView.C (show): set minimum size to the main window.
13177
13178 2001-09-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13179
13180         * text2.C (copySelection):
13181         (cutSelection):
13182         * lyxfind.C (LyXReplace):
13183         * BufferView_pimpl.C (Dispatch): pass the correct flag to
13184         LyXText::selectionAsString.
13185
13186         * paragraph.C (asString): add "label" argument to the second form
13187
13188         * text2.C (selectionAsString): add "label" argument and pass it to
13189         Paragraph::asString.
13190
13191 2001-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13192
13193         * lyx_main.C (commandLineHelp): remove version information
13194
13195 2001-09-08  Rob Lahaye  <lahaye@users.sourceforge.net>
13196
13197         * lyx_main.C: add -version commandline option
13198
13199 2001-09-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13200
13201         * paragraph.h: make the optional constructor arg required instead.
13202         some modifications to other files because of this.
13203
13204         * minibuffer.C (C_MiniBuffer_peek_event): make it static
13205
13206         * lyxserver.C (C_LyXComm_callback): make it static
13207
13208         * lyx_main.C (error_handler): make it static
13209
13210         * lyx_gui.C (LyX_XErrHandler): make it static
13211
13212         * XFormsView.C (C_XFormsView_atCloseMainFormCB): make it static
13213
13214         * WorkArea.C: make the extern "C" methods static.
13215
13216         * Makefile.am (lyx_LDADD): simplify
13217
13218 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
13219
13220         * commandtags.h: removed redundant LFUNs, LFUN_HELP_COPYRIGHT,
13221         LFUN_HELP_CREDITS, LFUN_HELP_VERSION.
13222
13223         * LyXAction.C (init):
13224         * lyxfunc.C (dispatch): associated code removal.
13225
13226 2001-09-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13227
13228         * lyxfont.h (isSymbolFont): shut off warning
13229
13230         * text.C (setHeightOfRow):
13231         (getVisibleRow): fix crash with empty paragraphs which have a
13232         bottom line
13233
13234 2001-09-07  Rob Lahaye  <lahaye@users.sourceforge.net>
13235
13236         * lyxrc.[Ch]: added dialogs_iconify_with_main variable and associated
13237         code.
13238
13239 2001-09-04  José Matos  <jamatos@fep.up.pt>
13240         * buffer.C
13241         * buffer.h
13242         * tabular.C (docbook): rename docBook method to docbook.
13243
13244 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
13245
13246         * Makefile.am: add dependencies to main.o.
13247
13248 2001-09-03  Dekel Tsur  <dekelts@tau.ac.il>
13249
13250         * FontLoader.C (available): Return false if !lyxrc.use_gui
13251
13252 2001-09-03  Michael Schmitt <schmitt@itm.mu-luebeck.de>
13253
13254         * FontInfo.C (query):
13255         * converter.C (view):
13256         * importer.C (Import):
13257         * exporter.C (Export): Can not -> cannot.
13258
13259 2001-09-02  John Levon  <moz@compsoc.man.ac.uk>
13260
13261         * BufferView_pimpl.C: allow to create index inset even if
13262           string is empty
13263
13264 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
13265
13266         * buffer.C (getLists): replace boost::tie code with an explicit pair
13267         as boost::tie can break some compilers.
13268
13269         * iterators.h: Added a std:: declaration to the return type of
13270         ParIterator::size.
13271
13272 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
13273
13274         * lyxrc.C: add help for view_dvi_paper_option, default to safe
13275           case.
13276
13277 2001-09-02  Dekel Tsur  <dekelts@tau.ac.il>
13278
13279         * iterators.[Ch]: New files. Provide paragraph iterators.
13280
13281         * buffer.C (changeLanguage): Use paragraph iterators.
13282         (isMultiLingual): ditto
13283
13284         * BufferView2.C (ChangeInsets): Use paragraph iterators.
13285
13286 2001-09-01  Dekel Tsur  <dekelts@tau.ac.il>
13287
13288         * FontLoader.C: Support for cmr font.
13289
13290 2001-08-31  Dekel Tsur  <dekelts@tau.ac.il>
13291
13292         * FontLoader.C (getFontinfo): Handle latex symbol fonts.
13293         (available): New method.
13294
13295         * FontInfo.C (getFontname): Use scalable fonts even when
13296         lyxrc.use_scalable_fonts is false, if no non-scalable fonts was
13297         found.
13298
13299 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
13300
13301         * converter.C (Formats::view): reverted! Incorrect fix.
13302
13303 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
13304
13305         * converter.C (Formats::view): only output the -paper option
13306         if the dvi viewer is xdvi, thereby fixing bug #233429.
13307
13308 2001-08-23  Herbert Voss  <voss@perce>
13309
13310         * BufferView_pimpl.C: small fix for LFUN_INSERT_BIBTEX
13311
13312 2001-08-20  Dekel Tsur  <dekelts@tau.ac.il>
13313
13314         * Spacing.h (Spacing): Set space to Default on in the default
13315         constructor.
13316
13317 2001-08-19  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13318
13319         * vc-backend.h (RCS::versionString): add RCS to version
13320         (CVS::versionString): add CVS to version
13321
13322         * vc-backend.C (scanMaster): do not add CVS to version.
13323         (scanMaster): do not add RCS to version
13324
13325         * lyxvc.C (versionString): new method
13326
13327         * lyxfunc.C (initMiniBuffer): use LyXVC::versionString
13328
13329 2001-08-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13330
13331         * Spacing.C (set): initialize fval
13332
13333 2001-08-15  Dekel Tsur  <dekelts@tau.ac.il>
13334
13335         * lyxlex_pimpl.C (next): Treat \ as normal char if not followed by
13336         " or \.
13337
13338 2001-08-16  Juergen Vigna  <jug@sad.it>
13339
13340         * lyxfunc.C (dispatch): implemented the new FINISHED states.
13341
13342 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
13343
13344         * BufferView_pimpl.C:
13345         * figureForm.C:
13346         * lyxtext.h:
13347         * text2.C: setParagraph takes linespacing now
13348
13349 2001-08-15  John Levon  <moz@compsoc.man.ac.uk>
13350
13351         * LyxAction.C: add internal LFUN_CITATION_INSERT
13352
13353         * LyXView.C: actually apply fix
13354
13355         * bufferlist.C: fix open non-existent file
13356
13357         * lyxfind.C: fix indentation
13358
13359         * lyxfunc.C: remove unneeded assert, fix typo
13360
13361 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
13362
13363         * MenuBackend.C: use "Floatname List"
13364
13365 2001-08-14  Dekel Tsur  <dekelts@tau.ac.il>
13366
13367         * buffer.C (parseSingleLyXformat2Token): Do not generate errors
13368         when converting LaTeX layout to insetERT.
13369         Generate a non-collapsed float when reading old float
13370
13371 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
13372
13373         * BufferView2.C (showLockedInsetCursor): Use normal cursor shape in
13374         ERT insets.
13375
13376 2001-08-13  Juergen Vigna  <jug@sad.it>
13377
13378         * text.C (fill): return 0 instead of 20 as this seems to be the more
13379         correct value.
13380
13381 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
13382
13383         * encoding.C (TransformChar): Use lyxrc.font_norm_type instead of
13384         lyxrc.font_norm.
13385
13386 2001-08-13  Juergen Vigna  <jug@sad.it>
13387
13388         * lyxfind.C (LyXReplace): fixed not single-replacing characters with
13389         casesensitive off.
13390         (SearchBackward): comment out the unlocking of the inset_owner this
13391         should not be needed!
13392
13393 2001-08-11  Dekel Tsur  <dekelts@tau.ac.il>
13394
13395         * Many files: Remove inherit_language, and add latex_language
13396
13397         * BufferView2.C (showLockedInsetCursor): Fix cursor shape in
13398         collapsible insets.
13399
13400 2001-08-10  Juergen Vigna  <jug@sad.it>
13401
13402         * text.C (prepareToPrint): fixed hfill-width in draw!
13403
13404         * BufferView2.C (selectLastWord): save the selection cursor as this
13405         now is cleared in the function LyXText::clearSelection!
13406
13407 2001-08-08  Juergen Vigna  <jug@sad.it>
13408
13409         * BufferView_pimpl.C (Dispatch): use a non-cut-buffer cut on DELTE
13410         BACKSPACE type functions.
13411
13412         * CutAndPaste.C (cutSelection): added a bool so that the stuff actually
13413         is only cutted from the document but not put in the cut-buffer, where
13414         still the old stuff should be.
13415
13416         * text2.C (cutSelection): added bool to pass to CutAndPaste::cutSelection.
13417
13418         * BufferView2.C (cut): added a bool to pass to LyXText::cutSelection.
13419
13420         * tabular.C (SetWidthOfCell): fixed special case where the width
13421         was not updated!
13422         (LeftLine): handle '|' in align_special.
13423         (RightLine): ditto
13424         (LeftAlreadyDrawed): ditto
13425         (SetWidthOfCell): ditto
13426
13427 2001-08-07  Juergen Vigna  <jug@sad.it>
13428
13429         * lyx_main.C (readUIFile): fixed some forgotten lowercase!
13430
13431 2001-08-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13432
13433         * lyxlex_pimpl.[Ch]: converto to lowercase funcs
13434         * lyxlex.[hC]: ditto
13435
13436 2001-08-06  Juergen Vigna  <jug@sad.it>
13437
13438         * text.C (getVisibleRow): fix up row clearing a bit.
13439
13440 2001-08-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13441
13442         * minibuffer.C: make sure the X server sees the changes in the input.
13443
13444 2001-08-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13445
13446         * paragraph.C (getFont): split into...
13447         (getLabelFont): this
13448         (getLayoutFont): and this
13449         * paragraph_pimpl.C (realizeFont): calling this
13450
13451         * text2.C (getFont): split into...
13452         (getLayoutFont): this
13453         (getLabelFont): and this
13454         (realizeFont): all three calling this
13455
13456         * lyxfont.h: remove all NO_LATEX macros and code... adjust all
13457         files where used.
13458
13459 2001-08-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13460
13461         * lyxfunc.C (getStatus): add checkbox support for LFUN_APPENDIX
13462
13463 2001-08-02  Kayvan A. Sylvan  <kayvan@sylvan.com>
13464
13465         * BufferView_pimpl.C (smartQuote): Added code to exempt pass_thru
13466         layouts from the Quote inset insertion.
13467
13468 2001-08-03  Juergen Vigna  <jug@sad.it>
13469
13470         * BufferView_pimpl.C (update): do the fitCursor only at the end!
13471
13472         * screen.C (drawFromTo): don't call fitcursor here and do the loop
13473         only if status not is already CHANGED_IN_DRAW (second level).
13474
13475         * text.C (draw): don't set the need_break_row when inside an
13476         InsetText LyXText.
13477
13478 2001-08-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13479
13480         * buffer.C (parseSingleLyXformat2Token): handle more latex
13481         conversion cases.
13482
13483         * bufferview_funcs.[hC]: change function names to
13484         begin with small char, adjust other files.
13485
13486 2001-08-02  André Pönitz <poenitz@gmx.net>
13487
13488         * lyxfunc.C:
13489         BufferView_pimpl.C: remove broken special code for math-greek
13490
13491 2001-08-02  Juergen Vigna  <jug@sad.it>
13492
13493         * BufferView_pimpl.C (update): redone this function so that we
13494         update the text again if there was a CHANGE_IN_DRAW.
13495
13496         * screen.C (cursorToggle): removed LyXText parameter and recoded.
13497         (drawFromTo): added a new internal bool which is used by draw() and
13498         redraw() function.
13499         (general): some cursor drawing problems fixed.
13500
13501 2001-08-01  Juergen Vigna  <jug@sad.it>
13502
13503         * lyxfind.C (LyXFind): fixed
13504         (SearchForward): ditto
13505         (SearchBackward): ditto
13506
13507         * BufferView_pimpl.C (workAreaMotionNotify): hopefully fixed the
13508         spurius drawing of the cursor in the main area.
13509
13510         * text2.C (status): small fix which could lead to a segfault!
13511         (clearSelection): remove unneeded BufferView param.
13512
13513 2001-08-01  André Pönitz <poenitz@gmx.net>
13514
13515         * lyxfunc.C: small change due to changed mathed interface
13516
13517 2001-08-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13518
13519         * bufferlist.C (loadLyXFile): add .lyx to file name if necessary
13520
13521 2001-08-01  John Levon  <moz@compsoc.man.ac.uk>
13522
13523         * lyxfunc.c: fail gracefully if file doesn't exist
13524
13525         * LyXSendto.C:
13526         * buffer.C:
13527         * lyxfunc.C:
13528         * BufferView_pimpl.C: IsDirWriteable() proto changed
13529
13530         * LyXView.C: fix updateWindowTitle() to store the last title
13531
13532 2001-07-31  Juergen Vigna  <jug@sad.it>
13533
13534         * text.C (setHeightOfRow): fixed setting of ascent/descent based on
13535         the font (wrong since using of Paragraph::highestFontInRange).
13536
13537         * paragraph.C (highestFontInRange): added a default_size parameter.
13538
13539         * text.C (getVisibleRow): minor clear row changes (still not perfect).
13540         (setHeightOfRow): reformat
13541
13542 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13543
13544         * converter.[hC] + affected files: move to (inital-char)lowercase
13545         function names.
13546
13547         * ParagraphParameters.C (ParagraphParameters): remove commented code
13548
13549         * PainterBase.[Ch]: remove commented code
13550
13551         * LaTeXFeatures.h: add "bool floats" for float.sty
13552
13553         * LaTeXFeatures.C (LaTeXFeatures): init floats
13554         (require): handle float
13555         (getPackages): do it with floats
13556
13557 2001-07-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13558
13559         * BufferView_pimpl.C (Dispatch): improve handling of
13560         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE
13561
13562         * commandtags.h: #include lyxfont.h here temporarily to avoid
13563         keybinding bug.
13564
13565         * bufferlist.h: include LString.h here.
13566
13567 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13568
13569         * text2.C (getStringToIndex): new method.
13570
13571 2001-07-29  Asger Alstrup Nielsen  <alstrup@alstrup>
13572
13573         * *: Reduced header file dependencies all over.
13574
13575 2001-07-30  Baruch Even  <baruch@lyx.org>
13576
13577         * buffer.C (readInset): Stop auto-converting InsetFig to InsetGraphics.
13578
13579 2001-07-29  Baruch Even  <baruch@lyx.org>
13580
13581         * buffer.C (readInset): Changed GRAPHICS to Graphics.
13582
13583 2001-07-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13584
13585         * ParameterStruct.h (endif): add a default constructor to make
13586         sure that all variables is initialized.
13587
13588         * ParagraphParameters.C (ParagraphParameters): adjust
13589
13590 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13591
13592         * BufferView_pimpl.C (Dispatch): use WHOLE_WORD selection for
13593         index; also, check that there is something to index, and that it
13594         does not span over several paragraphs.
13595         (doubleClick): use WHOLE_WORD_STRICT for double click.
13596
13597         * text.C (getWord): handle new WHOLE_WORD_STRICT word_location value.
13598
13599         * text2.C (toggleFree): do selection with WHOLE_WORD_STRICT
13600         scheme.
13601
13602 2001-07-26  Baruch Even  <baruch@lyx.org>
13603
13604         * buffer.C (readInset): Changed to call up InsetGraphics when reading
13605         an InsetFig figure, backwards compatible reading of old figure code.
13606
13607 2001-07-27  Juergen Vigna  <jug@sad.it>
13608
13609         * text2.C: font.realize function adaption.
13610
13611         * text.C (draw): add a warnings lyxerr text if needed.
13612
13613         * layout.C: font.realize function adaption.
13614
13615         * language.C: add inherit_language and implement it's handlings
13616
13617         * bufferview_funcs.C (StyleReset): remove language parameter from
13618         font creation (should be language_inherit now).
13619
13620         * bufferparams.C (writeFile): handle ignore_language.
13621
13622         * paragraph.C (getFontSettings): the language has to be resolved
13623         otherwise we have problems in LyXFont!
13624
13625         * lyxfont.C (lyxWriteChanges): added document_language parameter
13626         (update): removed unneeded language parameter
13627
13628         * paragraph.C (validate): fixed wrong output of color-package when
13629         using interface colors for certain fonts in certain environments,
13630         which should not seen as that on the final output.
13631
13632 2001-07-26  John Levon  <moz@compsoc.man.ac.uk>
13633
13634         * BufferView_pimpl.C:
13635         * Thesaurus.h:
13636         * Thesaurus.C:
13637         * Makefile.am:
13638         * commandtags.h:
13639         * LyXAction.C: add thesaurus support
13640
13641         * lyxfind.h:
13642         * lyxfind.C: add "once" parameter, for thesaurus, to not
13643           move to the next match
13644
13645 2001-07-26  Juergen Vigna  <jug@sad.it>
13646
13647         * lyxfont.C (realize): honor ignore_language too!
13648         (resolved): ditto.
13649
13650         * paragraph.C (TeXOnePar): handle ignore language right (hopefully).
13651
13652         * text.C (draw): one place more for ignore_language to not draw
13653         itself!
13654
13655 2001-07-25  Angus Leeming  <a.leeming@ic.ac.uk>
13656
13657         * LaTeXFeatures.C (getPackages): clean-up a little of the natbib code.
13658
13659 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13660
13661         * buffer.C (parseSingleLyXformat2Token): a more general fix for
13662         the minipage conversion problem.
13663
13664 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13665
13666         * buffer.C (parseSingleLyXformat2Token): check minipage if we
13667         insert an inset.
13668
13669 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13670
13671         * BufferView.h: don't forward declare WorkArea
13672
13673         * BufferView.C: don't include WorkArea.h
13674
13675 2001-07-25  André Pönitz <poenitz@gmx.net>
13676
13677         * commandtags.h:
13678         * LyXAction.C:
13679         * lyxfunc.C:  new LFUN 'math-space'
13680
13681         * BufferView.[Ch]: remove unneeded reference to 'WorkArea'
13682
13683 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13684
13685         * text2.C (toggleInset): call open/close
13686
13687 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13688
13689         * lyxfunc.C (dispatch): add debug for the disabled case
13690
13691         * font.C (buttonText): make similar to rectText
13692
13693         * buffer.C (readInset): comment out parsing of insetlist and
13694         insttheorem
13695
13696         * PainterBase.C (rectText): small correction
13697
13698         * BufferView_pimpl.C: comment out insettheorem and insetlist
13699         * LyXAction.C: ditto
13700         * commandtags.h: ditto
13701
13702 2001-07-24  Juergen Vigna  <jug@sad.it>
13703
13704         * text.C (draw): honor the ignore_language.
13705
13706         * lyxfont.C (LyXFont): set language to ignore_language in FONT_INIT1.
13707
13708 2001-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13709
13710         * lyxfunc.C (getStatus): BREAKLINE does _not_ insert a special
13711         char inset.
13712
13713 2001-07-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13714
13715         * lyxtext.h: remove unused (and unimplemented) methods
13716
13717 2001-07-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13718
13719         * text.C (getVisibleRow): honor background color
13720
13721         * PainterBase.h:
13722         * Painter.h: remove default color argument for fillRectangle
13723
13724         * text.C (backgroundColor): new method
13725
13726 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13727
13728         * text.C (getVisibleRow): adjust
13729
13730         * font.[Ch] (rectText): new method, metrics
13731         (buttonText): new method, metrics
13732
13733         * PainterBase.[hC]: make rectText and buttonText always draw and take
13734         fewer paramteres.
13735
13736 2001-07-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13737
13738         * ToolbarDefaults.C (read):
13739         * MenuBackend.C (read): allow escaping in all strings
13740
13741         * BufferView_pimpl.C (insertAndEditInset): new method.
13742         (Dispatch): use insertAndEditInset whenever appropriate.
13743
13744         * BufferView_pimpl.C (insertNote): removed
13745
13746         * BufferView_pimpl.C (smartQuote): new method, moved from
13747         BufferView; if an insetquote cannot be inserted, insert a '"'
13748         character instead.
13749
13750         * BufferView2.C: remove insertCorrectQuote();
13751
13752         * lyxfunc.C (getStatus): Add support for all remaingin
13753         inset-insert lfuns.
13754
13755         * trans_mgr.C (insertVerbatim): do not treat '"' specially.
13756
13757         * lyxrc.C (read): in RC_BIND, allow escaped sequences in the
13758         command (necessary to pass " as parameter of self-insert.
13759
13760         * text.C (selectWordWhenUnderCursor):
13761         (selectWord): add word_location parameter
13762         (selectWordWhenUnderCursor): same + remove special code for word
13763         boundary.
13764         (selectNextWord): use kind() to guess type of insetspecialchar,
13765         not latex().
13766
13767         * buffer.C (insertStringAsLines): new method, extracted from LyXText.
13768         (insertErtContents): create ert insets as collapsed.
13769         (readInset): better compatibility code for Info inset.
13770
13771 2001-07-20  Juergen Vigna  <jug@sad.it>
13772
13773         * lyxfunc.C (dispatch): use always LyXFind now!
13774
13775         * text2.C (init): add a reinit flag so that the LyXText can be
13776         reinited instead of deleted and reallocated (used in InsetText).
13777
13778         * BufferView_pimpl.C: use the new Inset::edit(BV, bool) where needed.
13779
13780         * text.C: ditto
13781
13782         * text2.C: ditto
13783
13784 2001-07-18  Juergen Vigna  <jug@sad.it>
13785
13786         * text.C (selectNextWord): handle insets inside inset by calling
13787         always the bv->text functions so that we can go up the_locking_inset!
13788
13789         * BufferView_pimpl.C (show/hideCursor): fixed cursor showing up
13790         in strange locations when inside an inset!
13791
13792         * lyxfind.[Ch]: give all functions a LyXText * parameter and implement
13793         handling to include insets.
13794
13795         * lyxfunc.C (dispatch): changes to calls SearchBackward/Forward.
13796
13797 2001-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13798
13799         * LyXAction.C (init):
13800         * commandtags.h:
13801         * BufferView_pimpl.C (Dispatch): change HYPHENATION_BREAK to
13802         LIGATURE_BREAK, since the name is so stupid.
13803
13804 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
13805
13806         * buffer.C (readInset): enable reading of new InsetNotes as well as old
13807         InsetInfos.
13808
13809         * FontLoader.C: remove FORMS_H_LOCATION cruft.
13810
13811         * sp_form.[Ch]: remove.
13812
13813         * src/LColor.[Ch]: remove noteframe. Change note to "yellow".
13814
13815         * src/BufferView_pimpl.C (insertNote): use InsetNote in place of
13816         InsetInfo.
13817
13818         * src/buffer.C (readInset): ditto.
13819
13820 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13821
13822         * BufferView_pimpl.C (specialChar): new method. Obsoletes
13823         menuSeparator(), endOfSentenceDot(), ldots() and
13824         hyphenationPoint(), which are therefore removed.
13825         (Dispatch): handle LFUN_HYPHENATION_BREAK.
13826
13827         * LyXAction.C (init):
13828         * commandtags.h: add LFUN_HYPHENATION_BREAK.
13829
13830         * paragraph.C (getWord): removed.
13831
13832         * BufferView_pimpl.C (Dispatch): use last word or selection for
13833         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE.
13834
13835         * lyx_main.C (queryUserLyXDir): do not ask before creating
13836         user_dir, except if it has been named explicitely.
13837
13838 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
13839
13840         * BufferView_pimpl.C (updateScrollbar): Fix crash when reading in
13841         a document of zero size.
13842
13843 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
13844
13845         * LaTeXFeatures.[Ch]: add variable "bool natbib" and set it
13846         approriately in the c-tor and in require().
13847         (getPackages): output the appropriate LaTeX for natbib support.
13848
13849         * buffer.C (parseSingleLyXformat2Token): set the new bufferparams
13850         variables "use_natbib" and "use_numerical_citations" when reading the
13851         LyX file.
13852         (readInset): read the various natbib cite commands.
13853         (validate): white-space change.
13854
13855         * bufferparams.[Ch]: new variables "bool use_natbib" and
13856         "bool use_numerical_citations".
13857         (writeFile): output them in the LyX file.
13858
13859 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
13860
13861         * lyxfunc.C (getStatus): add support for all the inset insertion
13862         commands.
13863
13864         * text2.C (insertInset):
13865         * paragraph.C (insetAllowed):
13866         * BufferView_pimpl.C (insertInset): update to take in account the
13867         renaming of insertInsetAllowed
13868
13869         * lyxfunc.C (getStatus): add support for LFUN_INSET_TOGGLE.
13870
13871         * text2.C (getInset): new method. returns inset at cursor position.
13872
13873         * BufferView_pimpl.C (Dispatch): changes because of this.
13874
13875         * LyXAction.C (init): rename open-stuff to inset-toggle.
13876
13877         * commandtags.h: rename LFUN_OPENSTUFF to LFUN_INSET_TOGGLE.
13878
13879         * text2.C (toggleInset): renamed from openStuff; use
13880         Inset::open().
13881
13882 2001-07-13  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
13883
13884         * lyxrc.C (set_font_norm_type): recognise ISO_8859_15.
13885
13886         * lyxrc.h: added ISO_8859_15 to enum FontEncoding.
13887
13888 2001-07-18  Dekel Tsur  <dekelts@tau.ac.il>
13889
13890         * buffer.C (readLyXformat2): Add filename to the error dialog
13891
13892 2001-07-18  Juergen Vigna  <jug@sad.it>
13893
13894         * tabular.C (GetCellNumber): put an assert here instead of the check!
13895
13896 2001-07-17  Juergen Vigna  <jug@sad.it>
13897
13898         * BufferView_pimpl.C (toggleSelection): adapted too.
13899
13900         * text.C (selectNextWord): adapted for use with insets.
13901         (selectSelectedWord): ditto
13902
13903 2001-07-17  Juergen Vigna  <jug@sad.it>
13904
13905         * sp_spell.C (PSpell): fix initialitation order.
13906
13907 2001-07-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13908
13909         * paragraph.C: spacing
13910
13911 2001-07-17  Edwin Leuven  <leuven@fee.uva.nl>
13912
13913         * sp_spell.C: repair language selection for pspell
13914
13915 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13916
13917         * lyxfunc.h: change more methods to begin with lower char.
13918
13919 2001-07-16  Dekel Tsur  <dekelts@tau.ac.il>
13920
13921         * buffer.C (parseSingleLyXformat2Token): Generate error insets
13922         for unknown layouts.
13923
13924 2001-07-13  Dekel Tsur  <dekelts@tau.ac.il>
13925
13926         * buffer.C (readLyXformat2): Generate an error dialog if there are
13927         unknown layouts.
13928
13929 2001-07-16  Juergen Vigna  <jug@sad.it>
13930
13931         * sp_spell.C: always compile ISpell part.
13932
13933         * lyxrc.C: added use_pspell entry and it's handling.
13934
13935 2001-07-13  Juergen Vigna  <jug@sad.it>
13936
13937         * sp_spell.C: removed double includes.
13938
13939 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
13940
13941         Consistent use of Lsstream.h:
13942         * Lsstream.h: added using std::stringstream for consistencies sake.
13943
13944         * buffer.C: removed using std::stringstream
13945
13946         * lyxfont.C (stateText):
13947         * paragraph.C (asString):
13948         * text.C (selectNextWord, selectSelectedWord):
13949         * text2.C (setCounter):
13950         * vspace.C (asString, asLatexString):
13951         std::ostringstream -> ostringstream.
13952
13953 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
13954
13955         * LyXAction.C: add LFUN_HELP_ABOUTLYX
13956         * commandtags.h: add LFUN_HELP_ABOUTLYX
13957         * lyxfunc.C: add about lyx remove credits/copyright/version stuff
13958
13959 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
13960
13961         * BufferView_pimpl.C: sigchldchecker instead of sigchldhandeler in
13962         cursorToggle()
13963         * lyx_gui_misc.C: remove spellchecker
13964         * lyxfunc.C: showSpellchecker
13965         * sp_base.h: added
13966         * sp_ispell.h: added
13967         * sp_pspell.h: added
13968         * sp_spell.C: added
13969         * sp_form.[Ch]: removed
13970         * spellchecker.[Ch]: removed
13971
13972 2001-07-12  Kayvan A. Sylvan  <kayvan@sylvan.com>
13973
13974         * paragraph_pimpl.C (simpleTeXBlanks): Simply return if pass_thru
13975         is set.
13976         (simpleTeXSpecialChars): Simply print the input character without
13977         any special translation if pass_thru is set.
13978
13979         * layout.h: Added bool pass_thru to layout class for being able to
13980         implement pass through of a paragraph for Literate Programming.
13981
13982         * layout.C: add LT_PASS_THRU to LayoutTags enum.
13983         * layout.C (LyXLayout): set pass_thru to flase in constructor.
13984         * layout.C (Read): add "passthru" to list of layout tags and add
13985         code to set the pass_thru boolean when it is read.
13986
13987 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13988
13989         * trans_decl.h: remove allowed from KmodInfo
13990
13991         * trans.[Ch] (AddDeakkey): change prototype to not have allowd.
13992         remove allowed code
13993         (Load): adjust
13994
13995         * paragraph_pimpl.C (erase): use boost::prior
13996
13997         * Painter.C (text): use data() instead of c_str() when length is
13998         also provided.
13999         * WorkArea.C (putClipboard): ditto
14000         * font.h (width): ditto
14001
14002         * BufferView2.C: use it-> instead of (*it). for iterators
14003         * texrow.C: ditto
14004         * paragraph_pimpl.C: ditto
14005         * paragraph.C: ditto
14006         * minibuffer.C: ditto
14007         * language.C: ditto
14008         * kbmap.C: ditto
14009         * encoding.C: ditto
14010         * counters.C: ditto
14011         * converter.C: ditto
14012         * chset.C: ditto
14013         * Variables.C: ditto
14014         * TextCache.C: ditto
14015         * MenuBackend.C: ditto
14016         * LyXAction.C: ditto
14017         * LColor.C: ditto
14018         * FloatList.C: ditto
14019         * DepTable.C: ditto
14020         * ColorHandler.C (LyXColorHandler): ditto
14021
14022 2001-07-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14023
14024         * BufferView_pimpl.C (Dispatch): handle LFUN_OPENSTUFF.
14025
14026         * text2.C (openStuff): reintroduce this method (which had been
14027         nuked in NEW_INSETS frenzy).
14028
14029         * lyxfunc.C (Dispatch): when an action has not been handled, use
14030         its name in the error message, not its number.
14031
14032         * paragraph.C (inInset): change method name to begin with lowercase.
14033
14034         * undo_funcs.C:
14035         * text2.C: updates because of this.
14036
14037 2001-07-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14038
14039         * ToolbarDefaults.C (add): add spaces in error message
14040
14041 2001-07-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14042
14043         * buffer.C (readLyXformat2): initialize the ert comp. variables.
14044         (readLyXformat2): rename return_par to first_par, use lyxlex's
14045         pushToken and remove the manual push handling.
14046         (parseSingleLyXformat2Token): add another ert comp. variable:
14047         in_tabular, rename return_par to first_par. handle newlines better
14048
14049 2001-07-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14050
14051         * kbsequence.C (getiso): redirect debug info to Debug::KBMAP.
14052
14053 2001-07-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14054
14055         * text2.C (getParFromID): removed
14056
14057         * buffer.C (getParFromID): new method moved form lyxtext.
14058         * BufferView2.C (insertErrors): adjust
14059         (setCursorFromRow): adjust
14060         * BufferView_pimpl.C (restorePosition): adjust
14061         * lyxfunc.C (Dispatch): adjust
14062         * undo_funcs.C (textUndo): adjust
14063         (textRedo): adjust
14064         (textHandleUndo): adjust
14065         (textHandleUndo): adjust
14066
14067 2001-07-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14068
14069         * buffer.C: up' the LYX_FORMAT
14070
14071         * lyxfont.h: turn NO_LATEX on as default
14072
14073         * buffer.C (insertErtContents): new methods of tex style compability.
14074         (parseSingleLyXformat2Token): use it several places.
14075         * tabular.C (OldFormatRead): and here
14076
14077 2001-07-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14078
14079         * text2.C: remove some commented code.
14080         reindent file.
14081
14082         * trans_mgr.[Ch]: simplify normalkey to only take a char as arg.
14083         * trans.C: changes because of the above.
14084
14085 2001-07-07  Dekel Tsur  <dekelts@tau.ac.il>
14086
14087         * text2.C (setCounter): Fix counters bug with bibliography layout.
14088
14089 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14090
14091         * paragraph_pimpl.C (simpleTeXBlanks): don't go through owner_ for
14092         own member functions
14093         (simpleTeXSpecialChars): ditto
14094
14095 2001-07-06  Juergen Vigna  <jug@sad.it>
14096
14097         * a lot of files: changed the access to LyXText::status and the
14098         call of undo-functions.
14099
14100         * undo.[Ch]: added a inset_id to the undo informations.
14101
14102         * undo_funcs.[Ch]: added and moved here all undo functions.
14103
14104         * lyxtext.h: give the status enum a weight, made status_ a private
14105         variable and made accessor functions for it, removed the whole bunch
14106         of undo-functions as they are now in their own file, make some
14107         functions publically available. Added function ownerParagraph with
14108         int parameter.
14109
14110         * paragraph.[Ch]: added "bool same_ids" to the constructor,
14111         made InInset() a const function, added getParFromID() function.
14112
14113         * buffer.[Ch]: added const version for inset_iterator functions,
14114         added getInsetFromID() function.
14115
14116         * BufferView2.C, BufferView_pimpl.C, text.C, text2.C, lyxfunc.C:
14117         changed undo functions for new version.
14118
14119 2001-07-05  Juergen Vigna  <jug@sad.it>
14120
14121         * paragraph_pimpl.C (Pimpl): set id_ also here (this is because some
14122         unknow mechanism does not call the proper constructor but only this
14123         one also if I request the other!?
14124
14125 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14126
14127         * BufferView_pimpl.C (resizeCurrentBuffer): init the new LyXText
14128
14129         * text2.C (LyXText): use initialization lists.
14130
14131         * lyxtext.h (Selection): initialize set_ and mark_
14132         (init): remove method
14133
14134 2001-07-05  Dekel Tsur  <dekelts@tau.ac.il>
14135
14136         * LaTeX.C (scanLogFile): Parse rerun messages from latex packages.
14137
14138 2001-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14139
14140         * screen.[Ch]: change method names to begin with lowercase
14141
14142         * BufferView_pimpl.C (updateScrollbar): simplify further and
14143         hopefully make it a bit faster.
14144
14145 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14146
14147         * ColorHandler.C (LyXColorHandler): use GUIRunTime instead of
14148         calling directly xforms functions.
14149
14150         * Painter.C (Painter):
14151         * lyx_cb.C (MenuWrite):
14152         * FontInfo.C (query): use GUIRunTime::x11Display() instead of
14153         fl_display.
14154
14155         * lyx_gui.C: remove bogus guiruntime extern declaration.
14156
14157 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14158
14159         * text2.C (redoHeightOfParagraph): comment out stuff we don't need
14160         in NEW_INSETS
14161         (redoDrawingOfParagraph): ditto
14162         (redoParagraphs): ditto
14163         (cutSelection): don't create a object for CutAndPaste use the
14164         static method directly
14165         (pasteSelection): ditto
14166
14167         * bufferview_funcs.[Ch]: move ProhibitInput and AllowInput to
14168         LyXview (+ rename)
14169
14170 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14171
14172         * modifications to some other files because of this.
14173
14174         * Makefile.am (lyx_SOURCES): add XFormsView
14175
14176         * XFormsView.[Ch]: new files
14177
14178         * LyXView.[Ch]: make LyXView a base class for the gui handling for
14179         the main window. Move the gui dependent stuff to XFormsView
14180
14181 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14182
14183         * tabular.C (GetCellInset): update cur_cell also in the row/col
14184         version of this function.
14185
14186         * lyxfunc.C: no need to include figure_form.h here.
14187
14188         * FontLoader.h:
14189         * lyxfunc.h:
14190         * lyxscreen.h:
14191         * text2.C:
14192         * lyxvc.C: no need to include forms.h here.
14193
14194 2001-06-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14195
14196         * lyxrc.C (read): change debugging channel for RC_BIND to lyxrc.
14197
14198         * lyxfunc.C (Dispatch):
14199         * Spacing.C (set):
14200         * BufferView_pimpl.C (Dispatch): use .c_str() on istringstream
14201         constructor argument.
14202
14203 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14204
14205         * paragraph.C (Paragraph): dont't clear, and just set layout.
14206         (makeSameLayout): use params's copy contructor.
14207
14208         * ParagraphParameters.[Ch] (makeSame): delete method
14209
14210 2001-06-29  John Levon  <moz@compsoc.man.ac.uk>
14211
14212         * Variables.[Ch]: fix indentation, rename set to isSet
14213
14214 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14215
14216         * lyxfunc.C (Dispatch): fix typo
14217
14218 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14219
14220         * paragraph_pimpl.C: add std:: qualifier to lower_bound and
14221         upper_bound.
14222
14223         * bufferlist.C: include assert.h for emergencyWrite().
14224
14225 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
14226
14227         * lyx_main.C: if we can't even find a readable LYX_DIR directory,
14228           give up at last (bug #425202) !
14229
14230 2001-06-27  John Levon  <moz@compsoc.man.ac.uk>
14231
14232         * lyx_gui_misc.C:
14233         * sp_form.h:
14234         * sp_form.C:
14235         * spellchecker.h:
14236         * spellchecker.C: strip spellchecker options and bring up
14237           preferences tab instead
14238
14239 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14240
14241         * BufferView_pimpl.C (Dispatch): add .c_str() to the argument of
14242         the istringstream constructor
14243
14244 2001-06-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14245
14246         * paragraph.C (getLayout): fix return value
14247
14248         * paragraph.h: do not declare getLayout as inline.
14249
14250         * lyxtext.h: remove LyXText:: qualifier to changeRegionCase
14251
14252 2001-06-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14253
14254         * lyxcursor.h (operator<): new func
14255         (operator>): new func
14256         (operator>=): new func
14257         (operator<=): new func
14258
14259         * text.C (changeCase): use selection.start and selection.end
14260         (changeRegionCase): require from to be <= to. Require par to be a
14261         valid paragraph.
14262
14263         * LaTeXFeatures.C (getFloatDefinitions): std:: qualify ostream
14264
14265 2001-06-27  Juergen Vigna  <jug@sad.it>
14266
14267         * text.C (cursorLeftOneWord): changed to return the cursor and added
14268         overlay with BufferView * parameter which calls this one.
14269         (getWord): added
14270         (selectWord): use new getWord function.
14271         (changeCase): renamed from changeWordCase as and extended to work
14272         also on selections.
14273
14274         * lyxtext.h: added enum word_location
14275
14276         * BufferView_pimpl.C (Dispatch): change function changeWordCase to
14277         changeCase as this operates now also on selections.
14278
14279 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
14280
14281         * lyxfunc.C (getStatus): support LFUN_MATH_MUTATE
14282
14283         * many files: send debug output to Debug::INFO instead of
14284         Debug::ANY.
14285
14286         * converter.C (View):
14287         (Convert):
14288         (Move): send debug output to Debug::FILES instead of console.
14289
14290 2001-06-26  The LyX Project  <lyx@rose.home.sad.it>
14291
14292         * lyxfunc.C (getStatus): use func_status
14293
14294         * func_status.h: new header, describing the results of
14295         LyXFunc::getStatus;
14296
14297         * lyxfunc.C (getStatus): add support for LFUN_MATH_VALIGN and
14298         LFUN_MATH_HALIGN.
14299
14300 2001-06-25  The LyX Project  <jug@sad.it>
14301
14302         * buffer.C (sgmlOpenTag):
14303         (sgmlCloseTag):
14304         (SimpleDocBookOnePar):  disable the depth spaces, for the moment.
14305
14306 2001-06-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14307
14308         * text2.C: remove some dead code
14309
14310         * tabular.C (GetCellInset): store the last cell checked (gotten)
14311
14312         * tabular.h: add the helper for the speedup
14313
14314         * lyxtext.h: remove some dead code
14315
14316 2001-06-26  The LyX Project  <Asger>
14317
14318         * paragraph.C: Change export to LaTeX of alignment to
14319         \begin{center} and family for better roundtrip work with reLyX.
14320
14321         * Tune the math drawing a bit.
14322
14323 2001-06-25  The LyX Project  <Asger>
14324
14325         * LColor.C (LColor): New color for math background. New color
14326         for buttons.
14327
14328 2001-06-25  The LyX Project  <jug@sad.it>
14329
14330         * lyxfunc.C (MenuNew): remove extra check for .lyx file
14331
14332         * lyxfunc.C (Open):
14333         * bufferlist.C (newFile): do not restrict to files ending with
14334         .lyx
14335
14336         * BufferView_pimpl.C (MenuInsertLyXFile):
14337
14338 2001-06-24  The LyX Project  <jug@sad.it>
14339
14340         * lyxlex_pimpl.C (compare_tags): use compare_ascii_no_case instead
14341         of compare_no_case
14342
14343 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14344
14345         * lyxtext.h: rename most methods to begin with a small char.
14346         Lots of changes because of this.
14347
14348         * paragraph.C (Paragraph): do not call fitToSize
14349         (erase): call Pimpl::erase
14350         (insertChar): call Pimpl::insertChar
14351         (insertInset): call Pipl::insertInset
14352         (breakParagraph): do not call fitToSize
14353         (breakParagraphConservative): do not call fitToSize
14354         (fitToSize): remove method
14355
14356         * buffer.C (parseSingleLyXformat2Token): do not call fitToSize
14357
14358 2001-06-24  The LyX Project  <Asger>
14359
14360         * Fix Qt compilation^2
14361
14362 2001-06-24  The LyX Project  <jug@sad.it>
14363
14364         * paragraph.[Ch] (outerHook): new method. mostly equivalent to
14365         depthHook(getDepth()-1).
14366
14367         * paragraph.h:
14368         * ParagraphParameters.h:
14369         * ParameterStruct.h: change type of depth to unsigned int ==
14370         depth_type. Many adaptations to other files before of that.
14371
14372 2001-06-24  The LyX Project  <Asger>
14373
14374         * Fix Qt compilation.
14375
14376 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14377
14378         * paragraph.h: renamed several methods to begin with small letter.
14379         several changes to many parts of the code because of this.
14380
14381 2001-06-23  The LyX Project  <jug@sad.it>
14382
14383         * text2.C (InsertStringAsLines): renamed from InsertStringA;
14384         rewritten to discard all double spaces when KeepEmpty is off
14385         (InsertStringAsParagraphs): renamed from InsertStringB; rewritten
14386         to only handle newlines but not fiddle with spaces and friends.
14387
14388         * lyxfunc.C (MenuNew): when doing 'new from template', use
14389         template_path as default directory
14390
14391 2001-06-23  The LyX Project  <Asger>
14392
14393         * Clean-up of header file includes all over
14394         * paragraph.h: Move some of the stuff into paragraph_pimpl.h
14395
14396 2001-06-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14397
14398         * paragraph.h: renamed from lyxparagraph.h
14399
14400 2001-06-23  Asger  <lyx@violet.home.sad.it>
14401
14402         * Buffer.h: Removed Buffer::resize
14403         * BufferList.h: Removed BufferList::resize
14404         * LyXView.h: Added LyXView::resize. This way, we will only reflow
14405         the document lazily when we change the width, or the font settings.
14406
14407 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
14408
14409         * lyxfunc.C: silently ignore empty dispatches from the minibuffer
14410
14411 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
14412
14413         * buffer.h: remove out of date comment
14414
14415 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
14416
14417         * lyxscreen.h:
14418         * screen.C: fix "theoretical" GC leak
14419
14420 2001-06-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14421
14422         * LaTeX.C (scanAuxFile):
14423         (deplog): remove trailing \r when reading stream (useful under
14424         win32)
14425
14426 2001-06-15  Angus Leeming  <a.leeming@ic.ac.uk>
14427
14428         * BufferView_pimpl.C (fitCursor): emit a signal updateParagraph.
14429         (resizeCurrentBuffer): have functions BufferView::theLockingInset()
14430         and BufferView::theLockingInset(Inset*), so should use them and not
14431         access bv_->text->the_locking_inset directly.
14432
14433         * lyxfunc.C (Dispatch): cosmetic name change of three signals.
14434
14435 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
14436
14437         * Makefile.am:
14438         * tex-defs.h: remove old unused file
14439
14440 2001-06-15  John Levon  <moz@compsoc.man.ac.uk>
14441
14442         * BufferView_pimpl.C: fix typo, remove minibuffer message
14443           when buffer has loaded
14444
14445 2001-06-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14446
14447         * lyxfunc.C (Dispatch): use stringstream
14448         (MenuNew): use stringstream
14449         (Open): use stringstream
14450
14451         * importer.C (Import): use stringstream
14452
14453         * bufferview_funcs.C (CurrentState): use stringstream
14454
14455         * LaTeX.C (run): use stringstream
14456
14457         * BufferView_pimpl.C (savePosition): use stringstream
14458         (restorePosition): use stringstream
14459         (MenuInsertLyXFile): use stringstream
14460
14461 2001-06-14  Angus Leeming  <a.leeming@ic.ac.uk>
14462
14463         * BufferView.C:
14464         * Bullet.C:
14465         * ColorHandler.C:
14466         * FontInfo.C:
14467         * FontLoader.C:
14468         * LColor.C:
14469         * LaTeXFeatures.C:
14470         * Painter.C:
14471         * gettext.C:
14472         * lyx_gui_misc.C:
14473         * lyxserver.C:
14474         * vspace.C: removed // -*- C++ -*- as first line.
14475
14476         * lyxfind.h:
14477         * version.h: added // -*- C++ -*- as first line.
14478
14479 2001-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14480
14481         * lyxfunc.C (getStatus): support LFUN_READ_ONLY_TOGGLE
14482
14483         * text2.C (SetSelectionOverString): do not test str[i]==0 for end
14484         of string
14485
14486 2001-06-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14487
14488         * buffer.C (parseSingleLyXformat2Token): fix compatability reading
14489         of floats.
14490
14491 2001-06-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14492
14493         * gettext.C: include LString.h even when --disable-nls is on.
14494
14495 2001-06-12  Angus Leeming  <a.leeming@ic.ac.uk>
14496
14497         * converter.h (Get): changed argument type from int to
14498         FormatList::size_type to avoid unnecessary conversion.
14499
14500         * bufferview_funcs.C (ToggleAndShow): check state of LyXText pointer
14501         before using it.
14502
14503 2001-06-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14504
14505         * gettext.h: include LString.h even when --disable-nls is on.
14506
14507 2001-06-07  Juergen Vigna  <jug@sad.it>
14508
14509         * text.C (BreakAgain): subst spaces with tabs.
14510
14511         * paragraph.C (deleteInsetsLyXText): set recursive on deleteLyXText.
14512         (resizeInsetsLyXText): set force on resizeLyXText.
14513
14514 2001-06-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14515
14516         * gettext.h (gettext_init):
14517         (locale_init): use a real definition instead of a macro
14518
14519 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
14520
14521         * Bufferview_pimpl.C:
14522         * LColor.h:
14523         * LColor.C: further lcolor tidies
14524
14525 2001-06-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14526
14527         * BufferView_pimpl.C (updateScrollbar): simplify.
14528
14529         * BufferView2.C: don't include insets/insetinfo.h, change
14530         prototype for insertInset and call the Pimpl version. let
14531         updateInset call Pimpl version.
14532
14533         * BufferView.h: move inset_slept to BufferView::Pimpl, move
14534         gotoInset to BufferView::Pimpl
14535
14536 2001-06-01  Juergen Vigna  <jug@sad.it>
14537
14538         * lyxfunc.C (Dispatch): LFUN_PREFIX don't call the update if we're
14539         inside a LockingInset (is the update needed at all?).
14540
14541 2001-05-31  Juergen Vigna  <jug@sad.it>
14542
14543         * BufferView_pimpl.C (Dispatch): we need a new instanze of cursor
14544         here not the old one otherwise how should we compare it afterwards
14545         if it's the same!
14546
14547 2001-06-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14548
14549         * lyxfont.C:
14550         * tabular.C:
14551         * tabular-old.C:
14552         * FontInfo.C: bring C functions into global namespace when
14553         necessary
14554
14555 2001-05-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14556
14557         * LString.h: make sure config.h has been loaded before LString.h.
14558
14559         * lyxlex_pimpl.C (EatLine): comment out annoying debug messages
14560         (one for each char read by EatLine!).
14561
14562         * lyx_main.C (init): constify lyxdir. Lowercase the name of some
14563         variables.
14564
14565 2001-06-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14566
14567         * paragraph.C (BreakParagraph): set the inset_owner in the new par
14568         to the same as the par we break from
14569
14570 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14571
14572         * commandtags.h: add LFUN_INSET_WIDE_FLOAT
14573
14574         * MenuBackend.C (expand): also create menu entries for wide
14575         versions of the floats.
14576
14577         * LyXAction.C (init): add entry for LFUN_INSET_WIDE_FLOAT
14578
14579         * BufferView_pimpl.C (Dispatch): implement LFUN_INSET_WIDE_FLOAT
14580
14581         * Makefile.am (lyx_DEPENDENCIES): adjust for change in
14582         frontends/Makefile.am
14583
14584         * text2.C: adjust
14585         * text.C: adjust
14586
14587
14588         * tabular.C (getTokenValue): add std::
14589
14590         * tabular-old.C (getTokenValue): add std::
14591         (getTokenValue): ditto
14592         (getTokenValue): ditto
14593
14594         * screen.C (ToggleSelection): adjust
14595
14596         * lyxtext.h: put selection cursors inside a Selection struct.
14597
14598         * lyxfunc.C (moveCursorUpdate): adjust
14599
14600         * lyxfont.C (latexWriteStartChanges): add std::
14601
14602         * lyxfind.C: adjust
14603
14604         * font.h: delete with(char const *, LyXFont const &)
14605
14606         * buffer.C (parseSingleLyXformat2Token): use contains instead of strstr
14607
14608         * FontInfo.C (getFontname): add std::
14609
14610         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
14611         (workAreaButtonPress): adjust
14612         (tripleClick): adjust
14613         (update): adjust
14614         (moveCursorUpdate): adjust
14615         (Dispatch): adjust
14616
14617         * BufferView2.C (gotoInset): adjust
14618
14619 2001-05-30  Juergen Vigna  <jug@sad.it>
14620
14621         * spellchecker.C (USE_ORIGINAL_MANAGER_FUNCS): as it seems only I use
14622         to check pspell I add this as default as I now have new pspell
14623         libraries and they seem to use this.
14624
14625 2001-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14626
14627         * text2.C (CutSelection): make the cursor valid before the call to
14628         ClearSelection.
14629
14630 2001-05-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14631
14632         * kbsequence.C (parse): de-uglify a bit the parsing code, which
14633         relied on 0 terminated strings and other horrors. Bug found due to
14634         the new assert in lyxstring!
14635
14636         * lyx_main.C (defaultKeyBindings): add bindings the cursor-related
14637         KP_ keys.
14638
14639 2001-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14640
14641         * lyx_main.C (defaultKeyBindings): move self-insert KP_ bindings
14642         to latinkeys.bind.
14643
14644         * lyxfunc.C (processKeySym): change method of getting to the
14645         self-insert char.
14646
14647         * BufferView(2).[Ch]: move hfill, protectedBlank, newline,
14648         menuSeparator, endOfSentenceDot, ldots, hypenationPoint and menuUndo
14649         * BufferView_pimpl.[Ch]: here as private methods.
14650
14651 2001-05-28  Juergen Vigna  <jug@sad.it>
14652
14653         * text.C (SetHeightOfRow): added the update() call again as it is
14654         needed to initialize inset dimensions!
14655
14656 2001-05-16  Juergen Vigna  <jug@sad.it>
14657
14658         * text2.C (SetCharFont): Add new function with BufferView * and
14659         bool toggleall parameters for setting insets internal fonts.
14660         (SetFont): Freeze the undo as we may change fonts in Insets and
14661         all this change should be inside only one Undo!
14662
14663         * bufferview_funcs.C (ToggleAndShow): fixed this functions for
14664         setting font's in insets as for them we have the SetFont function!
14665
14666 2001-05-15  Juergen Vigna  <jug@sad.it>
14667
14668         * text2.C (ClearSelection): to be sure we REALLY don't have any
14669         selection anymore!
14670
14671         * tabular.C (TeXCellPreamble): fixed the left border problem for
14672         multicolumn cells.
14673
14674 2001-05-27  Dekel Tsur  <dekelts@tau.ac.il>
14675
14676         * LaTeX.C (deplog): Make sure that the main .tex file is in the
14677         dependancy file
14678
14679 2001-05-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14680
14681         * lyx_main.C (defaultKeyBindings): set KP_enter to point at
14682         LFUN_BREAKPARAGRAPH.
14683
14684         * LyXAction.C (init): remove external name for LFUN_LAYOUTNO, set
14685         help test to "internal only", similar for LFUN_INSERT_URL
14686
14687         * BufferView_pimpl.C (Dispatch::LFUN_QUOTE): change it to to the insertcorrectQuote.
14688         (Dispatch::LFUN_SELFINSERT): fix to handle math greek,
14689         auto_region_delete and deadkeys.
14690
14691 2001-05-22  John Levon  <moz@compsoc.man.ac.uk>
14692
14693         * LColor.h:
14694         * LColor.C: remove some dead entries, tidy a little
14695
14696 2001-05-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14697
14698         * lyxfunc.C (processKeySym): comment the Escape handling, remove
14699         commented code.
14700         (Dispatch): implement LFUN_ESCAPE
14701
14702         * commandtags.h: add LFUN_ESCAPE
14703
14704         * LyXAction.C (init): add entry for LFUN_ESCAPE
14705
14706         * BufferView_pimpl.C (Dispatch): adjust for open_new_inset move.
14707         Remove commented code.
14708         (insertNote): moved here
14709         (open_new_inset): moved here
14710
14711         * BufferView[2].[Ch]: move insertNote and open_new_inset to
14712         BufferView_pimpl
14713
14714 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14715
14716         * kbmap.C (findbinding): clean it up and make it work correctly.
14717
14718         * lyx_main.C (init): do not pass argc and argv as parameters
14719
14720 2001-05-16  Ruurd Reitsma  <r.a.reitsma@wbmt.tudelft.nl>
14721
14722         * buffer.C: fix path for OS/2 & Win32
14723
14724         * lyx_gui.C:
14725         * lyx_main:
14726         * lyx_main.C: Added os:: class.
14727
14728         * os2_defines.h: update
14729
14730 2001-05-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14731
14732         * lyxfunc.[Ch] (processKeySym): return void. Handle unknown actions
14733         better by trying again with reduced state.
14734
14735 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14736
14737         * lyxrc.C (read): print error about invalid key sequence only when
14738         debugging (because not all latinX keysyms are known to some X
14739         servers)
14740
14741         * kbsequence.C (getiso): add a few std:: qualifiers
14742         (getiso): comment out extra return statement.
14743
14744 2001-05-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14745
14746         * BufferView_pimpl.C (Dispatch): comment out the old "default" key
14747         handling.
14748         (Dispatch): enhance the accent inset a bit. (not perfect)
14749
14750 2001-05-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14751
14752         * buffer.C (makeLaTeXFile): use stringstream on language_optons.
14753
14754 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14755
14756         * bufferlist.C (emergencyWrite): fix assert() call
14757
14758 2001-05-04  Kayvan A. Sylvan  <kayvan@sylvan.com>
14759
14760         * text.C (InsertChar): Added trivial patch to only send the "you
14761         can not do multiple spaces this way" message once during a
14762         session.
14763
14764 2001-05-08  Baruch Even  <baruch@lyx.org>
14765
14766         * Makefile.am: Changed order of libraries to get LyX to link properly
14767         with the gnome frontend.
14768
14769 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14770
14771         * LaTeXFeatures.h: add a std:: qualifier
14772
14773 2001-05-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14774
14775         * paragraph.C (String): use stringstream
14776
14777 2001-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14778
14779         * paragraph.C (writeFile): remove footflag arg
14780
14781         * buffer.C (makeLaTeXFile): use stringstream
14782         (latexParagraphs): remove footnot gurba
14783
14784         * LaTeXFeatures.C (getPackages): use stringstream
14785         (getMacros): likewise
14786         (getTClassPreamble): likewise
14787         (getFloatDefinitions): new method
14788
14789         * paragraph.C (writeFile): reindent
14790         (Erase): reindent
14791
14792         * WorkArea.h: revert the xpos + etc changes.
14793
14794         * CutAndPaste.C (SwitchLayoutsBetweenClasses): constify name and s
14795
14796         * lyxparagraph.[Ch]: add copy constructor, remove Clone
14797
14798         * CutAndPaste.C (copySelection): use LyXParagraph copy constructor
14799         (pasteSelection): likewise
14800         * text2.C (CreateUndo): likewise
14801
14802 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14803
14804         * minibuffer.C (peek_event): temporarily reduce the functionality
14805         of the minibuffer (to allow args on lfuns)
14806
14807         * commandtags.h: remove LFUN_LOA_INSERT, LFUN_LOF_INSERT,
14808         LFUN_LOT_INSERT. add LFUN_FLOAT_LIST
14809
14810         * buffer.C (readInset): add compability reading of old float
14811         lists, add reading of new style float list.
14812         (readInset): avoid reevaluation of inscmd.getCmdName()
14813         (getLists): reindent
14814
14815         * MenuBackend.C (MenuItem): implement parsing of
14816         md_floatlistinsert and md_floatinsert.
14817         (expand::LastFiles): move initalizaton of iterators out of loop,
14818         avoid reevaluation.
14819         (expand::Documents): introduce typdedef vector<string> Strings,
14820         and use it.
14821         (expand::ExportFormats): introduce typedef vector<Format const *>
14822         Formats, and use it.
14823         (expand): implement FloatListInsert and FloatInsert.
14824
14825         * LyXAction.C (init): remove entries for LFUN_LOA_INSERT,
14826         LFUN_LOA_VIEW, LFUN_LOF_INSERT, LFUN_LOFVIEW, LFUN_LOT_INSERT,
14827         LFUN_LOTVIEW. Add entry for LFUN_FLOAT_LIST
14828
14829         * BufferView_pimpl.C (Dispatch::LFUN_TOC_INSERT): remvoe the float
14830         handling.
14831         (Dispatch::LFUN_FLOAT_LIST): implement
14832
14833 2001-04-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
14834
14835         * LaTeX.C (run): Fix problem with --export code.
14836
14837 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
14838
14839         * BufferView.[Ch] (workarea): removed.
14840         (getClipboard) new method; wrapper for workarea()->getClipboard()
14841
14842         * ToolbarDefaults.C (read): removed final lex.next() command; it's a
14843         bug.
14844
14845         * WorkArea.h (width, height, xpos, ypos): These methods all
14846         returned the dimensions of the work_area sub-area of WorkArea,
14847         resulting in a position error if the WorkArea were resized. Now
14848         return the dimensions of the entire WorkArea.
14849
14850         * lyx_main.C (ReadUIFile): don't print out spurious warnings.
14851
14852 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14853
14854         * LaTeX.C (deplog): correct the syntax of regex reg1
14855
14856 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14857
14858         * undo.C: remove !NEW_INSETS cruft
14859
14860 2001-04-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14861
14862         * text2.C: remove !NEW_INSETS cruft
14863
14864         * text.C: remove !NEW_INSETS cruft
14865
14866         * tabular.C: remove !NEW_INSETS cruft
14867
14868         * spellchecker.C: remove !NEW_INSETS cruft
14869
14870         * lyxtext.h: remove !NEW_INSETS cruft
14871
14872         * lyxlex_pimpl.C: remove !NEW_INSETS cruft
14873
14874         * lyxfunc.C: remove !NEW_INSETS cruft
14875
14876         * lyxfind.C: remove !NEW_INSETS cruft
14877
14878         * lyx_cb.C: remove !NEW_INSETS cruft
14879
14880         * figureForm.C: remove  !NEW_INSETS cruft
14881
14882         * bufferview_funcs.[Ch]: remove !NEW_INSETS cruft
14883
14884         * buffer.[Ch]: remove !NEW_INSETS cruft
14885
14886         * ToolbarDefaults.C: remove !NEW_INSETS cruft
14887
14888         * CutAndPaste.C: remove !NEW_INSETS cruft
14889
14890         * BufferView_pimpl.C: remove !NEW_INSETS cruft
14891
14892         * BufferView2.C: remove !NEW_INSETS cruft
14893
14894         * BufferView.h: remove !NEW_INSETS cruft
14895
14896 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14897
14898         * Lsstream.h: include LString.h before the sstream headers to
14899         fix problem with gcc 2.95.3 and lyxstring
14900
14901 2001-05-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14902
14903         * lyx_main.C: add using directives when needed for C functions
14904         declared in std:: namespace.
14905
14906 2001-04-27  Juergen Vigna  <jug@sad.it>
14907
14908         * text.C (Fill): return 20 instead of 0 if paper_width < 0 (endless)
14909         (SetHeightOfRow): comment out the update call should not be needed!
14910
14911 2001-04-13  Juergen Vigna  <jug@sad.it>
14912
14913         * tabular.C (GetAdditionalHeight): changed parameter from cell to row.
14914         (LyXTabular): tried to minimize operator= operations (and realized
14915         hopfully Lars wish).
14916
14917 2001-04-27  Juergen Vigna  <jug@sad.it>
14918
14919         * spellchecker.C (sc_check_word): fixed Assert to lyx::Assert.
14920
14921 2001-04-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14922
14923         * lyxfunc.C (Dispatch): hack to make listof algorithm work
14924
14925         * buffer.C (readInset): hack to make listof algorithm work
14926
14927         * BufferView_pimpl.C: hack to make listof algorithm work
14928
14929 2001-04-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14930
14931         * LyXAction.C: removed all !NEW_INSETS cruft
14932         (init): moved lfun_item in method
14933
14934         * lyxparagraph.[Ch]: removed all !NEW_INSETS cruft
14935
14936 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
14937
14938         * BufferView2.C (theLockingInset): white space.
14939
14940 2001-04-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14941
14942         * minibuffer.C: include <iostream>
14943
14944         * BufferView_pimpl.C: implement LFUN_TRANSPOSE_CHARS
14945
14946         * LyXAction.C (init): add LFUN_TRANSPOSE_CHARS
14947
14948         * commandtags.h: add LFUN_TRANSPOSE_CHARS
14949
14950         * text.[Ch] (TransposeChars): new method
14951
14952 2001-04-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14953
14954         * call message directly through LyXView instead of through LyXFunc
14955         * BufferView2.C: adjust
14956         * BufferView_pimpl.C: adjust
14957         * FontLoader.C: adjust
14958         * buffer.C: adjust
14959         * bufferview_funcs.C: adjust
14960         * converter.C: adjust
14961         * figureForm.C: adjust
14962         * importer.C: adjust
14963         * lyx_cb.C: adjust
14964         * lyx_gui_misc.C: adjust
14965         * lyxfunc.C: adjust
14966         * lyxvc.C: adjust
14967         * text2.C: adjust
14968         + more files in subdirs
14969
14970         * lyxparagraph.h (size): move up int file
14971         (GetLayout): ditto
14972
14973         * adjust all uses of Assert to lyx::Assert.
14974
14975         * BufferView2.C (ChangeCitationsIfUnique): adjust for
14976         lyxfunctional in namespace lyx
14977         * layout.C (hasLayout): ditto
14978         (GetLayout): ditto
14979         (GetLayout): ditto
14980         (delete_layout): ditto
14981         (NumberOfClass): ditto
14982         * converter.C (GetFormat): ditto
14983         (GetNumber): ditto
14984         (Add): ditto
14985         (Delete): ditto
14986         (SetViewer): ditto
14987         * bufferlist.C (getFileNames): ditto
14988         (emergencyWriteAll): ditto
14989         (exists): ditto
14990         (getBuffer): ditto
14991         * MenuBackend.C (hasSubmenu): ditto
14992         (hasMenu): ditto
14993         (getMenu): ditto
14994         * BufferView_pimpl.C (getInsetByCode): ditto
14995
14996 2001-04-18  Juergen Vigna  <jug@sad.it>
14997
14998         * vspace.C (asLatexString): fixed the 100% problem.
14999
15000 2001-04-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15001
15002         * lyxfunc.C (Dispatch):
15003         * minibuffer.C:
15004         * minibuffer.h: add a few std:: qualifiers
15005
15006 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
15007
15008         * minibuffer.[Ch]: reimplement so that commands is initiated and
15009         run from lyxfunc, simplified som handling, and made the completion
15010         and history code for complete. wip.
15011
15012         * lyxfunc.C (processKeySym): call message
15013         (miniDispatch): new temporary method
15014         (LFUN_EXEC_COMMAND): reimplement for new minibuffer
15015         (LFUN_MESSAGE): implement
15016         (LFUN_MESSAGE_PUSH): implement
15017         (LFUN_MESSAGE_POP): implement
15018         (initMiniBuffer): the initial/defualt minibuffer message.
15019
15020         * lyxfont.[Ch]: inline some more getters
15021
15022         * lyx_gui_misc.C (WriteAlert): use LFUN_MESSAGE
15023
15024         * lyx_gui_misc.[Ch] (WriteStatus): remove method
15025
15026         * lyx_cb.[Ch] (ShowMessage): remove delay arg, use LFUN_MESSAGE
15027         (AutoSave): use LFUN_MESSAGE
15028         (Reconfigure): ditto
15029
15030         * importer.C (Import): constify som local vars, use LFUN_MESSAGE
15031
15032         * figureForm.C: use LFUN_MESSAGE
15033
15034         * converter.C (runLaTeX): use LFUN_MESSAGE
15035
15036         * bufferview_funcs.C: use LFUN_MESSAGE
15037         (Melt): ditto
15038         (changeDepth): ditto
15039
15040         * bufferparams.h: use boost::
15041
15042         * bufferlist.h: inherit privately from noncopyable
15043
15044         * bufferlist.C (loadLyXFile): remove some commented code.
15045
15046         * buffer.C (runChktex): use LFUN_MESSAGE
15047
15048         * ShareContainer.h: inherit privately from noncopyable
15049
15050         * ParagraphParameters.[hC] (depth): inline it.
15051
15052         * LyXView.[Ch] (LyXView): connect the minibuffer signals to lyxfunc
15053         methods.
15054         (message): new method
15055         (messagePush): ditto
15056         (messagePop): ditto
15057         (show): init minibuffer
15058         (showState): direct call
15059
15060         * LaTeX.[Ch]: inherit privately from noncopyable
15061         (run): change second arg to LyXFunc*, use LFUN_MESSAGE
15062         instead of WriteStatus.
15063
15064         * FontLoader.C (doLoad): use LFUN_MESSAGE_PUSH and LFUN_MESSAGE_POP
15065
15066         * BufferView_pimpl.C (buffer): don't init minibuffer
15067         (workAreaButtonPress): use LFUN_MESSAGE
15068         (workAreaButtonRelease): ditto
15069         (savePosition): ditto
15070         (restorePosition): ditto
15071         (MenuInsertLyXFile): ditto
15072         (workAreaExpose): don't init minibuffer
15073         (update): remove commented code, simplify
15074
15075         * BufferView2.C (openStuff): use LFUN_MESSAGE
15076         (toggleFloat): ditto
15077         (menuUndo): ditto
15078         (menuRedo): ditto
15079         (copyEnvironment): ditto
15080         (pasteEnvironment): ditto
15081         (copy): ditto
15082         (cut): ditto
15083         (paste): ditto
15084         (gotoInset): ditto
15085         (updateInset): remove some commented code
15086
15087         * lastfiles.h: inherit privately from noncopyable
15088         * layout.h: ditto
15089         * lyx_gui.h: ditto
15090         * lyx_main.h: ditto
15091         * lyxlex.h: ditto
15092         * lyxlex_pimpl.h: ditto
15093
15094         * commandtags.h: comment out LFUN_FOOTMELT, LFUN_MARGINMELT,
15095         LFUN_FLOATSOPERATE, LFUN_MELT, add LFUN_MESSAGE,
15096         LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
15097
15098         * LyXAction.h: inherit privately from noncopyable, add methods
15099         func_begin, func_end, returning iterators to the func map.
15100
15101         * LyXAction.C (init): comment out LFUN_FLOATSOPERATE, LFUN_MELT,
15102         add entries for LFUN_MESSAGE, LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
15103         (func_begin): new method
15104         (func_end): new method
15105
15106         * CutAndPaste.C (cutSelection): split into two versons (NEW_INSETS
15107         and not)
15108         (copySelection): ditto
15109         (pasteSelection): ditto
15110
15111         * BufferView.C: whitespace change
15112         * BufferView.h: inherit privately from noncopyable
15113
15114 2001-04-16  Allan Rae  <rae@lyx.org>
15115
15116         * tabular-old.C (l_getline):
15117         * spellchecker.C (sc_check_word):
15118         * lyxfunc.C (Dispatch): #warning triggers an error on Sun CC 6.0 as
15119         an unrecognised preprocessor directive.  So ensure they're wrapped.
15120
15121 2001-04-14  Dekel Tsur  <dekelts@tau.ac.il>
15122
15123         * src/exporter.C (Export): Give an error message when path to file
15124         contains spaces.
15125
15126 2001-04-12  Dekel Tsur  <dekelts@tau.ac.il>
15127
15128         * LaTeX.C (deplog): Always check that foundfile exists.
15129
15130 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15131
15132         * lyx_main.h:
15133         * lyx_main.C (ReadLanguagesFile): fix weird typo in method name
15134
15135 2001-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
15136
15137         * tabular.[Ch] (getLabelList): implement new method
15138
15139         * minibuffer.h: comment ouf setTiimer
15140
15141         * minibuffer.C (ExecutingCB): constify res
15142         (peek_event): constify s
15143         (Set): constify ntext
15144         (Init): constify nicename
15145
15146         * BufferView2.C (updateInset): comment out Minibuffer::setTimer
15147
15148         * BufferView_pimpl.C (update): comment out Minibuffer::setTimer
15149         (savePosition): use two params to Minibuffer::Set
15150         (restorePosition): ditto
15151
15152 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15153
15154         * lyx_main.C: include language.h
15155
15156         * Makefile.am (lyx_main.o): add language.h
15157
15158 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15159
15160         * exporter.C:
15161         * paragraph.C:
15162         * screen.C:
15163         * tabular.C:
15164         * CutAndPaste.C: include gettext.h
15165
15166         * lyxfont.h: remove old hack with ON and OFF.
15167
15168         * lyxparagraph.h:
15169         * lyxfont.h: do not include language.h...
15170
15171         * BufferView2.C:
15172         * LaTeXFeatures.C:
15173         * Painter.C:
15174         * bufferview_funcs.C:
15175         * font.C:
15176         * lyxfont.C:
15177         * text.C:
15178         * text2.C:
15179         * trans_mgr.C:
15180         * paragraph.C: ... but do it here instead
15181
15182 2001-04-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
15183
15184         * text2.C (SetLayout): split in NEW_INSETS and non NEW_INSETS version
15185
15186         * tabular.C: small reformat
15187
15188         * paragraph.C (GetFontSettings): split in NEW_INSETS and non
15189         NEW_INSETS version
15190         (GetChar): ditto
15191         (BreakParagraph): ditto
15192         (SetOnlyLayout): ditto
15193         (SetLayout): ditto
15194
15195         * lyxparagraph.h: add definitions for SetLayout and SetOnlyLayout
15196         with one arg less.
15197
15198         * lastfiles.C: removed most using decl, add std:: where needed
15199
15200         * buffer.C: ws changes
15201
15202         * MenuBackend.C (class compare_format): put into anon namespace
15203         (expand): constify label, names, action, action2
15204         (expand):
15205
15206         * text.C (SingleWidth): constify font
15207         (IsBoundary): constify rtl2
15208         (GetVisibleRow): constify ww
15209
15210         * LaTeX.C (deplog): constify logfile
15211
15212         * BufferView_pimpl.C (checkInsetHit): constify width, inset_x,
15213         start_x, end_x
15214         (workAreaExpose): constify widthChange, heightChange
15215
15216         * lyxrow.C (par): moved
15217         (height): moved
15218         (next): moved
15219         * lyxrow.h: as inlines here
15220
15221         * lyxfont.h (shape): moved from lyxfont.C
15222         (emph): moved from lyxfont.C
15223
15224         * lyxfont.C (LyXFont): use initialization list for all
15225         constructors
15226         (shape): move to lyxfont.h as inline
15227         (emph): move to lyxfont.h as inline
15228
15229
15230 2001-04-04  Juergen Vigna  <jug@sad.it>
15231
15232         * vspace.C: had to include stdio.h for use of sscanf
15233
15234 2001-04-03  Angus Leeming  <a.leeming@ic.ac.uk>
15235
15236         * BufferView.h:
15237         * BufferView_pimpl.h: remove xforms cruft. Both classes are
15238         independent of xforms.
15239
15240 2001-04-02  Juergen Vigna  <jug@sad.it>
15241
15242         * spellchecker.C: fixed namespace placing!
15243
15244 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
15245
15246         * lyxfunc.C (Dispatch): prevent crash in LFUN_GOTO_PARAGRAPH when
15247         the LyXParagraph * is 0.
15248
15249 2001-03-29  Juergen Vigna  <jug@sad.it>
15250
15251         * vspace.C: added support for %, c%, p%, l%.
15252         (stringFromUnit): added helper function.
15253         (asLatexString): changed to give right results for the %-values.
15254
15255         * buffer.C: convert the widthp in a width%.
15256
15257 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
15258
15259         * Makefile.am: removed form1.[Ch], lyx.[Ch] and added figure_form.[Ch],
15260         figureForm.[Ch].
15261
15262         * figureForm.[Ch]: stripped the FD_from_figure manipulation
15263         code out of lux_cb.[Ch], ready for its (imminent?) removal.
15264
15265         * lyx_cb.[Ch]: see above.
15266
15267         * figure_form.[Ch]: fdesign generated code, combining lyx.[Ch] and
15268         form1.[Ch].
15269
15270         * form1.[Ch]:
15271         * lyx.[Ch]: replaced by figure_form.[Ch].
15272
15273         * lyx_gui.C:
15274         * lyx_gui_misc.C:
15275         * lyxfunc.C: changed headers associated with above changes.
15276
15277 2001-03-27  Juergen Vigna  <jug@sad.it>
15278
15279         * BufferView_pimpl.C: set the temporary cursor right!
15280
15281 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
15282
15283         * BufferView_pimpl.C (Dispatch): corrected spelling givven -> given.
15284
15285 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
15286
15287         * LString.h: removed "using std::getline"!
15288
15289         * BufferView_pimpl.C (Dispatch): changes due to changes in
15290         InsetInclude::Params.
15291
15292         * buffer.C (tag_name): removed redundant break statements as they were
15293         producing lots of warnings with my compiler.
15294
15295 2001-03-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15296
15297         * LString.h: add "using std::getline" when using the real <string>.
15298
15299 2001-03-23  José Abílio Matos  <jamatos@fep.up.pt>
15300
15301         * buffer.C: removed bitset usage.
15302         PAR_TAG moved to an anonymous name space.
15303         (tag_name): new funtion, also in the anonymous namespace.
15304         (SimpleLinuxDocOnePar): replaced all the references to bitset by PAR_TAG.
15305         (makeDocBookFile): clean code. Completed transition from string arrays
15306         to string vectors.
15307         (SimpleDocBookOnePar): code clean.
15308
15309 2001-03-23  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15310
15311         * tabular.C: add some comments.
15312
15313 2001-03-22  Juergen Vigna  <jug@sad.it>
15314
15315         * buffer.C (parseSingleLyXformat2Token): redone the minipage
15316         compatibility read a bit and fixed bug with minipage in different
15317         depth.
15318
15319 2001-03-21  José Abílio Matos  <jamatos@fep.up.pt>
15320
15321         * buffer.C (pop_tag): removed.
15322         (push_tag): removed.
15323         (makeLinuxDocFile): cleaner C++ code, declarations near usage point,
15324         array replaced with vector. Added support for CDATA sections.
15325         (SimpleLinuxDocOnePar): ditto. Paragraph tags are correctly handled,
15326         at any nest level.
15327         (makeDocBookFile): XML conformant declaration of CDATA section,
15328         fixed bug related to <emphasis> in the first paragraph char.
15329         (sgmlOpenTag): exclude empty tags.
15330         (sgmlCloseTag): ditto.
15331
15332         * buffer.h (pop_tag): removed.
15333         (push_tag): removed.
15334
15335 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
15336
15337         * language.h (Languages): added size_type and size().
15338
15339 2001-03-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15340
15341         * buffer.C (parseSingleLyXformat2Token): Try to give a bit better
15342         response on compability reading of minipages. One probliem is that
15343         the old usage of minipages was «flertydig»
15344
15345         * several files here and in subdirs: don't use static at file
15346         scope use anon namespaces instead.
15347
15348 2001-03-19  Kayvan A. Sylvan <kayvan@sylvan.com>
15349
15350         * paragraph.C (TeXEnvironment): Added \n to \end{environment}
15351         LaTeX output. This is necessary for Literate document
15352         processing.
15353
15354 2001-03-17  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15355
15356         * buffer.C: insert hfill when needed.
15357
15358         * tabular.C (l_getline): use string::erase, small whitespace change.
15359
15360         * BufferView_pimpl.C: try the anon namespace.
15361         * WorkArea.C: ditto
15362
15363 2001-03-16  Juergen Vigna  <jug@sad.it>
15364
15365         * BufferView_pimpl.C (workAreaButtonRelease): return only on button==2
15366         otherwise it won't open options-dialogs.
15367
15368         * buffer.C: honor pextraWidth(p) on converting minipages.
15369
15370         * tabular.C (l_getline): changed the functions to strip trailing \r.
15371
15372 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
15373
15374         * BufferView_pimpl.C:
15375         * minibuffer..C: added "using SigC::slot" declaration.
15376
15377 2001-03-16  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15378
15379         * lyxlex_pimpl.h: noncopyable is in namespace boost.
15380
15381         * text2.C: ditto
15382
15383         * text.C: ditto
15384
15385         * paragraph.C: ditto
15386
15387         * lyxtext.h: NO_PEXTRA
15388
15389         * buffer.C: NO_PEXTRA_REALLY, NO_PEXTRA
15390
15391         * ParagraphParameters.C (clear): NO_PEXTRA_REALLY
15392         * ParameterStruct.h: ditto
15393         * ParagraphParameters.h: ditto
15394         * lyxparagraph.h: ditto
15395
15396 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15397
15398         * buffer.C: add compability for minipage alignment.
15399         (latexParagraphs): remove unwanted pextra check.
15400
15401         * several files: remove CXX_WORKING_NAMESPACES
15402
15403         * buffer.C (pop_tag): tie is in namespace boost
15404
15405         * BufferView.h: noncopyable is in namespace boost
15406         * lyxlex.h: ditto
15407         * lyx_main.h: ditto
15408         * lyx_gui.h: ditto
15409         * layout.h: ditto
15410         * lastfiles.h: ditto
15411         * bufferlist.h: ditto
15412         * ShareContainer.h: ditto
15413         * LyXView.h: ditto
15414         * LyXAction.h: ditto
15415         * LaTeX.h: ditto
15416
15417 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
15418
15419         * Merging changes from BRANCH_MVC back into HEAD.
15420
15421         * Makefile.am: added controllers/libcontrollers.la to lyx_DEPENDENCIES
15422
15423 2001-03-15  John Levon  <moz@compsoc.man.ac.uk>
15424
15425         * BufferView_pimpl.C: change from intl.C
15426
15427         * combox.h:
15428         * combox.C:
15429         * Makefile.am: move combox.*
15430
15431         * form1.h:
15432         * form1.C:
15433         * lyx_gui.C:
15434         * intl.h:
15435         * intl.C: remove dialog (covered by prefs)
15436
15437 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
15438
15439         * lyxfunc.C (Dispatch): removed redundant break statement.
15440
15441 2001-03-14  Juergen Vigna  <jug@sad.it>
15442
15443         * tabular.C (l_getline): pay attention on \r\n (from Windows-files)
15444
15445 2001-03-14  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15446
15447         * buffer.C: add hack to fix compability reading of minipages.
15448
15449 2001-03-13  Dekel Tsur  <dekelts@tau.ac.il>
15450
15451         * buffer.C (getLists): Cleanup.
15452
15453 2001-03-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15454
15455         * lyxfont.C (update): don't honor toggleall on font size.
15456
15457 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
15458
15459         * bmtable.c:
15460         * bmtable.h:
15461         * Makefile.am: moved to frontends/xforms/
15462
15463         * lyx_gui_misc.C:
15464         * lyxfunc.C:
15465         * BufferView_pimpl.C: changes for moved mathpanel
15466
15467 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
15468
15469         * gettext.h: fix gettext_init() in --disable-nls
15470
15471 2001-03-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15472
15473         * LaTeXFeatures.C (getMacros): add a .c_str() when using sstream.
15474
15475 2001-03-09  John Levon  <moz@compsoc.man.ac.uk>
15476
15477         * lyx.C:
15478         * lyx.h: strip external form
15479
15480 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
15481
15482         * BufferView_pimpl.C: add comment, destroySplash()
15483
15484 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
15485
15486         * BufferView_pimpl.C:
15487         * LyXAction.C:
15488         * buffer.C:
15489         * commandtags.h:
15490         * lyxfunc.C: use re-worked insetinclude
15491
15492 2001-03-12  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15493
15494         * buffer.C: add using std::stringstream.
15495
15496         * lyx_cb.C: readd using std::ios.
15497
15498         * buffer.C: add using std::map.
15499
15500         * BufferView_pimpl.C: add using std::vector.
15501
15502         * ShareContainer.h: add std:: to swap.
15503
15504         * buffer.h: add some typedefs
15505         * buffer.C (getLists): use them
15506         (getLists): renamed from getTocList.
15507         add a counter for the different float types and use it in the
15508         generated string.
15509         (getLists): use the same counter for the NEW_INSETS and the "non"
15510         NEW_INSETS
15511
15512         * lyx_cb.h: remove unused items, includes, using etc.
15513
15514         * ShareContainer.h: remove some commented code, add more comments
15515         and "documentation".
15516
15517 2001-03-11  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15518
15519         * buffer.C (getTocList): make the list also when NEW_INSETS is
15520         defined.
15521
15522         * buffer.h: remove TocType
15523
15524         * buffer.C (getTocList): change to return a map<string,
15525         vector<TocItem> >, implement for dynamic number of list.
15526
15527         * CutAndPaste.[Ch] (checkPastePossible): remove unused arg
15528         * text2.C (PasteSelection): adjust
15529         * CutAndPaste.C (pasteSelection): adjust
15530
15531         * FloatList.C (FloatList): update from the new_insets branch.
15532         * Floating.[Ch]: ditto
15533         * LaTeXFeatures.C: ditto
15534         * buffer.C: ditto
15535         * lyxlex_pimpl.C: ditto
15536
15537         * paragraph.C (Last): remove when NEW_INSETS is defined.
15538
15539         * other file: changes because of the above.
15540
15541 2001-03-09  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15542
15543         * lyxparagraph.h: rename next to next_, previous to previous_,
15544         make them private for NEW_INSETS. Rename Next() to next(),
15545         Previous() to previous().
15546
15547         * other files: changes because of the above.
15548
15549 2001-03-08  Dekel Tsur  <dekelts@tau.ac.il>
15550
15551         * BufferView.h:
15552         * lyxparagraph.h: Add '#include "LString.h"' to fix compilation
15553         problem.
15554
15555 2001-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15556
15557         * main.C (main): pass lyx_localedir to gettext_init().
15558
15559         * gettext.h: remove locale_init and gettext_init macros
15560
15561         * gettext.C (locale_init): new function
15562         (gettext_init): new function
15563
15564         * lyx_gui.C (LyXGUI): use locale_init() instead of explicit
15565         setlocale().
15566
15567 2001-03-07  Edwin Leuven  <leuven@fee.uva.nl>
15568
15569         * Moved credits to frontends:
15570         * credits.[Ch]: removed
15571         * credits_form.[Ch]: removed
15572         * lyx_gui_misc.C: remove credits stuff
15573         * Makefile.am:
15574
15575 2001-03-07  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15576
15577         * lyx_main.C: make toplevel_keymap a boost::scoped_ptr.
15578
15579         * kbmap.[Ch]: make kb_key::table a boost::shared_ptr, remove
15580         unneeded destructor.
15581
15582         * intl.[Ch] (Intl): free the fd_form_keymap, make the fd_form_keymap
15583         a standalone pointer again.
15584
15585         * ColorHandler.[Ch]: make lyxColorHandler a boost::scoped_ptr
15586
15587 2001-03-06  John Levon  <moz@compsoc.man.ac.uk>
15588
15589         * Makefile.am:
15590         * filedlg.h:
15591         * filedlg.C:
15592         * LyXAction.C:
15593         * ToolbarDefaults.C:
15594         * bufferlist.C:
15595         * commandtags.h:
15596         * form1.C:
15597         * form1.h:
15598         * lyx_cb.C:
15599         * lyx_cb.h:
15600         * lyxfunc.h:
15601         * lyxfunc.C:
15602         * BufferView_pimpl.C: use new file dialog in GUII
15603
15604         * lyx_cb.h:
15605         * lyx_cb.C: remove LayoutsCB to Toolbar
15606
15607 2001-03-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15608
15609         * ShareContainer.h (get): add std:: qualifier
15610
15611 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15612
15613         * ShareContainer.h: define a proper ShareContainer::value_type
15614         type (and use typename to please compaq cxx)
15615
15616 2001-03-06  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15617
15618         * lyxparagraph.h: move serveral local vars to
15619         ParameterStruct/ParagraphParameters., use ShareContainer in
15620         FontTable., make vars in FontTable private and add getter and
15621         setter.
15622
15623         * paragraph.C: changes because of the above.
15624
15625         * lyxfont.h: remove copy constructor and copy assignment. (the
15626         default ones is ok), move number inside FontBits. move inlines to
15627         lyxfont.C
15628
15629         * lyxfont.C: add number to initializaton of statics, move several
15630         inlines here. constify several local vars. some whitespace
15631         cleanup. Dont hide outerscope variables.
15632
15633         * Spacing.h: add two new constructors to match the set methods.
15634
15635         * ShareContainer.h: new file, will perhaps be moved to support
15636
15637         * ParameterStruct.h: new file
15638
15639         * ParagraphParameters.h: new file
15640
15641         * ParagraphParameters.C: new file
15642
15643         * Makefile.am (lyx_SOURCES): add ParagraphParameters.C,
15644         ParagraphParameters.h, ParameterStruct.h and ShareContainer.h
15645
15646         * BufferView_pimpl.C: ParagraphParameter changes.
15647         * buffer.C: Likewise.
15648         * bufferview_funcs.C: Likewise.
15649         * text.C: Likewise.
15650         * text2.C: Likewise.
15651
15652 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15653
15654         * lyxfind.C (LyXReplace): do not redefine default argument in
15655         implementation.
15656         (IsStringInText): ditto
15657         (SearchForward): ditto
15658         (SearchBackward): ditto
15659
15660 2001-03-06  Juergen Vigna  <jug@sad.it>
15661
15662         * lyxfind.C (IsStringInText): put parentes around expressions.
15663
15664 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
15665
15666         * lyxfind.[Ch]: find stuff moved out of text2.C/lyxtext.h
15667
15668 2001-02-23  John Levon  <moz@compsoc.man.ac.uk>
15669
15670         * lyx_main.C: add ISO_Left_Tab as bind synonym for Tab
15671
15672         * stl_string_fwd.h: add comment
15673
15674         * lyx_gui_misc.C: killed ALWAYS_CLOSE_MATH_PANELS
15675
15676         * tabular.h:
15677         * tabular.C: remove unused DocBook methods
15678
15679         * intl.C:
15680         * language.C:
15681         * paragraph.C:
15682         * buffer.C:
15683         killed DO_USE_DEFAULT_LANGUAGE
15684
15685 2001-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15686
15687         * lyx_gui.C: do not include language.h.
15688
15689         * bufferview_funcs.C (ToggleAndShow): do not provide optional
15690         arguments in function implementation.
15691
15692 2001-02-28  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15693
15694         * BufferView_pimpl.C: add <ctime>
15695
15696 2001-02-27  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15697
15698         * BufferView_pimpl.C: add using std::find_if
15699
15700 2001-02-27  José Matos  <jamatos@fep.up.pt>
15701
15702         * LaTeXFeatures.C (getIncludedFiles): call to BasePath replaced
15703         by OnlyPath.
15704
15705 2001-02-11  José Matos  <jamatos@fep.up.pt>
15706
15707         * buffer.C (makeDocBookFile): command styles now have a parameter as
15708         "title" by default.
15709
15710 2001-02-23  Edwin Leuven <leuven@fee.uva.nl>
15711
15712         * layout_forms.[Ch]: removed
15713         * lyx_cb.[Ch]: out character
15714         * lyx_gui.C: out character
15715         * lyx_gui_misc.C: out character
15716         * bufferview_funcs.C: : out character,
15717         added toggleall as parameter in ToggleAndShow
15718
15719 2001-02-26  Dekel Tsur  <dekelts@tau.ac.il>
15720
15721         * lyxfunc.C (getStatus): Fix the LFUN_EXPORT case.
15722
15723         * text2.C (SetCurrentFont): Disable number property at boundary.
15724
15725 2001-02-26  Juergen Vigna  <jug@sad.it>
15726
15727         * lyxfunc.C (getStatus): added a string argument override function so
15728         that this is correctly called from LyXFunc::Dispatch if it contains a
15729         do_not_use_argument which is used!
15730         (Dispatch): added check for "custom" export and call appropriate func.
15731
15732 2001-02-23  Dekel Tsur  <dekelts@tau.ac.il>
15733
15734         * lyxrc.C: Add language_command_local, language_use_babel and
15735         language_global_options.
15736
15737         * lyxfont.C (latexWriteStartChanges): Use language_command_local.
15738
15739         * buffer.C (makeLaTeXFile): Use language_use_babel and
15740         language_global_options.
15741
15742 2001-02-23  Juergen Vigna  <jug@sad.it>
15743
15744         * lyxfunc.C (Dispatch): removed the whole part of the switch statement
15745         which works with LyXText and putted it inside BufferView. Here now we
15746         only call for that part the BufferView::Dispatch() function.
15747
15748         * BufferView.C (Dispatch): added.
15749
15750         * BufferView_pimpl.C (Dispatch): added! Here are now all dispatch
15751         functions which needs to use a LyXText over from LyXFunc.
15752         (MenuInsertLyXFile): added
15753         (getInsetByCode): added
15754         (moveCursorUpdate): added
15755         (static TEXT): added
15756
15757 2001-02-22  Juergen Vigna  <jug@sad.it>
15758
15759         * BufferView_pimpl.C (update): call a status update to see if LyXText
15760         needs it.
15761
15762 2001-02-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
15763
15764         * vc-backend.C (revert): implement for CVS
15765         (getLog): implement for CVS
15766
15767 2001-02-20  Juergen Vigna  <jug@sad.it>
15768
15769         * text2.C (ClearSelection): added BufferView param for inset_owner call
15770
15771         * lyxfunc.C (TEXT): added this function and use it instead of
15772         directly owner->view()-text of getLyXText().
15773
15774 2001-02-20  Edwin Leuven <leuven@fee.uva.nl>
15775
15776         * src/layout_forms.C: out preamble
15777         * src/layout_forms.h: out preamble
15778         * src/lyx_cb.C: out preamble
15779         * src/lyx_cb.h: out preamble
15780         * src/lyx_gui.C: out preamble
15781         * src/lyx_gui_misc.C: out preamble
15782         * src/lyxfunc.C: connect with guii preamble
15783
15784 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
15785
15786         * src/buffer.h: tiny clean-ups to allow compilation with DEC cxx.
15787
15788 2001-02-17  Dekel Tsur  <dekelts@tau.ac.il>
15789
15790         * LaTeX.C (run): Do not use 'scanres & RERUN' when deciding
15791         whether to run bibtex.
15792
15793 2001-02-16  Dekel Tsur  <dekelts@tau.ac.il>
15794
15795         * Makefile.am (lyx_SOURCES): Remove BackStack.h
15796
15797 2001-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
15798
15799         * Makefile.am (lyx_SOURCES): removed bibforms.h
15800
15801         * vspace.h: doxygen
15802
15803         * text.C (GetVisibleRow): make several local vars const
15804
15805         * tabular.C: small cleanup.
15806
15807         * lyxserver.C (callback): use compare instead of strncmp
15808
15809         * lyxparagraph.h: remove all code dep. on HAVE_ROPE, move inclass
15810         inlines to after class or to paragraph.C
15811
15812         * lyxfont.h: remove friend operator!=
15813
15814         * converter.h: move friend bool operator< to non friend and after
15815         class def.
15816
15817         * combox.h: small cleanup
15818
15819         * buffer.h: doxygen, remove unused constructor, move inclas inlies
15820         to inlines after class def.
15821
15822         * buffer.C (pop_tag): use string operations instead of strcmp
15823
15824         * bmtable.c: doxygen, small cleanup
15825
15826         * LaTeX.h: remove friend operator==
15827
15828 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
15829
15830         * screen.C:
15831         * lyxrc.[Ch]:
15832         * lyxfunc.C:
15833         * lyxfont.[Ch]:
15834         * lyx_cb.C:
15835         * intl.[Ch]:
15836         * commandtags.h:
15837         * buffer.C:
15838         * WorkArea.[Ch]:
15839         * LyXAction.C:
15840         * BufferView_pimpl.C:
15841         * BufferView.[Ch]: remove cruft
15842
15843 2001-02-14  Juergen Vigna  <jug@sad.it>
15844
15845         * lyxfunc.C: removed #if 0 unused code
15846
15847         * lyxfunc.C (Dispatch): make LFUN_QUOTE work for InsetText.
15848
15849         * BufferView_pimpl.C (update): set updatestatus of inset if needed.
15850
15851         * text2.C (SetSelection): added a BufferView * parameter
15852
15853 2001-02-13  Juergen Vigna  <jug@sad.it>
15854
15855         * lyxfunc.C (Dispatch): fixed protected blank problem.
15856         * BufferView2.C (protectedBlank): added LyxText * parameter.
15857
15858         * tabular.C (AppendRow): forgot to set row_info of newly added row.
15859         (AppendColumn): same as above for column_info.
15860
15861         * lyxfunc.C (Dispatch): supported some more functions in InsetText.
15862         (moveCursorUpdate): use a LyXText param for support of InsetText.
15863
15864         * BufferView_pimpl.C (doubleClick): added support for InsetText.
15865         (tripleClick): ditto
15866
15867         * lyxfunc.C (LFUN_APPENDIX): changed to use "text" pointer.
15868
15869         * BufferView_pimpl.C (update): added LyXText param to honor insets.
15870
15871         * bufferview_funcs.C (ToggleAndShow): fixed for text in insets.
15872
15873         * text2.C (SetSelection): set correct update status if inset_owner
15874         (ToggleFree): ditto
15875
15876 2001-02-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
15877
15878         * tabular.C: remove some commented code.
15879
15880 2001-02-12  John Levon  <moz@compsoc.man.ac.uk>
15881
15882         * BufferView_pimpl.C: call hideSplash()
15883
15884         * LyXAction.C: make buffer-child-insert use LFUN_CHILD_CREATE
15885
15886         * include_form.h:
15887         * bibforms.h: remove
15888
15889         * lyxfunc.C:
15890         * src/commandtags.h: LFUN_CHILDINSERT -> LFUN_CHILD_INSERT,
15891           add LFUN_CHILD_CREATE
15892
15893         * counters.h: fix tiny typo
15894
15895         * lyx_cb.C:
15896         * lyx.h:
15897         * lyx_gui.C:
15898         * lyx.C: move splash to frontends/xforms/
15899
15900         * lyx_gui_misc.C: move Include and Bibform to frontends
15901
15902         * lyxvc.h: clarify comment
15903
15904         * vspace.C: tiny housekeeping
15905
15906 2001-02-10  Dekel Tsur  <dekelts@tau.ac.il>
15907
15908         * text.C (PrepareToPrint): RTL Fix.
15909
15910         * paragraph.C (GetUChar): New method.
15911         (String):  Use GetUChar.
15912
15913         * buffer.C (asciiParagraph): Use GetUChar.
15914
15915 2001-02-09  Dekel Tsur  <dekelts@tau.ac.il>
15916
15917         * text.C (GetVisibleRow): Fix selection drawing for RTL text in tables.
15918
15919 2001-02-09  John Levon  <moz@compsoc.man.ac.uk>
15920
15921         * buffer.h:
15922         * buffer.C: rename to getLogName(), handle
15923           build log / latex log nicely
15924
15925 2001-02-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15926
15927         * MenuBackend.C:
15928         * MenuBackend.h: remove support for reference menuitem type.
15929
15930 2001-02-07  John Levon  <moz@compsoc.man.ac.uk>
15931
15932         * BufferView_pimpl.C: housekeeping
15933         * BufferView_pimpl.h:
15934         * LyXView.h:
15935         * Makefile.am:
15936         * Timeout.C:
15937         * Timeout.h:
15938         * minibuffer.h: move Timeout GUI-I
15939
15940 2001-02-07  Dekel Tsur  <dekelts@tau.ac.il>
15941
15942         * lyxrc.C (read): Update converters data-structures.
15943
15944 2001-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
15945
15946         * LaTeX.h (operator!=): add operator != for Aux_Info
15947
15948 2001-02-06  John Levon  <moz@compsoc.man.ac.uk>
15949
15950         * Makefile.am: remove LaTeXLog.C, log_form.[Ch]
15951
15952         * LaTeXLog.C: deleted, useful code moved to Buffer
15953
15954         * buffer.h:
15955         * buffer.C: new function getLatexLogName()
15956
15957         * lyx_gui_misc.C:
15958         * lyx_gui.C:
15959         * lyxvc.C:
15960         * lyxvc.h:
15961         * lyxfunc.C: use frontends for LaTeX and VC logs
15962
15963 2001-02-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15964
15965         * LaTeX.h: yet another std:: that Allan forgot.
15966
15967         * Variables.C (set): renamed from isset(), because this clashes
15968         with some HP-UX macros (grr).
15969
15970 2001-02-06  Allan Rae  <rae@lyx.org>
15971
15972         * LaTeX.h: Another bug fix.  Missing std:: this time.
15973
15974 2001-02-04  Allan Rae  <rae@lyx.org>
15975
15976         * paragraph.C (TeXOnePar): Partial fix for the '\n' generation in
15977         floats problem. I've left it commented out because it's not quite
15978         correct.  It should also test that the current object is a table or
15979         figure inset.  But I haven't gotten around to figuring out how to do
15980         that.  I *think* it'll be something like: "table" == inset.type()
15981
15982         * LaTeX.h (operator==): Aux_Info should have a friend that returns a
15983         bool.
15984
15985 2001-02-02  Dekel Tsur  <dekelts@tau.ac.il>
15986
15987         * LaTeX.C (scanAuxFile): A rewrite of this method. It now returns
15988         all the citation/databases/styles in the auxilary file.
15989         (run): Rerun latex if there was a babel language error.
15990
15991 2001-02-01  Dekel Tsur  <dekelts@tau.ac.il>
15992
15993         * text.C (Backspace): Preserve the font when changing newline char
15994         with a space.
15995         (BreakParagraph): If the cursor is before a space, delete the space.
15996
15997         * lyx_cb.C (QuitLyX): Do not save files when running with no gui.
15998
15999 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
16000
16001         * BufferView2.C (ChangeInsets): Renamed from ChangeRefs. Accept a
16002         new argument (code).
16003         (ChangeCitationsIfUnique): New method.
16004
16005         * paragraph.C (GetPositionOfInset): Handle bibkey.
16006
16007 2001-01-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
16008
16009         * BufferView_pimpl.h: change type of Position::par_pos to
16010         LyXParagraph::size_type.
16011
16012 2001-01-29  Dekel Tsur  <dekelts@tau.ac.il>
16013
16014         * BufferView_pimpl.C (savePosition, restorePosition): Write
16015         messages to minibuffer.
16016
16017 2001-01-28  José Matos  <jamatos@fep.up.pt>
16018
16019         * buffer.C (makeDocBookFile): adds support for document language.
16020         A silly restriction on the name of LatexCommand types where removed.
16021         Added support for CDATA sections, allows to chars unescaped, used
16022         among others in code, to avoid escape < and >.
16023
16024 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
16025
16026         * BufferView_pimpl.C (savePosition, restorePosition): Use a vector of
16027         saved positions instrad of a stack. Furthermore, a position is
16028         stored using paragraph id/paragraph position.
16029
16030         * commandtags.h: Add LFUN_BOOKMARK_SAVE and LFUN_BOOKMARK_GOTO.
16031         Remove LFUN_REF_BACK.
16032
16033 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
16034
16035         * converter.C (dvipdfm_options): New method.
16036
16037 2001-01-26  Dekel Tsur  <dekelts@tau.ac.il>
16038
16039         * vspace.C (isValidLength): Fix for empty input string.
16040
16041 2001-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
16042
16043         * LyXAction.C (init): change description of LFUN_FIGURE to
16044         "Insert Graphics"
16045
16046 2001-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
16047
16048         * LaTeX.C: add using directive
16049
16050 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
16051
16052         * MenuBackend.C (expand): Fix the sorting of the formats.
16053
16054 2001-01-24  John Levon  <moz@compsoc.man.ac.uk>
16055
16056         * lyx_main.C: tiny error message fix
16057
16058 2001-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
16059
16060         * lyx_gui.C (LyXGUI): force the LC_NUMERIC locale to "C" after
16061         calling fl_initialize(). This fixes the problem with ',' as
16062         decimal separator in text files.
16063
16064 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
16065
16066         * trans.C (process): Fix the keymap bug.
16067
16068 2001-01-23  Dekel Tsur  <dekelts@tau.ac.il>
16069
16070         * LaTeX.C (scanAuxFiles): New method. Provides support for
16071         multiple bibliographies (when using the bibtopic/bibunits pacakges).
16072         (scanLogFile) Scan for "run BibTeX" messages.
16073
16074         * buffer.C (makeLaTeXFile): Do not load the ae package when using
16075         OT1 font encoding. Also, load the aecompl package if the ae
16076         package is loaded.
16077
16078         * tex-strings.C: Add "ae" to tex_fonts[] (from Matej Cepl).
16079
16080 2001-01-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
16081
16082         * texrow.C (increasePos): turn two error messages into debug
16083         messages.
16084
16085 2001-01-20  Dekel Tsur  <dekelts@tau.ac.il>
16086
16087         * LaTeX.C (scanAux): Handle the \@input macro.
16088         (runBibTeX): Use scanAux().
16089
16090         * language.C (latex_options_): New field.
16091
16092         * LaTeXFeatures.C (getMacros): Add language macros.
16093
16094         * buffer.C (makeLaTeXFile): Small fix.
16095
16096 2001-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
16097
16098         * lyxfunc.C: fix the name of the inset for LFUN_CHILDINSERT
16099
16100         * text2.C: add a using directive.
16101
16102 2000-01-17  John Levon  <moz@compsoc.man.ac.uk>
16103
16104         * BufferView2.C:
16105         * lyx_gui_misc.h:
16106         * lyxfr1.C:
16107         * lyxfunc.C: kill LyXBell.
16108
16109 2001-01-17  Dekel Tsur  <dekelts@tau.ac.il>
16110
16111         * text.C (IsBoundary): Remove the error message
16112
16113         * WorkArea.C (work_area_handler): Decrease keyboard purge threshold.
16114
16115         * lyxrc.C (setDefaults): Correct initialization value for
16116         font_norm_type.
16117
16118 2001-01-15  Dekel Tsur  <dekelts@tau.ac.il>
16119
16120         * BufferView2.C (gotoInset): New method. Replaces gotoNote() and
16121         gotoError().
16122
16123         * text2.C (GotoNextInset): New method. Replaces GotoNextError()
16124         and GotoNextNote().
16125
16126         * src/LyXAction.C: Added reference-next.
16127
16128         * text.C (InsertChar): Use contains instead of strchr.
16129
16130         * lyx_cb.C (MenuInsertLabel): Enable default value code.
16131
16132 2001-01-13  Dekel Tsur  <dekelts@tau.ac.il>
16133
16134         * paragraph.C (SimpleTeXOnePar) Put \protect before paragraph
16135         alignment commands (when needed).
16136
16137         * text.C (InsertChar): Add ':' to number separator chars.