]> git.lyx.org Git - features.git/blob - src/ChangeLog
Turn LyX into a singleton class. Kill the BufferView cache.
[features.git] / src / ChangeLog
1 2003-10-14  Angus Leeming  <leeming@lyx.org>
2
3         * lyx_main.[Ch]: make LyX a singleton class, accessible though the new
4         static member functions LyX::ref() and LyX::cref.
5         (lastfiles): new accessor functions for the new lastfiles_ member var.
6         (addLyXView, views_): add a new LyXView to the list of views_.
7         (updateInset): loop over all LyXViews to call their own updateInset
8         member function, returning a pointer to the Buffer owning the inset.
9
10         * BufferView_pimpl.C (loadLyXFile):
11         * MenuBackend.C (expandLastfiles):
12         * bufferlist.C (MenuWrite, QuitLyX):
13         lastfiles is no longer a global variable.
14         Access through LyX::ref().lastfiles(), LyX::cref().lastfiles().
15
16         * boost.C (emergencyCleanup): LyX::emergencyCleanup is no longer a
17         static function. Access through LyX::cref().emergencyCleanup().
18
19 2003-10-14  André Pönitz  <poenitz@gmx.net>
20
21         * iterators.[Ch]: new direct access to innermost LyXText and Inset
22
23         * undo.[Ch]: restoring part of 'undo in insets'
24
25         * Makefile.am:
26         * undo_funcs.[Ch]: merge with undo.[Ch]
27
28         * tabular.C: small cleansing stuff
29
30 2003-10-14  Alfredo Braunstein  <abraunst@libero.it>
31
32         * paragraph_funcs.C (readParToken): report unknown insets as error
33         boxes. Use the outer paragraph as location (also for unknown
34         tokens).
35
36         * factory.C (readInset): do not abort on reading an unknown inset. 
37         Eat it and return 0.
38
39 2003-10-13  Angus Leeming  <leeming@lyx.org>
40
41         * lyx_main.C (LyX): remove call to setDisplayTranslator().
42
43         * lyxrc.C: displayTranslator is now a function,
44         declared in GraphicsTypes.h.
45
46 2003-10-13  Joao Luis Meloni Assirati <assirati@fma.if.usp.br>
47
48         * format.C: new placeholder $$a to pass the socket address.
49
50         * bufferlist.[Ch]: new function getBufferFromTmp.
51
52         * lyxfunc.C: Modification of LFUN_GOTOFILEROW so that it can handle
53           files in the temporary dir.
54
55 2003-10-13  Joao Luis Meloni Assirati <assirati@fma.if.usp.br>
56
57         * lyxsocket.[Ch]: new files. A simple local socket interface for lyx.
58
59         * Makefile.am: add lyxsocket.[Ch].
60
61         * lyx_main.C (error_handler): handle SIGPIPE.
62
63 2003-10-13  André Pönitz  <poenitz@gmx.net>
64
65         * BufferView_pimpl.C:
66         * lyxtext.h:
67         * text.C:
68         * text2.C:
69         * text3.C:
70         * undo_funcs.[Ch]: use paroffset_type instead of
71           ParagraphList::iterators to prevent multiple conversion
72           (and get a more robust interface)
73
74 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
75
76         * lyxfunc.C (dispatch): RESULT -> dispatch_result
77         * lyxtext.h: ditto
78         * text3.C (dispatch): ditto
79
80 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
81
82         * LaTeX.C (handleFoundFile): move the static to smaller scope,
83         move the onlyfile, use onlyfile instead of foundfile in a couple
84         of places.
85
86         * DepTable.C (update): flush the error stream a bit more
87
88 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
89
90         * lyxserver.C (callback): adjust
91
92         * lyxfunc.C (getStatus): add a missing brace in commented code
93         (ensureBufferClean): reindent
94         (dispatch): delete version taking a string
95
96 2003-10-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
97
98         * LaTeX.C (deplog): move found file handlig from here...
99         (handleFoundFile): .. to new function here.
100         (deplog): make sure to discover several files mentioned on the
101         same log line.
102
103 2003-10-10  André Pönitz  <poenitz@gmx.net>
104
105         * lyxfunc.C:
106         * lyxtext.h:
107         * tabular.C:
108         * text.C:
109         * text2.C:
110         * text3.C: fix some of the tabular crashes
111
112 2003-10-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
113
114         * MenuBackend.C (binding): put debug message into Debug::KBMAP
115
116         * lyxlex_pimpl.C (setFile): put debug messages into Debug::LYXLEX.
117
118 2003-10-09  André Pönitz  <poenitz@gmx.net>
119
120         * lyxcursor.h: use paroffset_type instead of ParagraphList::iterator
121
122         * BufferView.C:
123         * BufferView_pimpl.C:
124         * bufferview_funcs.C:
125         * lyx_cb.C:
126         * lyxcursor.C:
127         * lyxfind.C:
128         * lyxfunc.C:
129         * lyxtext.h:
130         * text.C:
131         * text2.C:
132         * text3.C:
133         * text_funcs.[Ch]:
134         * textcursor.[Ch]:
135         * undo_funcs.C: adjust
136
137 2003-10-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
138
139         * text2.C (incrementItemDepth): new function, use a backtracking
140         algorithm to discover the correct item depth.
141         (resetEnumCounterIfNeeded): new function, use a backtracking
142         algorithm to discover if counter reset is needed.
143         (setCounter): use them. Simplify a bit. Add different labels for
144         different item depths for itemize.
145
146         * paragraph.C (Paragraph): remove initialization of enumdepth
147         (operator=): ditto
148
149         * paragraph.h: get rid of enumdepth, and use itemdepth both for
150         enumerate and itemize. Change the type of itemdepth to signed char.
151
152 2003-10-08  André Pönitz  <poenitz@gmx.net>
153
154         * lyxtext.h: make the paragraphs_ a pointer instead a ref to make the
155           thing assignable.
156         * text.C:
157         * text2.C: adjust
158
159         * tabular.[Ch]: fix crash after 'row-insert'
160
161 2003-10-08  Angus Leeming  <leeming@lyx.org>
162
163         Fix doxygen warnings.
164
165         * CutAndPaste.[Ch] (availableSelections). Now returns a const vector.
166         Remove CutAndPaste:: prefix from header file declaration.
167
168         * LColor.h (fill): remove LColor:: prefix from declaration.
169
170         * buffer.C (readParagraph, simpleLinuxDocOnePar, simpleDocBookOnePar):
171         use lyx::depth_type rather than Paragraph::depth_type so that
172         header file and .C file match.
173
174         * converter.h (intToFormat): remove Converters:: prefix from declaration.
175
176         * Spacing.h: \file Spacing.h -> \file src/Spacing.h
177         * aspell.C: \file aspell_local.C -> \file aspell.C
178         * gettext.C: \file gettext.C -> \file src/gettext.C
179         * gettext.h: \file gettext.h -> \file src/gettext.h
180         * lyxfont.C: \file lyxfont.C -> \file src/lyxfont.C
181         * lyxfont.h: \file lyxfont.h -> \file src/lyxfont.h
182         * text.C: \file text.C -> \file src/text.C
183
184         * toc.C: move comment so that doxygen is not confused.
185
186 2003-10-07  Angus Leeming  <leeming@lyx.org>
187
188         * factory.C (createInset): InsetExternal::Params -> InsetExternalParams
189
190 2003-10-07  Jürgen Spitzmüller <j.spitzmueller@gmx.de>
191
192         * aspell.C:
193         * aspell_local.h: add forgotten std::string's.
194
195 2003-10-07  Martin Vermeer <martin.vermeer@hut.fi>
196
197         * LaTeXFeatures.C:
198         * LyXAction.C:
199         * factory.C:
200         * lfuns.h:
201         * lyxfunc.C:
202         * text3.C: The Box patch. Fancybox support, minipage, parbox
203
204 2003-10-07  Martin Vermeer <martin.vermeer@hut.fi>
205
206         * CutAndPaste.h:
207         * DepTable.h:
208         * FloatList.h:
209         * LaTeXFeatures.h:
210         * ParagraphParameters.h:
211         * TextCache.h:
212         * Thesaurus.h:
213         * bufferlist.h:
214         * exporter.h:
215         * importer.h:
216         * lastfiles.h:
217         * lyxfind.h:
218         * lyxfont.h:
219         * lyxlex.h:
220         * lyxtextclasslist.h:
221         * messages.h:
222         * paragraph.h:
223         * paragraph_pimpl.C:
224         * textcursor.h: add <string> and other small fixes to make Lars'
225         std::string patch compile with STLport.
226
227 2003-10-06  Angus Leeming  <leeming@lyx.org>
228
229         * LColor.h: Add missing #include <string>.
230
231 2003-10-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
232
233         * All most all file in all subdirs: Make <string> be the prefered
234         way of getting to std::string, add using declarations.
235
236 2003-10-06  André Pönitz  <poenitz@gmx.net>
237
238         * metricsinfo.C: initialize LyXFont before changing attribute.
239         (fixes the 'math in \emph is upright' bug)
240
241 2003-10-06  André Pönitz  <poenitz@gmx.net>
242
243         * tabular.[Ch]: saner reinitialization, ret rid of LyXTabular::owner_
244
245 2003-10-06  Martin Vermeer  <martin.vermeer@hut.fi>
246
247         * graph.C:
248         * paragraph_pimpl.C: Small fixes to build using STLport
249
250 2003-10-02  André Pönitz  <poenitz@gmx.net>
251
252         * lyxfunc.C:
253         * text3.C: move handling of LFUN_DEPTH *; fix #1360
254
255 2003-10-01  André Pönitz  <poenitz@gmx.net>
256
257         * factory.C: assert early
258
259 2003-09-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
260
261         * lyx_main.C: remove the global debug object
262
263         * debug.h: adjust for new debugstream
264
265         * debug.C: adjust for new debugstream and keep the global debug
266         object here.
267
268 2003-09-22  Angus Leeming  <leeming@lyx.org>
269
270         * paragraph_pimpl.h: add #include "lyxfont.h". Needed by earlier versions
271         of g++ which otherwise complain that the scoped_ptr destructor can't delete
272         an incomplete class LyXFont.
273
274 2003-09-22  Martin Vermeer  <martin.vermeer@hut.fi>
275
276         * factory.C: bug fix in branches
277
278 2003-09-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
279
280         * lyxfunc.C (processKeySym): adjust
281         (dispatch): adjust
282         (dispatch): change arg name from ev to func, adjust
283         (sendDispatchMessage): ditto
284
285         * lyx_main.C (defaultKeyBindings): adjust keybindings
286         (deadKeyBindings): ditto
287
288         * kbsequence.C (addkey): return a FuncRequest
289
290         * kbmap.h (kb_key): struct var FuncRequest instead of int action.
291
292         * kbmap.C (bind): take a FuncRequest as arg, adjust
293         (read): adjust
294         (lookup): adjust
295         (defkey): change to take a FuncRequest as arg, adjust
296         (findbinding): take a FuncRequest as arg, adjust.
297
298         * funcrequest.h (operator=): added
299
300         * funcrequest.C (FuncRequest): default kb_action changed from
301         LFUN_UNKNOWN_ACTION to LFUN_NO_ACTION
302
303         * buffer.C (dispatch): simplify
304         (dispatch): adjust to take a FuncRequest as arg, adjust
305
306         * boost.C (assertion_failed): change assertion message slightly
307
308         * ToolbarBackend.C (read): simplify
309
310         * MenuBackend.C (binding): adjust call to findbinding, add a
311         message if no binding is found.
312         (read): simplify
313         (expandToc): correct by adding a empty FuncRequest
314
315         * LyXAction.C: include <boost/assert.hpp>
316         (isPseudoAction): delete function
317         (LookupFunc): change name to...
318         (lookupFunc): this. change return type to FuncRequest.
319         (getActionName): take kb_action as arg, simplify
320         (funcHasFlag): add an assert, simplify.
321
322 2003-09-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
323
324         * toc.C (action): return a FuncRequest, simplify
325
326         * lyxfunc.C (processKeySym): adjust
327         (getStatus): delete version that takes an int.
328         (getStatus): adjust
329         (dispatch): delete version that takes action as int
330         (dispatch): adjust
331         (sendDispatchMessage): simplify and adjust
332
333         * funcrequest.C (getArg): take unsigned int as arg
334
335         * ToolbarBackend.C (read): adjust
336         (add): delete version that takes func as a string.
337         (getIton): take a FuncRequest as arg
338
339         * MenuBackend.h (MenuItem): store a FuncRequest instead of an int
340         action.
341
342         * MenuBackend.C (MenuItem): add a new construct that only takes a
343         Kind, simplify the constructor use for submenus.
344         (add): adjust
345         (expandLastfiles): adjust
346         (expandDocuments): adjust
347         (expandFormats): adjust
348         (expandFloatListInsert): adjust
349         (expandFloatInsert): adjust
350         (expandToc2,expandToc,expandPasteRecent,expandBranches): adjust
351
352         * LyXAction.h: remove typdefs pseudo_map, arg_item and arg_map.
353         Remove class variables lyx_pseudo_map and lyx_arg_map
354
355         * LyXAction.C (searchActionArg): delete function
356         (getPseudoAction): delete function
357         (retrieveActionArg): delete function
358         (LookupFunc): make it return kb_action, simplify.
359         (getActionName): simplify
360
361         * factory.C (createInset): fix new bug
362
363 2003-09-19  Angus Leeming  <leeming@lyx.org>
364
365         * CutAndPaste.C (pasteSelection): remove fudge used to set the
366         masterFilename_ parameter in the include inset.
367
368         * factory.C (createInset): changes due to the changes to InsetInclude.
369
370 2003-09-19  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
371
372         * paragraph.C: use appropriate alignment tags inside floats (bug 1290)
373
374 2003-09-18  Angus Leeming  <leeming@lyx.org>
375
376         * buffer.C:
377         * BufferView.C: pass the buffer when calling Inset::getLabelList,
378         Inset::fillWithBibKeys.
379         * tabular.[Ch] (getLabelList): receive, pass on a Buffer const & arg.
380
381 2003-09-18  Angus Leeming  <leeming@lyx.org>
382
383         * LaTeXFeatures.[Ch]: append a '_' to the names of all private member
384         variables.
385         (ctor): pass and store a 'Buffer const &'
386         (buffer): new member function.
387
388         * buffer.C (makeDocBookFile, makeLinuxDocFile, makeLaTeXFile): pass
389         '*this' to the LaTeXFeatures ctor.
390
391 2003-09-18  Angus Leeming  <leeming@lyx.org>
392
393         * LColor.h:
394         * lyxfont.C:
395         * lyxfont.h:
396         * lyxtext.h:
397         * text.C: rename EnumLColor as LColor_color.
398
399 2003-09-18  Angus Leeming  <leeming@lyx.org>
400
401         * cursor.[Ch]: use the dispatch_result wrapper class DispatchResult to
402         remove #include "insets/insetbase.h" from cursor.h.
403
404 2003-09-18  Angus Leeming  <leeming@lyx.org>
405
406         * paragraph.[Ch] (insetAllowed): use the InsetOld::Code wrapper class
407         InsetOld_code to remove #include "inset.h".
408
409         * iterators.C: add #include "insets/inset.h"
410
411 2003-09-16  Martin Vermeer  <martin.vermeer@hut.fi>
412
413         * BufferView.C: remove more locking stuff that apparently doesn't
414         do anything sensible.
415
416 2003-09-16  André Pönitz  <poenitz@gmx.net>
417
418         * paragraph.[Ch]:
419         * paragraph_pimpl.[Ch]: un-pimpl Paragraph::(Pimpl::)text for a >10%
420           performance boost.
421
422 2003-09-16  Angus Leeming  <leeming@lyx.org>
423
424         * lyxfont.h (LyXFont_size): a wrapper class for LyXFont::FONT_SIZE.
425
426         * paragraph.[Ch] (highestFontInRange): use LyXFont_size as function
427         arg/return type.
428
429         * paragraph.h: remove #include "lyxfont.h". Forward declare
430         LyXFont_size.
431
432 2003-09-16  Angus Leeming  <leeming@lyx.org>
433
434         * paragraph.C (IsInsetChar): new function in namespace anon, moved out
435         of support/textutils.h.
436         (isWord): move the contents of support/textutils.h's IsWordChar here.
437
438         * buffer.C:
439         * lyxfind.C:
440         * rowpainter.C:
441         * text.C:
442         * text2.C: add #include "paragraph.h".
443
444         * rowpainter.C:
445         * text.C: replace IsInsetChar(c) with a direct test of Paragraph::META_INSET.
446
447 2003-09-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
448
449         * main.C:
450         * lyx_main.C:
451         * lyx_cb.C:
452         * buffer.C:
453         * LaTeX.C: use namespace alias for lyx::support::os
454
455 2003-09-16  Angus Leeming  <leeming@lyx.org>
456
457         * bufferparams.C:
458         * bufferview_funcs.C:
459         * factory.C:
460         * lyxfunc.C:
461         * paragraph_pimpl.C:
462         * rowpainter.C:
463         * text.C: add #include "LColor.h".
464
465 2003-09-16  Angus Leeming  <leeming@lyx.org>
466
467         * lyxfont.[Ch]: (setFamily, setSeries, setShape, setSize, setEmph,
468         setUnderbar, setNoun, setNumber, setColor, setLanguage): no longer
469         return LyXFont &.
470         Store the FontBits::color variable as an int rather than as an
471         LColor::colorso that we can move LColor.h out of the lyxfont.h header
472         file.
473
474         * rowpainter.C (paintAppendixStart, paintPageBreak, paintLengthMarker):
475         LyXFont::setColor, decSize no longer return a LyXFont &, so cannot
476         string calls together.
477
478         * lyxrc.C: add #include "LColor.h".
479
480 2003-09-15  Angus Leeming  <leeming@lyx.org>
481
482         * bufferparams.[Ch]: store the pimpl_ as a copied_ptr, rather than as
483         a cow_ptr.
484
485 2003-09-15  Angus Leeming  <leeming@lyx.org>
486
487         * LColor.h: add an EnumLColor wrapper for LColor::color.
488
489         * lyxfont.[Ch] (color, setColor, realColor):
490         * lyxtext.h, text.C (backgroundColor):
491         pass EnumLColor args to/from the functions, rather than LColor::color
492         ones.
493
494         * lyxfont.h:
495         * lyxtext.h: forward declare EnumLColor.
496
497         * lyx_main.C: add #include "LColor.h".
498
499 2003-09-15  Angus Leeming  <leeming@lyx.org>
500
501         * .cvsignore: add lyx-gtk.
502
503 2003-09-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
504
505         * Chktex.C
506         * LaTeX.C
507         * LaTeXFeatures.C
508         * ParagraphParameters.C
509         * Spacing.C
510         * buffer.C
511         * bufferparams.C
512         * bufferview_funcs.C
513         * chset.C
514         * counters.C
515         * funcrequest.C
516         * lyxfont.C
517         * lyxgluelength.C
518         * lyxlength.C
519         * paragraph.C
520         * paragraph_funcs.C
521         * text3.C
522         * vc-backend.C: remove usage of STRCONV
523
524 2003-09-15  Angus Leeming  <leeming@lyx.org>
525
526         * rowpainter.C (paintLengthMarker, paintPageBreak, paintAppendixStart):
527         explicitly define the color passed to the painter.
528
529 2003-09-15  Angus Leeming  <leeming@lyx.org>
530
531         * bufferparams.C (BufferParams): reorder member initializers to avoid
532         compiler warning.
533
534 2003-09-15  Alfredo Braunstein  <abraunst@libero.it>
535
536         * CutAndPaste.C (pasteSelection): remove an outdated #warning
537         * text.C (updateRowPositions): remove an unusual nop
538
539 2003-09-12  André Pönitz  <poenitz@gmx.net>
540
541         * BufferView_pimpl.C:
542         * Bullet.C:
543         * layout.h:
544         * lyxfunc.C:
545         * lyxlayout.[Ch]:
546         * lyxtextclass.C:
547         * rowpainter.C:
548         * text.C:
549         * text2.C:
550         * Counters.[Ch]: finish the 'automatic counters' job
551
552 2003-09-12  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
553
554         * aspell.C: include <boost/assert.cpp> (compile fix)
555
556 2003-09-10  Rob Lahaye  <lahaye@snu.ac.kr>
557
558         * boost.C (assertion_failed): use lyx::support::abort instead of
559         assert.
560
561 2003-09-10  Angus Leeming  <leeming@lyx.org>
562
563         * Makefile.am (lyx_SOURCES): replace ParagraphList.h and RowList.h
564         with their _fwd progeny.
565
566 2003-09-09  Angus Leeming  <leeming@lyx.org>
567
568         134 files throughtout the source tree: replace 'using namespace abc;'
569         directives with the appropriate 'using abc::xyz;' declarations.
570
571 2003-09-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
572
573         * boost.C (emergencyCleanup): moved here from LAssert.c
574         (assertion_failed): new function, called by BOOST_ASSERT
575
576         * several files: change Assert to BOOST_ASSERT
577
578 2003-09-09  Angus Leeming  <leeming@lyx.org>
579
580         * buffer.[Ch]: Add an Impl class and move Buffer's member
581         variables into it. As a result move several header files out of
582         buffer.h.
583
584         Add header files to lots of .C files all over the tree as a result.
585
586 2003-09-09  Angus Leeming  <leeming@lyx.org>
587
588         * buffer.[Ch]: make Buffer's member variables private. Add
589         accessor functions.
590
591         Lots of changes all over the tree as a result.
592
593 2003-09-08  Angus Leeming  <leeming@lyx.org>
594
595         * graph.C: #include <config.h>.
596
597 2003-09-08  Angus Leeming  <leeming@lyx.org>
598
599         * BranchList.C:
600         * BufferView.C:
601         * BufferView_pimpl.C:
602         * CutAndPaste.C:
603         * DepTable.C:
604         * LaTeX.C:
605         * LaTeXFeatures.C:
606         * LyXAction.C:
607         * MenuBackend.C:
608         * TextCache.C:
609         * aspell.C:
610         * buffer.C:
611         * bufferlist.C:
612         * changes.C:
613         * chset.C:
614         * converter.C:
615         * counters.C:
616         * debug.C:
617         * graph.C:
618         * ispell.C:
619         * lyx_cb.C:
620         * lyxfind.C:
621         * lyxfunc.C:
622         * lyxlex_pimpl.C:
623         * lyxrc.C:
624         * lyxrow.C:
625         * paragraph.C:
626         * rowpainter.C:
627         * texrow.C:
628         * text.C:
629         * text2.C:
630         * toc.C: remove redundant using directives.
631
632 2003-09-07  Angus Leeming  <leeming@lyx.org>
633
634         * LaTeXFeatures.h: remove #include "support/types.h".
635         * ToolbarBackend.h: remove #include <algorithm>.
636         * changes.h: remove #include <ctime>.
637         * debug.h: remove #include <iosfwd>.
638         * graph.h: remove #include "support/std_string.h".
639         * lyx_main.h: remove #include <csignal>.
640         * lyxlex_pimpl.h: remove #include <fstream>.
641         * sgml.h: remove #include <algorithm>, <utility>.
642         * toc.h: remove #include "support/std_ostream.h".
643         Add #include <iosfwd>.
644
645 2003-09-07  Angus Leeming  <leeming@lyx.org>
646
647         * vspace.[Ch] (length): returns a const & to a LyXGlueLength.
648
649         * converter.h: forward declare LatexRunParams.
650         * encoding.h: remove #include "lyxrc.h".
651         * lyxtext.h: remove #include "LColor.h".
652         * lyxtextclass.h: remove #include "support/types.h".
653         * trans.h: remove #include "tex-accent.h".
654         * trans_mgr.h: remove #include "tex-accent.h".
655         * insets/inset.h: remove #include "support/types.h", <vector>.
656         * insets/insetcollapsable.h: remove #include "LColor.h".
657         * insets/insetinclude.h: remove #include "dimension.h".
658         * insets/insetlatexaccent.h: remove #include "dimension.h".
659         * insets/insetoptarg.h:: remove #include "insettext.h".
660         * insets/insettext.h: remove #include "dimension.h",
661         <boost/shared_ptr.hpp>
662
663         * insets/renderers.h: add #include "dimension.h".
664         * insets/updatableinset.h: add #include "support/types.h".
665
666         * many .C files: Associated changes.
667
668 2003-09-06  Angus Leeming  <leeming@lyx.org>
669
670         * Bullet.[Ch]: factorize all those #ifdef ENABLE_ASSERTIONS to just
671         one, inside testInvariant.
672
673         * PrinterParams.C: new file.
674         * PrinterParams.[Ch]: move the function bodies out of line.
675
676 2003-09-06  Angus Leeming  <leeming@lyx.org>
677
678         * ParagraphParameters.h: forward declare ParameterStruct rather than
679         including its header file.
680         (depth): moved out-of-line.
681
682 2003-09-06  Angus Leeming  <leeming@lyx.org>
683
684         * BufferView_pimpl.h:
685         * kbmap.h:
686         * kbsequence.h:
687         * lyxfunc.h: forward declare LyXKeySym rather than
688         #include "frontends/LyXKeySym.h".
689
690         * BufferView_pimpl.C:
691         * kbmap.C:
692         * kbsequence.C:
693         * lyxfunc.C: associated changes.
694
695 2003-09-06  Angus Leeming  <leeming@lyx.org>
696
697         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
698         As a result, can remove the #include "insets/inset.h" from BufferView.h
699
700 2003-09-06  Angus Leeming  <leeming@lyx.org>
701
702         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
703         As a result, can remove the #include "insets/inset.h" from BufferView.h
704
705 2003-09-06  Angus Leeming  <leeming@lyx.org>
706
707         * buffer_funcs.C:
708         * buffer.h:
709         * bufferlist.C:
710         * BufferView.C:
711         * bufferview_funcs.C:
712         * BufferView_pimpl.C:
713         * CutAndPaste.C:
714         * lyx_cb.C:
715         * lyxfunc.C:
716         * paragraph.h:
717         * ParagraphParameters.C:
718         * tabular.C:
719         * text3.C:
720         * toc.C:
721         * undo_funcs.C:
722         * frontends/controllers/ControlDocument.C:
723         * insets/insetcaption.C: rearrange the #includes into some sort of
724         coherent order.
725
726         * buffer.h: remove #includes ErrorList.h, undo.h
727
728 2003-09-06  Angus Leeming  <leeming@lyx.org>
729
730         * support/types.h: add a 'depth_type' typedef, used to store the
731         nesting depth of a paragraph.
732
733         * paragraph.h:
734         * ParameterStruct.h: use this lyx::depth_type typedef rather than
735         defining explicitly.
736
737         * buffer.h:
738         * paragraph_funcs.h:
739         * ParagraphParameters.h:
740         * sgml.h: use lyx::depth_type rather than Paragraph or
741         ParameterStruct's depth_type.
742
743         * buffer.h
744         * paragraph_funcs.h: no need to #include paragraph.h anymore.
745
746         * BufferView.C:
747         * BufferView_pimpl.C:
748         * CutAndPaste.C:
749         * ParagraphParameters.C:
750         * buffer_funcs.C:
751         * bufferlist.C:
752         * bufferview_funcs.C:
753         * lyx_cb.C:
754         * lyxfunc.C:
755         * tabular.C:
756         * text3.C:
757         * toc.C:
758         * undo_funcs.C:
759         * frontends/LyXView.C:
760         * frontends/controllers/ControlDocument.C:
761         * frontends/controllers/ControlErrorList.C:
762         * insets/insetbibitem.C:
763         * insets/insetbranch.C:
764         * insets/insetcaption.C:
765         * insets/insetcollapsable.C:
766         * insets/insetenv.C:
767         * insets/insetert.C:
768         * insets/insetfloat.C:
769         * insets/insetfoot.C:
770         * insets/insetfootlike.C:
771         * insets/insetnewline.C:
772         * insets/insetquotes.C:
773         * insets/insettabular.C:
774         * insets/insettext.C:
775         * insets/insetwrap.C: must now explicitly #include "paragraph.h".
776
777         * frontends/controllers/ControlChanges.C: #include "changes.h".
778
779 2003-09-06  Angus Leeming  <leeming@lyx.org>
780
781         * ParagraphList_fwd.h: new file, forward-declaring Paragraph rather
782         than #including paragraph.h.
783
784         * ParagraphList.h:
785         * RowList.h: deleted. Superfluous.
786
787         * CutAndPaste.h:
788         * iterators.h:
789         * lyxcursor.h:
790         * lyxtext.h:
791         * text_funcs.h:
792         * undo.h:
793         * undo_funcs.h:
794         * insets/inset.h:
795         * insets/insettext.h: use ParagraphList_fwd.h rather than
796         ParagraphList.h.
797
798         * paragraph.h: don't forward declare ParagraphList.
799
800         * buffer.h:
801         * paragraph_funcs.h: #include ParagraphList_fwd.h and paragraph.h
802         rather than ParagraphList.h. paragraph.h is still needed for the
803         Paragraph::depth_type parameters.
804
805         * textcursor.h: enable it to compile stand-alone in light of the
806         above changes.
807
808         * bufferview_funcs.C:
809         * iterators.C:
810         * lyxfunc.C:
811         * lyxrow_funcs.C:
812         * paragraph.C:
813         * rowpainter.C:
814         * text.C:
815         * text2.C:
816         * text3.C:
817         * text_funcs.C:
818         * textcursor.C:
819         * undo.C:
820         * frontends/controllers/ControlParagraph.C:
821         * frontends/controllers/ControlTabular.C:
822         * insets/insetmarginal.C:
823         * insets/insetminipage.C:
824         * insets/insetnote.C:
825         * insets/insetoptarg.C: add header files needed to compile again.
826
827 2003-09-06  Angus Leeming  <leeming@lyx.org>
828
829         * RowList_fwd.h: new file, forward-declaring Row rather than
830         #including lyxrow.h.
831
832         * lyxrow_funcs.h:
833         * lyxtext.h:
834         * paragraph.h:
835         * insets/insettext.h: use it instead of RowList.h
836
837         * bufferview_funcs.C:
838         * lyxfunc.C:
839         * lyxrow_funcs.C:
840         * paragraph.C:
841         * rowpainter.C:
842         * text.C:
843         * text2.C:
844         * text3.C: #include "RowList.h".
845
846 2003-09-05  Angus Leeming  <leeming@lyx.org>
847
848         * factory.C (createInset):
849         * vspace.C (c-tor): replace sscanf call with an istringstream.
850         * ispell.C: re-add missing HP/UX headers.
851         * lyxserver.C: re-add missing  os2 headers.
852
853 2003-09-05  Martin Vermeer  <martin.vermeer@hut.fi>
854
855         * BranchList.C:
856         * graph.C:
857         * ispell.C:
858         * lastfiles.C:
859         * lyx_cb.C:
860         * lyxserver.C:
861         * texrow.C:
862         * text3.C: re-add missing system headers, needed for 2.95.2.
863
864 2003-09-05  Angus Leeming  <leeming@lyx.org>
865
866         Changes most place everywhere due to the removal of using directives
867         from support/std_sstream.h.
868
869 2003-09-05  Angus Leeming  <leeming@lyx.org>
870
871         Replace LString.h with support/std_string.h,
872         Lsstream.h with support/std_sstream.h,
873         support/LIstream.h with support/std_istream.h,
874         support/LOstream.h with support/std_ostream.h.
875
876         Changes resulting throughout the tree.
877
878 2003-09-05  Angus Leeming  <leeming@lyx.org>
879
880         * sgml.h: ensure that the header file can be compiled stand-alone.
881         * *.C: strip out redundant #includes. (320 in total.)
882
883 2003-09-04  Angus Leeming  <leeming@lyx.org>
884
885         * LaTeXFeatures.C (getMacros): move the output of the preamble_snippets
886         here (from getPackages).
887
888         * debug.[Ch]: add a new EXTERNAL tag.
889
890 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
891
892         * text2.C (cursorEnd): simplify
893         (setCursor): adjust
894         (getColumnNearX): adjust
895
896         * text.C (computeBidiTables): adjust
897         (fill): adjust
898
899         * rowpainter.C (paintChars): adjust
900         (paintSelection): adjust
901         (paintChangeBar): adjust
902         (paintText): adjust
903
904         * lyxrow_funcs.C (lastPrintablePos): remove, all users now call
905         lastPos instead.
906         (numberOfSeparators): adjust
907
908 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
909
910         * LyXAction.C:
911         * box.[Ch]:
912         * lfuns.h:
913         * lyxfunc.C:
914         * text3.C: Restricts the mouse click functionality
915         of insets like bibtex, include, toc and floatlist to the visible
916         button, and allows the use of LFUN_INSET_SHOW_DIALOG to bring
917         up the dialogs. Cursor has to be in front of the inset (i.e.
918         start of row) for this to function.
919
920 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
921
922         * bufferview_funcs.C (currentState): output row information
923
924 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
925
926         * bufferview_funcs.C (currentState): output paragraph position
927
928 2003-09-04  Angus Leeming  <leeming@lyx.org>
929
930         * FloatList.h: move out #include "Floating.h".
931         * LaTeX.h: move out #include "DepTable.h".
932         * LyXAction.h: move out #include "funcrequest.h".
933         * buffer.h: move out #include "author.h", "iterators.h".
934         * bufferparams.h: move out #include "LaTeXFeatures.h", "texrow.h".
935         * lyx_main.h: move out #include "errorlist.h".
936         * lyxfunc.h: move out #include "FuncStatus.h".
937         * lyxtext: move out #include "lyxcursor.h".
938         * paragraph_pimpl.h: move out #include "counters.h".
939
940 2003-09-03  Angus Leeming  <leeming@lyx.org>
941
942         * LaTeXFeatures.[Ch]: replace the externalPreambles string with a
943         preamble_snippets list, enabling us to add snippets to the preamble
944         only if the snippet was not there already.
945
946 2003-09-04  Angus Leeming  <leeming@lyx.org>
947
948         * Chktex.C, converter.C, lyx_cb.C: add #include "support/lyxlib.h".
949
950 2003-09-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
951
952         * lyxfunc.C (dispatch): if fitCursor did something be sure to
953         update
954
955 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
956
957         * BranchList.C: point fix, earlier forgotten
958
959 2003-09-02  Angus Leeming  <leeming@lyx.org>
960
961         * box.C (contains): renamed from 'contained' after a fantastic
962         amount of hot air.
963
964 2003-09-02  John Levon  <levon@movementarian.org>
965
966         * BufferView.C:
967         * lyxcursor.h:
968         * lyxcursor.C:
969         * lyxfunc.C:
970         * lyxfunc.h: remove cursor.i[x]y(), it no longer differs
971
972 2003-09-02  John Levon  <levon@movementarian.org>
973
974         * text2.C: simplification of cursorEnd(), including partial
975         fix for bug 1376
976
977 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
978
979         * buffer.C (readFile): add a space
980
981 2003-09-02  Alfredo Braunstein  <abraunst@libero.it>
982
983         * BufferView_pimpl.C (update): remove bogus fitCursor() call
984
985 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
986
987         * buffer.C (readFile): new function, take a filename and a
988         ParagraphList::iterator
989         (readFile): adjust
990         (readFile): adjust, make it private. don't use setStream, make
991         lyx2lyx use a temporary file. Some simplificaton. Make the Alerts
992         always contain the filename.
993
994         * BufferView.C (insertLyXFile): simplify and make it work for
995         gzipped files.
996
997 2003-08-30  John Levon  <levon@movementarian.org>
998
999         * Makefile.am: fix dist (from Kayvan)
1000
1001 2003-08-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
1002
1003         * most files: change to use const Buffer refs
1004
1005 2003-08-27  André Pönitz  <poenitz@gmx.net>
1006
1007         * BufferView.[Ch]: remove getParentText, implement getParentLanguage
1008         on top of ownerPar().
1009
1010 2003-08-27  John Levon  <levon@movementarian.org>
1011
1012         * funcrequest.C: properly initialise POD members
1013
1014 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
1015
1016         * lyxtext.h (top_y): move top_y from here
1017         * text.C:
1018         * text2.C:
1019         * text3.C:
1020         * BufferView.[Ch]:
1021         * BufferView_pimpl.[Ch]: to here
1022         * frontends/screen.C:
1023         * insets/insettabular.C:
1024         * insets/insettext.C: adjust
1025         * rowpainter.[Ch] (paintRows): remove LyXText & argument
1026
1027 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
1028
1029         * BufferView.[Ch]:
1030         * BufferView_pimpl.[Ch] (updateInset): add an InsetOld * argument
1031
1032 2003-08-26  André Pönitz  <poenitz@gmx.net>
1033
1034         * paragraph_func.[Ch] (outerPar): new function
1035
1036         * paragraph.C:
1037         * paragraph_funcs.C:
1038         * paragraph_funcs.h:
1039         * paragraph_pimpl.C:
1040         * text2.C: remove Inset::par_owner
1041
1042 2003-08-25  Martin Vermeer  <martin.vermeer@hut.fi>
1043
1044         * lyxrow_funcs.C:
1045         * lyxtext.h:
1046         * text.C:
1047         * text2.C: eliminates the needFullRow/display() stuff
1048         altogether, putting the logic in metrics/draw in the insets.
1049
1050 2003-08-25  Alfredo Braunstein  <abraunst@libero.it>
1051
1052         * text2.C (redoParagraphInternal, redoParagraphs):
1053         * text.C (redoParagraph): add a call to updateRowPositions at the
1054         end of each 'metrics-like' call. Remove all others.
1055         (getRow): remove the 'y-computing' version.
1056         (getRowNearY): do not compute nor return the real y. Solve the
1057         'y < 0' problem and simplify.
1058
1059 2003-08-22  Angus Leeming  <leeming@lyx.org>
1060
1061         * *.[Ch]: clean-up of licence and author blurbs.
1062         Also move config.h out of a few .h files and into a few .C files.
1063
1064 2003-08-22  André Pönitz  <poenitz@gmx.net>
1065
1066         * lyxrow.[Ch]: add x_ and *fill_ members
1067
1068         * lyxtext.h:
1069         * text.C:
1070         * rowpainter.C:
1071         * text2.C: adjust/remove prepareToPrint() calls
1072
1073 2003-08-22  André Pönitz  <poenitz@gmx.net>
1074
1075         * lyxrow.[Ch]: add  end_ member
1076
1077         * lyxrow_funcs.C: use LyXRow::end_
1078
1079         * lyxtext.h (singleWidth): add LyXFont parameter
1080
1081         * rowpainter.C:
1082         * text2.C: adjust LyXText::singleWidth() calls
1083
1084         * text.C (redoParagraph): simplify row breaking logic
1085
1086
1087 2003-08-19  André Pönitz  <poenitz@gmx.net>
1088
1089         * funcrequest.C: initialize button_ member
1090
1091         * text3.C:
1092         * rowpainter.[Ch]: interface consolidation
1093
1094 2003-08-18  André Pönitz  <poenitz@gmx.net>
1095
1096         * BufferView.C:
1097         * BufferView_pimpl.C:
1098         * lyxfind.C:
1099         * paragraph_funcs.C:
1100         * rowpainter.C:
1101         * text3.C: remove LyXScreen::draw() and fitCursor calls
1102
1103         * BranchList.h: remove spurious semicolons
1104
1105         * MenuBackend.C: fix branchlist related crash
1106
1107 2003-08-17  Martin Vermeer  <martin.vermeer@hut.fi>
1108
1109         * BranchList.[Ch]:
1110         * InsetList.[Ch]:
1111         * LColor.[Ch]:
1112         * LyXAction.C:
1113         * Makefile.am:
1114         * MenuBackend.[Ch]:
1115         * bufferparams.[Ch]:
1116         * factory.C:
1117         * lfuns.h:
1118         * lyxfunc.C:
1119         * text3.C: implements the 'branch inset'
1120         idea. This allows the output of various versions of a document
1121         from a single source version, selectively outputing or suppressing
1122         output of parts of the text.
1123         This implementation contains a 'branch list editor' in a separate
1124         tab of the document settings dialog. Branches are user definable
1125         and have a "display colour" to distinguish them on-screen.
1126
1127         ColorHandler was somewhat cleaned up.
1128         (1) make possible a dynamically growing LColor list by allowing
1129         the graphic context cache to grow along (vector);
1130         (2) eliminate an IMHO unnecessary step in colour allocation.
1131
1132 2003-08-15  Kayvan A. Sylvan <kayvan@sylvan.com>
1133
1134         * BufferView_pimpl.C: compile fix
1135
1136 2003-08-15  André Pönitz  <poenitz@gmx.net>
1137
1138         * rowpainter.C: remove extra metrics calls
1139
1140         * lyxtext.h: merge the two constructors into a single one,
1141           pass reference to owner's par list
1142
1143         * BufferView_pimpl.C:
1144         * text.C:
1145         * text2.C: adjust
1146
1147 2003-08-15  André Pönitz  <poenitz@gmx.net>
1148
1149         * lyxrow_funcs.[Ch]:
1150         * lyxtext.h:
1151         * paragraph.h:
1152         * paragraph_funcs.C:
1153         * rowpainter.C:
1154         * text.C:
1155         * text2.C:
1156         * text3.C:
1157         * text_funcs.C: split LyXText::rowlist_ into individual
1158         Paragraph::rows_ chunks
1159
1160         * BufferView.[Ch]:
1161         * BufferView_pimpl.[Ch]:
1162         * lyxfind.C:
1163         * lyxtext.h:
1164         * text3.C: remove toggleSelection()
1165
1166 2003-08-12  Michael Schmitt  <michael.schmitt@teststep.org>
1167
1168         * bufferlist.C: beautify two alerts (shorter text of buttons)
1169         * buffer.C: Remove redundant ' ' from message
1170         * tabular.h:
1171         * tabular.C: rename LYX_VALIGN_CENTER" to LYX_VALIGN_MIDDLE";
1172         rename M_VALIGN_CENTER to M_VALIGN_MIDDLE;
1173         rename VALIGN_CENTER to VALIGN_MIDDLE
1174
1175 2003-08-11  André Pönitz  <poenitz@gmx.net>
1176
1177         * lyxtext.h (getPar):
1178         * text.C: new function
1179
1180 2003-08-11  André Pönitz  <poenitz@gmx.net>
1181
1182         * Makefile.am:
1183         * tracer.[Ch]: remove unneeded files
1184
1185         * InsetList.[Ch]: remove resizeInsetsLyXText()
1186
1187         * lyxtext.h:
1188         * text.C:
1189         * text2.C:
1190         * text3.C: merge insertParagraphs() and appendParagraph()
1191         remove breakAgain(), update()
1192
1193         * BufferView_pimpl.[Ch]:
1194         * bufferview_funcs.[Ch]:
1195         * lyxfunc.C:
1196         * paragraph.[Ch]:
1197         * rowpainter.C:
1198         * tabular.C: adjust after text & InsetList changes.
1199
1200 2003-08-08  André Pönitz  <poenitz@gmx.net>
1201
1202         * text.C (insertChar, backspace): replace rowlist fiddling
1203         with rebreak of full par
1204
1205         * lyxtext.h:
1206         * text.C (breakAgainOneRow, redoHeightOfParagraph,
1207         checkParagraph, updateInset): removed
1208
1209 2003-08-07  André Pönitz  <poenitz@gmx.net>
1210
1211         * paragraph.C:
1212         * text3.C: merge some LFUN handlers, remove dead code
1213
1214 2003-08-06  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1215
1216         * .cvsignore: add lyx-xforms, lyx-qt, version.C-tmp and stamp-version
1217
1218 2003-08-05  Alfredo Braunstein  <abraunst@libero.it>
1219
1220         * text2.C (DEPM): fix part of bug 1255 and 1256
1221
1222 2003-08-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1223
1224         * BufferView_pimpl.C (workAreaDispatch): change to use
1225         LyXView::dispatch instead of BufferView::Pimpl::dispatch for lfuns
1226         that are no mouse related.
1227
1228 2003-08-05  André Pönitz  <poenitz@gmx.net>
1229
1230         * BufferView.[Ch]:
1231         * BufferView_pimpl.[Ch]:
1232         * bufferview_funcs.C:
1233         * text2.C:
1234         * text3.C: rip out "deep update"
1235
1236         * textcursor.[Ch] (last_sel_cursor): remove unused member
1237
1238 2003-08-04  André Pönitz  <poenitz@gmx.net>
1239
1240         * BufferView.[Ch]:
1241         * BufferView_pimpl.[Ch]:
1242         * ParagraphParameters.C:
1243         * bufferview_funcs.C:
1244         * lyx_cb.C:
1245         * lyxfind.C:
1246         * lyxfunc.C:
1247         * text.C:
1248         * text2.C:
1249         * text3.C: replace "complicated" BufferView::update(...) calls with
1250         simpler ones.
1251
1252         * BufferView.[Ch]: remove now unneeded BufferView::UpdateCodes
1253
1254 2003-08-02  Kayvan Sylvan  <kayvan@sylvan.com>
1255
1256         * Makefile.am (lyx_SOURCES): add paper.h
1257
1258 2003-08-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1259
1260         * Makefile.am: move things around so that both lyx-qt and
1261         lyx-xforms can be built (according to --with-frontend). Then lyx
1262         is a symbolic link to lyx-[firstfrontend]
1263
1264 2003-08-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
1265
1266         * Always use std::endl with lyxerr
1267
1268 2003-08-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
1269
1270         * BufferView_pimpl.C: _Always_ use std::endl with lyxerr
1271
1272 2003-08-01  André Pönitz  <poenitz@gmx.net>
1273
1274         * BufferView.[Ch]:
1275         * BufferView_pimpl.[Ch]:
1276         * lyxfunc.C:
1277         * text3.C: merge BufferView::repaint() and BufferView::update()
1278
1279 2003-08-01  José Matos  <jamatos@lyx.org>
1280
1281         * buffer.[Ch]: file_format is no longer a buffer data element.
1282
1283 2003-08-01  André Pönitz  <poenitz@gmx.net>
1284
1285         * BufferView.C:
1286         * lyxtext.h:
1287         * text.C:
1288         * text2.C: make redoParagraph more independent of current cursor
1289
1290         * lyxtext.h (need_update, needUpdate, postPaint, clearPaint):
1291         * text.C:
1292         * text2.C: remove unneeded members
1293
1294 2003-07-30  André Pönitz  <poenitz@gmx.net>
1295
1296         * paragraph.[Ch] (copyIntoMinibuffer): removed unused function
1297
1298         * paragraph.[Ch] (cutIntoMinibuffer, insertFromMinibuffer):
1299           create a single function...
1300
1301         * paragraph_funcs.C (moveItem): ... here.
1302
1303         * text.C:
1304           lyxtext.h (LyXText::workWidth(InsetOld*)) remove. unused.
1305
1306 2003-07-30  Martin Vermeer  <martin.vermeer@hut.fi>
1307
1308         * LColor.[Ch]: Add comment and greyedout logical colors.
1309
1310 2003-07-30  André Pönitz  <poenitz@gmx.net>
1311
1312         * tabular.C: don't use Assert too heavily. This crashes where it
1313           shouldn't
1314
1315 2003-07-30  Alfredo Braunstein  <abraunst@libero.it>
1316
1317         * lyxfunc.C (dispatch): do not mark the buffer dirty if the action
1318         is disabled (bug 1232)
1319
1320 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
1321
1322         * factory.C: limited 'arg' scope
1323
1324 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
1325
1326         * factory.C: fixed Note submenu issues
1327
1328 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
1329
1330         * factory.C: submenu for Note/Comment/Greyedout
1331
1332 2003-07-29  Alfredo Braunstein  <abraunst@libero.it>
1333
1334         * lyx_main.C (LyX):
1335         * BufferView_pimpl.C (loadLyXFile): fix to bugs 1287 and 1297 + ws
1336
1337 2003-07-29  Martin Vermeer  <martin.vermeer@hut.fi>
1338
1339         * LaTeXFeatures.C:
1340         * lyx_sty.[Ch]:h: Implement a newenvironment in preamble for
1341         greyedout. Patch provided by Jürgen Spitzmüller.
1342
1343 2003-07-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1344
1345         * kbmap.C (read): fix error message when reading bind files
1346
1347 2003-07-29  Angus Leeming  <leeming@lyx.org>
1348
1349         * BufferView.[Ch] (ChangeCitationsIfUnique): This function most
1350         certainly does not do what it purports to do. I am doing it, and
1351         us, a favour by killing it.
1352
1353 2003-07-28  José Matos  <jamatos@lyx.org>
1354
1355         * buffer.C (readBody, do_writeFile):
1356         * paragraph.C(readParagraph): \end_document replaces \the_end.
1357
1358 2003-07-29  André Pönitz  <poenitz@gmx.net>
1359
1360         * BufferView.[Ch]:
1361         * BufferView_pimpl.[Ch]:
1362         * lyxfunc.C:
1363         * text2.C:
1364         * text3.C:
1365         * textcursor.[Ch]: remove toggleToggle & Co
1366
1367 2003-07-28  José Matos  <jamatos@fep.up.pt>
1368
1369         * buffer.C (readParagraph):
1370         * params_func (readParToken, readParagraph):
1371         * paragraph.C (write): \layout -> \begin_layout.
1372
1373 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
1374
1375         * lyxlex_pimpl.C (setFile): clean up slightly.
1376
1377         * bufferparams.h: add compressed var
1378
1379         * buffer_funcs.C (readFile): adjust for LyXLex change
1380         (newFile): ditto + simplify
1381
1382         * buffer.C (writeFile): handle writing of compressed files
1383
1384         * buffer.[Ch] (readFile): begin LyXLex here, remove one argument.
1385         Check if the file is compressed and set a bufferparm if so.
1386
1387         * Makefile.am (lyx_LDADD): remove explicit -lz
1388
1389 2003-07-28  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1390
1391         * buffer.C (do_writeFile, makeLaTeXFile, makeLinuxDocFile,
1392         makeDocBookFile): put the real LyX version in the first line of
1393         the file
1394
1395         * version.h:
1396         * version.C.in: remove lyx_docversion
1397
1398         * tabular.C (write_attribute): add a template-based version to
1399         write enums properly
1400
1401 2003-07-28  André Pönitz  <poenitz@gmx.net>
1402
1403         * lyxtext.h:
1404         * text.C:
1405         * text2.C:
1406         * text3.C: use doubles again for x-coordinates. They are needed.
1407
1408 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
1409
1410         * messages.C (getLocaleDir): use lyx_localedir()
1411
1412         * lyxlex_pimpl.C (setFile): compress stuff
1413
1414         * buffer.C (writeFile): add some compression stuff
1415         (do_writeFile): new func, dont call expliti close... will this
1416         breake anything?
1417
1418         * Makefile.am (lyx_LDADD): add -lz
1419
1420 2003-07-28  José Matos  <jamatos@fep.up.pt>
1421
1422         * buffer.C: increment file format.
1423         * paragraph_funcs (readParagraph, readParToken):
1424         * paragraph.C (readParagraph): add \end_layout.
1425
1426 2003-07-27  Angus Leeming  <leeming@lyx.org>
1427
1428         * Makefile.am: remove special casing for configure-time setting of
1429         LYX_DIR, TOP_SRCDIR and LOCALEDIR.
1430
1431         * lyx_main.C (init): remove all Jean-Marc's magic setting of
1432         system_lyxdir, build_lyxdir and user_lyxdir into the support lib.
1433
1434 2003-07-26  André Pönitz  <poenitz@gmx.net>
1435
1436         * paragraph_func.[Ch]:
1437         * paragraph.C (realizeFont): inline it whereever it is used
1438
1439         * rowpainter.C:
1440         * text.C:
1441         * text2.C:
1442         * text3.C: remove Buffer * parameter from a bunch of get*Font functions
1443
1444
1445 2003-07-26  André Pönitz  <poenitz@gmx.net>
1446
1447         *       lyxtext.h:
1448         * text.C:
1449         * text2.C: get rid of LyXText::need_break_row
1450
1451 2003-07-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
1452
1453         * toc.[Ch]: put namespace toc inside namespace lyx
1454
1455         * MenuBackend.C (expandToc2): adjust for lyx::toc
1456         (expandToc): ditto
1457
1458         * lyxfunc.C (dispatch): adjust for lyx::find
1459
1460         * lyxfind.[hC]: get rid of namespace lyxfind introduce namespace
1461         lyx::find instead. Reorganize a bit.
1462         (LyXReplace): rename to replace
1463         (LyXFind): rename to find
1464
1465         * BufferView_pimpl.C (trackChanges): adjust for lyx::find
1466         (dispatch): ditto
1467
1468 2003-07-26  André Pönitz  <poenitz@gmx.net>
1469
1470         * text.C (setHeightOfRow): restrict scope of temporary variable
1471
1472         * paragraph_funcs.C (readParToken): remove USE_CAPTION  compatibility
1473           code (never has been used?)
1474
1475 2003-07-27  Asger Alstrup  <alstrup@local>
1476
1477         * text.C (fill): Optimise algorithm to exploit that we can reuse
1478         the LyXFont for many characters.
1479         (setHeightOfRow): Same thing.
1480         (rowBreakPoint): Same thing.
1481
1482 2003-07-26  Asger Alstrup  <alstrup@local>
1483
1484         * text2.C (metrics): change a brain-dead algorithm to a smarter one.
1485
1486         * text.C (singleWidth): Spurious font copying in hot-spot
1487         singleWidth avoided. Reorder tests for arabic for efficiency.
1488
1489         * text.C (fill): handle empty paragraphs better.
1490
1491 2003-07-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1492
1493         * ispell.C:
1494         * encoding.h: add includes
1495
1496         * lyxrc.C: remove reading of bind files
1497
1498         * lyx_main.C (init): setup bindings and menus only if we have a
1499         gui.
1500
1501         * kbmap.C (read): new method. Do the actual reading of bind
1502         files.
1503
1504         * converter.C (dvipdfm_options):
1505         * bufferparams.C:
1506         * lyxrc.C (read):
1507         (output): adapt PAPER_* enums.
1508
1509         * lyxrc.h: include paper.h instead of bufferparams.h (mucho lighter)
1510
1511         * bufferparams.h: remove paper-related enums from there
1512
1513         * paper.h: New file. A trivial header file to hold paper-related
1514         enums. It should later expand to contain many paper-related
1515         horrors access.
1516
1517         * lyxrc.C: declare extern displayTranslator
1518
1519 2003-07-27  José Matos  <jamatos@fep.up.pt>
1520
1521         * tabular.[Ch] (linuxdoc): add support for tables and figures
1522         (linuxdoc).
1523
1524 2003-07-27  José Matos  <jamatos@fep.up.pt>
1525
1526         * buffer.[Ch] (makeLaTeXFile): changed name of arguments for
1527         consistency in both functions.
1528         * bufferlist.C (updateIncludedTeXfiles): change client to comply.
1529
1530 2003-07-26  Asger Alstrup  <alstrup@local>
1531
1532         * rowpainter.C (paintRows): Change algorithm to work directly on
1533         the insets rather than asking every character in the document
1534         whether its an inset.
1535
1536 2003-07.26  Alfredo Braunstein  <abraunst@libero.it>
1537
1538         * buffer.C (openFileWrite): factorize some code
1539
1540 2003-07-26  Angus Leeming  <leeming@lyx.org>
1541
1542         * lyx_cb.C:
1543         * lyx_main.[Ch]: replace occurances of system_tempdir with
1544         os::getTmpDir().
1545
1546 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
1547
1548         * rename Inset to InsetOld
1549
1550 2003-07-25  Asger Alstrup  <alstrup@diku.dk>
1551
1552         * undo_funcs.h: Removed setCursorParUndo to simplify things a bit.
1553         Renamed setUndo family to recordUndo. Renamed FINISH to ATOMIC
1554         which I think is a bit clearer. EDIT is gone, since it was
1555         premature optimisation, and broken for mathed anyway.
1556         * undo_funcs.C (performUndoOrRedo): Cleaned up and made it work
1557         with cursor positioning in insets as well (math insets still do not
1558         work, but that's a different story anyway.) It mysteriously
1559         crashes sometimes with undo in the first paragraph, but I'm fairly
1560         confident that this is a compiler bug.
1561
1562 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
1563
1564         * paragraph.C (Paragraph): adjust for new clone return type
1565         (operator==): ditto
1566         (copyIntoMinibuffer): ditto
1567
1568 2003-07-25  Asger Alstrup  <alstrup@lyx.org>
1569
1570         * undo_funcs.C (textHandleUndo): Fix undo crash in first paragraph
1571         by not having a special case, and always doing a full rebreak of
1572         the document after undo.
1573
1574 2003-07-23  Angus Leeming  <leeming@lyx.org>
1575
1576         * factory.C (createInset): InsetExternal::setParams now takes a
1577         Buffer const * arg.
1578
1579 2003-07-23  Angus Leeming  <leeming@lyx.org>
1580
1581         * factory.C (createInset): changed interface to the external and
1582         graphics mailers' string2params functions.
1583
1584 2003-07-23  Angus Leeming  <leeming@lyx.org>
1585
1586         * factory.C (createInset): pass a
1587         Buffer const * parameter to InsetExternalMailer's string2params.
1588
1589 2003-07-22  John Levon  <levon@movementarian.org>
1590
1591         * Thesaurus.h: include the right aiksaurus header
1592
1593 2003-07-21  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1594
1595         * MenuBackend.C (expand): check menu shortcuts unconditionally
1596
1597 2003-07-21  Angus Leeming  <leeming@lyx.org>
1598
1599         * factory.C (createInset): pass a
1600         buffer_path parameter to InsetGraphicsMailer's string2params.
1601
1602 2003-07-21  Angus Leeming  <leeming@lyx.org>
1603
1604         * BufferView_pimpl.C (buffer):
1605         * buffer.C (d-tor):
1606         * lyx_main.C (LyX):
1607         * lyxfunc.C (dispatch):
1608         * lyxrc.C (setDefaults, read, output): use namespace lyx::graphics
1609         rather than the grfx shortcut.
1610
1611 2003-07-21  André Pönitz  <poenitz@gmx.net>
1612
1613         * rowpainter.C: remove unused variables
1614
1615         * tabular_funcs.C:
1616         * tabular_funcs.h: move to tabular.C
1617         * Makefile.am: adjust
1618
1619         * tabular.[Ch]: basic optical cleaning
1620
1621         * author.h: pass references, not values
1622
1623 2003-07-18  André Pönitz  <poenitz@gmx.net>
1624
1625         * lyxtext.h:
1626         * metricsinfo.C:
1627         * metricsinfo.h:
1628         * rowpainter.C:
1629         * text.C:
1630         * text2.C:
1631         * text3.C: two-phase drawing for InsetText and InsetTabular
1632         some float -> int changes.
1633
1634 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
1635
1636         * lyx_main.C: fix the fix
1637
1638 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
1639
1640         * lyx_main.C: fix a crash in batch mode if no files specified
1641         * converter.C: ws
1642
1643 2003-07-17  Alfredo Braunstein  <abraunst@libero.it>
1644
1645         * format.[Ch] (papersize): moved to BufferParams
1646         * converter.[Ch] (dvips_options): moved to BufferParams
1647         (dvipdfm_options): moved to anon namespace
1648         * bufferparams.[Ch]: added above functions.
1649
1650 2003-07-17  André Pönitz  <poenitz@gmx.net>
1651
1652         * lyxtext.h:
1653         * rowpainter.C:
1654         * text2.C: don't call inset->update() anymore
1655
1656         * metricsinfo.[Ch]: add convenience constructor
1657
1658 2003-07-16  André Pönitz  <poenitz@gmx.net>
1659
1660         * lyxcursor.[Ch]:
1661         * lyxfunc.[Ch]:
1662         * text.C:
1663         * text2.C: replace the LyXCursor::irow_ member with
1664          on-demand computation of the value
1665
1666 2003-07-16  John Levon  <levon@movementarian.org>
1667
1668         * lyxfunc.C: support LFUN_INSET_SETTINGS for Note
1669
1670 2003-07-15  André Pönitz  <poenitz@gmx.net>
1671
1672         * text.C:
1673         * text2.C: remove no more needed refresh_row
1674
1675 2003-07-15  André Pönitz  <poenitz@gmx.net>
1676
1677         * lyxtext.h:
1678         * rowpainter.C:
1679         * text2.C:
1680         * text3.C: refresh_status tristate -> need_update bool
1681
1682 2003-07-15  Alfredo Braunstein  <abraunst@libero.it>
1683
1684         * lyxtext.h (init): remove reinit argument (act as if always true)
1685         * text2.C: adjust to that
1686
1687 2003-07-14  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
1688
1689         * bufferview_funcs.[Ch]: introduce function replaceSelection()
1690         * text3.C: use it to delete selections in some cases
1691         (bugs 441, 673, 702, 954).
1692
1693 2003-07-14  André Pönitz  <poenitz@gmx.net>
1694
1695         * rowpainter.[Ch]: reduce interface
1696
1697 2003-07-14  André Pönitz  <poenitz@gmx.net>
1698
1699         * BufferView_pimpl.C:
1700         * text2.C: adjust after removing unused BufferView * argument
1701
1702 2003-07-14  Alfredo Braunstein  <abraunst@libero.it>
1703
1704         * text2.C (init): fix a crash fired on resize
1705
1706 2003-07-11  Alfredo Braunstein  <abraunst@libero.it>
1707
1708         * buffer.[Ch]: added new closing signal
1709         * BufferView_pimpl.[Ch]: connect/disconnect to new signal
1710         * lyxfunc.C: removed BufferView::buffer(0) call now handled in
1711         BufferView::Pimpl via the closing the signal
1712
1713 2003-07-10  Alfredo Braunstein  <abraunst@libero.it>
1714
1715         * buffer.[Ch]: take out all bv-related from buffer
1716         * BufferView.C:
1717         * BufferView_pimpl.[Ch]: connect to new signals
1718         * CutAndPaste.C: removed useless asserts
1719         * bufferview_funcs.[Ch] (resizeInsets): moved from buffer
1720         * lyxvc.[Ch]:
1721         * vc-backend.[Ch]:
1722         * lyxfunc.C: moved view-related funciontality from vc here
1723         * paragraph.C: removed outdated comments
1724         * text.C: ws
1725
1726 2003-07-10  André Pönitz  <poenitz@gmx.net>
1727
1728         * BufferView_pimpl.C:
1729         * tabular.h:
1730         * tabular_funcs.C:
1731         * text.C:
1732         * text2.C: remove InsetText::InnerCache, clean up consequences
1733
1734 2003-07-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
1735
1736         * ispell.C: fix two typos in error messages
1737
1738 2003-07-08  Martin Vermeer  <martin.vermeer@hut.fi>
1739
1740         * Extend Note inset to other forms of annotation like Comment
1741         and Greyedout. Right button click gives dialog.
1742
1743         Files modified or added (+):
1744
1745         * insetnote.[Ch]
1746         * FormNote.[Ch]      +
1747         * ControlNote.[Ch]   +
1748         * form_note.fd       +
1749         * Makefile.am in frontends/xforms, frontends/xforms/forms,
1750         frontends/controllers
1751         * xforms/Dialogs.C
1752         * factory.C
1753
1754 2003-07-01  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
1755
1756         * aspell.C: add missing namespace lyx::support
1757
1758 2003-07-07  Alfredo Braunstein  <abraunst@libero.it>
1759
1760         * BufferView.[Ch] (newFile): Add
1761         * BufferView_pimpl.[Ch] (newFile, connectBuffer, disconnectBuffer): Add
1762         * LaTeX.[Ch] (message): added this signal and use it
1763         * buffer.[Ch] (busy, message): added these signals and use them
1764         * buffer_funcs.[Ch]: rename parseErrors to bufferErrors
1765         * converter.C:
1766         * exporter.C:
1767         * format.C:
1768         * importer.C: use buffer signals instead of direct bv calling
1769         * lyx_cb.[Ch] (ShowMessage): removed
1770         * lyx_main.C:
1771         * lyxfunc.C:
1772         * paragraph_funcs.C:
1773         * text2.C: use buffer signals
1774
1775 2003-07-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
1776
1777         * introduce namespace lyx::graphics
1778
1779 2003-07-02  André Pönitz  <poenitz@gmx.net>
1780
1781         * BufferView_pimpl.C (workAreaDispatch): tell the FuncRequest who we are
1782
1783 2003-07-01  André Pönitz  <poenitz@gmx.net>
1784
1785         * text.C:
1786         * text2.C:
1787         * text3.C:
1788         * text_funcs.[Ch]:
1789         * textcursor.h:
1790         * lyxtext.h: shuffle pure paragraph/cursor related cursor movement from
1791           text*.C to text_func.C
1792
1793 2003-07-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
1794
1795         * introduce namespace lyx::support
1796
1797 2003-06-30  André Pönitz  <poenitz@gmx.net>
1798
1799         * Chktex.C:
1800         * funcrequest.C:
1801         * lyxtext.h:
1802         * text.C: re-enable --with-included-string
1803
1804 2003-06-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
1805
1806         * textcursor.C: add <config.h>
1807
1808         * text.C (getWord): remove const from word_location arg
1809
1810         * lyxvc.C (getLogFile): fix const type order
1811
1812         * lyxtext.h: remove const from word_location arg, add arg name
1813
1814         * lyxlayout.h: currect type on labeltype.
1815
1816         * importer.C: correct \file
1817
1818         * converter.C (intToFormat): use std:: on ret val, ws changes
1819
1820         * bufferlist.h: correct \file
1821
1822         * buffer.C (makeLinuxDocFile): fix const type order
1823         (makeDocBookFile): ditto
1824         (fillWithBibKeys): use std:: on stdlib args.
1825
1826         * CutAndPaste.C: fix authors.
1827         (availableSelections): use std:: on return vector
1828
1829 2003-06-27  André Pönitz  <poenitz@gmx.net>
1830
1831         * BufferView_pimpl.C:
1832         * bufferview_funcs.C:
1833         * lyxcursor.C:
1834         * lyxcursor.h:
1835         * lyxfunc.C:
1836         * lyxtext.h:
1837         * rowpainter.C:
1838         * text.C:
1839         * text2.C:
1840         * text3.C: remove LyXCursor::row_ member
1841
1842         * lyxtext.h:
1843         * text.C: rename fullRebreak() to partialRebreak() and implement
1844           a fullRebreak() that really bereks fully
1845
1846         * textcursor.h: new struct for cursor-related data
1847
1848 2003-06-26  Alfredo Braunstein  <abraunst@lyx.org>
1849
1850         * lyx_main.C (LyX): get full path of document loaded on the
1851         command line
1852
1853 2003-06-26  André Pönitz  <poenitz@gmx.net>
1854
1855         * lyxcursor.[Ch]: move rarely used operator==,!= out of line
1856           remove unused/broken operator>,<,>=.
1857
1858         *       text.C: remove only use of broken operator<= in an Assert().
1859
1860 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
1861
1862         * BufferView.[Ch] (getErrorList): removed unneeded forward declare,
1863         moved errorlist_.clear to showErrorList
1864
1865 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
1866
1867         * converter.C (scanLog, runLaTeX):
1868         * buffer.C (makeLinuxDocFile, makeDocBookFile, runChkTeX):
1869         move the bv->showErrorList call to the callers
1870         * lyxfunc.C: i.e. here...
1871         * text2.C: and here
1872         * BufferView.[Ch] (setErrorList, resetErrorList): both removed
1873         * exporter.[Ch] (Backends, BufferFormat): the first was moved to anon
1874         namespace, the second to...
1875         * buffer_funcs (BufferFormat, parseErrors): added
1876         * errorlist.C (ErrorList(TeXErrors const &)): removed
1877
1878 2003-06-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1879
1880         * ToolbarBackend.C (getIcon): complain when icon cannot be found
1881
1882 2003-06-24  "Garst R. Reese" <reese@isn.net>
1883
1884         * debug.C: fix typo
1885
1886 2003-06-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1887
1888         * lyx_main.C (init): honor LYX_DIR_14x and LYX_USERDIR_14x
1889
1890         * version.C.in: change docversion to 1.4
1891
1892 2003-06-22  Alfredo Braunstein  <abraunst@libero.it>
1893
1894         * buffer.C: fix a bug just introduced
1895
1896 2003-06-21  Alfredo Braunstein  <abraunst@libero.it>
1897
1898         * buffer.[Ch]: added the parseError signal and use it, removed
1899         sgmlError
1900         * BufferView.[Ch] (addError): moved to ...
1901         * BufferView_pimpl.[Ch] (addError, loadLyXFile): ... here. Attach
1902         to the Buffer::parseError signal to catch (guess what) parse errors
1903         * lyx_main.[Ch] (printError,LyX): added gui-less parsing error feedback
1904
1905 2003-06-19  Alfredo Braunstein  <abraunst@libero.it>
1906
1907         * bufferlist.[Ch] (loadLyXFile, readFile, newFile): removed the
1908         ability to create a buffer and to return an existing one from
1909         the list. Moved these functions to...
1910         * buffer_funcs.[Ch]: added
1911         * BufferView.[Ch] (loadLyXFile): added
1912         * BufferView_pimpl.[Ch] (loadLyXFile): Added. Does the guessing
1913         job removed from bufferlist::loadLyXFile.
1914         * buffer.C (setReadOnly): make it work without view
1915         (i.e added an if (users))
1916
1917 2003-06-19  Angus Leeming  <leeming@lyx.org>
1918
1919         * lfuns.h:
1920         * LyXAction.C (init):
1921         * lyxfunc.C (getStatus, dispatch): remove 14 LFUNs, replacing them
1922         with LFUN_DIALOG_SHOW <name> <data>.
1923
1924 2003-06-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1925
1926         * CutAndPaste.C (availableSelections): small compilation fix for
1927         ancient (gcc 2.9x) compilers
1928
1929 2003-06-18  Lars Gullik Bjønnes  <larsbj@gullik.net>
1930
1931         * text3.C (cursorNext): add tmp var
1932
1933         * text2.C (updateCounters): for function calling out of for clause
1934         (replaceSelectionWithString): ditto
1935         (insertStringAsParagraphs): ditto
1936         (getColumnNearX): add tmp var
1937         (setCursorFromCoordinates): add tmp var
1938         (cursorDownParagraph): add tmp var
1939         (deleteEmptyParagraphMechanism): add tmp var
1940
1941         * text.C (insertChar): add tmp var
1942
1943         * rowpainter.C (paintDepthBar): add tmp var
1944
1945         * CutAndPaste.C (availableSelections): potentially check all
1946         paragraphs in a cut to fill the shown strings.
1947
1948 2003-06-18  André Pönitz  <poenitz@gmx.net>
1949
1950         * kbmap.[Ch]: use vector<> instead of list<>
1951
1952 2003-06-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
1953
1954         * text3.C (dispatch): handle arg to LFUN_PASTE, call
1955         pasteSelection with index
1956
1957         * text2.C (pasteSelection): modify, call pasteSelection with index
1958
1959         * paragraph.C (asString): reimplement version with no interval to
1960         call the one with interval.
1961
1962         * lyxtext.h: add index arg to pasteSelection
1963
1964         * MenuBackend.C (MenuItem): handle PasteRecent
1965         (Menu::read::Menutags): add md_pasterecent
1966         (read): handle it
1967         (expandPasteRecent): new function
1968         (expand): use it
1969
1970         * MenuBackend.h: add PasteRecent to MenuItem::Kind
1971
1972         * CutAndPaste.C: get rid of some stale comments. Add typdefe for
1973         the limited stack
1974         (availableSelections): new function
1975
1976 2003-06-17  Angus Leeming  <leeming@lyx.org>
1977
1978         * lyxfunc.C (dispatch): s/showMathPanel/show("mathpanel")/
1979
1980 2003-06-17  Angus Leeming  <leeming@lyx.org>
1981
1982         * lfuns.h:
1983         * LyXAction.C (init): new LFUN_DIALOG_SHOW.
1984
1985         * lyxfunc.C (dispatch): invoke it.
1986
1987 2003-06-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1988
1989         * iterators.C (operator++, ParPosition): reintroduce some
1990         const_cast for the benefit of older compilers.
1991
1992 2003-06-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1993
1994         * text3.C (dispatch): do not modify clipboard when doing
1995         LFUN_BACKSPACE, LFUN_BACKSPACE_SKIP, LFUN_DELETE or
1996         LFUN_DELETE_SKIP on a selection selection
1997
1998 2003-06-16  André Pönitz  <poenitz@gmx.net>
1999
2000         * BufferView.C:
2001         * buffer.C:
2002         * buffer.h:
2003         * paragraph.C:
2004         * tabular.[Ch]: IU of clone() and getLabelList();
2005
2006 2003-06-13  André Pönitz  <poenitz@gmx.net>
2007
2008         * tabular.h: compactification
2009
2010 2003-06-12  André Pönitz  <poenitz@gmx.net>
2011
2012         * tabular.C:
2013         * tabular.h:
2014         * tabular_funcs.h: some renaming plus whitespace
2015
2016 2003-06-12  André Pönitz  <poenitz@gmx.net>
2017
2018         * BufferView.C:
2019         * BufferView_pimpl.C:
2020         * CutAndPaste.C:
2021         * buffer.C:
2022         * iterators.[Ch]:
2023         * lyxfunc.C:
2024         * text.C:
2025         * toc.C: Return a Paragraph & for ParIterator::operator*()
2026
2027 2003-06-11  John Levon  <levon@movementarian.org>
2028
2029         * lyx_main.C:
2030         * ToolbarBackend.h:
2031         * ToolbarBackend.C: add "Toolbars" section and
2032         put the flags there
2033
2034 2003-06-10  Angus Leeming  <leeming@lyx.org>
2035
2036         * lfuns.h:
2037         * LyXAction.C (init): new LFUN_EXTERNAL_EDIT.
2038
2039         * lyxfunc.C (dispatch): invoke it.
2040
2041 2003-06-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
2042
2043         * main.C: protect <ios> with HAVE_IOS
2044         (main): protect sync_with_stdio with HAVE_IOS
2045
2046 2003-06-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
2047
2048         * text2.C (cutSelection): adjust
2049         (pasteSelection): adjust
2050
2051         * messages.C: handle get of empty string
2052
2053         * main.C (main): use sync_with_stdio(false)
2054
2055         * lyxfunc.C (dispatch): adjust
2056
2057         * lyx_cb.[Ch] (MenuWrite): remove unneeded BufferView arg
2058         (WriteAs): remove unneeded BufferView arg.
2059
2060         * bufferparams.h: use correct types on papersize, papersize2 and
2061         paperpackage.
2062
2063         * bufferparams.C (readToken): adjust for type
2064         (writeLaTeX): add missing cases to switch.
2065
2066         * bufferlist.C (quitWriteBuffer): adjust
2067         (close): adjust
2068
2069         * buffer.C (asciiParagraph): remove some commented code.
2070
2071         * CutAndPaste.C: remove current_view extern variable.
2072         (cutSelection): add BufferParams arg.
2073         (eraseSelection): add BufferParams arg.
2074         (pasteSelection): add Buffer const & arg
2075
2076 2003-06-07  John Levon  <levon@movementarian.org>
2077
2078         * buffer.C:
2079         * paragraph_funcs.C:
2080         * paragraph_pimpl.C:
2081         * text.C:
2082         * text2.C:
2083         * paragraph.h:
2084         * paragraph.C: allow InsetERT to freely space lines,
2085         and some consolidation of code
2086
2087 2003-06-06  José Matos  <jamatos@fep.up.pt>
2088
2089         * buffer.C (makeDocBookFile): fix bug #821
2090
2091 2003-06-06  Alfredo Braunstein  <abraunst@libero.it>
2092
2093         * BufferView_pimpl.C (dispatch): use Dialogs::visible
2094
2095 2003-06-04  Angus Leeming  <leeming@lyx.org>
2096
2097         * buffer.C: bump format to 224.
2098
2099 2003-06-05  André Pönitz  <poenitz@gmx.net>
2100
2101         * text2.C (redoParagraphs): remove two const_cast<>
2102
2103 2003-06-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
2104
2105         * ParagraphList.h: remove last remnants of NO_STD_LIST
2106
2107 2003-06-03  Angus Leeming  <leeming@lyx.org>
2108
2109         * factory.C (createInset): small change to the way InsetExternal's params
2110         are set.
2111
2112 2003-06-04  André Pönitz  <poenitz@gmx.net>
2113
2114         * buffer.h: use Undo directly instead of shared_ptr<Undo>
2115
2116         * paragraph_pimpl.h:
2117         * paragraph.[Ch]: some Inset -> UpdatableInset changes
2118
2119         * undo.[Ch]: use ParagraphList instead of vector<Paragraph>
2120
2121         * undo_funcs.C: make some simple cases of undo work again
2122
2123 2003-06-03  John Levon  <levon@movementarian.org>
2124
2125         * ispell.C: HPUX doesn't have sys/select.h
2126         (from Albert Chin)
2127
2128 2003-06-03  John Levon  <levon@movementarian.org>
2129
2130         * CutAndPaste.C: update tabular and include inset
2131         buffer references
2132
2133         * buffer.h:
2134         * paragraph.h:
2135         * paragraph.C: remove owningBuffer(), don't pass Buffer
2136         to clone()
2137
2138         * factory.C: insetGraphicsParams changed
2139
2140 2003-06-02  John Levon  <levon@movementarian.org>
2141
2142         * LyXAction.C:
2143         * factory.C:
2144         * lfuns.h:
2145         * lyxfunc.C:
2146         * text3.C: remove insetparent
2147
2148 2003-06-02  John Levon  <levon@movementarian.org>
2149
2150         * buffer.h:
2151         * buffer.C: fix inset_iterator.end(), move out of line
2152         (bug 1149)
2153
2154 2003-06-01  John Levon  <levon@movementarian.org>
2155
2156         * text3.C: use a proper cut/paste when doing inset
2157         insert (from Jürgen Spitzmüller)
2158
2159 2003-06-01  John Levon  <levon@movementarian.org>
2160
2161         * factory.C: accept "\bibtex" not "\BibTeX" (bug 1018)
2162
2163 2003-05-30  André Pönitz  <poenitz@gmx.net>
2164
2165         * rowpainter.C: unify second drawing phase
2166
2167 2003-05-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
2168
2169         * trans_mgr.C: remove one case of current_view
2170
2171         * text2.C (cursorBottom): delete NO_STD_LIST stuff
2172
2173         * paragraph_funcs.h: remove paragraph.h include
2174
2175         * paragraph.h: delete NO_STD_LIST stuff
2176
2177         * paragraph.C (Paragraph): delete NO_STD_LIST stuff
2178
2179         * buffer.h: remove paragraph.h include
2180
2181         * ParagraphList.C: delete file
2182
2183         * Makefile.am (lyx_SOURCES): remove ParagraphList.C
2184
2185         * toc.C (getTocList): adjust
2186
2187         * paragraph_pimpl.C (validate): adjust
2188
2189         * paragraph_funcs.C (optArgInset): use const_iterator, adjust
2190
2191         * paragraph.C (Paragraph): adjust
2192         (getPositionOfInset): use const_iterator, adjust
2193         (bibitem): use const_iterator, adjust
2194         (setInsetOwner): adjust
2195
2196         * iterators.C (operator++): adjust
2197
2198         * InsetList.[Ch]: Replace selfmade iterator with standard
2199         vector::iterator also introduce const_iterator. Remove getPos,
2200         getInset and setInset from InsetTable. Adjust accordingly.
2201
2202         * BufferView.C (lockInset): adjust
2203         (ChangeInsets): adjust
2204
2205         * tabular.[Ch]: delete commented same_id functions
2206
2207 2003-05-28  John Levon  <levon@movementarian.org>
2208
2209         * lyxfunc.C: fix LFUN_ESCAPE (bug 1055)
2210
2211 2003-05-28  André Pönitz  <poenitz@gmx.net>
2212
2213         * metricsinfo.[Ch]: remove 'fullredraw' member
2214
2215 2003-05-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
2216
2217         * lyxtextclass.C (operator): remove caching.
2218
2219 2003-05-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
2220
2221         * text3.C: adjust
2222
2223         * text2.C (cursorBottom): adjust
2224         (setCounter): use ParagraphList::find, adjust
2225
2226         * text.C (workWidth): use ParagraphList::find, adjust
2227
2228         * lyxcursor.C (LyXCursor): adjust
2229
2230         * buffer.C (inset_iterator): adjust
2231
2232         * ParagraphList.h: make iterator(value_type) private, make
2233         ParagraphList a friend of iterator.
2234
2235         * ParagraphList.C (find): new function
2236
2237         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
2238
2239 2003-05-27  André Pönitz  <poenitz@gmx.net>
2240
2241         * dimension.[Ch]: a -> asc, d -> des, w -> wid
2242
2243 2003-05-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2244
2245         * lyxfont.C (latexWriteStartChanges): fix character count for \noun
2246
2247 2003-05-26  John Levon  <levon@movementarian.org>
2248
2249         * LyXAction.C: LFUN_ESCAPE should be ReadOnly
2250
2251 2003-05-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
2252
2253         * remove same_id from function signatures, adjust.
2254
2255 2003-05-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
2256
2257         * undo_funcs.C (createUndo): use the id functions directly, adjust.
2258
2259         * paragraph_pimpl.C (Pimpl): get rid of same_ids parameter
2260
2261         * paragraph.C (Paragraph): get rid of same_ids parameter
2262
2263         * ParagraphList.C (insert): adjust
2264         (push_back): adjust
2265
2266 2003-05-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
2267
2268         * paragraph_funcs.C (breakParagraph): adjust
2269         (breakParagraphConservative): adjust
2270
2271         * buffer.C (readParagraph): adjust
2272
2273         * ParagraphList.C (insert): take a reference instead of a pointer
2274         (insert): adjust
2275
2276         * paragraph.[Ch] (id): new function
2277
2278         * bufferlist.C (newFile): adjust
2279
2280         * ParagraphList.C (ParagraphList): adjust
2281         (assign): adjust
2282         (push_back): take a reference instead of a pointer.
2283
2284         * paragraph.h: add NO_STD_LIST define, remove NO_NEXT define.
2285
2286         * paragraph.C: remove all NO_NEXT node add some NO_STD_LIST parts
2287         instead.
2288
2289         * ParagraphList.h: degenerate to std::list if NO_STD_LIST is not
2290         set else use old code.
2291
2292         * ParagraphList.C: remove all NO_NEXT code and only compile this
2293         code of NO_STD_LIST is set.
2294
2295 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
2296
2297         * BufferView_pimpl.C:
2298         * TextCache.C:
2299         * TextCache.h:
2300         * bufferlist.C:
2301         * errorlist.h:
2302         * format.C:
2303         * format.h:
2304         * graph.C:
2305         * lyxfunc.C:
2306         * lyxrc.C:
2307         * graphics/GraphicsConverter.C:
2308         * graphics/PreviewLoader.C: header adjustment
2309
2310 2003-05-23  Angus Leeming  <leeming@lyx.org>
2311
2312         * LaTeXFeatures.[Ch] (useBabel): new method.
2313         * bufferparams.C (writeLaTeX): use it.
2314
2315 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
2316
2317         * ParagraphList.h (set): remove unused function.
2318
2319 2003-05-23  André Pönitz  <poenitz@gmx.net>
2320
2321         * BufferView.C:
2322         * BufferView_pimpl.C:
2323         * buffer.C:
2324         * buffer.h:
2325         * lyxfunc.C:
2326         * undo_funcs.C: setUndo reworked
2327
2328         * iterators.[Ch]: add access to topmost ParagraphList
2329
2330         * lyxtext.[Ch] (workWidth): add a const
2331
2332 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
2333
2334         * texrow.[Ch] (increasePos): remove function
2335         * exporter.C (export): removed unused var and outdated comment
2336
2337 2003-05-23  Angus Leeming  <leeming@lyx.org>
2338
2339         * latexrunparams.h: rename fragile as moving_arg.
2340         * paragraph.C (simpleTeXOnePar): ditto.
2341         * paragraph_pimpl.C (simpleTeXSpecialChars): ditto.
2342
2343 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
2344
2345         * undo_funcs.C (textHandleUndo): comment out next/previous stuff
2346         (createUndo): ditto
2347         (textUndoOrRedo): comment out a currently unused var.
2348
2349         * paragraph.h (NO_NEXT): enable NO_NEXT
2350
2351         * lyxfunc.C (dispatch): remove LFUN_REMOVEERRORS
2352
2353         * lfuns.h: remove LFUN_REMOVEERRORS and adjust lfun numbers.
2354
2355         * exporter.C (Export): adjust for removeAutoInsets removal.
2356
2357         * buffer.C (runChktex): adjust for removeAutoInsets removal.
2358
2359         * LyXAction.C (init): remove LFUN_REMOVEERRORS
2360
2361         * BufferView.[Ch] (removeAutoInsets): delete function
2362
2363 2003-05-22  Angus Leeming  <leeming@lyx.org>
2364
2365         * latexrunparams.h: add a free_spacing variable.
2366
2367         * paragraph.[Ch] (simpleTeXOnePar): further fragile clean-up; no need
2368         to pass moving_arg, as the data is stored in runparams.fragile.
2369
2370         * paragraph_funcs.C (TeXOnePar): no longer pass free_spacing arg
2371         to Inset::latexOptional or to simpleTeXOnePar.
2372
2373         * paragraph_pimpl.C (simpleTeXSpecialChars): no longer pass
2374         free_spacing arg to Inset::latexOptional.
2375
2376         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
2377         free_spacing arg.
2378
2379 2003-05-22  Angus Leeming  <leeming@lyx.org>
2380
2381         * latexrunparams.h: add fragile and use_babel variables.
2382
2383         * bufferparams.[Ch] (writeLaTeX): return use_babel.
2384         * buffer.C (makeLaTeXFile): store this returned value in
2385         runparams.use_babel, thus passing it to the inset::latex methods.
2386
2387         * paragraph.C (simpleTeXOnePar): no need to pass 'moving_arg' to
2388         simpleTeXSpecialChars as it is now stored in runparams.fragile.
2389
2390         * paragraph_funcs.[Ch] (TeXOnePar, latexParagraphs): TeXOnePar no
2391         longer has a fragile arg, as it is stored in runparams.fragile.
2392
2393         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars): no longer has a
2394         moving_arg parameter as the data is stored in runparams.fragile.
2395
2396         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
2397         a fragile parameter as the data is stored in runparams.fragile.
2398
2399 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
2400
2401         * paragraph.C (Paragraph): initialize next_par_ and prev_par_
2402
2403 2003-05-22  Angus Leeming  <leeming@lyx.org>
2404
2405         * latexrunparams.h: add a 'bool nice' which defaults to false.
2406
2407         * buffer.[Ch] (makeLaTeXFile): remove the nice parameter as it is
2408         now encapsulated within runparams.
2409
2410         * bufferlist.C (updateIncludedTeXfiles):
2411         * exporter.C (Export): ensuing change to the calls to makeLaTeXFile.
2412
2413 2003-05-22  Angus Leeming  <leeming@lyx.org>
2414
2415         * latexrunparams.h: new file containing struct LatexRunParams.
2416         * Makefile.am: add new file.
2417
2418         * LaTeX.[Ch] (c-tor, run):
2419         * buffer.[Ch] (makeLaTeXFile):
2420         * bufferlist.[Ch] (updateIncludedTeXfiles):
2421         * converter.C (convert, scanLog):
2422         * converter.[Ch] (runLaTeX):
2423         * exporter.C (Export):
2424         * paragraph.[Ch] (simpleTeXOnePar):
2425         * paragraph_funcs.C (TeXEnvironment, TeXOnePar, TeXDeeper):
2426         * paragraph_funcs.[Ch] (latexParagraphs):
2427         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars):
2428         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow, latex):
2429         pass around a LatexRunParams parameter.
2430
2431 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
2432
2433         * paragraph.[Ch]: remove unused constructor
2434
2435         * ParagraphList.C (erase): new function, taking two iterators
2436
2437 2003-05-22  André Pönitz  <poenitz@gmx.net>
2438
2439         * undo_funcs.C: remove duplicated code
2440
2441         * iterator.[Ch]: operator=
2442
2443 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
2444
2445         * tabular.C (SetMultiColumn): ws changes
2446
2447         * rowpainter.C (paintFirst): get rid of a ->previous
2448
2449         * lyx_cb.C (getPossibleLabel): parlist simplification
2450
2451         * BufferView.C (ChangeInsets): simplify slightly.
2452
2453 2003-05-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
2454
2455         * LyXAction.C: new lfun space-insert, kill protected-space-insert
2456         * lfuns.h: new LFUN_SPACE
2457         * lyxfunc.C: protected space has a new lfun
2458         * paragraph_funcs.C: read new space insets
2459         * text3.C:
2460         * factory.C: handle new space insets
2461
2462 2003-05-22  André Pönitz  <poenitz@gmx.net>
2463
2464         * BufferView.C:
2465         * BufferView_pimpl.C:
2466         * buffer.[Ch]:
2467         * lyxfunc.C:
2468         * undo_funcs.C: return a ParIterator from getParFromID.
2469
2470         * iterators.[Ch]: add two const's
2471
2472 2003-05-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
2473
2474         * toc.C (getTocList): adjust
2475
2476         * iterators.[Ch]: rework for parlist
2477
2478         * buffer.C (par_iterator_begin): adjust
2479         (par_iterator_end): adjust
2480
2481         * CutAndPaste.C (SwitchLayoutsBetweenClasses): adjust
2482
2483         * BufferView.C (removeAutoInsets): adjust
2484         (ChangeInsets): adjust
2485
2486 2003-05-21  Alfredo Braunstein  <abraunst@libero.it>
2487
2488         * text.C (top_y): fix bug 1110
2489
2490 2003-05-08  Alfredo Braunstein  <abraunst@libero.it>
2491
2492         * errorlist.[Ch]: added
2493         * buffer.C:
2494         * BufferView.[Ch]:
2495         * BufferView_pimpl.C:
2496         * CutAndPaste.[Ch]: get rid of InsetError users, use ErrorList
2497         instead
2498
2499 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
2500
2501         * Makefile.am: ensure that lyx is relinked upon changes to the
2502         various "convenience" libs.
2503
2504 2003-05-20  Angus Leeming  <leeming@lyx.org>
2505
2506         * Makefile.am (lyx_SOURCES): move format.[Ch] and graph.[Ch] so that
2507         files are compiled in alphabetical order again.
2508
2509         * gettext.h: #ifndef _GETTEXT_H_ -> #ifndef GETTEXT_H.
2510
2511 2003-05-19  Angus Leeming  <leeming@lyx.org>
2512
2513         * gettext.[Ch]: remove "char const * _(char const *)".
2514
2515 2003-05-19  André Pönitz  <poenitz@gmx.net>
2516
2517         * dimension.[Ch]: promote from mathed/dimension.[Ch]
2518
2519         * Makefile.am:
2520         * BufferView.C:
2521         * DepTable.h:
2522         * LaTeXFeatures.C:
2523         * buffer.C:
2524         * lyxfont.C:
2525         * lyxlex.h:
2526         * paragraph_funcs.C: dimensions() instead of ascend/descend/width
2527
2528 2003-05-19  André Pönitz  <poenitz@gmx.net>
2529
2530         * buffer.C:
2531         * lyxlayout.[Ch]:
2532         * lyxtextclass.[Ch]:
2533         * paragraph.C:
2534         * paragraph_funcs.[Ch]:
2535         * text2.C:
2536         * text3.C: more insetenv work
2537
2538 2003-05-16  Alfredo Braunstein  <abraunst@libero.it>
2539
2540         * ParagraphParameters.C (params2string): small bug fixed
2541
2542 2003-05-16  André Pönitz  <poenitz@gmx.net>
2543
2544         * debug.C:
2545         * bufferview_funcs.C: patch from Kornel Benko to prevent
2546           crash when _(...) is called twice in a statement
2547
2548 2003-05-16  André Pönitz  <poenitz@gmx.net>
2549
2550         * BufferView.C:
2551         * lyxfunc.C:
2552         * text.C:
2553         * text2.C:
2554         * text3.C:
2555         * undo_funcs.C: edit() -> LFUN_INSET_EDIT
2556
2557 2003-05-14  Alfredo Braunstein  <abraunst@libero.it>
2558
2559         * lyx_main.C (init): remove spurious static_cast
2560
2561 2003-05-14  André Pönitz  <poenitz@gmx.net>
2562
2563         * BufferView.C: fix format string
2564
2565 2003-05-12  Alfredo Braunstein  <abraunst@libero.it>
2566
2567         * BufferView.[Ch] (insertErrors): removed
2568         * BufferView.[Ch] (showErrorList): added
2569         * buffer.C (runChkTeX):
2570         * converter.C (scanLog): call showErrorList instead of inserterrors
2571
2572 2003-05-13  André Pönitz  <poenitz@gmx.net>
2573
2574         * BufferView_pimpl.C:
2575         * buffer.C:
2576         * bufferview_func.C:
2577         * MenuBackend.C:
2578         * lyxfunc.C:
2579         * lyxrc.C:
2580         * tex-accent.C:
2581         * text3.C:
2582         * toc.C:
2583         * tabular_funcs.h: tostr() from its own header
2584
2585         * ParagraphParameters.C:
2586         * ToolbarBackend.C:
2587         * bufferparams.C:
2588         * format.C:
2589         * lyxlex_pimpl.C:
2590         * text3.C: STRCONV()
2591
2592 2003-05-12  André Pönitz  <poenitz@gmx.net>
2593
2594         * BufferView.C:
2595         * BufferView_pimpl.C:
2596         * CutAndPaste.C:
2597         * LaTeX.C:
2598         * LaTeXFeatures.C:
2599         * ParagraphParameters.C:
2600         * buffer.C:
2601         * bufferlist.C:
2602         * bufferparams.C:
2603         * bufferview_funcs.C:
2604         * converter.C:
2605         * counters.C:
2606         * debug.C:
2607         * exporter.C:
2608         * format.C:
2609         * importer.C:
2610         * lyx_cb.C:
2611         * lyx_main.C:
2612         * lyxfont.C:
2613         * lyxfunc.C:
2614         * lyxvc.C:
2615         * paragraph.C:
2616         * paragraph_funcs.C:
2617         * tabular.C:
2618         * tabular_funcs.C:
2619         * text2.C:
2620         * text3.C:  boost::format -> bformat  all over the place
2621
2622
2623 2003-05-09  André Pönitz  <poenitz@gmx.net>
2624
2625         * LColor.[Ch]: Pimpl the #include <map> away
2626
2627 2003-05-09  John Levon  <levon@movementarian.org>
2628
2629         * bufferlist.C: never remove emergency saves
2630
2631 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
2632
2633         * Makefile.am: better lib building
2634
2635 2003-05-07  Lars Gullik Bjønnes  <larsbj@gullik.net>
2636
2637         * texrow.[Ch]: remove dependency on Paragraph and just store a id
2638         instead.
2639         * paragraph_pimpl.C (simpleTeXBlanks): adjust
2640         (simpleTeXSpecialChars): adjust
2641         (simpleTeXSpecialChars): adjust
2642         * paragraph.C (simpleTeXOnePar): adjust
2643         * buffer.C (makeLaTeXFile): adjust
2644
2645         * Makefile.am (BOOST_LIBS): allow boost as system lib.
2646
2647         * text2.C (changeDepth): parlist cleanup
2648         (getColumnNearX): ditto
2649
2650         * rowpainter.C (getLabelFont): parlist cleanup
2651
2652         * bufferlist.C (newFile): parlist cleanup
2653
2654         * CutAndPaste.C (eraseSelection): parlist cleanup
2655
2656         * BufferView_pimpl.C (trackChanges): parlist cleanup
2657         (dispatch): ditto
2658
2659         * BufferView.C (lockInset): parlist cleanup.
2660         (ChangeInsets): ditto
2661
2662 2003-05-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
2663
2664         * CutAndPaste.h: Update file header.
2665
2666         * CutAndPaste.C: Update file header.
2667         Store the parts cut out of the Document in a limited_stack.
2668         (copySelection): adjust
2669         (pasteSelection): new function, takes the index in the limited stack.
2670         (nrOfParagraphs): adjust
2671         (SwitchLayoutsBetweenClasses): Change to take a ParagraphList&,
2672         simplify error inset insertion.
2673         (checkPastePossible): adjust
2674
2675 2003-05-06  John Levon  <levon@movementarian.org>
2676
2677         * text2.C: don't cast wrap inset to float
2678
2679 2003-05-05  André Pönitz  <poenitz@gmx.net>
2680
2681         * iterator.C:
2682         * undo_funcs.C: use getParagraphs() instead of getFirstParagraph()
2683
2684         * buffer.[Ch]: new function hasParWithId() to help to get rid of a
2685           few naked Paragraph *.
2686
2687 2003-05-02  Michael Schmitt  <michael.schmitt@teststep.org>
2688
2689         * bufferparams.C: Output warning if a document with missing
2690         TeX document class is loaded
2691         * exporter.C: Disable TeX exports if the document class is missing
2692         * lyxtextclass.C:
2693         * lyxtextclass.h:
2694         * lyxtextclasslist.C: Handle new textclass.lst format; new method
2695         isTeXClassAvailable()
2696
2697 2003-05-03  John Levon  <levon@movementarian.org>
2698
2699         * BufferView.h:
2700         * BufferView.C: remove showLockedInsetCursor(), showCursor(),
2701         explicit cursor show/hide
2702
2703         * BufferView_pimpl.h:
2704         * BufferView_pimpl.C: hide cursor before dispatching. Show cursor
2705         after a cursor move lfun. Simplify cursorToggle(). Remove show/hideCursor().
2706
2707         * lyxfunc.C: hide cursor before dispatching.
2708
2709         * lyx_cb.C:
2710         * lyxfind.C:
2711         * text.C:
2712         * text3.C: remove explicit cursor hides
2713
2714 2003-05-02  André Pönitz  <poenitz@gmx.net>
2715
2716         * buffer.[Ch]: two instances of Paragraph * -> ParagraphList::iterator
2717
2718         * undo_funcs.C:
2719         * undo.[Ch]: rely on std::vector<Paragraph *> instead of manually
2720           linked lists
2721
2722         * text2.C: tiny whitespace
2723
2724 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
2725
2726         * undo_funcs.C: almost only ws changes.
2727
2728         * ParagraphList.C (splice): just return if pl is empty.
2729
2730 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
2731
2732         * ParagraphList.C (splice): new function.
2733
2734         * CutAndPaste.C (pasteSelection): use it
2735
2736 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2737
2738         * CutAndPaste.C (pasteSelection): remove the last next and
2739         previous from this file.
2740
2741 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2742
2743         * CutAndPaste.C (pasteSelection): more clean up, user proper
2744         ParagraphList functions for pasteing.
2745
2746         * ParagraphList.C (insert): new function, three arg insert
2747
2748 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2749
2750         * ParagraphList.C (insert): new function, three arg insert
2751
2752         * CutAndPaste.C (pasteSelection): work on the simple_cut_clone,
2753         not on paragraphs.
2754
2755 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2756
2757         * CutAndPaste.C (pasteSelection): copy paragraphlist the nice way.
2758
2759 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2760
2761         * CutAndPaste.C (pasteSelection): remove some unneeded code.
2762
2763 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
2764
2765         * CutAndPaste.C (resetOwnerAndChanges): new helper functor
2766         (copySelection): clean up a bit.
2767         (pasteSelection): use make_pair
2768
2769         * ParagraphList.C (ParagraphList): implement copy constructor
2770         (operator=): implement, base on copy constructor.
2771         (assign): new func
2772
2773         * paragraph.C (erase): return a bool
2774
2775         * paragraph_pimpl.C (erasePos): remove function, move contents...
2776         (erase): ... here. Return a bool.
2777         (erase): call erase instead of erasePos.
2778
2779 2003-04-30  Alfredo Braunstein  <abraunst@libero.it>
2780
2781         * ParagraphList.h: define PitPosPair
2782         * CutAndPaste.C (copySelection, pasteSelection): big rework, use
2783         ParagraphList, fix a bug on pasting multiple pars
2784         * text2.C: change interface to C&P
2785
2786 2003-04-30  André Pönitz  <poenitz@gmx.net>
2787
2788         * undo_func.C: revert part of yesterday's patch 2
2789
2790 2003-04-30  John Levon  <levon@movementarian.org>
2791
2792         * LColor.C: s/tabular/table/
2793
2794 2003-04-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
2795
2796         * text3.C (dispatch): do not convert iterator -> pointer
2797         * undo_funcs.C (setCursorParUndo): ditto
2798         * text_funcs.C (transposeChars): ditto
2799
2800         * text2.C (setLayout): ws changes only
2801
2802         * text.C (breakParagraph): do not convert iterator -> pointer
2803         (insertChar): ditto
2804         (acceptChange): ditto
2805         (rejectChange): ditto
2806         (changeCase): ditto
2807         (Delete): ditto
2808         (backspace): ditto
2809
2810         * BufferView.C (lockedInsetStoreUndo): do not convert iterator ->
2811         pointer
2812
2813 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
2814
2815         * text3.C (gotoInset): YABG (yet another bad getChar)
2816
2817 2003-04-29  André Pönitz  <poenitz@gmx.net>
2818
2819         * paragraph.h: make operator= private unimplemented as long as
2820           it is unusable
2821
2822         * ParagraphList.C: whitespace
2823
2824         * paragraph.[Ch]:
2825         * paragraph_pimpl.[Ch]:
2826         * paragraph_funcs.C:
2827         * CutAndPaste.C:
2828         * undo_funcs.C: whitespace + Paragraph *  -> Paragraph (const) &
2829
2830         * text2.C:
2831           undo_funcs.[Ch]: Paragraph * -> ParagraphList::iterator
2832
2833 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
2834
2835         * CutAndPaste.[Ch] (cutSelection): big rework, some bugs fixed
2836         * paragraph.[Ch] (erase):
2837         * paragraph_pimpl.[Ch] (erase): change return type and value
2838         * text2.C (cutSelection): some rework
2839
2840 2003-04-28  John Levon  <levon@movementarian.org>
2841
2842         * bufferlist.C: changes for unsaved changes dialog
2843
2844 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
2845
2846         * bufferlist.C (newFile): set language (messages_) for new
2847         documents also.
2848
2849         * buffer.C (readFile): ws changes only.
2850
2851 2003-04-28  André Pönitz  <poenitz@gmx.net>
2852
2853         * undo_funcs.C:
2854         * lyxfunc.C:
2855         * buffer.[Ch]:
2856         * BufferView_pimpl.C:
2857         * BufferView.C: getParFromID related ParagraphList::iterator changes
2858
2859 2003-04-28  André Pönitz  <poenitz@gmx.net>
2860
2861         * tabular.[Ch]: part of Lars' Paragraph * -> ParagraphList::iterator
2862           Changes
2863
2864 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
2865
2866         * messages.C: remove one more localedir class variable.
2867
2868 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
2869
2870         * messages.C (getLocaleDir): singleton generation function
2871         (Pimpl): use it.
2872         (Messages): add a default constructor.
2873
2874         * main.C (main): do not setup localedir here, do not call
2875         gettext_init.
2876
2877         * gettext.C (_): use it.
2878         (gettext_init): delete funciton
2879
2880 2003-04-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
2881
2882         * gettext.C (getLyXMessages): new singleton generating function.
2883
2884         * buffer.C (updateDocLang): adjust
2885
2886         * Makefile.am (messages.o): add target
2887         (main.o): remove target
2888
2889 2003-04-27  John Levon  <levon@movementarian.org>
2890
2891         * bufferlist.C:
2892         * lyx_cb.C:
2893         * lyxfunc.C:
2894         * lyxvc.C: specify cancel button in Alert::prompt
2895
2896 2003-04-26  John Levon  <levon@movementarian.org>
2897
2898         * text3.C:
2899         * lyxfunc.C:
2900         * lfuns.h:
2901         * LyXAction.C: add LFUN_INSET_SETTINGS
2902
2903         * lyxfunc.C: don't enable tabular-feature when there's
2904         just any locking inset
2905
2906 2003-04-26  John Levon  <levon@movementarian.org>
2907
2908         * bufferlist.C: re-add Cancel to buffer close question
2909
2910         * lyxfunc.C: fix import UI a bit
2911
2912 2003-04-25  John Levon  <levon@movementarian.org>
2913
2914         * gettext.C: remove the broken asserts for now
2915
2916 2003-04-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
2917
2918         * messages.C: make case where setlocale cannot comply work better.
2919
2920         * buffer.C (updateDocLang): new function
2921         (changeLanguage): use it
2922         (readFile): use it
2923
2924         * text2.C (setCounter): use B_ a bit.
2925
2926         * lyxlayout.C (Read): be sure to trim the label strings.
2927
2928         * messages.C (Messages): fix typo in comment
2929
2930         * buffer.C (readFile): set message_ after file is loaded.
2931         (makeDocBookFile): remove double return
2932         (changeLanguage): reset message_ upon language change.
2933         (B_): new func, use this to get translated buffer strings.
2934
2935         * main.C: add myself and Jean Marc as authors.
2936
2937 2003-04-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
2938
2939         * messages.[hC]: pimplify Messages, and three different pimpls to be
2940         used in different circumstances.
2941
2942         * gettext.[Ch]: change for use with new message code.
2943
2944 2003-04-24 André Pönitz <poenitz@gmx.net>
2945
2946         * factory.C: support for eqref
2947
2948 2003-04-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
2949
2950         * messages.[Ch]: add missing char
2951
2952         * Makefile.am (lyx_SOURCES): add messages.[Ch]
2953
2954         * messages.[Ch]: New files
2955
2956 2003-04-18  John Levon  <levon@movementarian.org>
2957
2958         * BufferView.h:
2959         * BufferView.C:
2960         * BufferView_pimpl.C:
2961         * lfuns.h:
2962         * LyXAction.C:
2963         * lyxtext.h:
2964         * text2.C: remove layout-copy/paste (bug 778)
2965
2966 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
2967
2968         * text2.C (redoParagraphs): eliminate good_prevrit, rewrite a loop
2969
2970 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
2971
2972         * bufferlist.C (quitWriteBuffer): WriteAs and MenuWrite return true
2973         if they succeed. Act accordingly.
2974
2975 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
2976
2977         * text2.C (setCharFont): adjust
2978         (setCounter): adjust
2979         (insertStringAsLines): adjust
2980
2981         * text.C (leftMargin): adjust
2982         (setHeightOfRow): adjust
2983
2984         * rowpainter.C (paintFirst): adjust
2985         (paintLast): adjust
2986
2987         * paragraph_funcs.C (depthHook): ParagraphList::iterators
2988         (outerHook): ditto
2989         (isFirstInSequence): ditto
2990         (getEndLabel): ditto
2991         (outerFont): adjust
2992
2993         * paragraph.C (getParLanguage): comment out some hard stuff.
2994
2995         * buffer.C (insertStringAsLines): take a ParagraphList as arg
2996         (sgmlError): ditto
2997         (simpleDocBookOnePar): ditto
2998         (makeDocBookFile): use ParagraphList::iterator
2999
3000         * CutAndPaste.C (pasteSelection): adjust
3001
3002 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
3003
3004         * text2.C (getFont): adjust
3005         (getLayoutFont): adjust
3006         (getLabelFont): adjust
3007
3008         * paragraph_funcs.C (TeXOnePar): adjust
3009
3010         * buffer.C (simpleLinuxDocOnePar): adjust
3011         (simpleDocBookOnePar): adjust
3012
3013         * CutAndPaste.C (pasteSelection): adjust
3014
3015         * BufferView.C (getEncoding): adjust
3016
3017         * paragraph_funcs.C (outerFont): prepare for a ParagraphList arg.
3018
3019 2003-04-16  John Levon  <levon@movementarian.org>
3020
3021         * lyxfind.C: use parlist stuff for search/changes
3022
3023 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
3024
3025         * undo_funcs.C (textHandleUndo): ajust (rather big adsjust this one)
3026
3027         * text2.C (deleteEmptyParagraphMechanism): adjust
3028
3029         * text2.[Ch] (ownerParagraph): delete func (both of them
3030
3031 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
3032
3033         * text_funcs.C (transposeChars): use ParagraphList::iterator here.
3034
3035 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
3036
3037         * ParagraphList.C: prepare for NO_NEXT
3038
3039 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
3040
3041         * text2.C (getFont): adjust
3042         (getLayoutFont): adjust
3043         (getLabelFont): adjust
3044
3045         * paragraph.C (getFont): adjust
3046         (getLabelFont): adjust
3047         (getLayoutFont): adjust
3048
3049         * paragraph_funcs.[Ch] (realizeFont): remove unneeded arguments.
3050
3051 2003-04-15  John Levon  <levon@movementarian.org>
3052
3053         From Angus Leeming
3054
3055         * lyx_main.C: handle Include in .ui files
3056
3057 2003-04-15  John Levon  <levon@movementarian.org>
3058
3059         * MenuBackend.C: make the doc files length shorter
3060
3061         * ToolbarBackend.h:
3062         * ToolbarBackend.C: handle toolbar placement flags,
3063         Minibuffer
3064
3065 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
3066
3067         * paragraph_pimpl.C (simpleTeXSpecialChars): take a outerfont arg,
3068         adjust
3069
3070         * paragraph_funcs.C (TeXOnePar): adjust
3071
3072         * paragraph.C (getLabelFont): add outerfont arg, adjust
3073         (getLayoutFont): ditto
3074         (simpleTeXOnePar): adjust
3075
3076         * paragraph_pimpl.C (realizeFont): delete func
3077
3078 2003-04-14  Alfredo Braunstein  <abraunst@libero.it>
3079
3080         * text2.C (beforeFullRowInset): added a bad getchar check, removed
3081         row argument, constify cur argument.
3082
3083 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
3084
3085         * text2.C (getFont): adjust
3086         (getLayoutFont): adjust
3087         (getLabelFont): adjust
3088
3089         * paragraph_funcs.C (TeXOnePar): adjust
3090         (outerFont): new func...
3091         (realizeFont): ...moved out from here, changed this to facilitate
3092         transition
3093
3094         * paragraph.C (getFont): take outerfont as arg, adjust
3095         (simpleTeXOnePar): add outerfont arg, adjust
3096
3097         * buffer.C (simpleLinuxDocOnePar): adjust
3098         (simpleDocBookOnePar): adjust
3099
3100         * CutAndPaste.C (pasteSelection): adjust
3101
3102         * BufferView.C (getEncoding): adjust
3103
3104 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
3105
3106         * text2.C (setCharFont): adjust
3107         (setCounter): adjust
3108
3109         * text.C (leftMargin): adjust
3110         (setHeightOfRow): adjust
3111
3112         * rowpainter.C (paintFirst): adjust
3113         (paintLast): adjust
3114
3115         * paragraph_pimpl.C (realizeFont): adjust
3116
3117         * paragraph.C (isFirstInSequence): move from here...
3118         * paragraph_funcs.C (isFirstInSequence): ...to here
3119
3120         * paragraph.C (outerHook): move from here...
3121         * paragraph_funcs.C (outerHook): ...to here
3122
3123         * paragraph.C (depthHook): move from here...
3124         * paragraph_funcs.C (depthHook): ...to here
3125
3126         * paragraph.C (getEndLabel): move from here...
3127         * paragraph_funcs.C (getEndLabel): ...to here
3128
3129         * text2.C (realizeFont): move from here...
3130         * paragraph_funcs.C (realizeFont): ...to here
3131
3132 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
3133
3134         * text3.C (gotoNextInset): use separate tmp vars for par and pos.
3135
3136 2003-04-14  Angus Leeming  <leeming@lyx.org>
3137
3138         * LColor.[Ch]: scrap LColor mathcursor.
3139
3140 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
3141
3142         * lyxlex.[Ch] (text): delete function
3143         * trans.C (Load): adjust
3144         * paragraph_funcs.C (readParToken): adjust
3145
3146 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
3147
3148         * lyxlex_pimpl.h: get rid of LEX_MAX_BUFF, change buff to be a
3149         vector<char> instead of a char[].
3150
3151         * lyxlex_pimpl.C (getString): adjust
3152         (next): adjust
3153         (lex): use getString
3154         (eatLine): adjust
3155         (nextToken): adjust
3156
3157         * lyxlex.C (text): use pimpl_->getString()
3158         (getBool): ditto
3159         (findToken): ditto
3160
3161 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
3162
3163         * text2.C (getInset): temp vars for cursor.par() and cursor.pos()
3164         (makeFontEntriesLayoutSpecific): temp var for par.size()
3165         (setLayout): temp var for ownerParagraphs().end()
3166         (fullRebreak): temp var for rows().end()
3167         (selectionAsString): temp var for boost::next(startpit), realize
3168         that the while really is a regular for loop.
3169         (cursorEnd): temp vars for cursor.row(), lastPos ++, only call
3170         setCursor in one place.
3171         (setParagraph): temp vr for ownerParagraphs().end()
3172         (updateCounters): make the while loop a for loop
3173         (cutSelection): temp var for ownerParagraphs().end()
3174         (updateInset): make the do {} while() a regular for loop
3175         (getCursorX): use temp vars
3176         (setCurrentFont): use temp vars
3177         (getColumnNearX): use temp vars
3178
3179 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
3180
3181         * text.C (transformChar): use temp var for getChar
3182         (computeBidiTables): use temp var for row->par()
3183         (fill): move temp vars for row->par() and pit->layout() earlier in
3184         the function.
3185         (labelFill): use temp var for row->par()
3186         (setHeightOfRow): do not allow rit to be RowList::end, get rid of
3187         asc and desc, realize that pit never changes and that firstpit is
3188         just a duplicate and not needed. Exchange rit->par() with pit in a
3189         lot of places.
3190         (breakAgain): use a temp var for boost::next(rit)
3191         (breakAgainOneRow): ditto
3192         (breakParagraph): use a temp var for rows().begin()
3193         (prepareToPrint): move nlh into minimal scope, use temp var for rit->par()
3194         (cursorRightOneWord): use temp var for cursor.par() and
3195         cursor.pos(), remove usage of tmpcursor.
3196         (cursorLeftOneWord): use temp var for cursor.par() and
3197         cursor.pos() only set cur at end of function.
3198
3199 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
3200
3201         * text.C, text2.C: exchange all usage of Paragraph::next with
3202         boost::next(ParagraphList::iterator)
3203
3204         * CutAndPaste.C (cutSelection): change 2. arg to a Paragraph*
3205
3206         * text2.C (cursorTop): simplify implementation
3207         (cursorBottom): ditto
3208         (setParagraph): use ParagraphList::iterator
3209         (setCurrentFont): adjust
3210         (getColumnNearX): adjust
3211         (cursorRight): adjust
3212         (cursorLeft): remove usage of Paragraph::previous
3213         (cursorUpParagraph): ditto
3214         (deleteEmptyParagraphMechanism): slight cleanup
3215
3216         * text.C (isBoundary): take a Paragraph const & instead of a
3217         pointer as arg.
3218         (addressBreakPoint): ditto
3219         (leftMargin): remove usage of Paragraph::previous.
3220         (setHeightOfRow): ditto
3221         (cursorLeftOneWord): ditto
3222         (selectNextWordToSpellcheck): ditto
3223         (Delete): ditto
3224         (backspace): ditto
3225         (breakParagraph): remove one usage of Paragraph::next
3226         (redoParagraph): ditto
3227         (acceptChange): ditto
3228         (insertChar): adjust
3229         (rowBreakPoint): adjust
3230
3231         * bufferview_funcs.C (toggleAndShow): adjust
3232
3233 2003-04-11  Alfredo Braunstein  <abraunst@libero.it>
3234
3235         * lyxrow.[Ch]: add a cached y position to a Row and Row::y()
3236         methods to access it.
3237         * lyxtext.h:
3238         * text.C: Added updateRowPositions to compute all row positions.
3239         Make top_y and getRowNearY() to use the cached y position
3240
3241 2003-04-11  John Levon  <levon@movementarian.org>
3242
3243         * text.C (rowBreakPoint): reintroduce the labelEnd
3244         checks, code copied from the row fill stuff. Deep voodoo.
3245
3246         * text.C (fill): add a comment and debugging for the
3247         next poor soul.
3248
3249 2003-04-11  John Levon  <levon@movementarian.org>
3250
3251         * text.C: make sure fullrow insets get wrapped to the next line,
3252         even when they're in a manual label
3253
3254 2003-04-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
3255
3256         * text2.C (insertParagraph): make it take ParagraphList::iterator
3257         as arg.
3258         (setLayout): make it return ParagraphList::iterator
3259         (redoParagraphs): ditto
3260         (setCounter): ditto
3261         (checkParagraph): ditto
3262
3263         * text.C (getRow): make getrow take ParagraphList::iterator as arg
3264
3265         * text2.C: adjust several funcs.
3266         (realizeFont): take a ParagraphList::iterator as arg.
3267         (getLayoutFont): ditto
3268         (getLabelFont): ditto
3269         (setCharFont): ditto
3270
3271         * text.C: adjust several funcs.
3272
3273 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
3274
3275         * text.C (selectNextWordToSpellcheck): don't accidentally
3276         skip insets
3277
3278 2003-04-10  John Levon  <levon@movementarian.org>
3279
3280         * ToolbarBackend.C (getIcon): special handling for
3281         LFUN_MATH_DELIM
3282
3283 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
3284
3285         * text2.C (cursorRight): a getChar assert fixed
3286
3287 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
3288
3289         * text2.C (getFont): change to take a ParagraphList::iterator
3290         instead of Paragraph*
3291         Adjust several functions.
3292
3293         * text.C (transformChar): change to take a ParagraphList::iterator
3294         instead of Paragraph*
3295         (singleWidth): ditto
3296         Adjust several functions.
3297
3298         * rowpainter.C: adjust several functions
3299         * rowpainter.h:store a ParagraphList::iterator and not a
3300         Paragraph&.
3301
3302
3303 2003-04-09  John Levon  <levon@movementarian.org>
3304
3305         * lyxfunc.C:
3306         * lfuns.h:
3307         * LyXAction.h:
3308         * LyXAction.C: remove LFUN_APROPOS, LFUN_GETTIP,
3309         and the "help" bits as well
3310
3311 2003-04-09  John Levon  <levon@movementarian.org>
3312
3313         * ToolbarBackend.h:
3314         * ToolbarBackend.C: allow multiple toolbars
3315
3316 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
3317
3318         * undo_funcs.C (setCursorParUndo): adjust
3319
3320         * text_funcs.C (transposeChars): adjust
3321
3322         * text3.C (gotoNextInset): adjust
3323         (dispatch): adjust
3324
3325         * text2.C (setLayout): adjust
3326         (changeDepth): adjust
3327         (setFont): adjust
3328         (redoParagraphs): adjust
3329         (selectionAsString): adjust
3330         (setParagraph): adjust
3331         (insertInset): adjust
3332         (cutSelection): adjust
3333         (copySelection): adjust
3334         (pasteSelection): adjust
3335         (insertStringAsLines): adjust
3336         (updateInset): adjust
3337         (setCursor): change to take a ParagraphList::iterator parameter
3338         (setCursorIntern): change to take a ParagraphList::iterator parameter
3339         (setCurrentFont): adjust
3340         (cursorLeft): adjust
3341         (cursorRight): adjust
3342         (deleteEmptyParagraphMechanism): adjust
3343
3344         * text.C (breakParagraph): adjust
3345         (insertChar): adjust
3346         (acceptChange): adjust
3347         (rejectChange): adjust
3348         (selectNextWordToSpellcheck): adjust
3349         (changeCase): adjust
3350         (Delete): adjust
3351         (backspace): adjust
3352
3353         * lyxfind.C (SearchForward): adjust
3354         (SearchBackward): adjust
3355         (nextChange): adjust
3356
3357         * lyxcursor.C (par): adjust
3358
3359         * lyxcursor.h: store a ParagraphList::iterator instead of a
3360         Paragraph*
3361
3362         * lyx_cb.C (getPossibleLabel): adjust
3363
3364         * bufferview_funcs.C (toggleAndShow): adjust
3365
3366         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
3367         (dispatch): adjust
3368
3369         * BufferView.C (removeAutoInsets): adjust
3370         (lockedInsetStoreUndo): adjust
3371
3372 2003-04-09  John Levon  <levon@movementarian.org>
3373
3374         * ToolbarBackend.C: try icon without argument
3375         if with argument fails
3376
3377 2003-04-08  John Levon  <levon@movementarian.org>
3378
3379         * ToolbarBackend.h:
3380         * ToolbarBackend.C: add getIcon(), handle tooltip,
3381         and change from "Icon" to "Item".
3382
3383 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
3384
3385         * BufferView.C (lockInset): another bad getchar crunched
3386
3387 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
3388
3389         * text2.C (changeDepth): do not setUndo on test_only (make undo work
3390         again)
3391
3392 2003-04-05  Alfredo Braunstein  <abraunst@libero.it>
3393
3394         * lyxfind.C (searchForward, searchBackwards): bug 782
3395
3396 2003-04-07  John Levon  <levon@movementarian.org>
3397
3398         * paragraph.C: remove dead comment
3399
3400         * text.C: remove troublesome depth-fiddling code
3401         in leftMargin() and rightMargin() (bug 1017)
3402
3403         * text.C: fix breaking of rows in nested lists
3404         (bug 1004)
3405
3406         * text2.C (updateCounters): fix up depth values
3407         (bug 1013)
3408
3409 2003-04-07  John Levon  <levon@movementarian.org>
3410
3411         * BufferView_pimpl.C: clear message when doc finishes resizing,
3412         and after a mouse event
3413
3414         * lyxfunc.C: clear message after exiting inset
3415
3416 2003-04-07  John Levon  <levon@movementarian.org>
3417
3418         * bufferview_funcs.C: show math status not outside
3419         status in the statusbar
3420
3421 2003-04-07  John Levon  <levon@movementarian.org>
3422
3423         * lyxfunc.C: note status changed after a depth change
3424
3425 2003-04-04  Angus Leeming  <leeming@lyx.org>
3426
3427         * LaTeX.h: move AuxInfo operator==, != out of line.
3428         Remove LaTeX virtual destructor; nothing derives from it.
3429         Move operator()() out of public area and rename it startscript().
3430         Change protected for private.
3431
3432 2003-04-04  Angus Leeming  <leeming@lyx.org>
3433
3434         * lyxfunc.C:
3435         * text2.C: remove unneeded #includes.
3436
3437 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
3438
3439         * text2.C (dEPM): fix the heigth of the next row
3440
3441 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
3442
3443         * text.C: squashed an invalid getChar requester + some ws changes
3444
3445 2003-04-03  John Levon  <levon@movementarian.org>
3446
3447         * bufferview_funcs.h:
3448         * bufferview_funcs.C:
3449         * lyxfunc.C:
3450         * lyxtext.h:
3451         * text2.C: make getStatus work for the env depth lfuns
3452
3453 2003-04-03  John Levon  <levon@movementarian.org>
3454
3455         * bufferview_funcs.h:
3456         * bufferview_funcs.C:
3457         * lyxfunc.C:
3458         * lyxtext.h:
3459         * text2.C: parlistize decDepth(), by merging it with incDepth()
3460
3461 2003-04-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
3462
3463         * lyxrow.h: store a ParagraphList::iterator instead of a
3464         Paragraph* and adjust other class functions to suit.
3465
3466         * lyxrow_funcs.C, text.C, text2.C, text3.C: adjust because of the
3467         above.
3468
3469 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
3470
3471         * text2.C (setCursor): do not anchor to cursor row for the time being
3472
3473 2003-04-02  John Levon  <levon@movementarian.org>
3474
3475         * LyXAction.C:
3476         * lfuns.h:
3477         * lyx_main.C:
3478         * lyxtext.h:
3479         * text.C:
3480         * text3.C: rename the "tab" lfuns. Remove tab support from normal text
3481
3482 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
3483
3484         * paragraph.h: make ParagraphList and ParagraphList::iterator
3485         friends of Paragraph.
3486
3487         * buffer.C (makeLinuxDocFile): move towards ParagraphList
3488
3489         * ParagraphList.C: Use the private next_ and previous_ from
3490         Paragraph.
3491
3492 2003-04-01  John Levon  <levon@movementarian.org>
3493
3494         * ToolbarBackend.h:
3495         * ToolbarBackend.C:
3496         * Makefile.am: rename, remove defaults gunk
3497
3498         * MenuBackend.h:
3499         * MenuBackend.C: remove defaults gunk
3500
3501         * Languages.h:
3502         * Languages.C: remove defaults gunk
3503
3504         * lyx_main.h:
3505         * lyx_main.C: error out if files couldn't be found.
3506
3507 2003-04-02  John Levon  <levon@movementarian.org>
3508
3509         * text2.C: make incDepth() use parlist
3510
3511 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
3512
3513         * undo_funcs.C (firstUndoParagraph): adjust
3514
3515         * text3.C (gotoInset): adjust
3516         (dispatch): adjust, and rewrite loop.
3517
3518         * text2.C (init): adjust, and rewrite loop.
3519         (redoParagraphs): adjust
3520         (updateInset): adjust, and rewrite loop.
3521         (deleteEmptyParagraphMechanism): adjust
3522
3523         * tabular.C (LyXTabular): adjust
3524         (SetMultiColumn): adjust
3525         (TeXRow): adjust
3526
3527         * lyxtext.[Ch] (ownerParagraph): delete function
3528         (ownerParagraphs): new function returns a ParagraphList.
3529
3530         * BufferView.C (removeAutoInsets): adjust
3531         (insertErrors): adjust
3532         (setCursorFromRow): adjust
3533
3534 2003-04-01  Angus Leeming  <leeming@lyx.org>
3535
3536         * BufferView_pimpl.C (buffer): ensure that the Layout is correct
3537         in the frontends.
3538
3539 2003-04-02  John Levon  <levon@movementarian.org>
3540
3541         * lyxtext.h:
3542         * text.C:
3543         * Makefile.am:
3544         * text_funcs.h:
3545         * text_funcs.C: make transposeChars a free function
3546
3547         * lyxrow_funcs.C: remove wrong comment
3548
3549 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3550
3551         * lyxtext.h: adjust
3552         * rowpainter.C: adjust
3553         * text.C: adjust
3554         * text2.C: adjust
3555         * text3.C: adjust
3556
3557         * lyxrow_funcs. [Ch]: new files
3558
3559         * lyxrow.[Ch]: remove next and previous pointers
3560         (next,previous): remove accessor functions
3561         (isParEnd): move to lyxrow_funcs
3562         (lastPos): move to lyxrow_funcs
3563         (nextRowIsAllInset): move to lyxrow_funcs
3564         (lastPrintablePos): move to lyxrow_funcs
3565         (numberOfSeparators): move to lyxrow_funcs
3566         (numberOfHfills): move to lyxrow_funcs
3567         (numberOfLabelHfills): move to lyxrow_funcs
3568         (hfillExpansion): move to lyxrow_funcs
3569
3570         * lyxfunc.C: adjust
3571
3572         * bufferview_funcs.C (toggleAndShow): adjust
3573
3574         * RowList.h: Remove class RowList from file leave just a
3575         std::list<Row>.
3576
3577         * RowList.C: delete file
3578
3579         * Makefile.am (lyx_SOURCES): remove RowList.C, add lyxrow_funcs.C
3580         and lyxrow_funcs.h
3581
3582 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3583
3584         * text3.C (cursorPrevious): adjust
3585         (cursorNext): adjust
3586         (dispatch): adjust
3587
3588         * text2.C (redoHeightOfParagraph): adjust
3589         (redoDrawingOfParagraph): adjust
3590         (setCursor): adjust
3591
3592         * text.C (breakParagraph): adjust
3593         (insertChar): adjust
3594         (backspace): adjust
3595
3596         * rowpainter.C (RowPainter): adjust
3597         (leftMargin): simplify and adjust
3598         (most rowpainter functions): adjust.
3599
3600         * rowpainter.h: store the row as RowList::iterator not as Row*
3601
3602         * lyxcursor.C (row): taka RowList::iterator as arg
3603         (irow): ditto
3604
3605         * lyxcursor.h: make the LyXCursor store RowList::iterators instead
3606         of Row*.
3607
3608 2003-04-01  Angus Leeming  <leeming@lyx.org>
3609
3610         * bufferview_funcs.C (string2font): rewrite so that it no longer uses
3611         stuff like bool Bool.
3612
3613 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
3614
3615         * text2.C (redoParagraphs): fix a bug (introduced by myself) and
3616         rewrite a loop
3617
3618 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3619
3620         * text2.C (redoParagraphs): rewrite (with help from Alfredo) for
3621         RowList::iterator.
3622
3623         * lyxtext.h (rows): drop one version and leve a const variant that
3624         returns a RowList::iterator.
3625
3626 2003-03-31  Angus Leeming  <leeming@lyx.org>
3627
3628         * text.C (fill): ensure that the signature is the same as that in the
3629         header file.
3630
3631 2003-03-31  Lars Gullik Bjønnes  <larsbj@gullik.net>
3632
3633         * text2.C (redoParagraphs): adjust
3634         (updateCounters): adjust
3635         (checkParagraph): adjust
3636         (getColumnNearX): adjust and reformat a bit.
3637
3638         * text.C (top_y): adjust
3639         (workWidth): adjust
3640         (leftMargin): adjust
3641         (prepareToPrint): adjust
3642         (getRow): adjust
3643         (getRowNearY): adjust
3644
3645         * lyxtext.h: make rowlist_ mutable.
3646
3647         * RowList.h: add const_iterator
3648         * RowList.C: adjust for RowList::const_iterator.
3649
3650         * text2.C (getCursorX): make it take a RowList::iterator as arg,
3651         adjust.
3652
3653 2003-03-31  John Levon  <levon@movementarian.org>
3654
3655         * lyxrc.h:
3656         * lyxrc.C: moved pdf_mode and use_gui to elsewhere
3657
3658         * lyx_main.C: set default fonts from using lyx_gui funcs
3659
3660         * exporter.C: pdf_mode moved from lyxrc
3661
3662         * lyx_cb.C:
3663         * lyxfunc.C: changes from above
3664
3665 2003-03-31  John Levon  <levon@movementarian.org>
3666
3667         * lyx_main.C: fix to the last fix
3668
3669 2003-03-31  John Levon  <levon@movementarian.org>
3670
3671         * bufferlist.C: "Load original" -> "Load Original"
3672
3673         * converter.C:
3674         * exporter.C:
3675         * importer.C:
3676         * lyx_main.C:
3677         * format.C: more Alert cleanups
3678
3679 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
3680
3681         * text2.C (removeParagraph): make it take a RowList::iterator as
3682         arg, adjust.
3683         (getColumnNearX): make it take a RowList::iterator as arg, adjust.
3684         (postRowPaint): make it take a RowList::iterator as arg, adjust.
3685
3686         * text.C (anchor_row): make it take a RowList::iterator as arg,
3687         adjust.
3688         (computeBidiTables): make it take a const reference to Row instead
3689         of Row pointer, adjust.
3690         (leftMargin): make it take a RowList::iterator as arg, adjust.
3691         (rowBreakPoint): adjust
3692         (breakAgainOneRow): make it take a RowList::iterator as arg,
3693         adjust.
3694         (prepareToPrint): make it take a RowList::iterator as arg, adjust.
3695
3696         * bufferview_funcs.C (toggleAndShow): adjust
3697
3698 2003-03-30  John Levon  <levon@movementarian.org>
3699
3700         * Makefile.am:
3701         * BoostFormat.h:
3702         * boost-inst.C: moved to support
3703
3704         * several files: changes as a result
3705
3706 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
3707
3708         * text2.C (LyXText): adjust.
3709         (init): adjust
3710         (removeRow): make it take a RowList::iterator as arg, adjust.
3711         (fullRebreak): adjust
3712         (deleteEmptyParagraphMechanism): adjust
3713         (clearPaint): adjust
3714         (postPaint): adjust
3715
3716         * text.C (top_y): adjust
3717         (setHeightOfRow): make it take a RowList::iterator as arg, adjust.
3718         (breakAgain): make it take a RowList::iterator as arg, adjust.
3719         (breakParagraph): adjust
3720         (insertChar): adjust
3721         (backspace): adjust
3722
3723         * lyxtext.h: make anchor_row_ be a RowList::iterator, ditto
3724         need_break_row, and refresh_row.
3725
3726         * text3.C (dispatch): adjust
3727
3728         * text2.C (checkParagraph): adjust
3729         (setCursor): adjust
3730         (setCursorFromCoordinates): adjust
3731
3732         * text.C (top_y): adjust
3733         (workWidth): adjust
3734         (getRow): make it return a RowList::iterator, adjust
3735         (getRowNearY): make it return a RowList::iterator, adjust
3736
3737         * text2.C (init): adjust
3738         (insertRow): remove function
3739         (insertParagraph): adjust
3740         (redoParagraphs): adjust
3741         (fullRebreak): adjust
3742         (updateCounters): adjust
3743
3744         * text.C (top_y): rewrite to use RowList iterators.
3745         (top_y): adjust
3746         (setHeightOfRow): rewrite to sue RowList iterators.
3747         (appendParagraph): adjust
3748         (breakAgain): adjust
3749         (breakAgainOneRow): adjust
3750         (breakParagraph): adjust
3751         (getRow): adjust
3752         (getRowNearY): adjust, and remove commented code.
3753
3754         * lyxtext.h (firstRow): delete function
3755         (lastRow): delete function
3756         (rows): new function (const and non-const versions.)
3757         (insertRow): delete function
3758
3759         * lyxrow.[Ch] (Row): new constructor taking a par and a pos
3760
3761 2003-03-29  John Levon  <levon@movementarian.org>
3762
3763         * BufferView_pimpl.C: always update scrollbar top
3764         because pasting text when we're anchored could mean we
3765         miss an update altogether
3766
3767 2003-03-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
3768
3769         * text2.C (init): use rowlist_.end() and not 0.
3770         (insertRow): change to take a RowList::iterator as arg, adjust
3771         for this.
3772         (insertParagraph): change to take a RowList::iterator as arg,
3773         adjust for this.
3774         (redoParagraphs): remove some debug msgs.
3775
3776         * text.C (appendParagraph): change to take a RowList::iterator
3777         arg, adjust for this.
3778         (breakAgain): add an assert
3779         (breakAgainOneRow): ditto
3780
3781 2003-03-29  John Levon  <levon@movementarian.org>
3782
3783         * text2.C: do not clear selection after inc/decDepth
3784         (bug 550)
3785
3786 2003-03-29  John Levon  <levon@movementarian.org>
3787
3788         * BufferView.C:
3789         * buffer.C: fix broken strerrors according to Lars
3790
3791 2003-03-29  John Levon  <levon@movementarian.org>
3792
3793         * converters.C: more Alert cleanups
3794
3795 2003-03-29  John Levon  <levon@movementarian.org>
3796
3797         * bufferview_funcs.C: remove pointless Alert
3798
3799         * buffer.C: fix confusing error message when
3800         a template is chmoded 000
3801
3802 2003-03-29  John Levon  <levon@movementarian.org>
3803
3804         * BufferView.C:
3805         * BufferView.h:
3806         * BufferView_pimpl.C: Alert fixes
3807
3808         * Makefile.am:
3809         * tabular.C:
3810         * tabular-old.C: remove unused table compat reading
3811
3812 2003-03-29  John Levon  <levon@movementarian.org>
3813
3814         * BufferView.C:
3815         * buffer.C:
3816         * lyx_cb.h:
3817         * lyx_cb.C: more Alert cleanups
3818
3819         * lyxfunc.C: don't allow chktex if not latex document
3820
3821 2003-03-29  John Levon  <levon@movementarian.org>
3822
3823         * lyx_cb.C:
3824         * BufferView.C:
3825         * buffer.C: warnings pushed down from support/,
3826         kill err_alert
3827
3828 2003-03-29  John Levon  <levon@movementarian.org>
3829
3830         * lyxfunc.C: safety check for C-r (revert)
3831
3832 2003-03-29  John Levon  <levon@movementarian.org>
3833
3834         * bufferlist.h:
3835         * bufferlist.C: several UI fixes using Alert::prompt.
3836         Fix the pointless looping quit code. Fix stupid revert
3837         behaviour (bug 938)
3838
3839         * lyxvc.h:
3840         * lyxvc.C:
3841         * lyx_cb.C: use Alert::prompt
3842
3843         * lyx_main.C: remove a silly question
3844
3845         * lyxfunc.C: remove a couple of silly questions,
3846         use Alert::prompt
3847
3848 2003-03-28  John Levon  <levon@movementarian.org>
3849
3850         * text2.C: fix bug 974 (End on empty par)
3851
3852 2003-03-28  John Levon  <levon@movementarian.org>
3853
3854         * BufferView_pimpl.C:
3855         * LyXAction.C:
3856         * lfuns.h: remove do-nothing math greek lfuns
3857
3858 2003-03-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
3859
3860         * lyxgluelength.h (isValidGlueLength): add default arg on
3861         parameter 2. Remove default arg from friend in class.
3862
3863         * lyxlength.h (isValidLength): add default arg on parameter 2.
3864         Remove default arg from friend in class.
3865
3866         * text2.C (LyXText): adjust, initialize refresh_row.
3867         (init): adjust
3868         (removeRow): adjust
3869         (insertRow): adjust
3870         (insertParagraph): adjst
3871         (redoParagraphs): adjust
3872         (fullRebreak): adjust
3873         (updateCounters): adjust
3874         (deleteEmptyParagraphMechanism): first attempt at fixing a
3875         crashing bug.
3876
3877         * text.C (top_y): adjust
3878         (setHeightOfRow): adjust
3879         (getRow): adjust
3880         (getRowNearY): adjust
3881
3882         * lyxtext.h: include RowList.h
3883         (~LyXText): not needed anymore, deleted.
3884         (firstRow): modify for RowList
3885         (lastRow): new function
3886         Delete firstrow and lastrow class variables, add a Rowlist
3887         rowlist_ class variable.
3888
3889         * lyxrow.C (lastPos): use empty() and not !size() to check if a
3890         paragraph is empty.
3891
3892         * RowList.C (insert): fix case where it == begin().
3893
3894 2003-03-26  Angus Leeming  <leeming@lyx.org>
3895
3896         * BufferView_pimpl.C (dispatch): changes to the Dialogs interface for
3897         the thesaurus dialog.
3898
3899 2003-03-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
3900
3901         * Makefile.am (lyx_SOURCES): add RowList.[Ch]
3902
3903         * RowList.[Ch]: new files
3904
3905         * ParagraphList.C (erase): handle the case where it == begin
3906         correctly.
3907
3908 2003-03-25  John Levon  <levon@movementarian.org>
3909
3910         * Makefile.am:
3911         * aspell_local.h:
3912         * aspell.C: add new aspell support
3913
3914         * lyxrc.h:
3915         * lyxrc.C: Make use_pspell be use_spell_lib. Always
3916         have it accessible.
3917
3918 2003-03-25  Angus Leeming  <leeming@lyx.org>
3919
3920         * lfuns.h:
3921         * LyXAction.C (init): new LFUN_INSET_INSERT.
3922
3923         * BufferView_pimpl.C (dispatch): split out part of the
3924         LFUN_INSET_APPLY block LFUN_INSET_INSERT.
3925
3926         * factory.C (createInset): act on LFUN_INSET_INSERT rather than
3927         LFUN_INSET_APPLY.
3928
3929 2003-03-25  Angus Leeming  <leeming@lyx.org>
3930
3931         * lyxfunc.C (dispatch): changes to the Dialogs interface.
3932
3933 2003-03-25  Alfredo Braunstein  <abraunst@libero.it>
3934
3935         * text2.C:
3936         * text3.C: remove useless row->height(0)
3937
3938 2003-03-25  John Levon  <levon@movementarian.org>
3939
3940         * lyxtext.h:
3941         * text2.C:
3942         * text3.C: rename the refreshing stuff to better names
3943
3944 2003-03-24  John Levon  <levon@movementarian.org>
3945
3946         * BufferView_pimpl.h:
3947         * BufferView_pimpl.C: update layout choice on a mouse
3948         press/release
3949
3950 2003-03-23  John Levon  <levon@movementarian.org>
3951
3952         * Makefile.am: fix commandtags.h reference
3953
3954 2003-03-22  John Levon  <levon@movementarian.org>
3955
3956         * BufferView_pimpl.C:
3957         * lyxtext.h:
3958         * rowpainter.C:
3959         * rowpainter.h:
3960         * text.C:
3961         * text2.C: remove CHANGED_IN_DRAW, it cannot happen now
3962
3963 2003-03-21  Alfredo Braunstein  <abraunst@libero.it>
3964
3965         * lyxtext.h:
3966         * text.C: take the rtl methods out of line
3967
3968 2003-03-21 André Pönitz <poenitz@gmx.net>
3969
3970         * metricsinfo.[Ch]: new files containing structures to be passed around
3971         during the two-phase-drawing...
3972
3973 2003-03-21 André Pönitz <poenitz@gmx.net>
3974
3975         * lyxtextclass.C: read 'environment' tag.
3976
3977 2003-03-20  Alfredo Braunstein  <abraunst@libero.it>
3978
3979         * text2.C (removeRow): fix bug 964
3980
3981 2003-03-20  John Levon  <levon@movementarian.org>
3982
3983         * rowpainter.C:
3984         * text.C:
3985         * text2.C: paint cleanups. Inset::update() dropped font
3986         parameter
3987
3988 2003-03-19  John Levon  <levon@movementarian.org>
3989
3990         * lyxfunc.C: only fitcursor/markDirty if available()
3991
3992 2003-03-19  John Levon  <levon@movementarian.org>
3993
3994         * commandtags.h: rename to ...
3995
3996         * lfuns.h: ... this, and renumber / cleanup
3997
3998 2003-03-19  John Levon  <levon@movementarian.org>
3999
4000         * lyxfunc.C: mark buffer dirty if we executed a "dirtying" lfun.
4001         fit the cursor after an lfun
4002
4003         * BufferView.h:
4004         * BufferView.C:
4005         * BufferView_pimpl.h:
4006         * BufferView_pimpl.C: remove BufferView::FITCUR/CHANGE
4007
4008         * LyXAction.C: layout-character should have ReadOnly
4009
4010         * ParagraphParameters.C:
4011         * buffer.C:
4012         * bufferview_funcs.C:
4013         * lyx_cb.C:
4014         * lyxfind.C:
4015         * lyxtext.h:
4016         * text.C:
4017         * text2.C:
4018         * text3.C:
4019         * undo_funcs.C: changes from above
4020
4021 2003-03-18  John Levon  <levon@movementarian.org>
4022
4023         * BufferView_pimpl.C (scrollDocView): add updateLayoutChoice(),
4024         remove it from update()
4025
4026         * lyxfunc.C: update layout choice after an lfun
4027
4028         * text3.C: remove extra updateLayoutChoice()s
4029
4030 2003-03-18  John Levon  <levon@movementarian.org>
4031
4032         * text.C: top_y change means full repaint, fix
4033         a drawing bug with cursor movement
4034
4035 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
4036
4037         * lyxtext.h:
4038         * text.C:
4039         * text2.C: anchor row on setCursor
4040
4041 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
4042
4043         * lyxtext.h: remove almost all mutable keywords
4044         * text.C:
4045         * text2.C:
4046         * text3.C: remove const keywords accordingly
4047
4048 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
4049
4050         * paragraph_funcs.C (TeXDeeper): reduce number of args, move into
4051         anon namespace
4052         (TeXEnvironment): ditto
4053         (TeXOnePar): ditto
4054
4055 2003-03-17  John Levon  <levon@movementarian.org>
4056
4057         * text.C (rowBreakPoint): remove attempt to fix displayed
4058         math insets inside a manual label
4059
4060 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
4061
4062         * lyxtext.h: remove BufferView* as first arg from almost all class
4063         functions.
4064         * other files: adjust.
4065
4066 2003-03-17  John Levon  <levon@movementarian.org>
4067
4068         * lyxtext.h:
4069         * undo_funcs.C:
4070         * text2.C: more paint cleanups
4071
4072         * BufferView_pimpl.C: screen prototype changed, use postPaint etc.
4073
4074         * rowpainter.h:
4075         * rowpainter.C: remove "smart" background painting code
4076
4077 2003-03-16  John Levon  <levon@movementarian.org>
4078
4079         * lyxtext.h:
4080         * text.C:
4081         * text2.C:
4082         * text3.C: add helper functions for setting refresh_row/y
4083
4084 2003-03-14  Kayvan Sylvan  <kayvan@sylvan.com>
4085
4086         * paragraph_pimpl.C (simpleTeXSpecialChars): Added fix for the
4087         newline inset which *can* get inserted in the pass_thru layouts.
4088         This is primarily for literate documents.
4089
4090 2003-03-14  Dekel Tsur  <dekelts@tau.ac.il>
4091
4092         * buffer.C: increment LYX_FORMAT to 223
4093
4094 2003-03-14 André Pönitz <poenitz@gmx.net>
4095
4096         * textclass.h: prepare for environment handling, ws changes
4097         * lyxlayout.C: read latexheader and latexfooter tags
4098
4099 2003-03-14  John Levon  <levon@movementarian.org>
4100
4101         * text2.C: rewrite ::status() a bit
4102
4103 2003-03-13  John Levon  <levon@movementarian.org>
4104
4105         * lyxtext.h: add some docs
4106
4107 2003-03-13  John Levon  <levon@movementarian.org>
4108
4109         * lyxtext.h:
4110         * text.C:
4111         * text2.C:
4112         * text3.C: remove pointless 2nd arg to setHeightOfParagraph()
4113
4114 2003-03-13  John Levon  <levon@movementarian.org>
4115
4116         * text3.C: fix appendix redrawing
4117
4118 2003-03-13  John Levon  <levon@movementarian.org>
4119
4120         * text.C (setHeightOfRow):
4121         * rowpainter.h:
4122         * rowpainter.C: make appendix mark have the text
4123           "Appendix" so the user knows what it is
4124
4125         * LColor.h:
4126         * LColor.C: s/appendixline/appendix/ from above
4127
4128 2003-03-13  John Levon  <levon@movementarian.org>
4129
4130         * paragraph_pimpl.C: fix Andre's backing out of the strong assertion
4131
4132         * text.C: fix a getChar(pos) bug properly
4133
4134 2003-03-13  Angus Leeming  <leeming@lyx.org>
4135
4136         * commandtags.h:
4137         * LyXAction.C (init): new LFUNs PARAGRAPH_APPLY and PARAGRAPH_UPDATE.
4138         Probably only temporary. Let's see how things pan out.
4139
4140         * BufferView.C (unlockInset):
4141         * BufferView_pimpl.C (fitCursor):
4142         replace Dialogs::updateParagraph with dispatch(LFUN_PARAGRAPH_UPDATE).
4143
4144         * BufferView_pimpl.C (dispatch): code for LFUNs LAYOUT_PARAGRAPH,
4145         PARAGRAPH_UPDATE, PARAGRAPH_APPLY.
4146
4147         * ParagraphParameters.[Ch] (setParagraphParams, params2string):
4148         new functions that convert ParagraphParameters to and from a string.
4149
4150         * lyxfunc.C (dispatch): move LFUN_LAYOUT_PARAGRAPH to
4151         BufferView::Pimpl's dispatch.
4152         In LFUN_ESCAPE, dispatch LFUN_PARAGRAPH_UPDATE.
4153
4154 2003-03-13 André Pönitz <poenitz@gmx.net>
4155
4156         * lyxfunc.C:
4157         * text3.C:
4158         * factory.C: make it aware of InsetEnv
4159
4160 2003-03-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
4161
4162         * text2.C (setCursor): never ask for one past last
4163         (setCursor): add some debugging messages.
4164
4165         * text.C (singleWidth): never ask for one past last
4166         (singleWidth): ditto
4167         (leftMargin): ditto
4168         (rightMargin): ditto
4169         (rowBreakPoint): ditto
4170         (setHeightOfRow): ditto
4171         (prepareToPrint): ditto
4172
4173         * rowpainter.C (paintBackground): never ask for one past last
4174         (paintText): never ask for one past last
4175
4176         * paragraph_pimpl.C (getChar): make the assert stricter, never
4177         allow the one past last pos to be taken
4178
4179         * paragraph.C (getChar): ws changes only
4180
4181         * lyxrow.C (nextRowIsAllInset): never ask for one past last
4182         (numberOfSeparators): ditto
4183         (numberOfHfills): ditto
4184
4185 2003-03-12  John Levon  <levon@movementarian.org>
4186
4187         * author.h:
4188         * author.C:
4189         * bufferparams.h:
4190         * bufferparams.C:
4191         * paragraph_funcs.C: fix per-buffer authorlists
4192
4193 2003-03-12  John Levon  <levon@movementarian.org>
4194
4195         * text.C: fix newline in right address
4196
4197 2003-03-12  Angus Leeming  <leeming@lyx.org>
4198
4199         * BufferView_pimpl.C (dispatch): remove LFUNs from switch as they
4200         duplicate those in LyXFunc::dispatch.
4201
4202         * commandtags.h:
4203         * LyXAction.C:
4204         * ToolbarDefaults.C:
4205         rename LFUN_FREE as LFUN_FONTFREE_APPLY.
4206         Add LFUN_FONTFREE_UPDATE.
4207
4208         * lyxfunc.C (dispatch): code for LFUN_FREEFONT_APPLY,
4209         LFUN_FREEFONT_UPDATE, LFUN_LAYOUT_CHARACTER.
4210
4211         * bufferview_func.[Ch]: several new functions to facilliate
4212         transfer of data to and from the character dialog.
4213
4214 2003-03-12  John Levon  <levon@movementarian.org>
4215
4216         * buffer.C:
4217         * paragraph.h:
4218         * paragraph.C:
4219         * paragraph_funcs.C:
4220         * paragraph_pimpl.C:
4221         * sgml.C:
4222         * tabular.C:
4223         * text.C:
4224         * text3.C: remove META_NEWLINE in favour of an inset
4225
4226         * rowpainter.h:
4227         * rowpainter.C: remove paintNewline (done by inset)
4228
4229 2003-03-12  John Levon  <levon@movementarian.org>
4230
4231         * paragraph_pimpl.C: complain about bad getChar()s
4232         for a while at least
4233
4234 2003-03-12  John Levon  <levon@movementarian.org>
4235
4236         * buffer.h:
4237         * buffer.C: move paragraph read into a separate function,
4238         a little renaming to reflect that.
4239
4240         * bufferparams.h:
4241         * bufferparams.C: remove the author_ids map, not necessary now
4242
4243         * factory.h:
4244         * factory.C: moved Buffer::readInset to here
4245
4246         * paragraph_funcs.h:
4247         * paragraph_funcs.C: readParagraph free function moved from
4248         buffer.C
4249
4250         * tabular.C: name change
4251
4252 2003-03-12  John Levon  <levon@movementarian.org>
4253
4254         * buffer.C:
4255         * ParagraphParameters.C: move par params input to
4256         a read() method
4257
4258         * lyxlex_pimpl.C: make nextToken()/next() after a pushToken()
4259         behave like a normal read from the stream wrt reading
4260         a line vs. a \\token
4261
4262 2003-03-12  John Levon  <levon@movementarian.org>
4263
4264         * paragraph.C:
4265         * ParagraphParameters.h:
4266         * ParagraphParameters.C: move output code to a
4267         ::write() method
4268
4269 2003-03-12  John Levon  <levon@movementarian.org>
4270
4271         * BufferView.C (insertLyXFile):
4272         * buffer.h:
4273         * buffer.C:
4274         * tabular.C: use a parlist iterator for creating the
4275           document.
4276
4277 2003-03-12  John Levon  <levon@movementarian.org>
4278
4279         * buffer.C: make current_change static local not
4280           static file-scope
4281
4282 2003-03-12  John Levon  <levon@movementarian.org>
4283
4284         * buffer.C: fix insertStringAsLines for change tracking
4285
4286 2003-03-12  John Levon  <levon@movementarian.org>
4287
4288         * BufferView.C:
4289         * tabular.C:
4290         * buffer.h:
4291         * buffer.C:
4292         * bufferparams.h:
4293         * bufferparams.C: move author list into params. Rename some
4294           functions. Move the header reading into a separate token
4295           loop. Move the header token reading into BufferParams.
4296
4297 2003-03-12  John Levon  <levon@movementarian.org>
4298
4299         * changes.C: put debug inside lyxerr.debugging() checks
4300
4301 2003-03-11 André Pönitz <poenitz@gmx.net>
4302
4303         * factory.C: make it aware of InsetHFill
4304
4305 2003-03-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4306
4307         * buffer.C (latexParagraphs): move function from here...
4308         * paragraph_funcs.C (latexParagraphs): ...to here, and adjust
4309         args.
4310
4311 2003-03-10  Angus Leeming  <leeming@lyx.org>
4312
4313         * LyXAction.C (init): fix bug in poplating array with multiple entries
4314         with the same LFUN (spotted by JMarc).
4315
4316 2003-03-10  John Levon  <levon@movementarian.org>
4317
4318         * text.C:
4319         * text2.C: move getColumnNearX() near its
4320         only call site
4321
4322 2003-03-10  John Levon  <levon@movementarian.org>
4323
4324         * text.C: fix break before a minipage
4325
4326 2003-03-10  John Levon  <levon@movementarian.org>
4327
4328         * text.C: fix the last commit
4329
4330 2003-03-09  John Levon  <levon@movementarian.org>
4331
4332         * lyxtext.h:
4333         * text.C:
4334         * text2.C: clean up nextBreakPoint (now rowBreakPoint). Fix
4335         bug 365 (don't break before insets unless needed). Don't
4336         return a value > last under any circumstances.
4337
4338 2003-03-09  Angus Leeming  <leeming@lyx.org>
4339
4340         * BufferView_pimpl.C (trackChanges, dispatch): call
4341         Dialogs::show("changes") rather than Dialogs::showMergeChanges().
4342
4343 2003-03-09  Angus Leeming  <leeming@lyx.org>
4344
4345         * lyxfunc.C (dispatch): call Dialogs::show("about") rather
4346         than Dialogs::showAboutlyx().
4347
4348 2003-03-09  Angus Leeming  <leeming@lyx.org>
4349
4350         * factory.C (createInset): call Dialogs::show("tabularcreate") rather
4351         than Dialogs::showTabularCreate().
4352
4353 2003-03-09  John Levon  <levon@movementarian.org>
4354
4355         * lyxtext.h:
4356         * text.C:
4357         * text2.C: 3rd arg to nextBreakPoint was always the same.
4358           Use references.
4359
4360 2003-03-08  John Levon  <levon@movementarian.org>
4361
4362         * lyxrow.C:
4363         * paragraph.C:
4364         * paragraph.h:
4365         * rowpainter.C:
4366         * text.C:
4367         * text2.C: Remove the "main" bit from the "main body"
4368           notion.
4369
4370 2003-03-08  John Levon  <levon@movementarian.org>
4371
4372         * text.C (leftMargin): The left margin of an empty
4373         manual label paragraph should not include the label width
4374         string length.
4375
4376         * text.C (prepareToPrint): don't attempt to measure hfills
4377         for empty manual label paragraphs - the answer should be 0
4378
4379 2003-03-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
4380
4381         * CutAndPaste.C: remove commented code and reindent.
4382
4383 2003-03-08  John Levon  <levon@movementarian.org>
4384
4385         * lyxfunc.h:
4386         * lyxfunc.C: move reloadBuffer()
4387
4388         * BufferView.h:
4389         * BufferView.C: to here
4390
4391         * lyxvc.C: add comment
4392
4393         * vc-backend.h:
4394         * vc-backend.C: call bv->reload() to avoid
4395           getStatus() check on MENURELOAD
4396
4397 2003-03-07  Dekel Tsur  <dekelts@tau.ac.il>
4398
4399         * LaTeX.C (run): Fix a bug where the DVI file was not updated due
4400         to an old format .dep file.
4401
4402 2003-03-07  Angus Leeming  <leeming@lyx.org>
4403
4404         * text3.C (dispatch): remove the 'gross hack' of calling inset->edit
4405         when the LFUN_MOUSE_RELEASE should have been handled by
4406         inset->localDispatch.
4407
4408 2003-03-07  Angus Leeming  <leeming@lyx.org>
4409
4410         * BufferView_pimpl.C (dispatch):
4411         * LyXAction.C (init):
4412         * ToolbarDefaults.C (init):
4413         * commandtags.h:
4414         * lyxfunc.C (getStatus):
4415         remove LFUN_INSET_GRAPHICS.
4416
4417         * factory.C (createInset): add "graphics" to LFUN_INSET_APPLY.
4418
4419 2003-03-07  Angus Leeming  <leeming@lyx.org>
4420
4421         * commandtags.h:
4422         * LyXAction.C (init):
4423         * lyxfunc.C (getStatus): remove LFUN_REF_INSERT.
4424
4425         * lyxfunc.C (getStatus): add LFUN_DIALOG_SHOW_NEW_INSET to switch.
4426
4427         * commandtags.h:
4428         * LyXAction.C: add LFUN_INSET_DIALOG_UPDATE.
4429
4430         * lyxfunc (dispatch): on LFUN_DIALOG_UPDATE, pass the 'open' inset's
4431         localDispatch method LFUN_INSET_DIALOG_UPDATE.
4432
4433 2003-03-07  Angus Leeming  <leeming@lyx.org>
4434
4435         * lyxfunc.C (dispatch): add "include" to LFUN_SHOW_NEW_INSET and
4436         remove "ert".
4437
4438 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
4439
4440         * ParagraphList.C (front): new function
4441         (back): implement
4442
4443 2003-03-06  Alfredo Braunstein  <abraunst@libero.it>
4444
4445         * lyxtext.h (top_y): added these 2 methods, and private vars top_row_
4446         and top_row_offset_. removed var first_y.
4447         * text.C (top_y):
4448         * text2.C (LyXText, removeRow):
4449         * text3.C:
4450         * BufferView_pimpl.C:
4451         use these methods instead of using first_y
4452
4453 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
4454
4455         * text2.C (pasteSelection): adjust for checkPastePossible
4456
4457         * CutAndPaste.C: remove Paragraph * buf and replace with
4458         ParagraphList paragraphs.
4459         (DeleteBuffer): delete
4460         (cutSelection): change the tc type to textclass_type
4461         (copySelection): change the tc type to textclass_type
4462         (copySelection): adjust for ParagraphList
4463         (pasteSelection): change the tc type to textclass_type
4464         (pasteSelection): adjust for Paragraphlist
4465         (nrOfParagraphs): simplify for ParagraphList
4466         (checkPastePossible): simplify for ParagraphList
4467         (checkPastePossible): remove unused arg
4468
4469         * ParagraphList.C (insert): handle the case where there are no
4470         paragraphs yet.
4471
4472         * CutAndPaste.h: make CutAndPaste a namespace.
4473
4474         * text3.C (dispatch): adjust
4475
4476         * text.C (breakParagraph): add a ParagraphList as arg
4477
4478         * paragraph_funcs.C (breakParagraph): change to take a
4479         BufferParams and a ParagraphList as args.
4480         (breakParagraphConservative): ditto
4481         (mergeParagraph): ditto
4482         (TeXDeeper): add a ParagraphList arg
4483         (TeXEnvironment): ditto
4484         (TeXOnePar): ditto
4485
4486         * buffer.C (readLyXformat2): adjust
4487         (insertStringAsLines): adjust
4488         (latexParagraphs): adjust
4489
4490         * CutAndPaste.C (cutSelection): use 'true' not '1' as truth value.
4491         (cutSelection): adjust
4492         (pasteSelection): adjust
4493
4494         * BufferView_pimpl.C (insertInset): adjust
4495
4496 2003-03-05  Angus Leeming  <leeming@lyx.org>
4497
4498         * commandtags.h:
4499         * LyXAction.C (init):
4500         * BufferView_pimpl.C (dispatch):
4501         * lyxfunc.C (getStatus):
4502         remove LFUN_CHILD_INSERT.
4503
4504         * factory.C (createInset): add "include" to LFUN_INSET_APPLY.
4505
4506 2003-03-05  Angus Leeming  <leeming@lyx.org>
4507
4508         * commandtags.h:
4509         * LyXAction.C (init):
4510         * src/factory.C (createInset):
4511         * lyxfunc.C (getStatus):
4512         * text3.C (dispatch):
4513         remove LFUN_INSET_EXTERNAL and LFUN_INSERT_URL
4514
4515         * factory.C (createInset): add "external" to LFUN_INSET_APPLY.
4516
4517 2003-03-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
4518
4519         * ParagraphList.C (insert): handle insert right before end()
4520         (erase): fix cases where it can be first or last paragraph.
4521
4522 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
4523
4524         * paragraph_funcs.C (TeXEnvironment): remove all usage of
4525         Paragraph::next and Paragraph::previous
4526         (TeXOnePar): ditto
4527
4528         * text.C (breakParagraph): adjust
4529
4530         * paragraph_funcs.C (breakParagraph): take a Buffer* instead of a
4531         BufferParams& as arg.
4532         (breakParagraph): use ParagraphList::insert
4533         (breakParagraphConservative): take a Buffer* instead of a
4534         BufferParams& as arg.
4535         (breakParagraphConservative): use ParagraphList::insert.
4536
4537         * buffer.C (insertStringAsLines): un-const it
4538         (insertStringAsLines): adjust
4539
4540         * ParagraphList.C (insert): new function
4541
4542         * CutAndPaste.C (pasteSelection): adjust
4543
4544         * text.C (backspace): adjust
4545
4546         * tabular.C (SetMultiColumn): adjust
4547
4548         * CutAndPaste.C (cutSelection): adjust
4549         (pasteSelection): adjust
4550
4551         * tabular.C (SetMultiColumn): make it take a Buffer* instead of a
4552         Buffer const * as arg
4553
4554         * ParagraphList.C (erase): new function
4555         * paragraph_funcs.C (mergeParagraph): use it
4556         (mergeParagraph): make it take a Buffer* instead of a
4557         BufferParams* as arg
4558
4559         * paragraph_funcs.C (breakParagraph): take ParagraphList::iterator
4560         as arg
4561         (breakParagraphConservative): ditto
4562
4563         * paragraph.h: remove the breakParagraph friend
4564
4565         * paragraph.C (eraseIntern): new function
4566         (setChange): new function
4567
4568         * paragraph_funcs.C (mergeParagraph): make it take a
4569         ParagraphList::iterator instead of a Paragraph *, adjust
4570         accordingly.
4571
4572         * paragraph.h: move an #endif so that the change tracking stuff
4573         also works in the NO_NEXT case.
4574
4575 2003-03-04  Angus Leeming  <leeming@lyx.org>
4576
4577         * commandtags.h:
4578         * LyXAction.C: new LFUN_INSET_MODIFY.
4579
4580         * BufferView_pimpl.C (dispatch): if an inset is found to be open
4581         on LFUN_INSET_APPLY, pass LFUN_INSET_MODIFY to its localDispatch.
4582
4583 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
4584
4585         * several files: ws changes only
4586
4587         * paragraph_funcs.C (TeXOnePar): take ParagraphList::iterator as args
4588         (TeXEnvironment): ditto
4589         (TeXDeeper): ditto
4590
4591         * buffer.C (makeLaTeXFile): adjust
4592         (latexParagraphs): make it take ParagraphList::iterator as args
4593
4594 2003-03-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
4595
4596         * buffer.C (latexParagraphs): adjust
4597
4598         * paragraph.C (TeXOnePar): move function...
4599         (optArgInset): move function...
4600         (TeXEnvironment): move function...
4601         * paragraph_pimpl.C (TeXDeeper): move function...
4602         * paragraph_funcs.C: ...here
4603
4604         * tabular.C (UseParbox): rewrite to use ParagraphList iterators.
4605
4606 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
4607
4608         * buffer.C (readInset): remove compability code for old Figure and
4609         InsetInfo insets
4610
4611 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
4612
4613         * buffer.C: ws changes
4614         (readInset):
4615
4616         * BufferView_pimpl.C: ditto
4617         * author.C: ditto
4618         * buffer.h: ditto
4619         * bufferlist.h: ditto
4620         * changes.h: ditto
4621         * lyxfunc.C: ditto
4622
4623 2003-02-28  Alfredo Braunstein <abraunst@libero.it>
4624
4625         * converter.[Ch]: split into itself +
4626         * graph.[Ch]
4627         * format.[Ch]
4628         * Makefile.am: += graph.[Ch] + format.[Ch]
4629         * MenuBackend.C
4630         * buffer.C
4631         * exporter.C
4632         * importer.C
4633         * lyx_main.C
4634         * lyxfunc.C
4635         * lyxrc.C: added #include "format.h"
4636
4637 2003-02-27  Angus Leeming  <leeming@lyx.org>
4638
4639         * BufferView_pimpl.C (dispatch): call a real, LyX dialog to insert
4640           a label.
4641
4642         * factory.C (createInset): add "label" to the factory.
4643
4644         * lyx_cb.[Ch] (getPossibleLabel): rewrite MenuInsertLabel to return the
4645           string and do no more.
4646
4647 2003-02-27  Angus Leeming  <leeming@lyx.org>
4648
4649         * commandtags.h:
4650         * LyXAction.C (init):
4651         * factory.C (createInset):
4652         * BufferView_pimpl.C (dispatch):
4653           collapse LFUN_XYZ_APPLY to LFUN_INSET_APPLY.
4654
4655         * lyxfunc.C (getStatus): remove LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY.
4656
4657         * lyxfunc.C (dispatch):
4658         * text3.C (dispatch): pass name to params2string.
4659
4660 2003-02-26  Angus Leeming  <leeming@lyx.org>
4661
4662         * BufferView_pimpl.C (dispatch): collapse the various LFUN_XYZ_APPLY
4663           blocks together.
4664           Rearrange the ~includes. Strip out the unnecessary ones.
4665
4666         * factory.C (createInset): reformat.
4667           create new insets for the various LFUN_XYZ_APPLY lfuns.
4668
4669 2003-02-26  John Levon  <levon@movementarian.org>
4670
4671         * lyxrow.h:
4672         * lyxrow.C: add isParStart,isParEnd helpers
4673
4674         * paragraph.h: make isInserted/DeletedText take refs
4675
4676         * paragraph_funcs.h:
4677         * paragraph_funcs.C: remove #if 0'd code
4678
4679         * lyxtext.h:
4680         * text3.C:
4681         * text2.C:
4682         * text.C: use lyxrow helpers above.
4683           Move draw and paint routines to RowPainter.
4684           Make several methods use refs not pointers.
4685           Make backgroundColor() const.
4686           Add markChangeInDraw(), isInInset().
4687           Merge changeRegionCase into changeCase.
4688           Make workWidth() shouldn't-happen code into an Assert.
4689
4690         * rowpainter.h:
4691         * rowpainter.C: new class for painting a row.
4692
4693         * vspace.h:
4694         * vspace.C: make inPixels take a ref
4695
4696 2003-02-26  Angus Leeming  <leeming@lyx.org>
4697
4698         * BufferView_pimpl.C (dispatch): use InsetCommand::localDispatch for
4699         LFUN_REF_APPLY.
4700
4701 2003-02-25  John Levon  <levon@movementarian.org>
4702
4703         * ispell.C: give the forked command a more accurate name
4704
4705 2003-02-22  John Levon  <levon@movementarian.org>
4706
4707         * toc.h:
4708         * toc.C: make TocItem store an id not a Paragraph *
4709           (bug #913)
4710
4711 2003-02-21  Angus Leeming  <leeming@lyx.org>
4712
4713         * commandtags.h: Retire LFUN_CITATION_INSERT, LFUN_CITATION_CREATE,
4714           LFUN_INSERT_BIBTEX, LFUN_BIBTEX_STYLE, LFUN_BIBDB_ADD, LFUN_BIBDB_DEL.
4715           Bring to life LFUN_DIALOG_SHOW_NEW_INSET, LFUN_DIALOG_SHOW_NEXT_INSET,
4716           LFUN_DIALOG_UPDATE, LFUN_DIALOG_HIDE, LFUN_DIALOG_DISCONNECT_INSET,
4717           LFUN_BIBITEM_APPLY, LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY,
4718           LFUN_INDEX_APPLY, LFUN_REF_APPLY, LFUN_TOC_APPLY, LFUN_URL_APPLY,
4719
4720         * BufferView_pimpl.C (dispatch):
4721         * LyXAction.C (init):
4722         * factory.C (createInset):
4723         * lyxfunc.C (getStatus, dispatch):
4724         * text3.C (dispatch): retire old LFUNs and bring new ones to life.
4725
4726 2003-02-21  Angus Leeming  <leeming@lyx.org>
4727
4728         * BufferView_pimpl.C (MenuInsertLyXFile):
4729         * lyx_cb.C (WriteAs, getContentsOfAsciiFile):
4730         * lyxfunc.C (menuNew, open, doImport):
4731           no longer pass a LyXView & to fileDlg.
4732
4733 2003-02-21  Angus Leeming  <leeming@lyx.org>
4734
4735         * BufferView_pimpl.C: replace insetbib.h with insetbibtex.h.
4736         * LyXAction.C: change, BIBKEY to BIBITEM.
4737         * buffer.C: replace insetbib.h with insetbibitem.h and insetbibtex.h.
4738         Change InsetBibKey to InsetBibitem.
4739         Change BIBKEY_CODE to BIBITEM_CODE.
4740         * commandtags.h: change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
4741         * factory.C: replace insetbib.h with insetbibitem.h.
4742         Change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
4743         * paragraph.C: replace insetbib.h with insetbibitem.h.
4744         * paragraph.[Ch]: change InsetBibKey to InsetBibitem.
4745         Change bibkey() to bibitem().
4746         * text.C: remove insetbib.h.
4747         * text2.C: replace insetbib.h with insetbibitem.h.
4748         change bibkey() to bibitem().
4749         * text3.C: remove insetbib.h.
4750         change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
4751
4752 2003-02-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4753
4754         * lyxrc.C (output): enclose user email in quotes (in case there are
4755         several words)
4756
4757 2003-02-18  John Levon  <levon@movementarian.org>
4758
4759         * buffer.h: add std::
4760
4761 2003-02-17  John Levon  <levon@movementarian.org>
4762
4763         * SpellBase.h:
4764         * ispell.h:
4765         * ispell.C:
4766         * pspell.h:
4767         * pspell.C: reworking. Especially in ispell, a large
4768           number of clean ups and bug fixes.
4769
4770         * lyxfunc.C: fix revert to behave sensibly
4771
4772 2003-02-17 André Pönitz <poenitz@gmx.net>
4773
4774         * LyXAction.C:
4775         * commandtags.h: new LFUN_INSERT_BIBKEY
4776
4777         * layout.h:
4778         * lyxlayout.C:
4779         * buffer.C:
4780         * factory.C:
4781         * text.C:
4782         * text2.C:
4783         * text3.C:
4784         * paragraph.[Ch]:
4785         * paragraph_func.C: remove special bibkey handling
4786
4787 2003-02-17  John Levon  <levon@movementarian.org>
4788
4789         * text.C (Delete): fix case where delete at the end of
4790           the very first paragraph would not merge the pars
4791
4792 2003-02-17  John Levon  <levon@movementarian.org>
4793
4794         * lyxrow.C: fix lastPrintablePos()
4795
4796 2003-02-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4797
4798         * bufferparams.C (writeLaTeX): add a std:here
4799
4800         * buffer.C: and remove a using directive there
4801
4802 2003-02-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4803
4804         * buffer.C (makeLaTeXFile): move the code that generates the
4805           preamble...
4806
4807         * bufferparams.C (writeLaTeX): ... in this new method
4808
4809         * LaTeXFeatures.C (getEncodingSet): make const
4810           (getLanguages): make const
4811
4812         * MenuBackend.C (binding): returns the binding associated to this
4813           action
4814           (add): sets the status of each item by calling getStatus. Adds
4815           some intelligence.
4816           (read): add support for OptSubMenu
4817           (expand): remove extra separator at the end of expanded menu
4818
4819 2003-02-15  John Levon  <levon@movementarian.org>
4820
4821         * BufferView.C:
4822         * BufferView_pimpl.C:
4823         * bufferlist.h:
4824         * bufferlist.C: remove pointless BufferStorage bloat. Remove
4825           inset code that had no actual effect. Remove unneeded status
4826           code.
4827
4828 2003-02-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4829
4830         * buffer.C (makeLaTeXFile): fix counting of number of line feeds
4831           in preamble
4832
4833 2003-02-14  Michael Schmitt <michael.schmitt@teststep.org>
4834
4835         * text.C (drawLengthMarker): also draw an arrow marker for
4836           symbolic lengths (medskip...)
4837
4838 2003-02-14  John Levon  <levon@movementarian.org>
4839
4840         * tabular.h:
4841         * tabular.C: better method names
4842
4843 2003-02-14  John Levon  <levon@movementarian.org>
4844
4845         * BufferView_pimpl.C:
4846         * bufferlist.C:
4847         * buffer.C:
4848         * converter.C:
4849         * lyx_cb.C:
4850         * lyxfunc.C: change prohibit/allowInput to busy(bool), as
4851           it's a more accurate name. Remove some pointless uses.
4852
4853 2003-02-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4854
4855         * text2.C (LyXText): change order of initilizers to shut off
4856           warnings
4857
4858 2003-02-14  John Levon  <levon@movementarian.org>
4859
4860         * buffer.C: use ParIterator for getParFromID()
4861
4862         * paragraph.h:
4863         * paragraph.C:
4864         * paragraph_pimpl.h:
4865         * paragraph_pimpl.C: remove unused getParFromID()
4866
4867 2003-02-14  John Levon  <levon@movementarian.org>
4868
4869         * buffer.C: remove some very old #if 0'd parse code
4870
4871 2003-02-13  John Levon  <levon@movementarian.org>
4872
4873         * text.h:
4874         * text.C:
4875         * text2.C: move hfillExpansion(), numberOfSeparators(),
4876           rowLast(), rowLastPrintable(), numberofHfills(),
4877           numberOfLabelHfills() ...
4878
4879         * lyxrow.h:
4880         * lyxrow.C: ... to member functions here.
4881
4882         * paragraph.h:
4883         * paragraph.C:
4884         * lyxtext.h:
4885         * text.C: remove LyXText::beginningOfMainBody(), and call
4886           p->beginningOfMainBody() directly. Move the check for
4887           LABEL_MANUAL into the latter.
4888
4889         * text.h:
4890         * text.C:
4891         * text2.C:
4892         * vspace.C:
4893         * BufferView.h:
4894         * BufferView.C: make defaultHeight() be a free defaultRowHeight()
4895
4896         * text.h:
4897         * text.C:
4898         * text2.C:
4899         * text3.C:
4900         * frontends/screen.C: move bv_owner private, introduce isTopLevel()
4901           to make it clear we're testing for outmost-lyxtext vs. inset's lyxtext
4902
4903 2003-02-13  John Levon  <levon@movementarian.org>
4904
4905         * CutAndPaste.C: remove debug
4906
4907 2003-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
4908
4909         * paragraph.C (asString): remove two unused variables
4910
4911         * lyxtextclass.C (readTitleType):
4912           (Read):
4913           (LyXTextClass): handle new members titletype_ and titlename_
4914
4915         * buffer.C (latexParagraphs): honor LyXTextClass::titletype
4916
4917 2003-02-09  John Levon  <levon@movementarian.org>
4918
4919         * buffer.h:
4920         * buffer.C: replace hand-coded list with a map for the dep clean
4921
4922 2003-02-08  John Levon  <levon@movementarian.org>
4923
4924         * LaTeX.C: consolidate code into showRunMessage() helper
4925
4926 2003-02-08  John Levon  <levon@movementarian.org>
4927
4928         * lyxfind.C:
4929         * lyxtext.h:
4930         * text2.C:
4931         * BufferView.C: change setSelectionOverString() to setSelectionRange()
4932           and pass the size in explicitly
4933
4934         * BufferView_pimpl.h:
4935         * BufferView_pimpl.C:
4936         * BufferView.h:
4937         * BufferView.C: add getCurrentChange()
4938
4939         * BufferView_pimpl.h:
4940         * BufferView_pimpl.C: handle change lfuns
4941
4942         * CutAndPaste.C: merge the cut and copy code. Rework the cut code
4943           for changes. Mark pasted paragraphs as new.
4944
4945         * support/lyxtime.h:
4946         * support/lyxtime.C:
4947         * DepTable.C: abstract time_t as lyx::time_type
4948
4949         * LColor.h:
4950         * LColor.C: add colours for new text, deleted text, changebars
4951
4952         * LaTeXFeatures.C: add dvipost as a simple feature. Make the color
4953           package use "usenames" option.
4954
4955         * commandtags.h:
4956         * lyxfunc.C:
4957         * LyXAction.C: add change lfuns
4958
4959         * Makefile.am:
4960         * author.h:
4961         * author.C: author handling
4962
4963         * buffer.h:
4964         * buffer.C: add a per-buffer author list, with first entry as
4965           current author. Handle new .lyx tokens for change tracking. Output
4966           author list to .lyx file. Output dvipost stuff to .tex preamble.
4967           Bump lyx format to 222.
4968
4969         * bufferlist.h:
4970         * bufferlist.C: add setCurrentAuthor() to reset current author details
4971           in all buffers.
4972
4973         * bufferparams.h:
4974         * bufferparams.C: add param for tracking
4975
4976         * bufferview_funcs.C: output change info in minibuffer
4977
4978         * Makefile.am:
4979         * changes.h:
4980         * changes.C: add change-tracking structure
4981
4982         * debug.h:
4983         * debug.C: add CHANGES debug flag
4984
4985         * lyxfind.h:
4986         * lyxfind.C: add code for finding the next change piece
4987
4988         * lyxrc.h:
4989         * lyxrc.C: add user_name and user_email
4990
4991         * lyxrow.h:
4992         * lyxrow.C: add a metric for the top of the text line
4993
4994         * lyxtext.h:
4995         * text.C: implement accept/rejectChange()
4996
4997         * lyxtext.h:
4998         * text.C: paint changebars. Paint new/deleted text in the chosen
4999         colours. Strike through deleted text.
5000
5001         * paragraph.h:
5002         * paragraph.C:
5003         * paragraph_pimpl.h:
5004         * paragraph_pimpl.C: output change markers in .lyx and .tex. Pass
5005           in the current change to the insert functions. Rework erase to
5006           mark text as deleted, adding an eraseIntern() and a range-based
5007           erase(). Implement per-paragraph change lookup and
5008           accept/reject.
5009
5010         * paragraph_funcs.C: Fixup paste for change tracking.
5011
5012         * tabular.C: mark added row/columns as new.
5013
5014         * text.C: fix rowLast() to never return -1. Don't allow
5015           spellchecking of deleted text. Track transpose changes. Don't
5016           allow paragraph break or merge where appropriate.
5017
5018         * text2.C: leave cursor at end of selection after a cut.
5019
5020 2003-02-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5021
5022         * text.C (getLengthMarkerHeight):
5023         (drawLengthMarker): make the `symbolic' lengths (small/med/big)
5024         visible on screen too.
5025
5026 2003-02-07  John Levon  <levon@movementarian.org>
5027
5028         * text.C: s/LYX_PAPER_MARGIN/PAPER_MARGIN/g
5029
5030 2003-02-05  Angus Leeming  <leeming@lyx.org>
5031
5032         * lyxserver.C (read_ready): revert my patch of 11 September last year
5033         as it sends PC cpu through the roof. Presumably this means that
5034         the lyxserver will no longer run on an Alpha...
5035
5036 2003-01-30  Angus Leeming  <leeming@lyx.org>
5037
5038         * factory.C (createInset): create an InsetCommandParam of type "index"
5039         and use it to 'do the right thing'.
5040
5041         * text2.C (getStringToIndex): ensure that cursor position is always
5042         reset to the reset_cursor position.
5043
5044 2003-01-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5045
5046         * lyxfunc.C (getStatus): "buffer-export custom" should never be
5047         disabled.
5048
5049 2003-01-20  Michael Schmitt <michael.schmitt@teststep.org>
5050
5051         * bufferview.C:
5052         * lyxcb.C:
5053         * lyxfunc.C: Output messages with identical spelling, punctuation,
5054         and spaces
5055
5056 2003-01-22  Michael Schmitt  <Michael.Schmitt@teststep.org>
5057
5058         * MenuBackend.C (expandFormats): List only viewable export formats
5059         in "View" menu
5060
5061         * buffer.C (parseSingleLyXformat2Token): Fix misleading error
5062         message
5063
5064         * lyxfunc.C (getStatus): Make sure that formats other than
5065         "fax" can also be disabled
5066
5067 2003-01-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5068
5069         * text3.C (dispatch): put the lfuns that insert insets in 3
5070         groups, and call doInsertInset with appropriate arguments.
5071         (doInsertInset): new function, that creates an inset and inserts
5072         it according to some boolean parameters.
5073
5074 2003-01-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
5075
5076         * buffer.C (readFile): remember to pass on 'par' when calling
5077         readFile recursively.
5078
5079 2003-01-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5080
5081         * MenuBackend.C (expandFormats): add "..." to import formats.
5082
5083 2003-01-15  Dekel Tsur  <dekelts@tau.ac.il>
5084
5085         * paragraph.C (asString): Remove XForms RTL hacks.
5086
5087 2003-01-13  Alfredo Braunstein <abraunst@libero.it>
5088         * buffer.C: fix typo
5089
5090 2003-01-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
5091
5092         * Makefile.am (LIBS): delete var
5093         (lyx_LDADD): add @LIBS@ here instead.
5094
5095 2003-01-08  Michael Schmitt <Michael.Schmitt@teststep.org>
5096
5097         * Clarify the meaning of "wheel mouse jump"
5098
5099 2003-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5100
5101         * lyxfunc.C (getStatus): fix disabling of cut/paste of cells in a
5102         tabular in a float
5103
5104 2003-01-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5105
5106         * importer.C (Loaders): do not preallocate 3 elements in the
5107         vector, since one ends up with 6 elements otherwise
5108
5109 2002-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5110
5111         * DepTable.C (write): write the file name as last element of the
5112         .dep file (because it may contain spaces)
5113         (read): read info in the right order
5114
5115 2003-01-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5116
5117         * paragraph_pimpl.C (simpleTeXBlanks):
5118         (simpleTeXSpecialChars):
5119         * paragraph.C (simpleTeXOnePar): make `column' unsigned.
5120
5121         * tabular.C (latex): add some missing case statements. Reindent.
5122
5123         * MenuBackend.C (expandToc): remove unused variable.
5124
5125 2003-01-06  Michael Schmitt <Michael.Schmitt@teststep.org>
5126
5127         * LColor.C:
5128         * LaTeX.C:
5129         * LyXAction.C:
5130         * MenuBackend.C:
5131         * buffer.C:
5132         * exporter.C:
5133         * lyxfunc.C:
5134         * lyxrc.C: fix inconsistent usage of spaces, colons, capitalization,
5135         and the like.
5136
5137 2003-01-05  John Levon  <levon@movementarian.org>
5138
5139         * BufferView.h:
5140         * BufferView.C: add getEncoding()
5141
5142         * kbsequence.h:
5143         * kbsequence.C: do not store last keypress
5144
5145         * lyxfunc.h:
5146         * lyxfunc.C: store last keypress here instead. Pass encoding
5147           to getISOEncoded()
5148
5149 2002-12-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5150
5151         * lyx_main.C (init): remove annoying error message when following
5152         symbolic links (bug #780)
5153
5154 2002-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5155
5156         * text.C (insertChar):
5157         * lyxrc.C (getDescription): remove extra spaces
5158
5159 2002-12-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5160
5161         * lyxrc.C (getDescription): remove extra spaces
5162
5163 2002-12-20  John Levon  <levon@movementarian.org>
5164
5165         * text3.C: hack fix for page up/down across tall rows
5166
5167 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5168
5169         * text2.C (pasteEnvironmentType): avoid crash if layout-copy has
5170         not been invoked
5171
5172 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5173
5174         * lyxfunc.C (getStatus): query lyx_gui::getStatus() to catter for
5175         unimplemented lfuns. Make LFUN_THESAURUS_ENTRY status unknown if
5176         thesaurus is not compiled in
5177
5178 2002-12-17  Alfredo Braunstein <abraunst@libero.it>
5179
5180         * lyxfunc.C: correct  inversion of WORDFINDBACK/FORWARD
5181
5182 2002-12-16  Angus Leeming  <leeming@lyx.org>
5183
5184         * lyxrc.[Ch]:
5185         * lyx_main.C (init): remove override_x_deadkeys stuff.
5186
5187 2002-12-12  John Levon  <levon@movementarian.org>
5188
5189         * lyxfunc.C: use LyXKeySym->isText() as last-ditch
5190           insert. Only remove shift modifier under strict
5191           circumstances.
5192
5193 2002-12-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
5194
5195         * MenuBackend.C (expandToc): fix crash.
5196
5197 2002-12-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
5198
5199         * MenuBackend.C (expandToc): gettext on float names.
5200
5201 2002-12-03  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
5202
5203         * lyxlength.[Ch]: set default unit to UNIT_NONE,
5204         implement bool empty() [bug 490]
5205
5206 2002-12-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
5207
5208         * text2.C, CutAndPaste.C: use BoostFormat.h not boost/format.hpp
5209
5210 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5211
5212         * several files: ws changes
5213
5214 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5215
5216         * text2.C (setCounter): clean up a bit, use boost.format.
5217         (updateCounters): initialize par upon declaration.
5218
5219         * CutAndPaste.C (SwitchLayoutsBetweenClasses): set the layout also
5220         if the layout exists. We do not just store the layout any more.
5221         (SwitchLayoutsBetweenClasses): use boost.format
5222
5223 2002-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5224
5225         * converter.C (convert): if from and to files are the same, use a
5226         temporary files as intermediary
5227
5228 2002-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5229
5230         * commandtags.h:
5231         * LyXAction.C (init): remove LFUN_VECTOR (bug 662)
5232
5233 2002-11-27  Dekel Tsur  <dekelts@tau.ac.il>
5234
5235         * lyxrc.[Ch]: Add {roman,sans,typewriter}_font_foundry variables.
5236
5237 2002-11-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
5238
5239         * tabular.C (asciiPrintCell): use string(size, char) instead of
5240         explicit loop.
5241
5242         * sgml.C (openTag): fix order of arguments to string constructor
5243         (closeTag): ditto
5244
5245         * lyxfunc.C (dispatch): use boost.format
5246
5247         * lots of files: change "c" -> 'c'
5248
5249 2002-11-25  Dekel Tsur  <dekelts@tau.ac.il>
5250
5251         * encoding.C: Patch from Isam Bayazidi: Fix Arabic shaping.
5252
5253 2002-11-25  Angus Leeming  <leeming@lyx.org>
5254
5255         * BoostFormat.h: wrap code inside #ifdef __GNUG__ block.
5256
5257         * lyx_main.C (init): compile fix.
5258
5259 2002-11-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
5260
5261         * lyx_cb.C (start): boost.formatify
5262         do not include <iostream>
5263
5264         * lengthcommon.C: ws only
5265
5266         * boost-inst.C,BoostFormat.h: add more explict instantations
5267
5268 2002-11-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
5269
5270         * lots of files: handle USE_BOOST_FORMAT
5271
5272 2002-11-21  John Levon  <levon@movementarian.org>
5273
5274         * pspell.C: fix compile
5275
5276 2002-11-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5277
5278         * lyxfunc.C (dispatch): use boost::format
5279         (open): ditto
5280         (doImport): ditto
5281
5282         * lyxfont.C (stateText): use boost::format
5283
5284         * lyx_main.C (LyX): use boost::format
5285         (init): ditto
5286         (queryUserLyXDir): ditto
5287         (readRcFile): ditto
5288         (parse_dbg): ditto
5289         (typedef boost::function): use the recommened syntax.
5290
5291         * importer.C (Import): use boost::format
5292
5293         * debug.C (showLevel): use boost::format
5294
5295         * converter.C (view): use boost::format
5296         (convert): ditto
5297         (move): ditto
5298         (scanLog): ditto
5299
5300         * bufferview_funcs.C (currentState): use boost::format
5301
5302         * bufferlist.C (emergencyWrite): use boost::format
5303
5304         * buffer.C (readLyXformat2): use boost::format
5305         (parseSingleLyXformat2Token): ditto
5306
5307         * Makefile.am (lyx_SOURCES): add BoostFormat.h and boost-inst.C
5308
5309         * LaTeX.C (run): use boost::format
5310
5311         * Chktex.C (scanLogFile): use boost::format
5312
5313         * BufferView_pimpl.C (savePosition): use boost::format
5314         (restorePosition): ditto
5315         (MenuInsertLyXFile): ditto
5316
5317         * BoostFormat.h: help file for explicit instation.
5318
5319 2002-11-21  Dekel Tsur  <dekelts@tau.ac.il>
5320
5321         * tabular.C (latex): Support for block alignment in fixed width
5322         columns.
5323
5324 2002-11-17  John Levon  <levon@movementarian.org>
5325
5326         * BufferView_pimpl.C:
5327         * lyx_cb.C:
5328         * lyxfunc.C: split filedialog into open/save
5329
5330 2002-11-08  Juergen Vigna  <jug@sad.it>
5331
5332         * undo_funcs.C (textHandleUndo): fixed problems with undo introduced
5333         by my last patch (hopefully).
5334
5335 2002-11-08  John Levon  <levon@movementarian.org>
5336
5337         * iterators.h:
5338         * iterators.C:
5339         * buffer.h:
5340         * buffer.C:
5341         * paragraph.h:
5342         * paragraph.C:
5343         * toc.h:
5344         * toc.C: ParConstIterator, and use it (from Lars)
5345
5346 2002-11-07  Ben Stanley  <bds02@uow.edu.au>
5347
5348         * lyxtextclass.[Ch]: revise and add doxygen comments
5349
5350 2002-11-07  John Levon  <levon@movementarian.org>
5351
5352         * text.C: fix progress value for spellchecker
5353
5354         * toc.C: fix navigate menu for insetwrap inside minipage
5355
5356         * paragraph_funcs.C: added FIXME for suspect code
5357
5358 2002-11-07  John Levon  <levon@movementarian.org>
5359
5360         * BufferView_pimpl.C: fix redrawing of insets
5361           on buffer switch
5362
5363 2002-11-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5364
5365         * text2.C (updateCounters): fix bug 668
5366
5367 2002-11-04  Dekel Tsur  <dekelts@tau.ac.il>
5368
5369         * text3.C (dispatch): Do not make the buffer dirty when moving the
5370         cursor.
5371
5372 2002-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
5373
5374         * vc-backend.C: STRCONV
5375         (scanMaster): ditto
5376
5377         * text2.C (setCounter): STRCONV
5378
5379         * paragraph.C (asString): STRCONV
5380
5381         * lyxlength.C (asString): STRCONV
5382         (asLatexString): ditto
5383
5384         * lyxgluelength.C (asString): STRCONV
5385         (asLatexString): ditto
5386
5387         * lyxfunc.C (dispatch): STRCONV
5388         (open): ditto
5389
5390         * lyxfont.C (stateText): STRCONV
5391
5392         * importer.C (Import): STRCONV
5393
5394         * counters.C (labelItem): STRCONV
5395         (numberLabel): ditto
5396         (numberLabel): remove unused ostringstream o
5397
5398         * chset.C: STRCONV
5399         (loadFile): ditto
5400
5401         * bufferview_funcs.C (currentState): STRCONV
5402
5403         * buffer.C (readFile): STRCONV
5404         (asciiParagraph): ditto
5405         (makeLaTeXFile): ditto
5406
5407         * Spacing.C (writeEnvirBegin): STRCONV
5408
5409         * LaTeXFeatures.C (getLanguages): STRCONV
5410         (getPackages): ditto
5411         (getMacros): ditto
5412         (getBabelOptions): ditto
5413         (getTClassPreamble): ditto
5414         (getLyXSGMLEntities): ditto
5415         (getIncludedFiles): ditto
5416
5417         * LaTeX.C: STRCONV
5418         (run): ditto
5419         (scanAuxFile): ditto
5420         (deplog): ditto
5421
5422         * LString.h: add the STRCONV macros
5423
5424         * BufferView_pimpl.C (savePosition): STRCONV
5425         (restorePosition): ditto
5426         (MenuInsertLyXFile): ditto
5427
5428         * vc-backend.C (scanMaster): change from submatch[...] to
5429         submatch.str(...)
5430
5431         * funcrequest.C: include config.h
5432
5433         * factory.C: include config.h
5434
5435         * chset.C (loadFile): change from submatch[...] to submatch.str(...)
5436
5437         * box.C: include config.h
5438
5439         * LaTeX.C (scanAuxFile): change from submatch[...] to
5440         submatch.str(...)
5441         (deplog): ditto
5442
5443 2002-10-25  Angus Leeming  <leeming@lyx.org>
5444
5445         * BufferView_pimpl.C (cursorToggle): remove reapSpellchecker hack.
5446
5447         * ispell.[Ch] (setError): new method.
5448         * ispell.C (c-tor): move out child process into new class LaunchIspell.
5449         Use setError() insetead of goto END.
5450
5451         * lyx_cb.C (AutoSave): move out child process into new class
5452         AutoSaveBuffer.
5453
5454 2002-10-30  John Levon  <levon@movementarian.org>
5455
5456         * text3.C: make start appendix undoable
5457
5458 2002-10-24  Dekel Tsur  <dekelts@tau.ac.il>
5459
5460         * lyxlength.C (inPixels): Fix returned value.
5461
5462         * paragraph.C (TeXOnePar): Fix bug with language changes in nested
5463         environment.
5464
5465 2002-10-24  Angus Leeming  <leeming@lyx.org>
5466
5467         * lyxgluelength.h: no need to forward declare BufferParams
5468         or BufferView, so don't.
5469
5470 2002-10-21  John Levon  <levon@movementarian.org>
5471
5472         * BufferView.C: menuUndo ->undo, redo
5473
5474         * BufferView.h: document, remove dead, make some methods private
5475
5476         * paragraph_funcs.h:
5477         * paragraph_funcs.C:
5478         * CutAndPaste.C: s/pasteParagraph/mergeParagraph
5479
5480         * buffer.h:
5481         * buffer.C:
5482         * sgml.h:
5483         * sgml.C: move sgml open/close tag into sgml.C
5484
5485         * bufferview_funcs.h: unused prototype
5486
5487         * lyxfunc.h:
5488         * lyxfunc.C: remove unused
5489
5490         * lyxtext.h:
5491         * text.C: remove unused
5492
5493 2002-10-21  John Levon  <levon@movementarian.org>
5494
5495         * BufferView.h:
5496         * BufferView.C:
5497         * BufferView_pimpl.h:
5498         * BufferView_pimpl.C: fix mouse wheel handling based on
5499           patch from Darren Freeman
5500
5501 2002-10-09  Dekel Tsur  <dekelts@tau.ac.il>
5502
5503         * lyx_main.C (queryUserLyXDir): Fix automatic reconfiguration.
5504
5505 2002-10-17  Dekel Tsur  <dekelts@tau.ac.il>
5506
5507         * lyxlength.C (inPixels): Fix hanfling of negative length.
5508         Fix LyXLength::MU case.
5509
5510 2002-10-16  John Levon  <levon@movementarian.org>
5511
5512         * buffer.C: remove \\protected_separator parsing done by lyx2lyx now
5513
5514 2002-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5515
5516         * converter.C (view): add support for $$i (file name) and $$p
5517         (file path) for the viewer command. If $$i is not specified, then
5518         it is appended to the command (for compatibility with old syntax)
5519
5520 2002-10-14  Juergen Vigna  <jug@sad.it>
5521
5522         * undo_funcs.C (textHandleUndo): alter the order in which the
5523         new undopar is added to the LyXText, as we have to set first
5524         the right prev/next and then add it as otherwise the rebuild of
5525         LyXText is not correct. Also reset the cursor to the right paragraph,
5526         with this IMO we could remove the hack in "redoParagraphs()".
5527
5528 2002-10-09  Angus Leeming  <leeming@lyx.org>
5529
5530         * Bufferview_pimpl.C (dispatch): call InsetCitation::setLoadingBuffer
5531         to turn off an optimisation if a new inset is to be inserted.
5532
5533 2002-10-11 André Pönitz <poenitz@gmx.net>
5534
5535         * lyxtext.h: make some functions public to allow access
5536         from inset/lyxtext for handling LFUN_PRIOR/NEXT
5537
5538 2002-10-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5539
5540         * text3.C (dispatch): when changing layout, avoid an infinite loop
5541         [bug #652]
5542
5543 2002-10-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5544
5545         * lyxrc.C (read): treat a viewer or converter command of "none" as
5546         if it were empty.
5547
5548         * MenuBackend.C (expandFormats): for an update, also allow the
5549         formats that are not viewable
5550
5551         * lyx_main.C (queryUserLyXDir): re-run automatically the configure
5552         script if it is newer than the lyxrc.defaults in user directory
5553
5554 2002-10-07 André Pönitz <poenitz@gmx.net>
5555
5556         * text.C: Vitaly Lipatov's small i18n fix
5557
5558 2002-09-25  Angus Leeming  <leeming@lyx.org>
5559
5560         * ispell.h: doxygen fix.
5561
5562 2002-09-25  Dekel Tsur  <dekelts@tau.ac.il>
5563
5564         * buffer.h (readFile): Add a new argument to the method, to allow
5565         reading of old-format templates.
5566
5567 2002-09-24  Dekel Tsur  <dekelts@tau.ac.il>
5568
5569         * toc.C (getTocList): Get TOC from InsetWrap.
5570
5571 2002-09-16  John Levon  <levon@movementarian.org>
5572
5573         * lyxfunc.C: check tabular for cut/copy too
5574
5575 2002-09-12  John Levon  <levon@movementarian.org>
5576
5577         * LyXAction.C: tidy
5578
5579         * factory.h:
5580         * factory.C: add header
5581
5582         * paragraph_funcs.h:
5583         * paragraph_funcs.C: cleanup
5584
5585 2002-09-11  John Levon  <levon@movementarian.org>
5586
5587         * PrinterParams.h: odd/even default to true
5588
5589 2002-09-12  Rob Lahaye  <lahaye@snu.ac.kr>
5590
5591         * PrinterParams.h: update printer parameters for new xforms dialog
5592
5593 2002-09-11  Angus Leeming  <leeming@lyx.org>
5594
5595         * lyxserver.C (read_ready): re-write to make it more transparent
5596         and to make it work in coherent fashion under Tru64 Unix.
5597
5598 2002-09-11  André Pönitz <poenitz@gmx.net>
5599
5600         * commandtags.h:
5601         * LyXAction.C:
5602         * text3.C: implement LFUN_WORDSEL
5603
5604 2002-09-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
5605
5606         * lyxtextclass.h: don't include FloatList.h, forward declare instead.
5607         make floatlist_ a boost::shared_ptr<FloatList>
5608
5609         * lyxtextclass.C: include FloatList.h
5610         (LyXTextClass): initialize floatlist_
5611         (TextClassTags): add TC_NOFLOAT
5612         (Read): match "nofloat" to TC_NOFLOAT and use it.
5613         (readFloat): modify call to floatlist_
5614         (floats): ditto
5615         (floats): ditto
5616
5617         * FloatList.[Ch] (FloatList): remove commented out float
5618         initialization.
5619         (erase): new function
5620
5621 2002-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
5622
5623         * MenuBackend.C (expandToc): fix crash when there is no document
5624         open
5625
5626 2002-09-10  Dekel Tsur  <dekelts@tau.ac.il>
5627
5628         * many files: Add insetwrap.
5629
5630 2002-09-09  John Levon  <levon@movementarian.org>
5631
5632         * text2.C: remove confusing and awkward depth wraparound
5633
5634 2002-09-09  John Levon  <levon@movementarian.org>
5635
5636         * BufferView_pimpl.C: Don't use empty arg for LFUN_CHILD_INSERT
5637
5638         * buffer.h:
5639         * buffer.C: remove getIncludeonlyList()
5640
5641         * paragraph.C:
5642         * lyxfunc.C: remove headers
5643
5644 2002-09-09  Juergen Vigna  <jug@sad.it>
5645
5646         * text.C (getColumnNearX): fix form Michael this is most
5647         probably a cut&paste bug.
5648
5649 2002-09-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
5650
5651         * remove all INHERIT_LANG and INHERIT_LANGUAGE commented code
5652
5653         * LaTeXFeatures.C (useLayout): let tclass and lyt be a const
5654         references, ws changes.
5655
5656         * text2.C (init): update counters after init
5657         (insertParagraph): no need to set counter on idividual paragraphs.
5658         (setCounter): access the counters object in the textclass object
5659         on in the buffer object.
5660         (updateCounters): ditto
5661
5662         * lyxtextclass.C: include counters.h, add variable ctrs_ as
5663         shared_ptr<Counters> to avoid loading counters.h in all
5664         compilation units.
5665         (LyXTextClass): initialize ctrs_
5666         (TextClassTags): add TC_COUNTER, and ...
5667         (Read): use it here.
5668         (CounterTags): new tags
5669         (readCounter): new function
5670         (counters): new funtion
5671         (defaultLayoutName): return a const reference
5672
5673         * counters.C (Counters): remove contructor
5674         (newCounter): remove a couple of unneeded statements.
5675         (newCounter): simplify a bit.
5676         (numberLabel): some small formatting changes.
5677
5678         * buffer.[Ch]: remove all traces of counters, move the Counters
5679         object to the LyXTextClass.
5680
5681 2002-09-06  Alain Castera  <castera@in2p3.fr>
5682
5683         * tabular.C: uses \tabularnewline; uses >{...} construct from array
5684         package to set the horizontal alignment on fixed width columns.
5685
5686         * lyx_sty.C:
5687         * lyx_sty.h: added tabularnewline macro def.
5688
5689         * LaTeXFeatures.C: added NeedTabularnewline macro feature
5690
5691 2002-09-06  John Levon  <levon@movementarian.org>
5692
5693         * LyXAction.C: tooltips for sub/superscript
5694
5695         * MenuBackend.C: a bit more verbose
5696
5697         * lyxfunc.C: tiny clean
5698
5699         * undo_funcs.C: document undo_frozen
5700
5701 2002-09-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
5702
5703         * counters.C (Counters): add missing algorithm counter.
5704
5705         * text2.C (setCounter): lookup the counter with layouts latexname
5706         instead of by section number.
5707         (setCounter): use a hackish way to lookup the correct enum
5708         counter.
5709         a float name->type change
5710         reset enum couners with counter name directly instead of depth value.
5711
5712         * counters.C (Counters): remove the push_backs, change to use the
5713         float type not the float name.
5714         (labelItem): remove unused string, float name->type change
5715
5716         * counters.h: don't include vector, loose the enums and sects vectors
5717
5718 2002-09-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
5719
5720         * lyxtextclass.C (TextClassTags): add TC_FLOAT
5721         (Read): add float->TC_FLOAT to textclassTags
5722         (Read): and handle it in the switch
5723         (readFloat): new function
5724
5725         * FloatList.C (FloatList): comment out the hardcoded float
5726         definitions.
5727
5728         * lyxlayout.h: ws change.
5729
5730 2002-08-29  Dekel Tsur  <dekelts@tau.ac.il>
5731
5732         * buffer.C (readFile): Look for lyx2lyx in LYXDIR/lyx2lyx/
5733
5734 2002-09-03  Angus Leeming  <leeming@lyx.org>
5735
5736         * BufferView_pimpl.h: qualified name is not allowed in member
5737         declaration: WorkArea & Pimpl::workarea() const;
5738
5739         * factory.C: added using std::endl directive.
5740
5741         * text3.C: added using std::find and std::vector directives.
5742
5743 2002-08-29  André Pönitz <poenitz@gmx.net>
5744
5745         * lyxtext.h:
5746         * text2.C: remove unused member number_of_rows
5747
5748         * Makefile.am:
5749         * BufferView2.C: remove file, move contents to...
5750         * BufferView.C: ... here
5751
5752         * BufferView_pimpl.C:
5753         * factory.C: move more inset creation to factory
5754
5755         * vspace.C: avoid direct usage of LyXText, ws changes
5756
5757         * BufferView.[Ch]:
5758                 don't provide direct access to WorkArea, use two simple
5759                 acessors haveSelction() and workHeight() instead
5760
5761
5762 2002-08-29  John Levon  <levon@movementarian.org>
5763
5764         * BufferView_pimpl.C (dispatch): do not continue when
5765           no buffer
5766
5767 2002-08-28  André Pönitz <poenitz@gmx.net>
5768
5769         * commandtags.h: new LFUN_MOUSE_DOUBLE, LFUN_MOUSE_TRIPLE
5770
5771         * BufferView.h:
5772         * BufferView_pimpl.[Ch] move work area mouse event to LFUNs
5773
5774 2002-08-28  Rob Lahaye  <lahaye@snu.ac.kr>
5775
5776         * buffer.C: increment LYX_FORMAT to 221
5777
5778         * lyxrc.[Ch]: declare display_graphics as grfx::DisplayType and use
5779         grfx::displayTranslator.find(foo); include graphics/GraphicsTypes.h.
5780
5781         * lyxrc.C: use more "if (...) { } else { }" style (John's advice).
5782
5783         * lyx_main.C: call once the setDisplayTranslator(); is that okay here?
5784
5785 2002-08-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5786
5787         * factory.C (createInset): use LyXTextClass::floats
5788
5789         * MenuBackend.C (expandFloatListInsert):
5790         (expandFloatInsert):
5791         (expandToc):
5792
5793         * text2.C (setCounter):
5794
5795         * LaTeXFeatures.C (useFloat):
5796         (getFloatDefinitions):
5797
5798         * BufferView_pimpl.C (dispatch): use LyXTextClass::floats()
5799
5800         * lyxtextclass.[Ch]: rename layoutlist to layoutlist_; add
5801         floatlist_, with accessor floats().
5802
5803         * FloatList.h: remove global FloatList
5804
5805 2002-08-26  André Pönitz <poenitz@gmx.net>
5806
5807         * paragraph.[Ch]: Martin's patch for the \end_deeper bug
5808
5809         * BufferView.h:
5810         * BufferView2.C:
5811         * BufferView_pimpl.C:
5812         * text3.C: mun hanfling of LFUN_CUT/COPY/PASTE to LyXText
5813
5814 2002-08-25  John Levon  <levon@movementarian.org>
5815
5816         * LyXAction.C: fix margin note description
5817
5818 2002-08-24  John Levon  <levon@movementarian.org>
5819
5820         * buffer.C:
5821         * bufferlist.C:
5822         * bufferview_funcs.C:
5823         * lyxfont.C:
5824         * undo_funcs.C: cleanups
5825
5826         * lyxfunc.C: disable CUT/COPY when no selection
5827
5828 2002-08-23  Rob Lahaye  <lahaye@snu.ac.kr>
5829
5830         * lyxlength.[Ch]: use better (three letters) mnemonics for percentage units
5831         in "enum UNIT"; e.g. PTW for Percent of TextWidth
5832
5833         * lyxrc.C: graphics display is now monochrome|grayscale|color|none.
5834         Add backward compatibility to "mono", "gray" and "no".
5835
5836 2002-08-24  Dekel Tsur  <dekelts@tau.ac.il>
5837
5838         * buffer.C (readFile): Always run lyx2lyx if file_format < LYX_FORMAT
5839         (and file_format >= 200).
5840
5841 2002-08-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5842
5843         * lyxlayout.C (Read): treat LT_OPTARGS as an integer, not a bool
5844
5845 2002-08-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5846
5847         * lyxfunc.C (getStatus): handle LFUN_INSET_OPTARG
5848
5849 2002-08-20  Martin Vermeer  <martin.vermeer@hut.fi>
5850
5851         * BufferView_pimpl.C:
5852         * LyXAction.C:
5853         * buffer.C:
5854         * commandtags.h:
5855         * lyxfunc.C:
5856         * paragraph.[Ch]:
5857         * text2.C:
5858         * insets/insetoptarg.[Ch]: Added "optional argument" collapsible
5859         inset and code to make it  work with the paragraph code. The inset
5860         can be anywhere in the paragraph, but will only do the expected
5861         thing in LaTeX if the layout file contains the parameter line
5862                         OptionalArgs    1
5863         (or more generally, a nonzero value) for that layout.
5864
5865 2002-08-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
5866
5867         * paragraph.h: remove the declaration of undefined counters class
5868         function.
5869
5870 2002-08-22  Martin Vermeer <martin.vermeer@hut.fi>
5871
5872         * text2.C (setCounter):  fixed enumeration mis-count as reported by
5873         Dr. Richard Hawkins.
5874
5875 2002-08-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
5876
5877         * paragraph_funcs.h: remove some unneeded includes
5878
5879         * text.C (backspace): pasteParagraph now in global scipe
5880
5881         * CutAndPaste.C (cutSelection): pasteParagraph now in global scope
5882         (pasteSelection): ditto
5883
5884         * paragraph.[Ch] (pasteParagraph): move function to global scope ...
5885         * paragraph_funcs.C (pasteParagraph): ... here
5886
5887 2002-08-20  André Pönitz <poenitz@gmx.net>
5888
5889         * commandtags.h: new LFUNs for swapping/copying table row/colums
5890
5891         * LyXAction.C:
5892         * lyxfunc.C: support for new lfuns
5893
5894 2002-08-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
5895
5896         * tabular.C:
5897         * buffer.[Ch]: remove NO_COMPABILITY stuff
5898
5899 2002-08-20  Lars Gullik Bjønnes  <larsbj@gullik.net>
5900
5901         * boost.C (throw_exception): new file, with helper function for
5902         boost compiled without exceptions.
5903
5904         * paragraph.h:
5905         * lyxlength.C:
5906         * buffer.C:
5907         * ParameterStruct.h:
5908         * ParagraphParameters.[Ch]: remove NO_PEXTRA_REALLY stuff
5909
5910         * bufferlist.C (emergencyWriteAll): use boost bind
5911
5912         * BufferView_pimpl.C (moveCursorUpdate): remove inline
5913
5914         * text.C: include paragraph_funcs.h
5915         (breakParagraph): breakParagraph is now in global scope
5916
5917         * paragraph_funcs.[Ch]: new files
5918
5919         * paragraph.C (breakParagraph,breakParagraphConservative): move to
5920         global scope
5921
5922         * buffer.C: include paragraph_funcs.h
5923         (insertStringAsLines): breakParagraph is now in global scope
5924
5925         * Makefile.am (lyx_SOURCES): add paragraph_funcs.h and
5926         paragraph_funcs.C
5927
5928         * CutAndPaste.C: include paragraph_funcs.h
5929         (cutSelection): breakParagraphConservative is now in global scope
5930         (pasteSelection): ditto
5931
5932         * buffer.h: declare oprator== and operator!= for
5933         Buffer::inset_iterator
5934
5935         * bufferlist.C (emergencyWrite): don't use fmt(...)
5936
5937         * text3.C: add using std::endl
5938
5939         * BufferView.C (moveCursorUpdate): remove default arg
5940
5941 2002-08-20  André Pönitz <poenitz@gmx.net>
5942
5943         * buffer.[Ch]: move inline functions to .C
5944
5945         * BufferView2.C:
5946         * BufferView_pimpl.C:
5947         * text.C:
5948         * buffer.[Ch]: use improved inset_iterator
5949
5950         * buffer.C:
5951         * paragraph.[Ch]: write one paragraph at a time
5952
5953 2002-08-20  Dekel Tsur  <dekelts@tau.ac.il>
5954
5955         * BufferView_pimpl.C (dispatch): Insert insetbibtex with "plain"
5956         style if style is not specified.
5957
5958 2002-08-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5959
5960         * text2.C (setCounter): when searching for right label for a
5961         caption, make sure to recurse to parent insets (so that a caption
5962         in a minipage in a figure float works) (bug #568)
5963
5964 2002-08-20  André Pönitz <poenitz@gmx.net>
5965
5966         * text3.C: new file for LyXText::dispatch() and helpers
5967
5968         * BufferView.[Ch]: move text related stuff to LyXText::dispatch()
5969
5970         * funcrequest.[Ch]: add message() do avoid direct access to LyXFunc
5971
5972 2002-08-19  André Pönitz <poenitz@gmx.net>
5973
5974         * lyxtext.h:
5975         * text.C: new LyXText::dispatch()
5976
5977         * BufferView_pimpl.C: move handling of LFUN_APPENDIX to LyXText
5978
5979 2002-08-18  Dekel Tsur  <dekelts@tau.ac.il>
5980
5981         * text.C (paintRowSelection): Fix code for rows with both RTL & LTR text.
5982
5983         * BufferView_pimpl.C (smartQuote): Insert typewriter quotes in
5984         Hebrew text.
5985
5986 2002-08-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
5987
5988         * Makefile.am: use $(variables) instead of @substitutions@
5989
5990 2002-08-15  André Pönitz <poenitz@gmx.net>
5991
5992         * lyxfunc.C:
5993         * BufferView_pimpl.C: streamlining mathed <-> outer world
5994         interaction
5995
5996         * commandtags.h:
5997         * LyXAction.C: remove unused LFUN_MATH
5998
5999 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
6000
6001         * paragraph.[Ch]: add some NO_NEXT ifdefs.
6002
6003 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
6004
6005         * paragraph.C (Paragraph): reformat a bit
6006         (cutIntoMinibuffer): use builtin InsetList function instad of
6007         doing it manually.
6008         (getInset): ditto
6009
6010         * buffer.C: include boost/bind.hpp, add using std::for_each
6011         (writeFileAscii): use ParagraphList iterators
6012         (validate): use for_each for validate traversal of paragraphs
6013         (getBibkeyList): use ParagraphList iterators
6014         (resizeInsets): use for_each to resizeInsetsLyXText for all
6015         paragraphs.
6016         (getParFromID): use ParagraphList iterators
6017
6018         * BufferView2.C (lockInset): use paragraph list and iterators
6019
6020 2002-08-14  John Levon  <levon@movementarian.org>
6021
6022         * lyxserver.C: remove spurious xforms include
6023
6024 2002-08-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6025
6026         * lyxfunc.C (getStatus): disable math-extern outside of math mode
6027
6028 2002-08-13  André Pönitz <poenitz@gmx.net>
6029
6030         * LyXAction.[Ch]:
6031         * lyxfunc.C: further cleaning
6032
6033 2002-08-13  André Pönitz <poenitz@gmx.net>
6034
6035         * funcrequest.h: new constructor
6036
6037         * funcrequest.C: move stuff here from .h
6038
6039         * Makefile.am:
6040         * BufferView_pimpl.C:
6041         * LyXAction.C:
6042         * toc.C:
6043         * lyxfunc.C: subsequent changes
6044
6045         * lyxfunc.h: new view() member function
6046
6047         * lyxfunc.C: subsequent changes
6048
6049 2002-08-13  Angus Leeming  <leeming@lyx.org>
6050
6051         * BufferView2.C:
6052         * BufferView_pimpl.C:
6053         * buffer.C:
6054         * converter.C:
6055         * importer.C:
6056         * lyxfunc.C:
6057         * lyxvc.C:
6058         * toc.C:
6059         * vc-backend.C:
6060         changes due to the changed LyXView interface that now returns references
6061         to member variables not pointers.
6062
6063 2002-08-13  Angus Leeming  <leeming@lyx.org>
6064
6065         * WordLangTuple (word, lang_code): return references to strings,
6066         not strings.
6067
6068         * BufferView.h:
6069         * SpellBase.h:
6070         * lyxtext.h: forward-declare WordLangTuple.
6071
6072         * BufferView2.C:
6073         * ispell.C:
6074         * pspell.C:
6075         * text.C: #include "WordLangTuple.h".
6076
6077         * lyxtext.h:
6078         * text.C: (selectNextWordToSpellcheck): constify return type.
6079
6080 2002-08-12  Martin Vermeer <martin.vermeer@hut.fi>
6081
6082         * buffer.C:
6083         * buffer.h:
6084         * lyxtext.h:
6085         * paragraph.C:
6086         * paragraph_pimpl.h:
6087         * text.C:
6088         * text2.C:
6089         * undo_funcs.C: replaced per-paragraph counter logic by per-buffer, as
6090         suggested by Angus.
6091         Made updateCounter always count from start of buffer, and removed
6092         second argument (par).
6093         Reverted floats number display to '#'. Perhaps I'll try again when the
6094         code base is sanitized a bit.
6095
6096 2002-08-12  Angus Leeming  <leeming@lyx.org>
6097
6098         * buffer.[Ch] (getLabelList): constify.
6099
6100 2002-08-07  André Pönitz <poenitz@gmx.net>
6101
6102         * commandtags.h: new LFUN_MOUSE_(PRESS|MOTION|RELEASE)
6103
6104         * funcrequest.h: extension to keep mouse (x,y) position
6105
6106 2002-08-12  Juergen Vigna  <jug@sad.it>
6107
6108         * BufferView2.C (insertErrors): forbid undo when inserting error
6109         insets.
6110
6111         * CutAndPaste.C (SwitchLayoutsBetweenClasses): ditto
6112
6113 2002-08-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
6114
6115         * ParagraphList.[Ch]: new files
6116
6117         * Makefile.am (lyx_SOURCES): add ParagraphList.[Ch]
6118
6119         * BufferView2.C (lockInset): ParagraphList changes
6120         * toc.C: ditto
6121         * text2.C: ditto
6122         * bufferlist.C: ditto
6123         * buffer.h: ditto
6124         * buffer.C: ditto
6125
6126 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
6127
6128         * paragraph_pimpl.h: remove inclusion of boost/array.hpp, remove
6129         unused class variable counter_,
6130
6131         * paragraph.[Ch] (getFirstCounter): delete unused function
6132
6133         * counters.C: include LAssert.h
6134         (reset): add a new function with no arg, change other version to
6135         not have def. arg and to not allow empty arg.
6136
6137         * text2.C (setCounter): remove empty arg from call to Counters::reset
6138
6139 2002-08-11  John Levon  <levon@movementarian.org>
6140
6141         * Makefile.am: add WordLangTuple.h
6142
6143 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
6144
6145         * paragraph.C, ToolbarDefaults.h, kbsequence.h, lyx_main.C,
6146         lyxfunc.C lyxlex_pimpl.C: ws changes only.
6147
6148         * insets/insettext.C: InsetList changes
6149
6150         * graphics/GraphicsSupport.C (operator()): InsetList changes
6151
6152         * toc.C (getTocList): InsetList changes
6153
6154         * paragraph_pimpl.[Ch]: InsetList changes
6155
6156         * paragraph.[Ch]: InsetList changes
6157
6158         * buffer.C (inset_iterator): InsetList changes
6159         (setParagraph): ditto
6160         * buffer.h (inset_iterator): ditto
6161         * iterators.C (operator++): ditto
6162         * iterators.h: ditto
6163
6164         * Makefile.am (lyx_SOURCES): add InsetList.C and InsetList.h
6165
6166         * InsetList.[Ch]: new files, most InsetList handling moved out of
6167         paragraph.C.
6168
6169         * BufferView2.C (removeAutoInsets): InsetList changes
6170         (lockInset): ditto
6171         (ChangeInsets): ditto
6172
6173 2002-08-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
6174
6175         * paragraph_pimpl.h (empty): new function
6176
6177         * paragraph.[Ch] (empty): new function
6178
6179         * other files: use the new Paragraph::empty function
6180
6181 2002-08-09  John Levon  <levon@movementarian.org>
6182
6183         * lyxtext.h: remove unused refresh_height
6184
6185 2002-08-09  John Levon  <levon@movementarian.org>
6186
6187         * Makefile.am:
6188         * sgml.h:
6189         * sgml.C:
6190         * buffer.C:
6191         * paragraph.h:
6192         * paragraph.C: move sgml char escaping out of paragraph
6193
6194         * paragraph.h:
6195         * paragraph.C: remove id setter
6196
6197         * buffer.C:
6198         * paragraph.C:
6199         * paragraph_pimpl.C: remove dead tex_code_break_column
6200
6201         * bufferview_funcs.C: small cleanup
6202
6203         * lyxfunc.C: remove dead proto
6204
6205         * lyxtext.h: make some stuff private. Remove some dead stuff.
6206
6207         * lyxgluelength.C: make as[LyX]String() readable
6208
6209 2002-08-08  John Levon  <levon@movementarian.org>
6210
6211         * LyXAction.h:
6212         * LyXAction.C:
6213         * MenuBackend.C:
6214         * ToolbarDefaults.C:
6215         * lyxfunc.C:
6216         * lyxrc.C:
6217         * toc.C: lyxaction cleanup
6218
6219 2002-08-08  John Levon  <levon@movementarian.org>
6220
6221         * BufferView2.C: small cleanup
6222
6223         * lyxfind.h:
6224         * lyxfind.C: move unnecessary header into the .C
6225
6226 2002-08-08  John Levon  <levon@movementarian.org>
6227
6228         * funcrequest.h: just tedious nonsense
6229
6230         * lyx_main.h:
6231         * lyx_main.C: cleanups
6232
6233         * buffer.C:
6234         * vspace.C: remove dead header lyx_main.h
6235
6236 2002-08-07  Angus Leeming  <leeming@lyx.org>
6237
6238         * Paragraph.[Ch]:
6239         * paragraph_pimpl.h:
6240         Forward declare class Counters in paragraph.h by moving the ctrs member
6241         variable into Paragraph::Pimpl.
6242         (counters): new method, returning a reference to pimpl_->ctrs.
6243
6244         * text2.C: ensuing changes.
6245
6246 2002-08-07  John Levon  <levon@movementarian.org>
6247
6248         * BufferView_pimpl.C (resizeCurrentBuffer): update scrollbar
6249
6250         * BufferView_pimpl.C: announce X selection on double/triple
6251           click
6252
6253         * lyx_main.C: use correct bool in batch dispatch
6254
6255         * counters.h: srcdocs (from Martin Vermeer and Angus Leeming)
6256
6257 2002-08-07  André Pönitz <poenitz@gmx.net>
6258
6259         * funcrequest.h: new class to wrap a kb_action and its argument
6260
6261         * BufferView.[Ch]:
6262         * BufferView_pimpl[Ch]:
6263         * LaTeX.C:
6264         * LyXAction.[Ch]:
6265         * lyxfunc.[Ch]:
6266         * lyxrc.C: subsequent changes
6267
6268
6269 2002-08-07  John Levon  <levon@movementarian.org>
6270
6271         * BufferView_pimpl.C (redoCurrentBuffer): fix screen update when
6272           document options change.
6273
6274 2002-08-06  Martin Vermeer  <martin.vermeer@hut.fi>
6275
6276         * counters.[Ch]
6277         * text2.C
6278         * paragraph.[Ch]
6279         * makefile.am: move counters functionality over from
6280         text2.C/paragraph.[Ch] to counters.[Ch], and make proper C++.
6281
6282 2002-08-06  John Levon  <levon@movementarian.org>
6283
6284         * WordLangTuple.h: new file for word + language code tuple
6285
6286         * SpellBase.h:
6287         * pspell.h:
6288         * pspell.C:
6289         * ispell.h:
6290         * ispell.C:
6291         * lyxtext.h:
6292         * text.C:
6293         * text2.C:
6294         * BufferView.h:
6295         * BufferView2.C: use WordLangTuple
6296
6297         * layout.h:
6298         * buffer.C: remove very dead LYX_LAYOUT_DEFAULT
6299
6300 2002-08-06  John Levon  <levon@movementarian.org>
6301
6302         * lyx_main.C: fix cmdline batch handling
6303
6304 2002-08-06  André Pönitz <poenitz@gmx.net>
6305
6306         * lyxrc.C: set default for show_banner to true
6307
6308 2002-08-06  John Levon  <levon@movementarian.org>
6309
6310         * pspell.C: fix a crash, and allow new aspell to work
6311
6312 2002-08-06  John Levon  <levon@movementarian.org>
6313
6314         * lyxfunc.C:
6315         * kbmap.C: small cleanup
6316
6317         * vspace.h:
6318         * vspace.C: add const
6319
6320 2002-08-05  John Levon  <levon@movementarian.org>
6321
6322         * LyXAction.C: back to tabular-insert
6323
6324 2002-08-04  John Levon  <levon@movementarian.org>
6325
6326         * BufferView.h:
6327         * BufferView.C: cosmetic change
6328
6329         * BufferView_pimpl.C: s/IGNORE_CODE/NOTE_CODE/
6330
6331         * bufferlist.C:
6332         * buffer.h:
6333         * buffer.C:
6334         * lyxcb.h:
6335         * lyxcb.C:
6336         * lyxserver.C:
6337         * lyxvc.C:
6338         * vc-backend.C:
6339         * BufferView2.C: purge all "Lyx" not "LyX" strings
6340
6341         * lyxcursor.h:
6342         * lyxcursor.C: attempt to add some documentation
6343
6344         * lyxfunc.C:
6345         * commandtags.h:
6346         * LyXAction.C:
6347         * ToolbarDefaults.C:
6348         * BufferView_pimpl.C: remove LFUN_DIALOG_TABULAR_INSERT and
6349           merge with LFUN_TABULAR_INSERT
6350
6351         * Makefile.am:
6352         * SpellBase.h:
6353         * ispell.h:
6354         * ispell.C:
6355         * pspell.h:
6356         * pspell.C: split up i/pspell implementations into separate
6357           files, many cleanups
6358
6359         * lyxlex.C: unrevert, with a proper fix for prefix.length() == 0
6360
6361         * text2.C: some cleanup
6362
6363         * lyxfunc.C: don't check for isp_command == "none" any more, it
6364           didn't make any sense
6365
6366 2002-08-06      Martin Vermeer <martin.vermeer@hut.fi>
6367
6368         * counters.[Ch]
6369         * text2.C
6370         * paragraph.[Ch]
6371         * makefile.am: move counters functionality over
6372         from text2.C/paragraph.[Ch] to counters.[Ch], and
6373         make proper C++.
6374 2002-08-02  John Levon  <levon@movementarian.org>
6375
6376         * buffer.C: s/lyxconvert/lyx2lyx/
6377
6378 2002-08-02  Angus Leeming  <leeming@lyx.org>
6379
6380         * lyxlex.C: revert John's change as it breaks reading of the user
6381         preamble.
6382
6383 2002-08-02  Angus Leeming  <leeming@lyx.org>
6384
6385         * importer.C (Import):
6386         * lyxfunc.C (moveCursorUpdate, dispatch, view_status_message):
6387         changes due to LyXView::view() now returning a boost::shared_ptr.
6388
6389 2002-08-02  John Levon  <levon@movementarian.org>
6390
6391         * lyxlex.C: small cleanup
6392
6393 2002-08-02  John Levon  <levon@movementarian.org>
6394
6395         * text2.C (status): small cleanup, no logic change
6396
6397 2002-08-01  John Levon  <levon@movementarian.org>
6398
6399         * buffer.h:
6400         * buffer.C (writeFile): don't output alerts, caller
6401           handles this
6402
6403         * bufferlist.C:
6404         * lyx_cb.C: from above
6405
6406         * lyxfunc.C: allow to open non-existent files
6407
6408 2002-07-31  John Levon  <levon@movementarian.org>
6409
6410         * lyxserver.C: don't let incidental errors get
6411           in the way (errno)
6412
6413 2002-07-30  John Levon  <levon@movementarian.org>
6414
6415         * lyxfunc.C: disable character dialog in ERT inset (partial fix)
6416
6417 2002-07-30  John Levon  <levon@movementarian.org>
6418
6419         * lyxserver.h:
6420         * lyxserver.C: remove I/O callback too
6421
6422 2002-07-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6423
6424         * lyxfunc.C (getStatus): disable LFUN_LATEX_LOG when there is no
6425         log.
6426
6427 2002-07-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
6428
6429         * many files: strip,frontStrip -> trim,ltrim,rtrim
6430
6431 2002-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
6432
6433         * PrinterParams.h: remove extern containsOnly, and include
6434         support/lstrings.h instead.
6435
6436         * LaTeX.C (scanAuxFile): modify because of strip changes
6437         (deplog): ditto
6438         * buffer.C (makeLaTeXFile): ditto
6439         * bufferparams.C (writeFile): ditt
6440         * lyxfont.C (stateText): ditto
6441         * lyxserver.C (read_ready): ditto
6442         * vc-backend.C (scanMaster): ditto
6443
6444         * BufferView_pimpl.h: ws changes
6445
6446         * BufferView_pimpl.C: inlude boost/signals/connection.hpp
6447
6448 2002-07-26  André Pönitz <poenitz@gmx.net>
6449
6450         * kb_sequence.C: remove unnedred usings
6451
6452 2002-07-26  Juergen Vigna  <jug@sad.it>
6453
6454         * lyxfind.C (LyXReplace): we have to check better if the returned
6455         text is not of theLockingInset()->getLockingInset().
6456
6457 2002-07-25  Juergen Vigna  <jug@sad.it>
6458
6459         * lyxfind.C (LyXReplace): don't replace if we don't get the
6460         right LyXText.
6461
6462         * undo_funcs.C (createUndo): remove debugging code.
6463
6464 2002-07-25  Dekel Tsur  <dekelts@tau.ac.il>
6465
6466         * buffer.C (parseSingleLyXformat2Token): Use default placement
6467         when reading old floats.
6468
6469         * FloatList.C (FloatList): Change the default placement of figure
6470         and tables to "tbp".
6471
6472 2002-07-25  John Levon  <moz@compsoc.man.ac.uk>
6473
6474         * MenuBackend.C: using std::max
6475
6476 2002-07-25  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6477
6478         * MenuBackend.C (expandToc):
6479         (expandToc2): code moved from xforms menu frontend. It is now
6480         generic and TOCs are transparent to menu frontends.
6481
6482 2002-07-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6483
6484         * toc.C (getTocList): protect against buf=0
6485
6486         * MenuBackend.C (expand): move from Menu to MenuBackend; pass a
6487         Menu as first parameter. Now, this calls itself recursively to
6488         expand a whole tree (this will be useful for TOC handling)
6489         (expandFloatInsert): remove 'wide' version of floats
6490
6491         * MenuBackend.h (submenuname): returns the name of the submenu.
6492         (submenu): returns the submenu itself, provided it has been
6493         created by MenuBackend::expand
6494
6495 2002-07-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6496
6497         * paragraph_pimpl.C (simpleTeXSpecialChars): close fonts before
6498         insets which have noFontChange == true. (bug #172)
6499
6500 2002-07-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6501
6502         * BufferView_pimpl.C: add connection objects and use them...
6503         (Pimpl): here.
6504
6505 2002-07-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6506
6507         * MenuBackend.C (expandLastfiles):
6508         (expandDocuments):
6509         (expandFormats):
6510         (expandFloatListInsert):
6511         (expandFloatInsert):
6512         (expand): split expand in parts
6513
6514 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
6515
6516         * lyx_gui.C: use lyx_gui::exit()
6517
6518 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
6519
6520         * LyXAction.C: show the failing pseudo action
6521
6522 2002-07-22  Dekel Tsur  <dekelts@tau.ac.il>
6523
6524         * buffer.C (readFile): Run the lyxconvert script in order to read
6525         old files.
6526
6527 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
6528
6529         * LyXAction.C:
6530         * commandtags.h:
6531         * lyxfunc.C: remove LFUN_ADD_TO_TOOLBAR
6532
6533 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
6534
6535         * LyXAction.C:
6536         * commandtags.h:
6537         * lyxfunc.C: remove LFUN_TOOLBAR_PUSH
6538
6539 2002-07-22  Herbert Voss  <voss@lyx.org>
6540
6541         * lengthcommon.C:
6542         * lyxlength.[Ch]: add support for the vertical lengths
6543
6544 2002-07-21  John Levon  <moz@compsoc.man.ac.uk>
6545
6546         * toc.[Ch]: std:: fixes
6547
6548 2002-07-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6549
6550         * lyxrc.C: do not include lyx_main.h
6551
6552         * LaTeXFeatures.h: use a list<string> instead of a vector<string>
6553         for layouts
6554
6555         * lyxrc.C:
6556         * encoding.C:
6557         * bufferlist.C:
6558         * BufferView2.C: include "lyxlex.h"
6559
6560         * tabular.h:
6561         * bufferparams.h: do not #include "lyxlex.h"
6562
6563         * lyxtextclasslist.C (Add): remove method
6564         (classlist): renamed to classlist_
6565
6566         * paragraph_pimpl.C:
6567         * paragraph.C:
6568         * text2.C:
6569         * CutAndPaste.C:
6570         * bufferview_funcs.C:
6571         * bufferlist.C:
6572         * text.C:
6573         * LaTeXFeatures.C:
6574         * buffer.C:
6575         * toc.C (getTocList): use BufferParams::getLyXTextClass
6576
6577         * toc.C (getTocList): use InsetFloat::addToToc
6578
6579         * toc.[Ch]: new files, containing helper functions to handle table
6580         of contents
6581
6582         * lyxfunc.C (dispatch): no need to remove spaces around command
6583         given as a string
6584         (getStatus): handle LFUN_SEQUENCE by returning the status of the
6585         first command of the sequence; it is not very clever, but I do not
6586         have a better idea, actually
6587
6588         * LyXAction.C (LookupFunc): make sure to remove space at the
6589         beginning and end of the command
6590
6591 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6592
6593         * MenuBackend.C (getMenubar): new method: return the menubar of
6594         this menu set
6595         (read): treat differently reading of menu and menubar (in
6596         particular, the menubar has no name now)
6597         (Menu::menubar): remove
6598
6599         * lyxfunc.C (dispatch): add 'done' message to minibuffer when
6600         saving is finished
6601
6602 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
6603
6604         * BufferView_pimpl.C (workAreaButtonRelease): Fix opening of
6605         a bibitem inset in a RTL paragraph.
6606
6607 2002-07-20  John Levon  <moz@compsoc.man.ac.uk>
6608
6609         * paragraph_pimpl.C: constify
6610
6611         * BufferView_pimpl.C:
6612         * LaTeX.C:
6613         * lyxfunc.C: fix dispatch in a nicer way
6614
6615 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6616
6617         * lyxfunc.C (dispatch):
6618         * BufferView_pimpl.C:
6619         * BufferView_pimpl.h:
6620         * BufferView.C:
6621         * BufferView.h: rename Dispatch() to dispatch()
6622
6623         * LaTeXFeatures.C (useLayout): honor LyXLayout::depends_on()
6624
6625         * lyxlayout.C (Read): honor DependsOn tag
6626
6627         * lyxlayout.[Ch] (depends_on): new method
6628
6629         * version.C.in: update lyx_docversion
6630
6631         * LaTeXFeatures.C (getMacros): only define \LyX when needed
6632
6633         * paragraph.C (validate): remove from here...
6634         * paragraph_pimpl.C (validate): ... and move here
6635         (isTextAt): make it const
6636
6637         * buffer.C (getLists): ws cleanup
6638
6639 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
6640
6641         * language.C (read): Use iso8859-1 encoding in latex_lang
6642         (this prevents LyX from crashing when using iso10646-1 encoding).
6643
6644 2002-07-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6645
6646         * text2.C (toggleInset): if cursor is inside an inset, close the
6647         inset and leave cursor _after_ it
6648
6649 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
6650
6651         * lyxfunc.C: move minibuffer completion handling out of here
6652
6653 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
6654
6655         * BufferView_pimpl.C:
6656         * LaTeX.C: fix dispatch calls
6657
6658 2002-07-19  Dekel Tsur  <dekelts@tau.ac.il>
6659
6660         * text.C (drawChars): Fix Arabic text rendering.
6661
6662 2002-07-18  John Levon  <moz@compsoc.man.ac.uk>
6663
6664         * LyXAction.C:
6665         * commandtags.h:
6666         * lyxfunc.C: remove message-push/pop
6667
6668         * lyxserver.C:
6669         * lyxfunc.h:
6670         * lyxfunc.C: rationalise some code by removing verboseDispatch
6671           in favour of a bool argument to dispatch()
6672
6673 2002-07-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6674
6675         * lyx_main.C (init): make sure to read symlinks as absolute paths
6676
6677 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
6678
6679         * lyxfunc.h:
6680         * lyxfunc.C: no need for commandshortcut to be a member
6681
6682 2002-07-15  André Pönitz <poenitz@gmx.net>
6683
6684         * converter.C: add support for $$s (scripts from lib/scripts dir)
6685         * lyx_main.C: white space
6686
6687 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
6688
6689         * bufferlist.C:
6690         * lyxrc.h:
6691         * lyxrc.C: remove second exit confirmation
6692
6693 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
6694
6695         * BufferView.h:
6696         * BufferView.C:
6697         * BufferView2.C:
6698         * BufferView_pimpl.h:
6699         * BufferView_pimpl.C:
6700         * lyxfunc.C: s/setState/switchKeyMap/, s/showState/view_state_changed/
6701
6702 2002-07-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6703
6704         * MenuBackend.C (expand): add numeric shortcuts to document menu
6705
6706         * lyxrc.C (getDescription): remove RC_NEW_ASK_FILENAME
6707
6708 2002-07-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6709
6710         * lyxfont.C (setLyXFamily):
6711         (setLyXSeries):
6712         (setLyXShape):
6713         (setLyXSize):
6714         (setLyXMisc):
6715         (lyxRead):
6716         * debug.C (value):
6717         * buffer.C (asciiParagraph): use ascii_lowercase
6718
6719 2002-07-15  Mike Fabian  <mfabian@suse.de>
6720
6721         * lyxlex_pimpl.C (search_kw):
6722         * lyxlex.C (getLongString):
6723         * converter.h (operator<):
6724         * converter.C (operator<):
6725         * buffer.C (parseSingleLyXformat2Token):
6726         (asciiParagraph):
6727         * ToolbarDefaults.C (read):
6728         * MenuBackend.C (checkShortcuts):
6729         (read):
6730         * LColor.C (getFromGUIName):
6731         (getFromLyXName): use the compare_ascii_no_case instead of
6732         compare_no_case, because in turkish, 'i' is not the lowercase
6733         version of 'I', and thus turkish locale breaks parsing of tags.
6734
6735 2002-07-16  Angus Leeming  <leeming@lyx.org>
6736
6737         * BufferView_pimpl.C (buffer): Previews::generateBufferPreviews
6738         now takes a Buffer const & argument.
6739
6740 2002-07-15  John Levon  <moz@compsoc.man.ac.uk>
6741
6742         * BufferView.C (resize): check there's a buffer to resize
6743
6744 2002-07-14  John Levon  <moz@compsoc.man.ac.uk>
6745
6746         * lyxfunc.C: remove dead code
6747
6748         * lyxserver.h:
6749         * lyxserver.C: use lyx_guii::set_read_callback
6750
6751 2002-07-13  Dekel Tsur  <dekelts@tau.ac.il>
6752
6753         * lyxfunc.C (dispatch): Correct cursor behaviour when exiting
6754         an inset in a RTL paragraph.
6755
6756 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
6757
6758         * lyxfunc.C: repaint after a font size update
6759
6760 2002-07-15  André Pönitz <poenitz@gmx.net>
6761
6762         * lyxlength.C: inBP should be able to return negative values
6763
6764 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
6765
6766         * lyxfunc.C: use lyx_gui::update_fonts()
6767
6768 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
6769
6770         * lyxfunc.C: use lyx_gui::update_color()
6771
6772 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
6773
6774         * bufferlist.C:
6775         * lyxfunc.h:
6776         * lyxfunc.C:
6777         * lyxrc.h:
6778         * lyxrc.C: remove file->new asks for name option, and let
6779           buffer-new take an argument
6780
6781 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
6782
6783         * BufferView_pimpl.C: remove unneeded extra repaint()
6784
6785 2002-07-10  John Levon  <moz@compsoc.man.ac.uk>
6786
6787         * LyXAction.C: allow command-sequence with NoBuffer
6788
6789         * lyxfunc.C: don't insist on trailing ';' for command-sequence
6790
6791 2002-07-10  Angus Leeming  <leeming@lyx.org>
6792
6793         * lyxrc.[Ch]: preview_scale_factor should be a float not an int.
6794
6795 2002-07-09  Angus Leeming  <leeming@lyx.org>
6796
6797         * lyxrc.[Ch]: added preview_hashed_labels and preview_scale_factor.
6798
6799 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
6800
6801         * lengthcommon.h: whitespace
6802
6803         * lyxfunc.C: update scrollbar after goto paragraph
6804
6805         * lyxtext.h: factor out page break drawing, and fix it so
6806           page break/added space paints as selected nicely
6807
6808 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
6809
6810         * BufferView_pimpl.C: add FIXMEs, clean up a little
6811
6812 2002-07-09  André Pönitz <poenitz@gmx.net>
6813
6814         * lyxfont.[Ch]: support for wasy symbols
6815
6816 2002-07-08  André Pönitz <poenitz@gmx.net>
6817
6818         * BufferView_pimpl.C: apply John's patch for #93.
6819
6820 2002-07-05  Angus Leeming  <leeming@lyx.org>
6821
6822         * BufferView_pimpl.C (buffer): generate previews if desired.
6823
6824         * LColor.h: add "preview" to the color enum.
6825
6826         * LColor.C (LColor): add a corresponding entry to the items array.
6827
6828         * buffer.C (~Buffer): remove any previewed LaTeX snippets associated
6829         with this buffer.
6830
6831 2002-07-05  Angus Leeming  <leeming@lyx.org>
6832
6833         * buffer.[Ch] (makeLaTeXFile): create two methods where there was one.
6834         The body of the code is now in the method that is passed an ostream &
6835         rather than a file name.
6836         Pass an additional only_preamble parameter, useful for the forthcoming
6837         preview stuff.
6838
6839 2002-07-03  André Pönitz <poenitz@gmx.net>
6840
6841         * lyxfunc.C: simplify getStatus() a bit for math stuff
6842
6843 2002-07-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6844
6845         * BufferView_pimpl.C (workAreaResize): add an unconditional repaint.
6846
6847 2002-06-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6848
6849         * text.C (changeRegionCase): do not change case of all the
6850         document when region ends at paragraph end (bug #461)
6851
6852 2002-07-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6853
6854         * paragraph.C (startTeXParParams):
6855         (endTeXParParams): add \protect when necessary
6856
6857 2002-06-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6858
6859         * BufferView_pimpl.C (workAreaExpose): remove warning
6860
6861 2002-06-27  Angus Leeming  <leeming@lyx.org>
6862
6863         * Makefile.am: add lyxlayout_ptr_fwd.h.
6864
6865 2002-06-26  André Pönitz <poenitz@gmx.net>
6866
6867         * lyxrc.[Ch]: introduce \preview, revive half-dead \show_banner
6868
6869 2002-06-25  Angus Leeming  <leeming@lyx.org>
6870
6871         * lyxfunc.C (dispatch): Comment out the call to
6872         grfx::GCache::changeDisplay. The method no longer exists now that the
6873         pixmap generation part of the graphics loader has been moved into
6874         InsetGraphics.
6875
6876 2002-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6877
6878         * text2.C: layout as layout
6879
6880         * text.C: layout as layout
6881
6882         * tabular.C (OldFormatRead): layout as layout
6883
6884         * paragraph_pimpl.C (TeXDeeper): layout as layout
6885         (realizeFont): layout as layout
6886
6887         * paragraph.C (writeFile): layout as layout
6888         (validate): layout as layout
6889         (getFont): layout as layout
6890         (getLabelFont): layout as layout
6891         (getLayoutFont): layout as layout
6892         (breakParagraph): layout as layout
6893         (stripLeadingSpaces): layout as layout
6894         (getEndLabel): layout as layout
6895         (getMaxDepthAfter): layout as layout
6896         (applyLayout): layout as layout
6897         (TeXOnePar): layout as layout
6898         (simpleTeXOnePar): layout as layout
6899         (TeXEnvironment): layout as layout
6900         (layout): layout as layout
6901         (layout): layout as layout
6902
6903         * lyxtextclass.C (compare_name): new functor to work with
6904         shared_ptr, layout as layout
6905         (Read): layout as layout
6906         (hasLayout): layout as layout
6907         (operator): layout as layout
6908         (delete_layout): layout as layout
6909         (defaultLayout): layout as layout
6910
6911         * lyxlayout_ptr_fwd.h: new file
6912
6913         * lyxlayout.C (Read): layout as layout
6914
6915         * lyx_cb.C (MenuInsertLabel): layout as layout
6916
6917         * bufferlist.C (newFile): layout as layout
6918
6919         * buffer.C (readLyXformat2): layout as layout
6920         (parseSingleLyXformat2Token): layout as layout
6921         (insertStringAsLines): layout as layout
6922         (asciiParagraph): layout as layout
6923         (latexParagraphs): layout as layout
6924         (makeLinuxDocFile): layout as layout
6925         (simpleLinuxDocOnePar): layout as layout
6926         (makeDocBookFile): layout as layout
6927         (simpleDocBookOnePar): layout as layout
6928         (getLists): layout as layout
6929
6930         * LaTeXFeatures.C (getTClassPreamble): layout as layout
6931
6932         * CutAndPaste.C (cutSelection): layout as layout
6933         (pasteSelection): layout as layout
6934         (SwitchLayoutsBetweenClasses): layout as layout
6935
6936         * BufferView_pimpl.C (Dispatch): layout as layout
6937         (smartQuote): layout as layout
6938
6939         * BufferView2.C (unlockInset): layout as layout
6940
6941 2002-06-24  André Pönitz <poenitz@gmx.net>
6942
6943         * lyxfunc.C: fix #487
6944
6945 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
6946
6947         * lyxrc.h:
6948         * lyxrc.C:
6949         * lyxfunc.C: remove display_shortcuts, show_banner
6950
6951 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
6952
6953         * Buffer_pimpl.C: oops, update on resize
6954
6955 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
6956
6957         * buffer.C:
6958         * converter.C:
6959         * exporter.C:
6960         * lyxfunc.C:
6961         * BufferView.h:
6962         * BufferView.C: use repaint()
6963
6964         * BufferView_pimpl.h:
6965         * BufferView_pimpl.C: s/updateScreen()/repaint()/
6966           as it's a clearer description. Remove superfluous
6967           redraws.
6968
6969 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
6970
6971         * text.C: fix bug 488. Not ideal, but getting
6972           getWord() to work properly for the insets that
6973           matter is more difficult ...
6974
6975 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
6976
6977         * BufferView_pimpl.C:
6978         * LyXAction.C:
6979         * commandtags.h:
6980         * lyxfunc.C: remove the six million index lyxfuncs to just
6981           one, and DTRT (bug 458)
6982
6983 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
6984
6985         * BufferView.h:
6986         * BufferView.C:
6987         * BufferView_pimpl.h:
6988         * BufferView_pimpl.C: clean up resize() stuff,
6989           and unnecessary updateScreen()s
6990
6991 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
6992
6993         * BufferView.h:
6994         * BufferView.C:
6995         * BufferView_pimpl.h:
6996         * BufferView_pimpl.C:
6997         * lyxfind.h:
6998         * lyxfind.C:
6999         * minibuffer.C: remove focus management of workarea,
7000           not needed. Use screen's greyOut()
7001
7002 2002-06-17  Herbert Voss  <voss@lyx.org>
7003
7004         * converter.C: (convert) do not post a message, when converting
7005         fails, let the calling function decide what to do in this case
7006
7007 2002-06-18  John Levon  <moz@compsoc.man.ac.uk>
7008
7009         * lyxfunc.C: tidy up a little
7010
7011 2002-06-16    <alstrup@diku.dk>
7012
7013         * BufferView_pimpl.C (Pimpl): Use WorkAreaFactory.
7014         Got rid of FORMS_H_LOCATION include. Now we are
7015         GUII.
7016
7017 2002-06-15  LyX Development team  <lyx@rilke>
7018
7019         * buffer.[Ch] (sgmlOpenTag):
7020         (sgmlCloseTag): Added support for avoiding pernicious mixed
7021         content. Return number of lines written.
7022
7023         (makeLinuxDocFile):
7024         (makeDocBookFile): Fixed calls to sgml*Tag.
7025         Simple white space clean.
7026
7027         (simpleDocBookOnePar): Simple white space clean.
7028
7029         * tabular.[Ch] (docBook): Renamed to docbook and got another
7030         argument to related with the pernicious mixed content.
7031
7032         (docbookRow): Fixed calls for docbook inset method.
7033
7034 2002-06-15  Lyx Development team  <larsbj@birdstep.com>
7035
7036         * lyxfunc.[Ch]: Use LyXKeySym instead of KeySym,
7037         so it's X11 independent.
7038
7039         * kb*.[Ch]: ditto.
7040
7041         * BufferView_pimpl.[Ch] (workAreaKeyPress): ditto.
7042
7043 2002-06-15  Lyx Development team  <lyx@electronia>
7044
7045         * intl.h: Renamed getTrans to getTransManager.
7046
7047 2002-06-14  Angus Leeming  <leeming@lyx.org>
7048
7049         * Makefile.am: nuke forgotten stl_string_fwd.h.
7050
7051 2002-06-12  Angus Leeming  <leeming@lyx.org>
7052
7053         * stl_string_fwd.h: unused and non-compliant anyway. Nuked.
7054
7055 2002-06-13  Angus Leeming  <leeming@lyx.org>
7056
7057         * LaTeX.C:
7058         * vspace.C: wrap using std::sscanf inside a CXX_GLOBAL_CSTD block.
7059
7060 2002-06-12  Andrew Zabolotny  <zap@cobra.ru>
7061
7062         * kbmap.C (getiso): add support for cyrillic and greek
7063
7064 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
7065
7066         * BufferView.h:
7067         * BufferView.C:
7068         * BufferView_pimpl.h:
7069         * BufferView_pimpl.C: move bogus scrolling logic
7070           to xforms
7071
7072 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
7073
7074         * lyxfunc.C:
7075         * BufferView_pimpl.C: view->resize() change
7076
7077 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
7078
7079         * BufferView_pimpl.C: topCursorVisible
7080           prototype change
7081
7082 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
7083
7084         * Makefile.am:
7085         * lyx_gui.h:
7086         * lyx_gui.C: move to frontends/
7087
7088         * main.C:
7089         * lyx_main.h:
7090         * lyx_main.C: changes from above
7091
7092 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
7093
7094         * intl.C:
7095         * intl.h:
7096         * kbmap.C:
7097         * kbsequence.C:
7098         * lyx_cb.C:
7099         * lyx_main.C: minor tidy
7100
7101 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
7102
7103         * BufferView_pimpl.h:
7104         * BufferView_pimpl.C:
7105         * BufferView.h:
7106         * BufferView.C: make painter() const,
7107           remove dead code
7108
7109         * BufferView2.C: use screen() accessor
7110
7111         * lyx_main.h:
7112         * lyx_main.C: some minor cleanup
7113
7114 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
7115
7116         * BufferView_pimpl.h:
7117         * BufferView_pimpl.C: remove enter/leaveView,
7118           use workHeight()
7119
7120 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
7121
7122         * BufferView.h:
7123         * BufferView.C:
7124         * BufferView2.C:
7125         * BufferView_pimpl.h:
7126         * BufferView_pimpl.C: only construct screen once,
7127           rename
7128
7129         * lyxrc.C: remove pointless comment
7130
7131 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
7132
7133         * BufferView.h:
7134         * BufferView.C: remove active() and belowMouse()
7135
7136         * BufferView_pimpl.h:
7137         * BufferView_pimpl.C: use workarea() not workarea_,
7138           and make it use a scoped_ptr instead
7139
7140 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
7141
7142         * lyx_gui.C: add debug message on BadWindow
7143
7144 2002-06-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7145
7146         * sp_spell.C: fdopen is not part of the C++ standard.
7147
7148         * paragraph.C (InsetIterator): use >= instead of ==
7149
7150 2002-06-07  Angus Leeming  <leeming@lyx.org>
7151
7152         Fixes needed to compile with Compaq cxx 6.5.
7153         * BufferView_pimpl.C:
7154         * DepTable.C:
7155         * buffer.C:
7156         * converter.C:
7157         * encoding.C:
7158         * lyx_gui.C:
7159         * lyx_main.C:
7160         * lyxtextclasslist.C:
7161         * minibuffer.C:
7162         * sp_spell.C:
7163         * tabular_funcs.C:
7164         * vc-backend.C:
7165         all c-library variables have been moved into namespace std. Wrap
7166         using std::xyz declarations inside a #ifndef CXX_GLOBAL_CSTD block.
7167
7168         * lyxlength.C:
7169         * tabular-old.C:
7170         * tabular.C:
7171         Add a using std::abs declaration.
7172
7173         * kbmap.h (modifier_pair):
7174         * paragraph.h (InsetTable, InsetList):
7175         * lyxfont.h (FontBits):
7176         type definition made public.
7177
7178         * bufferlist.C (emergencyWriteAll): the compiler complains that
7179         there is more than one possible lyx::class_fun template to choose from.
7180         I re-named the void specialisation as lyx::void_class_fun.
7181
7182         * lyxfont.C (FontBits' operator==, operator!=): taken out of class.
7183
7184         * tabular_funcs.C: lstrings.h must come before tabular_funcs.h or
7185         the compiler is is unable to find tostr in write_attribute.
7186
7187 2002-06-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7188
7189         * buffer.C (sgmlError): hide #warning
7190
7191 2002-06-05  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7192
7193         * xtl/*: get rid of xtl, which is not in use anyway
7194
7195         * LyXAction.C (init):
7196         * commandtags.h: remove BUFFER_PRINT and BUFFER_PARAMS_GET, which
7197         were unimplemented xtl experimentation
7198
7199 2002-06-04  André Pönitz <poenitz@gmx.net>
7200
7201         * lyxfunc.C: disable array operation on simple formulae
7202
7203 2002-06-03  John Levon  <moz@compsoc.man.ac.uk>
7204
7205         * converter.C: constify a bit
7206
7207 2002-06-02  John Levon  <moz@compsoc.man.ac.uk>
7208
7209         * lyx_gui.C: check xforms version correctly
7210
7211 2002-04-30  Herbert Voss  <voss@lyx.org>
7212
7213         * buffer.C (parseSingleLyXformat2Token): fix bug with ignored
7214         "keep" option
7215
7216 2002-05-31  John Levon  <moz@compsoc.man.ac.uk>
7217
7218         * lyxvc.C: fix bug 416 (make sure buffer is saved before
7219           attempt to register it with a VCS)
7220
7221 2002-05-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7222
7223         * lyx_main.C (init): honor variables LYX_DIR_13x and
7224         LYX_USERDIR_13x
7225
7226 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
7227
7228         * buffer.h:
7229         * buffer.C:
7230         * lyx_main.C: fix a crash on bad command line,
7231           and give a useful exit status on error
7232
7233         * lyxfunc.C (doImport): allow -i lyx to work
7234
7235 2002-03-30  André Pönitz <poenitz@gmx.net>
7236
7237         * lyxfunc.C: mathed font changes
7238
7239 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
7240
7241         * LaTeX.C:
7242         * importer.h:
7243         * importer.C:
7244         * lyx_sty.h:
7245         * lyx_sty.C:
7246         * lyxlex.C:
7247         * lyxrow.h:
7248         * lyxtext.h:
7249         * paragraph.h:
7250         * paragraph.C:
7251         * texrow.h:
7252         * texrow.C:
7253         * text.C:
7254         * trans_mgr.h: srcdocs, and some minor cleanups
7255
7256 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7257
7258         * paragraph_pimpl.C (isTextAt): rewrite to be much faster (do not
7259         call getFont all the time)
7260
7261 2002-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7262
7263         * switch from SigC signals to boost::signals
7264
7265 2002-05-29  André Pönitz <poenitz@gmx.net>
7266
7267         * paragraph_pimpl.C (getChar): don't call size() too often...
7268
7269 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7270
7271         * paragraph_pimpl.C (insertChar): do not try to update tables when
7272         appending (pos == size())
7273
7274         * buffer.C (parseSingleLyXformat2Token): reorder a bit the tests
7275         in order to reduce drastically the number of comparisons needed to
7276         parse a large document
7277
7278 2002-05-29  André Pönitz <poenitz@gmx.net>
7279
7280         * text.C:
7281         * text2.C:
7282         * lyxtextclass.C:
7283         * sp_pspell.h:
7284         * textclasslist.[Ch]:
7285         * sp_ispell.h: whitespace change
7286
7287 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7288
7289         * lyxserver.C (callback): tentative fix of lyxserver. Does not use
7290         lyxaction directly now.
7291
7292 2002-05-27  John Levon  <moz@compsoc.man.ac.uk>
7293
7294         * trans.C:
7295         * lyxfont.C:
7296         * lyxvc.C: remove unused headers
7297
7298 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
7299
7300         * Makefile.am:
7301         * buffer.h:
7302         * undostack.h:
7303         * undostack.C:
7304         * undo_funcs.h:
7305         * undo_funcs.C: some cleanups. Use shared_ptr
7306           and a template for the undo stacks.
7307
7308 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
7309
7310         * BufferView_pimpl.h:
7311         * BufferView_pimpl.C:
7312         * kbmap.h:
7313         * kbmap.C:
7314         * kbsequence.h:
7315         * kbsequence.C:
7316         * lyxfunc.h:
7317         * lyxfunc.C:
7318         * text2.C: use key_state/mouse_state
7319
7320 2002-05-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7321
7322         * vc-backend.C (scanMaster): use boost regex and get rid of LRegex
7323         and LSubstring
7324
7325         * chset.C: change include order
7326         (loadFile): use boost regex and get rid of LRegex and LSubstring
7327
7328         * Makefile.am (BOOST_LIBS): new variable
7329         (lyx_LDADD): use it
7330
7331         * LaTeX.C: change include order.
7332         (scanAuxFile): use boost regex and get rid of LRegex and
7333         LSubstring
7334         (deplog): ditto
7335
7336 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
7337
7338         * ColorHandler.h:
7339         * ColorHandler.C:
7340         * FontInfo.h:
7341         * FontInfo.C: moved to frontends/xforms/
7342
7343         * FontLoader.h:
7344         * FontLoader.C: moved into frontends for GUIIzation
7345
7346         * Makefile.am:
7347         * lyx_gui.C:
7348         * lyxfont.C:
7349         * lyxfunc.C: changes from above
7350
7351 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
7352
7353         * LColor.C: remove spurious X include
7354
7355         * BufferView_pimpl.C:
7356         * Makefile.am:
7357         * font.h:
7358         * font.C:
7359         * text.C:
7360         * text2.C: move font metrics to frontends/
7361
7362 2002-05-24  Juergen Vigna  <jug@sad.it>
7363
7364         * undo_funcs.C (textHandleUndo): fix the cursor selection after
7365         setting the undo_cursor.
7366
7367         * ParagraphParameters.h: include local includes first.
7368
7369 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
7370
7371         * BufferView_pimpl.C:
7372         * BufferView_pimpl.h:
7373         * Makefile.am:
7374         * WorkArea.h:
7375         * WorkArea.C:
7376         * screen.C: move WorkArea into frontends/
7377
7378         * lyxscreen.h:
7379         * screen.C:
7380         * text.C:
7381         * BufferView.C:
7382         * BufferView2.C: move LyXScreen into frontends/
7383
7384         * lyxlookup.h:
7385         * lyxlookup.C:
7386         * lyx_gui.C: move lyxlookup into frontends/xforms/
7387
7388 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
7389
7390         * BufferView2.C:
7391         * BufferView_pimpl.C:
7392         * FontLoader.C:
7393         * LyXView.h:
7394         * LyXView.C:
7395         * Makefile.am:
7396         * WorkArea.C:
7397         * XFormsView.h:
7398         * XFormsView.C:
7399         * buffer.C:
7400         * bufferlist.C:
7401         * bufferview_funcs.C:
7402         * converter.C:
7403         * importer.C:
7404         * lyx_cb.C:
7405         * lyx_gui.C:
7406         * lyx_main.C:
7407         * lyx_find.C:
7408         * lyxfunc.C:
7409         * lyxvc.C:
7410         * minibuffer.C:
7411         * text.C:
7412         * text2.C:
7413         * trans.C:
7414         * vc-backend.C: move LyX/XFormsView into frontends/
7415
7416 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
7417
7418         * Makefile.am:
7419         * PainterBase.C:
7420         * PainterBase.h:
7421         * Painter.C:
7422         * Painter.h:
7423         * WorkArea.C:
7424         * WorkArea.h:
7425         * screen.C:
7426         * tabular.C:
7427         * text.C:
7428         * text2.C: move Painter to frontends/
7429
7430 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7431
7432         * buffer.C: comment out some some code that depend upon lyx_format
7433         < 220
7434
7435         * paragraph.h (NO_PEXTRA_REALLY): turn off all pextra
7436         * ParagraphParameters.h (NO_PEXTRA_REALLY): ditto
7437
7438         * buffer.h (NO_COMPABILITY): turn off compability
7439
7440         * ColorHandler.C: include scoped_array.hpp
7441
7442         * font.C: Use more specific smart_ptr header.
7443         * Painter.C: ditto
7444         * gettext.C: ditto
7445         * ShareContainer.h: ditto
7446         * lyx_main.h: ditto
7447         * kbmap.h: ditto
7448         * FontInfo.h: ditto
7449         * BufferView_pimpl.h: ditto
7450         * ColorHandler.h: ditto
7451
7452         * kbmap.C (defkey): change call to shared_ptr::reset
7453
7454 2002-05-21  Juergen Vigna  <jug@sad.it>
7455
7456         * buffer.C (insertErtContents): fix to insert ert asis if it is
7457         non empty. Skip it completely if it contains only whitespaces.
7458
7459 2002-05-15  John Levon  <moz@compsoc.man.ac.uk>
7460
7461         * BufferView_pimpl.C:
7462         * BufferView2.C: clear selection on paste (bug 393)
7463
7464 2002-05-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7465
7466         * DepTable.C: include ctime
7467
7468 2002-05-11  Dekel Tsur  <dekelts@tau.ac.il>
7469
7470         * buffer.C (latexParagraphs): Add new argument (moving_arg).
7471
7472 2002-05-14  Juergen Vigna  <jug@sad.it>
7473
7474         * text.C (breakParagraph): fixed function to honor the keepempty
7475         layout in the right maner and also to permit the right breaking
7476         algorithm on empty or non empyt keepempty paragraphs.
7477
7478         * paragraph.C (breakParagraph): we have to check also if the par
7479         is really empty (!size()) for isempty otherwise we do the wrong
7480         paragraph break.
7481
7482 2002-05-10  Juergen Vigna  <jug@sad.it>
7483
7484         * buffer.[Ch] : The following are only changes to the ert
7485         compatibility read reading old LaTeX layout and font stuff and
7486         convert it to ERTInsets.
7487
7488         * buffer.h: added isErtInset().
7489
7490         * buffer.C (struct ErtComp): add a fromlayout bool to check
7491         if we're inside a LaTeX layout.
7492         (isErtInset): new helper function.
7493         (insertErtContents): look for other ert insets before this one
7494         and insert the contents there, so that we don't have subsequent
7495         ERT insets with nothing between them. This way we create only one
7496         inset with multiple paragraphs. Also check if we don't insert only
7497         spaces ' ' as they are ignored anyway afterwards in the .tex file
7498         so if we have only spaces we will ignore this latex part in the
7499         new file.
7500         (parseSingleLyXformat2Token \\layout): better compatibility when
7501         reading layout-latex stuff.
7502         (parseSingleLyXformat2Token \\lang): put the insetERT in the right
7503         language tag.
7504         (parseSingleLyXformat2Token \\begin_inset): don't reset ert_comp
7505         stuff after reading the inset only get the information back from
7506         the stack.
7507
7508 2002-05-10  Dekel Tsur  <dekelts@tau.ac.il>
7509
7510         * buffer.C (makeLaTeXFile): Put language options after loading babel.
7511
7512         * LaTeXFeatures.C (getBabelOptions): New method.
7513
7514 2002-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7515
7516         * BufferView_pimpl.C (Dispatch): work around missing argument for
7517         'layout'
7518
7519 2002-05-08  Juergen Vigna  <jug@sad.it>
7520
7521         * text.C (leftMargin): handle paragraph leftindent.
7522
7523         * paragraph.C (writeFile): write the new \\leftindent tag.
7524         (validate): handle leftindent code.
7525         (TeXEnvironment): handle paragraphleftindent code again.
7526
7527         * lyx_sty.h: changed ParagraphIndent to ParagraphLeftIndent.
7528
7529         * buffer.C (parseSingleLyXformat2Token): added compatibility code
7530         for paragrap_extra indent code and new token \\leftindent.
7531         (latexParagraphs): handle the leftindent as environment.
7532
7533         * ParameterStruct.h: added leftindent support.
7534
7535         * ParagraphParameters.C (leftIndent): added support functions for
7536         the paragraph left indent.
7537
7538         * LaTeXFeatures.C: change paragraphindent to paragraphleftindent seems
7539         more appropriate.
7540
7541 2002-05-05  Dekel Tsur  <dekelts@tau.ac.il>
7542
7543         * paragraph.C (isRightToLeftPar): Return false for a paragraph
7544         inside insetERT.
7545
7546         * text.C (computeBidiTables): No bidi in insetERT.
7547
7548         * BufferView_pimpl.C (setState): Fix keymap handling inside insetERT
7549         in RTL documents.
7550
7551 2002-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7552
7553         * version.C.in: pre 5
7554
7555 2002-05-02  José Matos  <jamatos@fep.up.pt>
7556         * buffer.C (makeDocBookFile): white space changes, add newline to
7557         command styles.
7558         (simpleDocBookOnePar): protect <emphasis> inside a CDATA section.
7559
7560         * tabular.C (docBook): fix typo.
7561
7562 2002-05-03  Juergen Vigna  <jug@sad.it>
7563
7564         * screen.C (drawFromTo): recalculate the rowpointer if we had a
7565         change in LyXText as we can not be sure it was not freed.
7566         (drawOneRow): remove unused code.
7567
7568         * text.C (drawInset): redo the calculation of the need_break_row as
7569         it could have a row which was already freed.
7570         (draw): look at the return value of drawInset and return false if
7571         it also returned false.
7572         (paintRowText): look at the return value of draw and return false if
7573         it also returned false.
7574
7575         * lyxtext.h: added bool return type to drawInset() and draw() so that
7576         if we have a change in the row so that the rowbreak has to be redone
7577         we abort drawing as it will be called again.
7578
7579 2002-05-02  Juergen Vigna  <jug@sad.it>
7580
7581         * BufferView_pimpl.C (moveCursorUpdate): make repaint if we had
7582         a change in the maintext also if we're inside an inset.
7583         (Dispatch): set the cursor again after a break line and after the
7584         screen has been updated as it could be we're in a different row.
7585
7586         * text2.C (fixCursorAfterDelete): check to make sure we don't request
7587         to set the cursor behind the pargraph with > size().
7588         (setCursor): check also for the same paragraph when checking where
7589         to put the cursor if we have a NFR inset.
7590
7591         * buffer.C (parseSingleLyXformat2Token): move the compatibility
7592         parts of layout read further up as it still was in the wrong
7593         position.
7594
7595 2002-05-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7596
7597         * screen.C (drawFromTo): change sine fullRebreak always return
7598         true.
7599
7600         * buffer.C (parseSingleLyXformat2Token): reindent some
7601
7602         * BufferView_pimpl.C (update): change since fullRebreak always
7603         return true.
7604         (Dispatch): git rid of the last hardcoded "Standard"s.
7605
7606 2002-05-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7607
7608         * text2.[Ch] (fullRebreak): make it return void now that we always
7609         returned true.
7610
7611 2002-04-30  Juergen Vigna  <jug@sad.it>
7612
7613         * buffer.C (parseSingleLyXformat2Token): reset the font before the
7614         ert compatibility check for "latex" layout.
7615
7616 2002-04-29  Dekel Tsur  <dekelts@tau.ac.il>
7617
7618         * buffer.C (parseSingleLyXformat2Token): Fix reading of old format
7619         minipages: use col% instead of p%, and also use the current font.
7620         (makeLaTeXFile): Fix use babel condition.
7621         (parseSingleLyXformat2Token): Correct font when reading old floats.
7622
7623 2002-04-28  Dekel Tsur  <dekelts@tau.ac.il>
7624
7625         * BufferView_pimpl.C (Dispatch): Check that float type exists when
7626         inserting list of floats.
7627
7628 2002-04-25  Herbert Voss  <voss@lyx.org>
7629
7630         * MenuBackend.C (expand): don't add the graphics extensions to the
7631         export menu
7632
7633 2002-04-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7634
7635         * CutAndPaste.C (SwitchLayoutsBetweenClasses): when converting a
7636         non-existing layout, do not complain if it was the default layout
7637         of the original class (bug #342)
7638
7639 2002-04-24  Juergen Vigna  <jug@sad.it>
7640
7641         * BufferView_pimpl.C (workAreaButtonPress): fix handling of mouse-wheel
7642         (workAreaButtonRelease): don't do anything if it was a mouse-wheel
7643
7644 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
7645
7646         * buffer.C (getBibkeyList): If using \bibliography, return the
7647         option field with the reference itself. Enables us to provide natbib
7648         support when using \bibliography.
7649
7650 2002-04-23  Mike Ressler  <mike.ressler@alum.mit.edu>
7651
7652         * lyxtextclass.[Ch]: add layout keyword ProvidesNatbib.
7653
7654         * LaTeXFeatures.C: do not add \usepackage{natbib} to tex file if
7655         natbib is provided by the LaTeX class.
7656
7657 2002-04-23  Juergen Vigna  <jug@sad.it>
7658
7659         * BufferView_pimpl.[Ch]: remove use of wrong and unneeded insetSleep/
7660         Wakeup functions.
7661
7662         * BufferView.[Ch]: remove not needed insetSleep/Wakeup functions.
7663
7664 2002-04-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7665
7666         * lyxfunc.C (getStatus): LFUN_PROTECTED_SPACE is allowed in maths
7667
7668         * paragraph_pimpl.C (simpleTeXSpecialChars): remove bogus
7669         ensuremath around textordmasculine, textordfeminine and
7670         textdegree.
7671
7672 2002-04-19  Juergen Vigna  <jug@sad.it>
7673
7674         * BufferView_pimpl.C (resizeCurrentBuffer): resize the insets before
7675         reinitializing the buffer otherwise row-dimensions may be wrong.
7676         (update): reset also the selection cursors if they do exits otherwise
7677         their x/y positions may be wrong.
7678
7679         * text2.C (cursorDown): don't enter the inset if we came from a row
7680         above and are one row over the inset.
7681
7682         * lyxfunc.C (dispatch): update paragraph layout after LFUN_ESCAPE when
7683         really leaving an inset.
7684
7685 2002-04-18  Juergen Vigna  <jug@sad.it>
7686
7687         * BufferView_pimpl.C (Dispatch): fixed to change layout also if one
7688         of the selected paragraph does not have the selected layout also if
7689         the last one had!
7690
7691         * text2.C (setLayout): fixed bug which did not change last selected
7692         paragraph.
7693
7694         * tabular.C (OldFormatRead): check also for \\end_inset as Lars
7695         changed the read and substituted \\end_float with \\end_inset!
7696
7697         * BufferView_pimpl.C (cursorPrevious):
7698         (cursorNext): fixed to make it work with rows heigher than the work
7699         area without moving the cursor only the draw of the row.
7700         (workAreaMotionNotify): fix jumping over high rows.
7701
7702 2002-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7703
7704         * lyxtextclass.C (Read): fix bit adding, bug discovered by Mike
7705         Ressler.
7706
7707 2002-04-16  Juergen Vigna  <jug@sad.it>
7708
7709         * text2.C (setCursor): set also the irow().
7710         (setCursorFromCoordinates): fixed to set the (i) cursor values right!
7711         (cursorUp):
7712         (cursorDown): support for locking an inset if the x_fix value goes
7713         inside it. That way I can transverse insets too with cursor up/down.
7714
7715         * lyxrow.h: added irow helper function same as other (i) functions.
7716
7717         * BufferView_pimpl.C (cursorPrevious):
7718         (cursorNext): fixed for insets!
7719
7720 2002-04-15  Juergen Vigna  <jug@sad.it>
7721
7722         * BufferView_pimpl.C (insetDimensions): use ix/iy values for inset
7723         position otherwise it is wrong in some cases.
7724
7725         * lyxfunc.C (dispatch): fix FINISHED UP/DOWN to handle x position
7726         inside the inset before the call.
7727
7728 2002-04-16  Angus Leeming  <a.leeming@ic.ac.uk>
7729
7730         * buffer.[Ch] (getBibkeyList): make it const.
7731
7732 2002-04-12  Juergen Vigna  <jug@sad.it>
7733
7734         * BufferView_pimpl.C (workAreaMotionNotify): use new ix() cursor pos.
7735
7736         * text2.C (getCursorX): new helper function
7737         (setCursor): compute also ix_
7738         (setCursorFromCoordinates): set also ix.
7739
7740         * lyxcursor.h: added ix_ and helper functions.
7741
7742         * BufferView_pimpl.C (workAreaMotionNotify): forgot to use iy().
7743
7744         * buffer.C (insertStringAsLines): dont break paragraph if the this
7745         paragraph is inside an inset which does not permit it!
7746
7747         * text.C (breakParagraph): honor keepempty flag and break the paragraph
7748         also with no chars on this paragraph.
7749         (paintRowText): only paint stuff if it's inside the workarea!
7750
7751         * paragraph.C (breakParagraph): honor keepempty flag and break the
7752         paragraph always below not above.
7753
7754         * BufferView2.C (unlockInset): update the paragraph layout on inset
7755         unlock as we changed paragraph in such a case.
7756
7757         * lyxfind.C (LyXFind): clear the former selection if not found!
7758
7759         * text2.C (insertInset): freeze Undo after setUndo so that it is not
7760         again called in insertChar().
7761
7762         * text.C (leftMargin): return LYX_PAPER_MARGIN if this row contains
7763         an inset which uses the whole row!
7764         (rightMargin): ditto.
7765         (insertChar): force a rebreak if we inserted an inset!
7766
7767 2002-03-28  Herbert Voss  <voss@lyx.org>
7768
7769         * lyxlength.[Ch]: add inBP() to get the right PS-point
7770         units (BigPoint). With inPixels we have rounding errors
7771
7772 2002-04-11  Juergen Vigna  <jug@sad.it>
7773
7774         * text2.C (setCursorFromCoordinates): set iy to the right value.
7775         (setCursor): add check if row->previous exists!
7776
7777         * buffer.C (parseSingleLyXformat2Token): reset font after read of
7778         an old float_type as this was the case in the old code!
7779
7780         * paragraph.C (simpleTeXOnePar): fix closing of foreignlanguage tags.
7781
7782         * BufferView2.C (showLockedInsetCursor): use iy
7783         (fitLockedInsetCursor): ditto
7784
7785         * BufferView_pimpl.C (checkInset): use LyXCursor::iy for baseline of
7786         locked insets as there we have the right value now.
7787
7788         * lyxcursor.C: added iy_ variable and iy functions to set to the
7789         baseline of cursor-y of the locked inset.
7790
7791         * text2.C (setCursorFromCoordinates): set LyXCursor::iy.
7792         (setCursor): fixed for insets which need a full row.
7793
7794         * text.C (rowLastPrintable): don't ignore the last space when before
7795         an inset which needs a full row.
7796         (numberOfSeparators): use rowLastPrintable and <= last to honor a space
7797         as last character of a row when before a inset which needs a full row.
7798
7799 2002-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7800
7801         * version.C.in: update date
7802
7803         * text2.C (fullRebreak): try to always return true and see what
7804         happens...
7805
7806 2002-04-04  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7807
7808         * MenuBackend.C (expand): use Floating::listName
7809
7810         * FloatList.C (FloatList): add listName argument to the built-in
7811         floats
7812
7813         * Floating.[Ch]: add listName member, which is the 'List of XXX'
7814         text associated with the float.
7815
7816 2002-04-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7817
7818         * MenuBackend.C (expand): change label "Wide xxx" to "xxx (wide)".
7819
7820 2002-04-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7821
7822         * ShareContainer.h: add a couple of missing typenames.
7823
7824 2002-04-02  Angus Leeming  <a.leeming@ic.ac.uk>
7825
7826         * lyxrc.C (getDescription): use _() correctly rather than N_().
7827
7828 2002-03-28  Herbert Voss  <voss@lyx.org>
7829
7830         * lyxlength.C: compatibility stuff for < 1.1.6fix4 and
7831         "old" 1.2.0 files which use c%, l%, p% t% instead of text%, ...
7832
7833 2002-04-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7834
7835         * lyx_main.C (init): use environment variable LYX_DIR_12x instead
7836         of LYX_DIR_11x. Same for LYX_USERDIR_12x.
7837
7838 2002-03-29  Juergen Vigna  <jug@sad.it>
7839
7840         * lyxfunc.C (dispatch): add a missing fitCursor call.
7841
7842         * BufferView2.C (fitLockedInsetCursor): the inset needs to know if
7843         it was scrolled by a cursor move, so return the bool status.
7844
7845         * BufferView.C (fitCursor): return the bool flag also to the outside
7846         world as this is needed.
7847
7848         * screen.C (toggleToggle): don't subtract the offset if it's positive.
7849
7850         * BufferView_pimpl.C (workAreaButtonPress): just lock the inset don't
7851         call the edit() as it is not needed (and wrong) IMO.
7852         (workAreaButtonPress): set the screen_first variable before evt.
7853         unlock the inset as this may change screen_first and then we have
7854         a wrong y position for the click!
7855
7856 2002-03-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7857
7858         * MenuBackend.C (expand): another translation that I missed
7859
7860 2002-03-28  Juergen Vigna  <jug@sad.it>
7861
7862         * screen.C (toggleToggle): fix for insettexts y_offset on drawing.
7863
7864         * tabular.C (OldFormatRead): fix ert compatibility read inside cells.
7865
7866 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7867
7868         * lyxfunc.C (getStatus): return 'disabled' early for LFUN_NOACTION
7869
7870         * MenuBackend.C (expand): fix export/view/update when there is no
7871         document open.
7872
7873 2002-03-27  Herbert Voss  <voss@lyx.org>
7874
7875         * lengthcommon.C: change c%, l%, p% t% to col%, line%, page%
7876         and text%
7877
7878 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7879
7880         * bufferview_funcs.C (currentState): only show paragraph number
7881         for is DEVEL_VERSION is set.
7882
7883         * lyxfunc.C (dispatch): put warning in INFO channel
7884
7885         * MenuBackend.C (expand): translate the name of floats
7886
7887         * FloatList.C (FloatList): mark the float names for translation
7888
7889         * converter.C (convert): use LibScriptSearch
7890
7891 2002-03-26  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7892
7893         * MenuBackend.C (defaults): fix default menu (we might as well get
7894         rid of it...)
7895
7896 2002-03-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7897
7898         * lyxvc.C (registrer): register the file with CVS if it's in a CVS
7899         directory.
7900
7901 2002-03-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7902
7903         * lyxvc.C: reorder includes.
7904
7905 2002-03-25  John Levon  <moz@compsoc.man.ac.uk>
7906
7907         * BufferView_pimpl.C (updateScrollbar): update on buffer switch
7908           properly
7909
7910 2002-03-19  John Levon  <moz@compsoc.man.ac.uk>
7911
7912         * CutAndPaste.C: change layouts earlier on paste
7913           to avoid crashing when calling getFont()
7914
7915 2002-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
7916
7917         * PrinterParams.h: #include "lyxrc.h" and remove that bloody
7918         irritating #error.
7919
7920 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7921
7922         * WorkArea.C: remove 'Pending' debug message.
7923
7924         * most files: ws cleanup
7925
7926         * buffer.[Ch]: ws changes
7927
7928         * Makefile.am (LYX_CONV_LIBS): remove ld -r stuff.
7929
7930 2002-03-21  Juergen Vigna  <jug@sad.it>
7931
7932         * tabular.C (SetMultiColumn): collapse also the contents of the
7933         cells and set the last border right. Added a Buffer const * param.
7934
7935 2002-03-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7936
7937         * Makefile.am (LYX_CONV_LIBS): select libs depending on partial
7938         linking or not.
7939
7940 2002-03-19  Juergen Vigna  <jug@sad.it>
7941
7942         * text2.C (clearSelection): reset also xsel_cache.
7943
7944         * BufferView_pimpl.C (Dispatch): call WorkArea::haveSelection(false)
7945         where it needs to be called (John tells us to do so too :)
7946         (selectionLost): reset sel_cache.
7947
7948         * WorkArea.C (event_cb): leave ret to 0 (John tells us to do so :)
7949
7950 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7951
7952         * text2.C (setCursorIntern): put debuging code in INSETS channel
7953
7954 2002-03-19  André Pönitz <poenitz@gmx.net>
7955
7956         * lyxfunc.C: tiny whitespace change
7957
7958 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7959
7960         * ToolbarDefaults.C (init):
7961         * LyXAction.C (init):
7962         * commandtags.h:
7963         * BufferView_pimpl.C (Dispatch):
7964         * lyxfunc.C (dispatch): remove LFUN_DEPTH
7965
7966 2002-03-19  Allan Rae  <rae@lyx.org>
7967
7968         * exporter.C (Export): removeAutoInsets before doing anything else.
7969         While I've just introduced a dependency on BufferView this really is
7970         the best place to clean the buffer otherwise you need to cleanup in
7971         a dozen places before calling export or cleanup in a dozen functions
7972         that export calls.
7973
7974         * converter.C (runLaTeX):
7975         (scanLog): Better handling of removeAutoInsets and screen updates.
7976
7977         * lyxfunc.C (dispatch): small whitespace changes
7978
7979 2002-03-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7980
7981         * WorkArea.C (C_WorkAreaEvent): return a value.
7982         (event_cb): return 1 if we handled the event, 0 otherwise.
7983
7984         * lyx_gui.C (LyX_XErrHandler): don't abort on BadWindow
7985
7986 2002-03-18  Juergen Vigna  <jug@sad.it>
7987
7988         * tabular.C (LeftAlreadyDrawed): fixed for multicolumn borders.
7989         (GetAdditionalWidth): ditto.
7990         (RightLine): ditto.
7991         (LeftLine): ditto.
7992
7993         * BufferView2.C (copy): use getLyXText() so that we do it inside an
7994         inset if we're there actually (probably not used right now but this
7995         is the direction to go for unifying code).
7996         (paste): disable code to clear the selection.
7997
7998         * BufferView_pimpl.C (workAreaButtonPress): check also for a selection
7999         inside an InsetText and move the check further up as it is in the
8000         wrong place.
8001
8002         * text2.C (pasteSelection): set a selection over the pasted text.
8003
8004 2002-03-14  Kayvan A. Sylvan  <kayvan@sylvan.com>
8005
8006         * Makefile.am (lyx_DEPENDENCIES): Swap the order of libfrontend
8007         and libgraphics to build on Cygwin.
8008
8009 2002-03-15  Juergen Vigna  <jug@sad.it>
8010
8011         * CutAndPaste.C (SwitchLayoutsBetweenClasses): fix the wrong use of
8012         inserting an Inset into the paragraph. I know this is not the best
8013         fix but we already use current_view in CutAndPaste so we will remove
8014         all of it's using at the same time.
8015
8016         * buffer.C (sgmlError): deactivated function till it is rewritten in
8017         the right mode, now it can create problems.
8018
8019         * paragraph.C (isLineSeparator): check if getInset returns != 0,
8020         before accessing it.
8021
8022 2002-03-14  Juergen Vigna  <jug@sad.it>
8023
8024         * undo_funcs.C (textHandleUndo): do the right thing when updating
8025         the inset after the undo/redo.
8026
8027         * text2.C (setCursor): just some testcode for #44 not ready yet.
8028
8029         * undo_funcs.C (textHandleUndo): set the next() and previous()
8030         pointers of the paragraph to 0 before deleting otherwise we have
8031         problems with the Paragraph::[destructor].
8032
8033         * text.C (breakParagraph): IMO we should ALWAYS force a real undo
8034         on a paragraph insertion.
8035
8036 2002-03-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8037
8038         * buffer.C (asciiParagraph): use += operator for char append to
8039         string.
8040
8041         * paragraph.C (getFontSettings): compare >= not just >
8042         (highestFontInRange): ditto
8043         (setFont): ditto
8044
8045 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8046
8047         * paragraph.C: change several algorithm to be more appripriate for
8048         the problem domain. This is lookip in FontList and in the InsetList.
8049
8050 2002-03-13  André Pönitz <poenitz@gmx.net>
8051
8052         * commandtags.h:
8053         * LyXAction.C: remove unused LFUN_MATH_MACROARG
8054
8055 2002-03-06  John Levon  <moz@compsoc.man.ac.uk>
8056
8057         * commandtags.h:
8058         * LyXAction.C:
8059         * lyxfunc.C:
8060         * BufferView_pimpl.C: remove unused LFUN_CORE, LFUN_TEXT_INSET
8061
8062 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8063
8064         * Painter.C (display): anon helper function, adjust code for this
8065         change.
8066         (pixmap): remove function.
8067
8068         * Painter.h: remove private display variable.
8069
8070         * PainterBase.[Ch]: remove dummy[123] cruft, ws changes
8071
8072 2002-03-13  Angus Leeming  <a.leeming@ic.ac.uk>
8073
8074         * WorkArea.[Ch]: remove figinset_canvas cruft.
8075
8076 2002-03-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8077
8078         * lyxtextclass.C (operator): add one item cache optimization.
8079
8080         * bufferlist.h: doxy changes
8081
8082         * bufferlist.C: ws changes
8083
8084         * DepTable.[Ch] (ext_exist): place const in the right spot.
8085
8086         * BufferView_pimpl.C (resizeCurrentBuffer): further refine when to
8087         call resizeInsets.
8088         (workAreaExpose): call resizeInsets when the with BufferView changes.
8089         (Dispatch): adjust for protectedBlank removal
8090         (specialChar): call updateInset if the insert went ok.
8091
8092         * BufferView_pimpl.[Ch] (protectedBlank): remove func, use
8093         specialChar instead.
8094
8095         * BufferView2.C (ChangeInsets): remove warning add FIXME comment
8096
8097         * BufferView.h: doxy change
8098
8099         * Makefile.am (INCLUDES): remove @FRONTEND_INCLUDES@
8100
8101         * lyxtextclass.C (operator[]): remove non-const version
8102         (defaultLayout): remove non-const version
8103
8104 2002-03-12  Juergen Vigna  <jug@sad.it>
8105
8106         * BufferView_pimpl.C (resizeCurrentBuffer): only resize insets if we
8107         did resize the LyXText too.
8108
8109         * buffer.C (readLyXformat2): set layout information on newly allocated
8110         paragraphs.
8111
8112         * tabular.C (OldFormatRead): set layout information on the paragraph.
8113
8114 2002-03-12  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
8115
8116         * buffer.C (simpleDocBookOnePar): fix empty definition case for now.
8117
8118 2002-03-11  Juergen Vigna  <jug@sad.it>
8119
8120         * BufferView_pimpl.C (cursorPrevious): remove old cruft which is
8121         plainly wrong.
8122         (resizeCurrentBuffer): force also the insets to resize themselfes.
8123         (moveCursorUpdate): fixed up for InsetText.
8124
8125 2002-03-08  Angus Leeming  <a.leeming@ic.ac.uk>
8126
8127         * commandtags.h:
8128         * LyXAction.C: add LFUN_TOOLTIPS_TOGGLE, "toggle-tooltips"
8129         * lyxfunc.C (getStatus(LFUN_TOOLTIPS_TOGGLE)): set flag based on
8130         value of Dialogs::tooltipsEnabled().
8131         (dispatch(LFUN_TOOLTIPS_TOGGLE)): emit signal Dialogs::toggleTooltips.
8132
8133 2002-03-08  Juergen Vigna  <jug@sad.it>
8134
8135         * BufferView_pimpl.C (updateInset): update inset inside inset also
8136         if it isn't inside theLockingInset().
8137
8138 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8139
8140         * buffer.C (asciiParagraph): redo some of the word and line length
8141         handling.
8142         (getLists): look for Caption instead of caption.
8143
8144 2002-03-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8145
8146         * buffer.C (Buffer): initialize niceFile to true
8147         (makeLaTeXFile):
8148         (makeLinuxDocFile):
8149         (makeDocBookFile): make sure niceFile is true on exit
8150
8151 2002-03-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8152
8153         * buffer.C (makeLaTeXFile): escape ~ in \input@path
8154
8155 2002-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
8156
8157         * LyXSendto.C: remove.
8158         * LyXView.C (c-tor): clean-up Jürgen's #if 0 correctly.
8159         * lyx_gui.C: remove now-redundant comment.
8160         * ColorHandler.h: remove forward declaration of class WorkArea.
8161         * lyxfunc.C: remove #include "WorkArea.h".
8162
8163 2002-03-07  Juergen Vigna  <jug@sad.it>
8164
8165         * undo_funcs.C (textHandleUndo): fix problems when the paragraph
8166         got moved away with the DEPM and also set the inset_owner always
8167         right which before could have been omitted.
8168
8169 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8170
8171         * buffer.C (parseSingleLyXformat2Token): use default layout is the
8172         wanted layout is not found.
8173
8174 2002-03-07  Juergen Vigna  <jug@sad.it>
8175
8176         * CutAndPaste.C (cutSelection): another layout settings forgotten.
8177
8178 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8179
8180         * paragraph.C (breakParagraph): use default layout not layout of
8181         prev paragraph.
8182         (Paragraph): clear ParagraphParameters.
8183
8184 2002-03-06  Juergen Vigna  <jug@sad.it>
8185
8186         * buffer.C (parseSingleLyXformat2Token): changed "%" to "p%" as
8187         otherwise it would not be a valid lenght. Fixed a special case in
8188         the minipage compatibility read where we end the document with a
8189         minipage.
8190
8191         * text2.C (deleteEmptyParagraphMechanism): check if old_cursor.par()
8192         was set as it could be 0 for InsetTexts first entry.
8193
8194 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8195
8196         * paragraph.C (writeFile): if layout is empty write out
8197         defaultLayoutName().
8198
8199         * buffer.C (parseSingleLyXformat2Token): if we have a buggy .lyx
8200         file without named layout we set layout to defaultLayoutName().
8201
8202 2002-03-06  Juergen Vigna  <jug@sad.it>
8203
8204         * CutAndPaste.C (copySelection): set layout for new paragraph.
8205
8206         * text.C (prepareToPrint): leave ERT inset left aligned
8207         (leftMargin): don't indent paragraphs inside ERT insets
8208
8209 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8210
8211         * paragraph.C (breakParagraph): dont call clear do the work manually
8212
8213         * paragraph.[Ch] (clear): remove function
8214
8215 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8216
8217         * paragraph.C (Paragraph): dont call clear, the work has already
8218         been done.
8219
8220         * lyxtextclass.C (operator): assert if n is empty
8221
8222         * CutAndPaste.C (cutSelection): dont call Paragraph::clear, do the
8223         work manually instead.
8224
8225 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
8226
8227         * BufferView_pimpl.C: protect selectionLost against text == 0
8228
8229 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8230
8231         * text.C (breakParagraph): fix a setting layout to '0' problem.
8232
8233 2002-03-05  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
8234
8235         * buffer.C (makeLinuxDocFile, makeDocBookFile): take in account the
8236         final location of file, for the included files, and graphics.
8237
8238 2002-03-05  Juergen Vigna  <jug@sad.it>
8239
8240         * CutAndPaste.C (pasteSelection): fix the depth level on paste.
8241
8242 2002-03-04  Juergen Vigna  <jug@sad.it>
8243
8244         * lyx_cb.C (getContentsOfAsciiFile): new helper function.
8245
8246         * tabular.C (calculate_width_of_column_NMC): fixed to use also the
8247         last column of multicolumn cells.
8248         (SetWidthOfMulticolCell): recalculate NMC and real columns.
8249
8250 2002-03-04  Jose Abilio Oliveira Matos  <jamatos@novalis.fc.up.pt>
8251
8252         * exporter.C (Export): for linuxdoc and docbook the buffer is a nice
8253         file if it doesn't go to a temporary file.
8254
8255         * buffer.C (sgmlOpenTag):
8256         (sgmlCloseTag):  remove extra newline insertion.
8257
8258 2002-03-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8259
8260         * text.C (getRowNearY): comment out debug msg
8261
8262 2002-03-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8263
8264         * text2.C: first -> first_y
8265
8266         * text.C (getRowNearY): add some attemts at a possible
8267         optimization, not working.
8268
8269         * tabular.[Ch]: add BufferParams to several function so that newly
8270         created paragraph can be initialized to he default layotu for the
8271         buffers textclass.
8272
8273         * tabular-old.C (ReadOld): add buf->params to call of Init
8274
8275         * screen.C: rename text->first to text->first_y
8276
8277         * paragraph.C (breakParagraph): always set layout in the broken
8278         paragraph
8279
8280         * lyxtextclass.C (Read): remove lowercase
8281         (hasLayout): ditto
8282         (operator): ditto
8283         (delete_layout): ditto
8284
8285         * lyxtext.h: rename first -> first_y
8286
8287         * lyxlayout.C (Read): remove lowercase
8288         (name): ditto
8289         (setName): ditto
8290         (obsoleted_by): ditto
8291
8292         * bufferlist.C (newFile): set layout on first paragrpah of new buffers.
8293
8294         * buffer.C (insertErtContents): add params are to InsetERT
8295         (parseSingleLyXformat2Token): add code to check if a paragraphs
8296         layout really exist.
8297         (parseSingleLyXformat2Token): add params to several inset
8298         constructors
8299         (asciiParagraph): remove lowercase, do the layout comparisons with
8300         no_case
8301
8302         * BufferView_pimpl.C (cursorNext): first -> first_y
8303         (resizeCurrentBuffer): first -> first_y
8304         (updateScrollbar): first -> first_y
8305         (scrollCB): first -> first_y
8306         (workAreaMotionNotify): first -> first_y
8307         (workAreaButtonPress): first -> first_y
8308         (checkInsetHit): first -> first_y
8309         (cursorPrevious): first -> first_y
8310         (cursorNext): first -> first_y
8311         (Dispatch): add buffer_->params to severl inset contructors
8312
8313 2002-03-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8314
8315         * lyxlayout.C (Read): remove some debug info that I forgot.
8316
8317         * buffer.C (makeLaTeXFile): fix calling of LaTeXFeatures, and
8318         clean up the code slightly.
8319         (makeLinuxDocFile): ditto
8320         (makeDocBookFile): ditto
8321
8322         * text2.C: layout as string
8323
8324         * text.C: layout as string
8325
8326         * paragraph_pimpl.C: layout as string
8327
8328         * paragraph.[Ch]: layout as string
8329
8330         * lyxtextclasslist.[Ch]: layout as string
8331
8332         * lyxtextclass.[Ch]: layout as string
8333
8334         * lyxtext.h: layout as string
8335
8336         * lyxlayout.[Ch]: layout as string
8337
8338         * lyx_cb.C: layout as string
8339
8340         * bufferview_funcs.C: layout as string
8341
8342         * bufferparams.C: layout as string
8343
8344         * buffer.C: layout as string
8345
8346         * LyXView.[Ch]: layout as string
8347
8348         * LaTeXFeatures.[Ch]: layout as string
8349
8350         * CutAndPaste.C (SwitchLayoutsBetweenClasses): layout as string
8351
8352         * BufferView_pimpl.C: change current_layout to string, remove
8353         lyx::layout_type.
8354         (Dispatch):
8355         (smartQuote):
8356         (insertInset):
8357         (workAreaButtonRelease): layout as string
8358
8359         * BufferView2.C (unlockInset): adjust
8360
8361         * vspace.C (asLatexCommand): use an explict temp variable.
8362
8363 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
8364
8365         * Makefile.am: use FRONTEND_*
8366
8367 2002-03-01  Juergen Vigna  <jug@sad.it>
8368
8369         * tabular.C (SetWidthOfMulticolCell): changed to something better
8370         I hope but still work in progress.
8371         (recalculateMulticolumnsOfColumn): renamed function from
8372         recalculateMulticolCells as it is more appropriate now.
8373         (SetWidthOfCell): calculate multicols better.
8374
8375 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8376
8377         * minibuffer.C (MiniBuffer): reset timout to 6000, as it was before.
8378
8379         * lyxfunc.C (processKeySym): print sequence also if it is
8380         `deleted' (complete)
8381
8382         * kbsequence.C (print): print sequence even if it is deleted
8383         (complete would be a better word, actually).
8384
8385         * lyxfunc.C (dispatch): print complete options after a prefix key
8386
8387         * vspace.C (asLatexCommand): rewrite in a slightly different form.
8388
8389 2002-03-01  Martin Vermeer  <martin.vermeer@hut.fi>
8390
8391         * text2.C (setCharFont): eliminate setCharFont code duplication.
8392
8393 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8394
8395         * BufferView_pimpl.C (Dispatch): remove bogus handling of
8396         LFUN_TABULAR_FEATURE (bug #177)
8397
8398 2002-02-29 ;-)  Angus Leeming  <a.leeming@ic.ac.uk>
8399
8400         * Makefile.am: remove figure.h
8401
8402 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
8403
8404         * Bufferview_pimpl.C:
8405         * CutAndPasteC:
8406         * LaTeX.C:
8407         * LyXSendto.C:
8408         * buffer.C:
8409         * bufferlist.C:
8410         * converter.C:
8411         * language.C:
8412         * lyxfunc.C:
8413         * lyxvc.C:
8414         * paragraph.C:
8415         * text.C:
8416         * text2.C: remove #include "lyx_gui_misc.h".
8417
8418         * LaTeX.C: added #include <cstdio>
8419
8420 2002-02-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8421
8422         * paragraph.C (getMaxDepthAfter): new method. The maximal depth
8423         that the paragraph following this one can have.
8424
8425         * text2.C (incDepth): use Paragraph::getMaxDepthAfter
8426
8427         * vspace.C (asLatexCommand): fix bogus gcc warning
8428
8429         * Makefile.am (lyx_SOURCES): remove vms_defines.h
8430
8431 2002-02-27  Martin Vermeer  <martin.vermeer@hut.fi>
8432
8433         * text2.C (setLayout): get rid of redundant code
8434
8435 2002-02-26  Martin Vermeer  <martin.vermeer@hut.fi>
8436
8437         * text2.C (incDepth): make sure depth cannot be increased beyond
8438         reasonable values.
8439
8440 2002-02-20  Angus Leeming  <a.leeming@ic.ac.uk>
8441
8442         * lyxfunc.C (dispatch): act on LFUN_FORKS_SHOW and LFUN_FORKS_KILL.
8443         also call grfx::GCache::changeDisplay if the graphicsbg color changes.
8444
8445         * PainterBase.h (image):
8446         * Painter.[Ch] (image): now accepts a grfx::GImage const & rather than
8447         a LyXImage const *.
8448
8449 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
8450
8451         * BufferView.C:
8452         * BufferView.h:
8453         * BufferView_pimpl.C:
8454         * BufferView_pimpl.h:
8455         * LaTeXFeatures.C:
8456         * LyXAction.C:
8457         * LyXView.C:
8458         * Makefile.am:
8459         * UpdateList.h:
8460         * UpdateList.C:
8461         * buffer.C:
8462         * figure.h:
8463         * figureForm.C:
8464         * figureForm.h:
8465         * figure_form.C:
8466         * figure_form.h:
8467         * lyx_cb.C:
8468         * lyx_gui.C:
8469         * lyx_gui_misc.C:
8470         * lyxfunc.C:
8471         * sp_base.h:
8472         * sp_ispell.h:
8473         * sp_pspell.h:
8474         * sp_spell.C: remove fig inset, and the crap house of
8475           cards that follows it
8476
8477 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
8478
8479         * Makefile.am:
8480         * lyxserver.C:
8481         * os2_defines.h:
8482         * os2_errortable.h:
8483         * nt_defines.h: move .h into support/
8484
8485         * vms_defines.h: remove
8486
8487         * WorkArea.C: add space in debug output
8488
8489         * text2.C:
8490         * paragraph.C:
8491         * buffer.C: add WITH_WARNINGS
8492
8493         * vc-backend.h:
8494         * vc-backend.C:
8495         * bufferlist.C: s/retrive/retrieve/, add docs
8496
8497         * vspace.h:
8498         * vspace.C:
8499         * kbmap.h:
8500         * lyxlength.h:
8501         * lyxgluelength.h:
8502         * length_common.h:
8503         * chset.h:
8504         * chset.C: add docs
8505
8506         * lyxgui.C: add ID to X error handler
8507
8508         * lyxtestclass.c: fix typo
8509
8510 2002-02-26  Juergen Vigna  <jug@sad.it>
8511
8512         * tabular_funcs.C (write_attribute): changed so that some default
8513         attributes are not written at all.
8514         (getTokenValue): set default values before trying to read the
8515         value so we have the return value always set as default if we don't
8516         find the token we search for.
8517
8518         * tabular.C (Write): write bools as bools not as strings!
8519
8520 2002-02-22  Juergen Vigna  <jug@sad.it>
8521
8522         * BufferView_pimpl.C (workAreaButtonPress): call edit() before calling
8523         insetButtonPress for HIGHLY_EDITABLE_INSETS seems saner (fix #250).
8524
8525         * text.C (leftMargin): don't add an indent for paragraphs inside
8526         tabular cells (fix #208).
8527
8528 2002-02-21  José Matos  <jamatos@fep.up.pt>
8529
8530         * tabular.C (docBook): fixed support for long tables.
8531
8532 2002-02-20  Juergen Vigna  <jug@sad.it>
8533
8534         * text2.C (getFont): get the drawing font of the Inset if this
8535         paragraph is inside an inset (only important for InsetERT for now).
8536
8537         * buffer.C (insertErtContents): use new lanugage params in ERT
8538         constructor.
8539
8540         * CutAndPaste.C: commenting out seemingly uneeded code.
8541
8542 2002-02-19  Allan Rae  <rae@lyx.org>
8543
8544         * BufferView2.C (removeAutoInsets): fix remaining freed memory read.
8545         Iterators might be simple to use but they also get invalidated.
8546         (removeAutoInsets): renamed saved cursor tracking variables and added
8547         some comments to clarify what everything does.
8548
8549 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
8550
8551         * Chktex.C:
8552         * LaTeX.C:
8553         * LyXSendto.C:
8554         * converter.C:
8555         * lyx_cb.C:
8556         * vc-backend.C: Changes due to the renaming of support/syscall.[Ch] as
8557         support/systemcall.[Ch] and of class Systemcalls as class SystemCall.
8558
8559         * lyxfunc.C:
8560         * vc-backend.h: remove #include "support/syscall.h"
8561
8562         * LaTeX.C:
8563         * LyXSendto.C:
8564         * converter.C: rearrange #includes in Lars' approved fashion.
8565
8566         * LyXView.[Ch]: make autosave_timeout a pointer to Timeout. Can thus
8567         forward declare class Timeout in the header file.
8568
8569         * XFormsView.C: changes due to the above.
8570
8571         * minibuffer.[Ch]: make timer and stored_timer pointers to Timeout,
8572         similar to LyXView.
8573
8574         * commandtags.h: add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to the enum.
8575         * LyXAction.C (init): add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to items[]
8576
8577 2002-02-18  José Matos  <jamatos@fep.up.pt>
8578
8579         * buffer.C (simpleDocBookOnePar): if paragraph style is CDATA escapes
8580         insets contents.
8581
8582 2002-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
8583
8584         * a lot of small ws changes
8585         * add a lot of using std::XXX
8586         * use std construcs some places where approp.
8587         * use some exisint stuff from lyxfunctional where approp.
8588         * Make file changes to use partial linking (lets test this now...)
8589
8590 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
8591
8592         * Chktex.C:
8593         * buffer.C:
8594         remove #include "support/syscontr.h" as it's redundant. Always has been.
8595
8596         * Chktex.C:
8597         * LaTeX.C:
8598         * LyXSendto.C:
8599         * converter.C:
8600         * lyx_cb.C:
8601         * vc-backend.C:
8602         change Systemcalls::System to Systemcalls::Wait and
8603         change Systemcalls::SystemDontWait to Systemcalls::DontWait.
8604         No change of functionality, just reflects the stripped down Systemcalls
8605         class.
8606
8607 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
8608
8609         * debug.[Ch]: add a GRAPHICS type to the enum.
8610
8611 2002-02-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8612
8613         * text.C (nextBreakPoint): use Paragraph::isLineSeparator
8614
8615         * paragraph.C (isLineSeparator): call Inset::isLineSeparator if
8616         there is an inset.
8617
8618 2002-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8619
8620         * lyxfunc.C (getStatus): change the rules for LFUN_INSET_TOGGLE to
8621         match the changes below.
8622
8623         * text2.C (toggleInset): if there is not editable inset at cursor
8624         position, try to see if cursor is _inside_ a collapsable inset
8625         and close it.
8626
8627 2002-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8628
8629         * lyxfunc.C (getStatus): handle LFUN_SWITCHBUFFER so that the
8630         document menu has a nice checkbox
8631
8632 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8633
8634         * lyxlength.C (asLatexString): change PW to output as percent of
8635         \textwidth.
8636
8637         * lengthcommon.C: change '%' to 't%'
8638
8639         * lyxfunc.C (dispatch): a few comments from Martin
8640
8641 2002-02-06  John Levon  <moz@compsoc.man.ac.uk>
8642
8643         * WorkArea.h:
8644         * WorkArea.C:
8645         * BufferView_pimpl.h:
8646         * BufferView_pimpl.C: clear our selection when X tells us we've lost
8647           the X selection.
8648
8649 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8650
8651         * vspace.C (inPixels): fix compiler warning
8652
8653 2002-02-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8654
8655         * lyxfunc.C (getStatus): fix status message for disabled commands.
8656
8657 2002-02-01  John Levon  <moz@compsoc.man.ac.uk>
8658
8659         * BufferView_pimpl.C: fix crash on close buffer
8660         during selection (#227)
8661
8662 2002-01-27  Herbert Voss  <voss@lyx.org>
8663
8664         * buffer.C: link old Figure to new graphic inset
8665
8666 2002-01-26  Dekel Tsur  <dekelts@tau.ac.il>
8667
8668         * FontLoader.C (getFontinfo): Change the latex font names in order
8669         to match the names of type1inst.
8670
8671 2002-01-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8672
8673         * WorkArea.C (WorkArea): initialize the scrollbar bounds.
8674
8675         * DepTable.C (sumchange): do not evaluate end() on every iteratrion.
8676         (extchanged): ditto
8677         (ext_exist): ditto
8678         (remove_files_with_extension): ditto
8679         (remove_file): ditto
8680         (write): ditto
8681
8682         * BufferView_pimpl.C (updateScrollbar): do the right thing if the
8683         document is smaller than the work area height. Do not initialize
8684         static variables to 0.
8685
8686 2002-01-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8687
8688         * lyx_gui.C (init): give the toolbar tooltips a normal font.
8689
8690         * lyxfunc.C (getStatus): handle LFUN_LAYOUT like
8691         LFUN_LAYOUT_PARAGRAPHS.
8692
8693         * tabular.C (GetCellFromInset): new method. Finds an inset in a
8694         tabular. It is possible to provide a possible cell, which will
8695         typically be the actcell from the corresponding insettabular
8696
8697         * lyxfunc.C (getStatus): small cleanup; disable
8698         LFUN_LAYOUT_PARAGRAPHS in insets where forceDefaultParagraphs is
8699         true
8700
8701 2002-01-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8702
8703         * tabular.C (Validate): remove broken optimization (fixes bug #201)
8704
8705         * paragraph.C (startTeXParParams):
8706         (endTeXParParams): new methods. The LaTeX code to
8707         start/end paragraph formatting
8708         (simpleTeXOnePar): call startTeXParParams also when paragraph is
8709         empty (fixes bug #200)
8710
8711         * vspace.C (inPixels): adapt to the change below
8712         (inPixels): [later] more cleanups (remove unused variables)
8713
8714         * lyxlength.C (inPixels): change to use a width and a height as
8715         parameter.
8716
8717 2002-01-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8718
8719         * lyxlength.C (asLatexString): \pagewidth is not a LaTeX macro.
8720         Replaced with \paperwidth
8721
8722         * DepTable.C (insert): add std:: qualifier
8723
8724 2002-01-18  Allan Rae  <rae@lyx.org>
8725
8726         * text2.C (removeRow): add comment.  Should other refresh_?? vars be
8727         updated also?
8728
8729         * text.C (drawInset): Turned out I didn't know enough about how
8730         rebreaking worked.  This fixes most of the redraw problems.  I see
8731         an occasional cursor trail when a line is broken now and the cursor
8732         placement can seem out by a few pixels also after a rebreak.
8733
8734 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8735
8736         * buffer.C (parseSingleLyXformat2Token): update because minipage
8737         width is now a LyXLength
8738
8739         * lyxlength.C (inPixels): new method, extracted from VSpace::inPixels
8740
8741         * BufferView_pimpl.C (smartQuote): fix insertion of quote inset in
8742         math insets
8743
8744 2002-01-17  Juergen Vigna  <jug@sad.it>
8745
8746         * lyxfunc.C (dispatch): fixed PARAGRAPH_GOTO
8747
8748         * BufferView2.C (lockInset): call edit() so that theLockingInset()
8749         is set correctly and the inset is updated correctly.
8750
8751 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8752
8753         * CutAndPaste.C (pasteSelection): move the setInsetOwner call at
8754         the beginning of the loop.
8755
8756 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
8757
8758         * lyxrc.C: improve help for use_scalable_fonts
8759
8760 2002-01-17  Allan Rae  <rae@lyx.org>
8761
8762         * lyx_cb.C (ShowMessage): make sure we have a user and an owner.
8763
8764 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8765
8766         * CutAndPaste.C (pasteSelection): when pasting multiple paragraph,
8767         make sure to set their inset_owner to the right value (bug #171)
8768
8769 2001-12-12  Ben Stanley  <bds02@uow.edu.au>
8770
8771         * DepTable.h
8772         * DepTable.C: Implement mtime checking to reduce time spent doing
8773         CRCs.
8774
8775 2002-01-16  Juergen Vigna  <jug@sad.it>
8776
8777         * tabular.C (GetAdditionalHeight): one of error fixed.
8778
8779         * lyxrc.C (output): small fix in writing use_pspell.
8780
8781 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
8782
8783         * sp_base.h: #include LString.h
8784
8785 2002-01-16  Allan Rae  <rae@lyx.org>
8786
8787         * text2.C (removeRow): refresh_row needs a valid row.  Or does it?
8788         Can someone check this please?
8789
8790         * text.C (drawInset): It was possible that p.row would be removed by
8791         breakAgainOneRow upsetting a few other settings.  There may be another
8792         small tweak possible by setting need_break_row = 0 when p.row has been
8793         removed but I don't know enough about the logic here.
8794
8795 2002-01-15  Allan Rae  <rae@lyx.org>
8796
8797         * text.C (insertChar): removed conditional truism.
8798
8799         * BufferView2.C (removeAutoInsets): More tweaks.
8800         cur_par_prev could be a stray pointer.  Check for trailing empty line
8801         in case last line was cur_par and only had an error inset on it.
8802
8803 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8804
8805         * lyx_cb.C (MenuWrite): buffer->fileName is guaranteed to be
8806         absolute
8807
8808         * vc-backend.C (most methods):
8809         * exporter.C (Export):
8810         * converter.C (convert):
8811         (runLaTeX):
8812         * LyXSendto.C (SendtoApplyCB):
8813         * lyxfunc.C (dispatch):
8814         (menuNew):
8815         (open):
8816         (doImport):
8817         * lyx_cb.C (AutoSave):
8818         (InsertAsciiFile):
8819         * BufferView_pimpl.C (MenuInsertLyXFile):
8820         * buffer.C (runChktex): use Buffer::filePath().
8821
8822         * buffer.h: rename filename to filename_; rename filepath to
8823         filepath_ and make it private
8824         (filePath): new method
8825
8826         * buffer.C (writeFile): use fileName()
8827         (getLatexName):
8828
8829         * lyx_main.C (init): fix starting  of LyX when the binary is a
8830         link from so,ewhere else.
8831
8832         * minibuffer.C: include <cctype> for isprint
8833
8834 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
8835
8836         * buffer.C (parseSingleLyXformat2Token): changes associated with the
8837         change of InsetMinipage::width to InsetMinipage::pageWidth to avoid the
8838         name clash with InsetCollapsable's width function.
8839
8840 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8841
8842         * lastfiles.C: include <iterator>
8843
8844 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
8845
8846         * BufferView2.C (ChangeRefsIfUnique): use lyx::count rather than
8847         std::count.
8848
8849         * buffer.C (makeLaTeXFile): ditto.
8850         Also make loop operation more transparent.
8851
8852 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
8853
8854         * ToolbarDefaults.C: remove trailing comma closing namespace.
8855
8856         * WorkArea.h: remove WorkArea:: from declaration of event_cb.
8857
8858         * lyxfunc.[Ch]: clean-up declaration of verboseDispatch functions
8859         as in WorkArea.
8860
8861         * trans.C (Load): comment out unused variable, allowed.
8862
8863 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
8864
8865         * minibuffer.[Ch] (append_char): new method to recieve input from the
8866         drop-down completion browser. If a key was pressed, then recieve this
8867         char and append it to the existing string.
8868         (peek_event): modify the positioning data passed to the completion
8869         browser so that it can be placed above the minibuffer rather than below.
8870 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8871
8872         * LyXAction.C (init): alloe error-next for readonly documents.
8873
8874         * BufferView2.C (ChangeRefsIfUnique): use standard version of
8875         count.
8876
8877 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8878
8879         * bufferlist.C (readFile): create the buffer _after_ checking that
8880         the file exists.
8881
8882         * lyxfunc.C (verboseDispatch): fix handling of arguments
8883
8884         * lyxrc.C (setDefaults): do not initialize document_path to $HOME.
8885
8886         * lyxrc.C: use string::erase() instead of initializing to "".
8887
8888
8889 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
8890
8891         * BufferView_pimpl.h:
8892         * BufferView_pimpl.C:
8893         * WorkArea.h:
8894         * WorkArea.C:
8895         * text2.C: tell X when we have made a selection for copying
8896
8897 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8898
8899         * BufferView_pimpl.C (MenuInsertLyXFile):
8900         * lyxfunc.C (menuNew):
8901         (open):
8902         (doImport): add shortcuts to directory buttons
8903
8904         * BufferView_pimpl.C (workAreaButtonRelease): remove dead code (to
8905         open a float)
8906
8907         * lyxfunc.C (setStatusMessage):
8908         (getStatusMessage): new methods
8909         (getStatus):use setStatusMessage instead of setErrorMessage
8910         (dispatch): when function is disabled, set error message here
8911         [instead of in getStatus previously]
8912
8913         * BufferView_pimpl.C (workAreaButtonRelease): update
8914         toolbar/menubar here too.
8915
8916 2002-01-13  Allan Rae  <rae@lyx.org>
8917
8918         * BufferView2.C (removeAutoInsets): finished off earlier fix.
8919         Now seems indestructible.  Remaining task is to audit all other
8920         code affected by deleteEmptyParagraphMechanism.  One small quirk
8921         left is that an empty document with an error in the preamble can
8922         be made to report an error but no error box appears.  I don't know
8923         where it goes.
8924         (removeAutoInsets): Improved comments.
8925
8926 2002-01-13  John Levon  <moz@compsoc.man.ac.uk>
8927
8928         * Thesaurus.h:
8929         * Thesaurus.C: update for Aiksaurus 0.14
8930
8931 2002-01-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8932
8933         * text2.C (firstParagraph): removed member function, all uses
8934         replaces with ownerParagraph
8935         (redoParagraphs): here
8936         (updateInset): here
8937         (toggleAppendix): here
8938         * BufferView2.C (insertErrors): here
8939         (setCursorFromRow): here
8940
8941 2002-01-13  Allan Rae  <rae@lyx.org>
8942
8943         * BufferView2.C (removeAutoInsets): ensure we have a valid cursor if
8944         the old cursor is now invalid due to deleteEmptyParagraphMechanism.
8945         There is still a way to segfault this although you may have to do this
8946         multiple times: Have an InsetERT with an unknown command in it.
8947         View->DVI, move cursor between Error box and InsetERT and hit <Enter>,
8948         <down-arrow>, <Enter> again, View->DVI, BANG!
8949
8950         * text2.C (setCursor):
8951         (deleteEmptyParagraphMechanism):
8952         * lyxtext.h (setCursor):
8953         (deleteEmptyParagraphMechanism): return true if the paragraph was deleted.
8954         Making use of the return value may help fix other bugs.
8955
8956 2002-01-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8957
8958         * lyxfunc.C (dispatch): update toolbar/menubar after dispatching.
8959
8960         * LyXView.C (updateMenubar): call MenuBar::update here
8961         (updateToolbar): but not here
8962         (showState): do not update toolbar/menubar
8963
8964         * LyXAction.[Ch]: move isPseudoAction to the C file, since nobody
8965         should need to care about that.
8966
8967         * lyxfunc.C (verboseDispatch): simplify a bit
8968         (getStatus): have a version which takes a pseudoaction, and
8969         another which requires a (kb_action,string).
8970
8971         * LyXAction.C (retrieveActionArg): make it work also when action
8972         is not a pseudo-action.
8973         (getActionName): simplify a bit
8974         (helpText):
8975
8976 2002-01-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8977
8978         * lyxfunc.C (verboseDispatch): new families of methods with
8979         several ways to specify a command and a bool to indicate whether
8980         the command name and shortcut should be displayed in minibuffer
8981         (eventually, we could extend that to a finer bitmask like
8982         SHORTCUT|CMDNAME|CMDRESULT, or whatever).
8983         (dispatch): the pristine dispatch command which just, well,
8984         dispatchs! Note it still sets its result to minibuffer; I'm not
8985         sure we want that.
8986
8987         * lyxfunc.h: remove setHintMessage
8988
8989         * vc-backend.C: use LFUN_MENURELOAD instead of "buffer-reload"
8990
8991 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8992
8993         * BufferView_pimpl.C (specialChar): delete new inset if we have
8994         not been able to insert it.
8995
8996         * kbmap.C: revert to using int instead of kb_action, since all we
8997         are dealing with is pseudo-actions.
8998
8999         * LyXAction.C (searchActionArg): change to return int instead of
9000         kb_action, since the result is a pseudoaction.
9001
9002 2002-01-12  Dekel Tsur  <dekelts@tau.ac.il>
9003
9004         * buffer.C (insertErtContents): Fix (partially) the font bug.
9005
9006 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
9007
9008         * BufferView2.C (ChangeRefsIfUnique): use the HP version of std::count
9009         as the other one is broken on my machine!
9010
9011 2002-01-10  Martin Vermeer  <martin.vermeer@hut.fi>
9012
9013         * commandtags.h:
9014         * LyXAction.C: two new LFUNS, LFUN_FRAK and LFUN_ITAL.
9015
9016 2002-01-10  Angus Leeming  <a.leeming@ic.ac.uk>
9017
9018         * lyxrc.[Ch]: change names and descriptions of popup font variables to
9019         reflect their actual use. Provide compatibility code for older lyxrc
9020         files.
9021
9022         * lyx_gui.C (init): revoke change of 2002-01-07 of popup font style to
9023         FL_NORMAL_STYLE.
9024         change names of popup font variables in line with the changes to lyxrc.C
9025
9026 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9027
9028         * buffer.C (asciiParagraph): avoid outputing a word twice after
9029         an inset.
9030
9031         * lyxrc.C (getDescription): document that document_path and
9032         template_path can be empty.
9033
9034 2002-01-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9035
9036         * LaTeXFeatures.C (getMacros):
9037         * buffer.C (validate): rename feature "amsstyle" to "amsmath"
9038
9039         * buffer.C (makeLaTeXFile): remove test for "amsstyle" from here.
9040
9041         * LaTeXFeatures.C (useFloat): require "float" here instead of in
9042         getPackages.
9043         (getPackages): rename feature "floats" to "float". Use an array to
9044         iterate over 'simple' features (i.e. just a \usepackage). Add
9045         handling of "amsmath" (renamed from "amsstyle").
9046
9047 2001-12-29  Michael A. Koziarski  <michael@koziarski.org>
9048
9049         * LaTeXFeatures.C (require): Prevent duplicate entries in the
9050         features list.
9051
9052 2002-01-08  Angus Leeming  <a.leeming@ic.ac.uk>
9053
9054         * FuncStatus.C: small compile fix for DEC cxx. Doesn't like
9055         FuncStaus::FuncStatus & FuncStaus::some_method().
9056
9057 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
9058
9059         * FuncStatus.[Ch]: new files. This is a rewrite as a proper class
9060         of the func_satus stuff. Edited and massaged in various ways by
9061         JMarc.
9062
9063         * lyxfunc.C (getStatus): use FuncStatus
9064
9065 2002-01-08  Juergen Vigna  <jug@sad.it>
9066
9067         * text.C (nextBreakPoint): use function Inset::isChar().
9068
9069         * paragraph.C (TeXOnePar): use function
9070         Inset::forceDefaultParagraphs.
9071
9072         * buffer.C (latexParagraphs): use function
9073         Inset::forceDefaultParagraphs.
9074
9075 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
9076
9077         * lyx_gui.C (init): set the style of the menu popups to
9078         FL_BOLD_STYLE, thereby fixing bugzilla bug #32.
9079
9080 2002-01-07  Juergen Vigna  <jug@sad.it>
9081
9082         * text.C (setHeightOfRow): small fix
9083         (prepareToPrint): don't look at alignment if we don't have the place
9084         for doing it.
9085
9086 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
9087
9088         * box.C: New file. Move the Box methods and functions out of box.h,
9089         following Lars' suggestion.
9090
9091 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
9092
9093         * box.h: #include "support/LOstream.h", needed for inlined function.
9094
9095         * lyxtextclass.C:
9096         * lyxtextclasslist.C: added some using std declarations.
9097
9098 2002-01-06  John Levon  <moz@compsoc.man.ac.uk>
9099
9100         * box.h: make signed dimensions to allow insets wider than
9101           the screen (bug #162)
9102
9103         * BufferView_pimpl.C: add some insetHit debug
9104
9105 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
9106
9107         * vc-backend.C: add FIXME
9108
9109 2002-01-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9110
9111         * lyxfunc.C (getStatus): enable code for showing math font status
9112         in toolbar/menu.
9113
9114 2002-01-07  Juergen Vigna  <jug@sad.it>
9115
9116         * text.C (nextBreakPoint): removed debug output not needed anymore.
9117
9118 2002-01-06  Juergen Vigna  <jug@sad.it>
9119
9120         * text.C (nextBreakPoint): fixed up this function we had this bug
9121         since ever but now hopefully we break row better.
9122         (insertChar): we have to check if an inset is the next char as it
9123         could now happen that a large inset is causing a break.
9124
9125 2002-01-05  Juergen Vigna  <jug@sad.it>
9126
9127         * BufferView2.C (showLockedInsetCursor): don't draw the inset cursor
9128         if it doesn't like to be drawed.
9129
9130 2002-01-04  Juergen Vigna  <jug@sad.it>
9131
9132         * BufferView2.C (lockInset): forgot to set a cursor.
9133
9134         * lyxfunc.C (dispatch): add a finishUndo() in LFUN_ESCAPE.
9135
9136 2002-01-03  Martin Vermeer  <martin.vermeer@hut.fi>
9137
9138         * FormMathsPanel.C:
9139         * FormMathsPanel.h
9140         * MathsSymbols.C:
9141         * form_maths_panel.C:
9142         * form_maths_panel.h:
9143         * form_maths_panel.fd: implemented sub- and super- buttons in math
9144         panel.
9145
9146         * lyx_main.C: Revised hardwired bindings to allow original _ and ^
9147         (or ^ space) to be used as in TeX (req'd by André).
9148
9149         * lyxfunc.C: Allow ^ and _ again to be used both as
9150         super/subscript (mathed) and as themselves (in text).
9151
9152 2002-01-03  Allan Rae  <rae@lyx.org>
9153
9154         * LyXView.C (updateWindowTitle): Setup a short icon title of either
9155         "LyX" or the filename of the current buffer if it has one.  This is a
9156         modified form of John Levon's patch.
9157
9158         * XFormsView.C (setWindowTitle): also set icon title.
9159
9160         * LyXView.h (setWindowTitle): signature changed.
9161         * XFormsView.h (setWindowTitle): ditto.
9162
9163 2002-01-02  Juergen Vigna  <jug@sad.it>
9164
9165         * tabular.C (AppendColumn): hopefully fixed this memory access problem.
9166
9167 2001-12-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9168
9169         * screen.C (topCursorVisible): introduce a temp var for
9170         text->cursor.row(), handle the case where this row is null. (kindo
9171         hachish)
9172
9173         * text2.C (setCursor): add a couple of asserts.
9174
9175         * paragraph.h (inset_iterator): add -> operator
9176
9177         * paragraph.[Ch] (autoDeleteInsets): remove member function
9178
9179         * BufferView2.C (removeAutoInsets): rewrite to handle the old
9180         cursor pos correctly and handle inset deletion by itself.
9181         (insertErrors): move iterator declaration out of for expression
9182
9183         * lyxtextclass.C: add <algorithm>
9184
9185         * Makefile.am: added the new files to sources, removed layout.C
9186
9187         * layout.C: removed file
9188
9189         * layout.h: remove LYX_DUMMY_LAYOUT
9190
9191         * lyxtextclasslist.C (NumberOfLayout): do not special case dummy
9192         layout.
9193
9194         * lyxlayout.[Ch]:
9195         * lyxtextclass.[Ch]:
9196         * lyxtextclasslist.[Ch]: new files
9197
9198         * include order changes to a lot of files, also changes because of
9199         the six new files.
9200
9201 2001-12-27  Juergen Vigna  <jug@sad.it>
9202
9203         * buffer.C (asciiParagraph): more fixes.
9204
9205         * tabular.C (ascii): make ascii export support export of only the
9206         data separated by a column-delimiter.
9207         (ascii): better support for ascii export.
9208
9209         * buffer.C (asciiParagraph): rewrote to hopefully work as expected!
9210
9211 2001-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9212
9213         * tabular_funcs.C: use a "using std::getline" instead of the
9214         previous fix from Angus (necessary for cxx + lyxstring)
9215
9216 2001-12-24  Juergen Vigna  <jug@sad.it>
9217
9218         * BufferView_pimpl.C (tripleClick): fixed for InsetText.
9219
9220         * buffer.C (parseSingleLyXformat2Token): fixed 2 compatibility read
9221         problems. First check a minipage also if we have some ert-contents
9222         (not only on par->size(), second set the right depth of the paragraph
9223         on the relink to the root-paragraph-list!
9224
9225         * undo_funcs.C (textHandleUndo): fixed a stupid earlier wrong fix
9226         which then did not anymore update the main paragraphs on undo/redo!
9227
9228 2001-12-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9229
9230         * lyxfunc.C (getStatus): use func_status::toggle to simplify the
9231         code. Support all font-changing funcs (even those which are not in
9232         menu currently). Support for reporting font settings in
9233         mathed (disabled until Andre provides a function on mathed's side).
9234
9235         * func_status.h (toggle): small helper function to set toggle
9236         state on a flag.
9237
9238 2001-12-21  Angus Leeming  <a.leeming@ic.ac.uk>
9239
9240         * tabular_funcs.C: getline -> std::getline
9241
9242 2001-12-21  Juergen Vigna  <jug@sad.it>
9243
9244         * undo_funcs.C (textHandleUndo): fixed a case where tmppar3 is
9245         accessed and could be 0 (I couldn't generate this but it seems
9246         Michael could!).
9247
9248 2001-12-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9249
9250         * tabular_funcs.C: add LIstream.h, move write_attribute to..
9251         * tabular_funcs.h: here and include iosfwd
9252
9253 2001-12-20  Juergen Vigna  <jug@sad.it>
9254
9255         * undo_funcs.C (textHandleUndo): fixed crash when undo_cursor not
9256         inside inset but undo_par was.
9257
9258 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9259
9260         * Thesaurus.C: always include <config.h> in sources.
9261
9262         * Painter.h:
9263         * lyxlookup.h:
9264         * box.h: do not include <config.h> in header files
9265
9266         * text.C (paintLastRow): remove unused variable
9267
9268         * text.C (transformChar):
9269         (insertChar):
9270         * tabular-old.C (getTokenValue): use IsDigit instead of isdigit.
9271
9272         * Painter.C (text):
9273         * font.C (width): rewrite to use uppercase() instead of
9274         islower/toupper.
9275
9276         * lyxfind.C (IsStringInText): use uppercase instead of toupper.
9277
9278 2001-12-12  John Levon  <moz@compsoc.man.ac.uk>
9279
9280         * lyxfind.C: clean up of find failure position change
9281
9282 2001-12-20  Juergen Vigna  <jug@sad.it>
9283
9284         * Makefile.am (lyx_SOURCES): added tabular_funcs.[hC].
9285
9286         * tabular.C (isValidRow): added to check if we're in a LT-h/f row.
9287         (TeXRow): added to LaTeX a single tabular row.
9288         (TeXLongtableHeaderFooter): added to output LT-h/f data.
9289         (Latex): simplified and finally good LT-h/f support.
9290         (various_functions): just small adaptions for LT-h/f support.
9291
9292         * tabular_funcs.[hC]: added and moved here all not classfunctions
9293         of LyXTabular.
9294
9295 2001-12-19  Juergen Vigna  <jug@sad.it>
9296
9297         * tabular.[Ch]: better support for longtabular options (not finished
9298         yet!)
9299
9300 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9301
9302         * text.C (paintLastRow): use the label font instead of the font of
9303         the last character to compute the size of *_BOX. This makes more
9304         sense and avoids a crash with empty paragraphs.
9305         Use Painter::rectangle to draw EMPTY_BOX.
9306
9307 2001-12-19  Juergen Vigna  <jug@sad.it>
9308
9309         * undo_funcs.C (textHandleUndo): fixed setting of inset_owner of
9310         the paragraphs if the replaced paragraph is not the first one!
9311         Tried to delete not used paragraphs but does not work yet so for
9312         now it's inside #ifdef's and by default off!
9313
9314 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9315
9316         * MenuBackend.C: include "lyx_main.h" instead of declaring
9317         lastfiles (actually was declared as LastFiles* instead of a
9318         scoped_ptr).
9319
9320 2001-12-17  Juergen Vigna  <jug@sad.it>
9321
9322         * tabular.C (AppendColumn): applied John's fix
9323
9324 2001-12-15  John Levon  <moz@compsoc.man.ac.uk>
9325
9326         * BufferView.h:
9327         * BufferView.C:
9328         * BufferView_pimpl.h:
9329         * BufferView_pimpl.C: cleanup and fix of checkInsetHit().
9330
9331         * Makefile.am:
9332         * box.h: new start of class for above
9333
9334         * lyxfunc.C: ignore space-only minibuffer dispatches.
9335           Show the command name when it doesn't exist
9336
9337         * minibuffer.C: don't add empty lines to the history
9338
9339         * minibuffer.C: add a space on dropdown completion
9340
9341 2001-12-14  John Levon  <moz@compsoc.man.ac.uk>
9342
9343         * text.C: fix line above/below drawing in insets
9344
9345 2001-12-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9346
9347         * lyxlength.C (LyXLength): Initialize private variables.
9348
9349 2001-12-15  Dekel Tsur  <dekelts@tau.ac.il>
9350
9351         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Use buffer language
9352         when inserting error insets.
9353
9354 2001-12-13  Juergen Vigna  <jug@sad.it>
9355
9356         * undo_funcs.C (textRedo/Undo): fixed as the first paragraph was
9357         actually sometimes the before-paragraph.
9358         (setUndo): don't clear the redostack if we're not actually undoing!
9359
9360 2001-12-06  Juergen Vigna  <jug@sad.it>
9361
9362         * undo_funcs.C (textHandleUndo): well after John's hint I got here
9363         and fixed redoing of main paragraph, so we can use it now ;)
9364
9365         * text2.C (redoParagraphs): fixed a crash when having only 1 row!
9366
9367 2001-12-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9368
9369         * undo_funcs.C (textHandleUndo): undo undo leak fix below, as per
9370         Juergen's request
9371
9372 2001-12-13  André Pönitz <poenitz@gmx.net>
9373
9374         * undostack.[Ch]:
9375         * undo_func.C: minor cleanup
9376
9377 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9378
9379         * FontLoader.C (getFontinfo): only use symbol fonts with encoding
9380         -adobe-fontspecific. At least Mandrake and Redhat have a symbol
9381         font in urw-fonts package which is marked as -urw-fontspecific and
9382         does not work (incidentally, changing the encoding in the
9383         fonts.dir of this package to -adobe-fontspecific fixes the
9384         problem).
9385
9386         * undo_funcs.C (textHandleUndo): fix leak in undo, but now there
9387         is a crash when undoing first paragraph (Juergen, please take a
9388         look). THis does not mean the undo fix is wrong, just that it
9389         uncovers problems.
9390
9391         * text2.C (ownerParagraph): let the (int,Paragraph*) version call
9392         the (Paragraph*) version when needed instead of duplicating the
9393         code.
9394
9395         * text.C (workWidth): use Inset::parOwner to find out where the
9396         inset has been inserted. This is a huge performance gain for large
9397         documents with lots of insets. If Inset::parOwner is not set, fall
9398         back on the brute force method
9399
9400         * paragraph_pimpl.C (insertInset):
9401         * paragraph.C (Paragraph):
9402         (cutIntoMinibuffer): set parOwner of insets when
9403         inserting/removing them
9404
9405         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
9406
9407 2001-12-12  Martin Vermeer  <martin.vermeer@hut.fi>
9408
9409         * commandtags.h:
9410         * LyXAction.C:
9411         * lyx_main.C:
9412         * lyxfunc.C:
9413         * mathed/formulabase.C:
9414         * mathed/math_cursor.[Ch]:
9415         make sub/superscript into functions LFUN_SUB/SUPERSCRIPT.
9416
9417
9418 2001-12-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9419
9420         * lyxlength.[Ch] (operator!=): new function
9421
9422 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9423
9424         * text.C (workWidth): use Inset::parOwner to find out where the
9425         inset has been inserted. This is a huge performance gain for large
9426         documents with lots of insets. If Inset::parOwner is not set, fall
9427         back on the brute force method
9428
9429         * paragraph_pimpl.C (insertInset):
9430         * paragraph.C (Paragraph):
9431         (cutIntoMinibuffer): set parOwner of insets when
9432         inserting/removing them
9433
9434         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
9435
9436 2001-12-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9437
9438         * tabular-old.C (getTokenValue):
9439         * tabular.C (getTokenValue):
9440         (write_attribute): new versions for LyXLength
9441         (everywhere): adjust the use of widths
9442
9443         * tabular.h: change the type of widths from string to LyXLength
9444
9445 2001-12-11  Ben Stanley <bds02@uow.edu.au>
9446
9447         * paragraph.C: fixed missing line number count when exporting
9448         Environments to LaTeX file
9449
9450         * buffer.C: added informational message for checking line numbers.
9451
9452 2001-12-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9453
9454         * text2.C (deleteEmptyParagraphMechanism): if there is only one
9455         paragraph, do the 'double space' part, but not the 'empty
9456         paragraph' one.
9457
9458         * text.C (workWidth): small optimization
9459         (getLengthMarkerHeight): use minimal size for negative lengths.
9460
9461 2001-12-11  Dekel Tsur  <dekelts@tau.ac.il>
9462
9463         * lyxfont.C (GUIFamilyNames): Fix GUIFamilyNames array
9464
9465         * FontLoader.C (getFontinfo): Use "*-eufrak-medium"
9466
9467 2001-12-11  André Pönitz <poenitz@gmx.net>
9468
9469         * FontLoader.C:
9470         * lyxfont.[Ch]: support for fraktur font used by \mathfrak
9471
9472 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
9473
9474         * text2.C: keep selection on a setFont()
9475
9476 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
9477
9478         * lyx_cb.C: another bv->text misuse, from insert label
9479
9480 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
9481
9482         * kbsequence.h:
9483         * kbsequence.C: re-instate nmodifier mask
9484
9485 2001-12-12  Angus Leeming  <a.leeming@ic.ac.uk>
9486
9487         * lyx_main.h: make lyxGUI private.
9488
9489 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
9490
9491         * lyxfind.C: place the cursor correctly on failed search
9492
9493 2001-12-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9494
9495         * text.C (getLengthMarkerHeight): for small heights, the arrows
9496         are not always on top/bottom of the text
9497         (drawLengthMarker): smaller arrows; take the left margin in
9498         account; draw also vfills.
9499         (paintFirstRow):
9500         (paintLastRow): remove special code for vfill and standard spaces,
9501         since everything is handled in drawLengthMarker now.
9502
9503 2001-12-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9504
9505         * buffer.C (insertErtContents): try to handle font and language
9506         interaction a bit better.g
9507
9508         * ColorHandler.C (updateColor): change the hash to cover the whole
9509         LColor enum, ws cleanup
9510         (getGCLinepars): ditto
9511         (getGCLinepars): only lookup in the linecache once.
9512
9513 2001-12-07  Dekel Tsur  <dekelts@tau.ac.il>
9514
9515         * iterators.C (operator++): Make the iterator more robust
9516
9517         * BufferView2.C (removeAutoInsets): Use paragraph iterators
9518         (John's patch)
9519         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Ditto
9520
9521 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9522
9523         * lyxtext.h:
9524         * text.C: better added space drawing
9525
9526 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9527
9528         * LyXView.C:
9529         * BufferView2.C: fix layout combo update on inset unlock
9530
9531 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9532
9533         * Makefile.am: don't compile unused files
9534
9535 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9536
9537         * lyxfunc.C:
9538         * commandtags.h:
9539         * LyXAction.C: remove old LFUN_LAYOUTNO
9540
9541 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9542
9543         * paragraph_pimpl.h:
9544         * paragraph_pimpl.C: isTextAt() doesn't need font param
9545
9546 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9547
9548         * lyxlex.h:
9549         * lyxlex.C: little cleanup
9550
9551 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
9552
9553         * BufferView_pimpl.C: fix insertAscii for insets
9554
9555 2001-12-05  Juergen Vigna  <jug@sad.it>
9556
9557         * CutAndPaste.C (pasteSelection): remove not allowed insets/chars and
9558         set the right font on the "multi" paragraph paste!
9559
9560 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9561
9562         * trans_decl.h:
9563         * trans_mgr.[Ch]:
9564         * trans.[Ch]:
9565         * lyxgluelength.C:
9566         * lyxlength.C: remove out-commented code.
9567
9568         * BufferView_pimpl:
9569         * CutAndPaste.C:
9570         * DepTable.C:
9571         * buffer.C:
9572         * chset.C:
9573         * lastfiles.C:
9574         * lyxlex.C:
9575         * lyxlex_pimpl.C:
9576         * lyxserver.C:
9577         * screen.C:
9578         * tabular-old.C:
9579         * tabular.C:
9580         * text.C:
9581         * trans_mgr.C:
9582         * vc-backend.C: change "while(" to "while ("
9583
9584         * lyxlength.[Ch]: add zero function to check if length is zero or
9585         not
9586         * lyxgluelength.C: use it
9587
9588 2001-12-05  Allan Rae  <rae@lyx.org>
9589
9590         * lyxlength.C: Attempted a fix for the abs(int) header selection.
9591         Works for 2.95.3, from what I understand of Garst's reports this should
9592         work for other g++ versions.  We're screwed if the abs(int) definition
9593         changed between bugfix releases of gcc.
9594
9595 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
9596
9597         * text.C: fix chapter label offset !
9598
9599 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
9600
9601         * lyxtext.h:
9602         * text.C: fix hfill at end of line, clean up
9603
9604 2001-12-04  Juergen Vigna  <jug@sad.it>
9605
9606         * undo_funcs.C (textHandleUndo): added a call to inset->update() so
9607         that we force an update of the inset and it's owners if neccessary.
9608
9609 2001-12-03  Juergen Vigna  <jug@sad.it>
9610
9611         * text.C (rowLast): simplified code
9612
9613 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
9614
9615         * lyxfunc.C: fix show options on timeout
9616
9617 2001-12-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9618
9619         * screen.C (topCursorVisible): scroll half a page when the cursor
9620         reached top of bottom of screen
9621
9622 2001-12-02  John Levon  <moz@compsoc.man.ac.uk>
9623
9624         * minibuffer.C: deactivate on loss of focus
9625
9626 2001-12-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9627
9628         * vspace.[Ch] (operator!=): add operator.
9629
9630 2001-12-01  John Levon  <moz@compsoc.man.ac.uk>
9631
9632         * BufferView_pimpl.C: refuse to open an inset when
9633         there's a selection.
9634
9635 2001-11-30  John Levon  <moz@compsoc.man.ac.uk>
9636
9637         * BufferView_pimpl.C: allow to click on RHS of full row insets
9638
9639 2001-11-30  Juergen Vigna  <jug@sad.it>
9640
9641         * tabular.C (LyXTabular): add a same_id to set the same id's in the
9642         insets for undo reasons.
9643
9644 2001-11-28  André Pönitz <poenitz@gmx.net>
9645
9646         * vspace.[Ch]: cosmetical changes
9647
9648 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
9649
9650         * LyXAction.h:
9651         * LyXAction.C:
9652         * lyxfunc.h:
9653         * lyxfunc.C:
9654         * kbmap.h:
9655         * kbmap.C:
9656         * lyxrc.C:
9657         * kbsequence.h:
9658         * kbsequence.C: part re-write of old kb code
9659
9660         * Painter.C:
9661         * WorkArea.C: remove Lgb_bug_find_hack
9662
9663 2001-11-30  José Matos <jamatos@fep.up.pt>
9664
9665         * buffer.C (makeDocBookFile): add a comment to point a hack.
9666         (simpleDocBookOnePar): changed a PAR::META_INSET to isInset().
9667         Fixed a double write of labels.
9668
9669 2001-11-29 Ben Stanley <bds02@uow.edu.au>
9670
9671         * LaTeX.C:
9672         * LaTeX.h Fixed bug in LaTeX class where it would not
9673         re-run latex if no depfiles were changed, but the .dvi was removed.
9674
9675 2001-11-28  André Pönitz <poenitz@gmx.net>
9676
9677         * all the files from the change on 2001/11/26:
9678         use lyx::layout_type instead of LyXTextClass::size_type
9679         use lyx::textclass_type instead of LyXTextClassList::size_type
9680
9681 2001-11-29  Juergen Vigna  <jug@sad.it>
9682
9683         * text.C: added support for paragraph::isFreeSpacing()
9684
9685         * buffer.C: same as above
9686
9687         * paragraph.h: inserted isFreeSpacing() function to enable
9688         FreeSpacing inside InsetERT.
9689
9690         * CutAndPaste.C (cutSelection/copySelection): set the inset_owner
9691         of the paragraph's in the cut/copy buffer to 0!
9692
9693         * text2.C (removeRow): remove the assert as it can!
9694
9695         * lyxtext.h: added helper function firstRow returning firstrow and
9696         made firstrow private again.
9697
9698         * BufferView2.C (lockInset): don't relock if we're already locked!
9699
9700         * text2.C (deleteEmptyParagraphMechanism): don't do anything if it's
9701         the only paragraph.
9702         (removeRow): added Assert::(firstrow)
9703
9704         * debug.C: forgot to add INSETTEXT here.
9705
9706 2001-11-28  Juergen Vigna  <jug@sad.it>
9707
9708         * sp_spell.C (initialize): changed error text to more general
9709         spellchecker command use (not only ispell!)
9710
9711         * bufferlist.C (qwriteAll): fixed "Cancel" button handling!
9712
9713         * debug.h: inserted one for debugging INSETTEXT (and InsetTabular)!
9714
9715 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
9716
9717         * vspace.C: initialise lyxgluelength on failure
9718
9719 2001-11-28  Allan Rae  <rae@lyx.org>
9720
9721         * text.C (paintLastRow): g++-2.95.3 and others don't like variable
9722         declaration & definition that looks like a function declaration.
9723
9724 2001-11-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9725
9726         * BufferView2.C (copy):
9727         (copyEnvironment): do not clear the selection when doing a copy.
9728
9729         * text.C (paintFirstRow): compilation fix
9730
9731 2001-11-27  Ben Stanley  <bds02@uow.edu.au>
9732
9733         * tabular.C (Latex): correct line count when writing latex.
9734
9735 2001-11-27  John Levon  <moz@compsoc.man.ac.uk>
9736
9737         * paragraph_pimpl.h:
9738         * paragraph_pimpl.C: tidy, and fix font-change in "LaTeX"
9739           bug a bit
9740
9741 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
9742
9743         * text.C:
9744         * LColor.h:
9745         * LColor.C: change vfillline->added_space
9746
9747         * text.C: add markers and text for added space
9748
9749         * vspace.C: fix comment
9750
9751 2001-11-28  André Pönitz <poenitz@gmx.net>
9752
9753         * paragraph.C: whitespace changes
9754         * all the other files from the change on 2001/11/26:
9755         change *::pos_type into lyx::pos_type
9756
9757 2001-11-27  Dekel Tsur  <dekelts@tau.ac.il>
9758
9759         * buffer.C (parseSingleLyXformat2Token): Set the language to the
9760         language of the document when inserting error insets.
9761
9762 2001-11-26  André Pönitz <poenitz@gmx.net>
9763
9764         * BufferView_pimpl.[Ch]:
9765         *       CutAndPaste.C:
9766         * buffer.[Ch]:
9767         * lyxcursor.[Ch]:
9768         * lyxfind.C:
9769         * lyxfunc.C:
9770         * lyxrow.[Ch]:
9771         * paragraph.[Ch]:
9772         * paragraph_pimpl.[Ch]:
9773         * sp_spell.C:
9774         * text.C:
9775         * text2.C: reduce header dependencies, introduce type for positions
9776
9777 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
9778
9779         * <various>: change to use Alert.h
9780
9781 2001-11-25  Dekel Tsur  <dekelts@tau.ac.il>
9782
9783         * buffer.C (parseSingleLyXformat2Token): Insert an error inset
9784         when encountering an unknown token.
9785         (readLyXformat2): Show an error message if there were unknown tokens.
9786
9787 2001-11-22  John Levon  <moz@compsoc.man.ac.uk>
9788
9789         * BufferView2.C:
9790         * BufferView_pimpl.C:
9791         * buffer.C:
9792         * paragraph.h:
9793         * text.C:
9794         * text2.C: use par->isInset()
9795
9796 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
9797
9798         * paragraph_pimpl.h:
9799         * paragraph_pimpl.C: cleanup
9800
9801 2001-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9802
9803         * text2.C (removeRow):
9804         * text.C (setHeightOfRow): remove useless (and costly) call to
9805         getRow.
9806
9807 2001-11-20  Allan Rae  <rae@lyx.org>
9808
9809         * paragraph.C (insertFromMinibuffer): Fix for inset related crashes.
9810         Now need Inset*::checkInsertChar() to return true for appropriate
9811         cases so that the characters in the minibuffer will actually be
9812         inserted.
9813
9814 2001-11-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9815
9816         * text.C: change the order of the includes.
9817         (workWidth): initialize it at once.
9818         (workWidth): make maxw unsigned
9819         (setHeightOfRow): remove unused variable (inset)
9820         (selectSelectedWord): remove unused variable (inset)
9821         (paintRowText): fix drawing of hfill characters, and clean up a bit.
9822
9823 2001-11-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9824
9825         * lyxserver.C (emergencyCleanup): do not try to close pipes if
9826         server is not running.
9827         (openConnection):
9828         (closeConnection): add debug info when server is disabled.
9829
9830         * ColorHandler.C (getGCForeground): send debug message to GUI
9831         channel.
9832
9833         * lyxrc.C: do not include lyxserver.h and tex-strings.h.
9834
9835         * kbmap.C (bind): modify because return conventions of
9836         kb_sequence::parse have changed.
9837
9838         * kbsequence.C (parse): only ignore spaces and not any stupid
9839         control character. This avoids tests like s[i] <= ' ', which are
9840         guaranteed to fail with 8bit characters and signed chars.
9841         Change return code to string::npos when there have been no error
9842         (0 was a bad idea when error is at first character)
9843
9844 2001-11-14  José Matos  <jamatos@fep.up.pt>
9845
9846         * buffer.h:
9847         * buffer.C (simpleDocBookOnePar): removed unused argument.
9848
9849 2001-11-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9850
9851         * text.C (selectNextWordToSpellcheck): do not test explicitely for
9852         insets which are part of a word. Paragraph::isLetter takes care of
9853         that now. Use Paragraph::isInset to identify insets.
9854         (selectSelectedWord): do not test for hyphenation break.
9855
9856         * BufferView_pimpl.C (smartQuote): use Inset::isSpace, so
9857         that protected spaces are considered as spaces.
9858
9859         * paragraph.C (isLetter): cleanup the code for ispell extras; use
9860         Inset::isLetter.
9861
9862 2001-11-12  John Levon  <moz@compsoc.man.ac.uk>
9863
9864         * lyxserver.h:
9865         * lyxserver.C: fix it. and small cleanup.
9866
9867 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
9868
9869         * BufferView_pimpl.C: use inline helpers
9870
9871         * LaTeXFeatures.h:
9872         * LaTeXFeatures.C: fix typos
9873
9874         * Spacing.h:
9875         * Spacing.C: move spacing_string into class
9876
9877         * ToolbarDefaults.C: move stuff into namespace anon
9878
9879         * layout.h: update enum
9880
9881         * lyxfunc.C: use better debug
9882
9883         * minibuffer.h: fix typo
9884
9885         * debug.h:
9886         * debug.C:
9887         * WorkArea.C: add and use Debug::WORKAREA
9888
9889         * lyxtext.h:
9890         * text.C:
9891         * text2.C: code re-organisation, inline helpers
9892
9893 2001-11-09  Michael A. Koziarski <michael@koziarski.org>
9894
9895         * Layout.C: replaced a few cases of std::vector.size() == 0 with
9896         std::vector.empty().
9897
9898 2001-11-09  Allan Rae  <rae@lyx.org>
9899
9900         * paragraph.C (TeXOnePar): remove old, now-irrelevent comments about
9901         '\n's after tables.  Tabular and ERT inset work now makes this no
9902         longer necessary.
9903
9904 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
9905
9906         * minibuffer.h:
9907         * minibuffer.C: fix crash, improve drop-down completion
9908
9909 2001-11-06  John Levon  <moz@compsoc.man.ac.uk>
9910
9911         * lyxserver.h:
9912         * lyxserver.C: invalidate fd's when doing endPipe()
9913
9914 2001-11-08  José Matos  <jamatos@fep.up.pt>
9915
9916         * buffer.C (sgmlLineBreak): renamed from linux_doc_line_break.
9917         (simpleDocBookOnePar): removed code made obsolete by the new inset code.
9918
9919         * paragraph.h:
9920         * paragraph.C (sgmlConvertChar): renamed from linuxDocConvertChar.
9921
9922 2001-11-07  José Matos  <jamatos@fep.up.pt>
9923
9924         * buffer.h:
9925         * buffer.C (sgmlError): linuxDocError renamed, and made public, added
9926         const qualifier.
9927
9928         * buffer.C (sgmlOpenTag):
9929         * buffer.C (sgmlCloseTag): removed debug info.
9930
9931         * buffer.h (sgmlOpenTag):
9932         * buffer.h (sgmlCloseTag): made public.
9933
9934 2001-11-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9935
9936         * buffer.C (saveParamsAsDefaults):
9937         * lyx_cb.C (MenuLayoutSave): remove
9938
9939         * LyXAction.C (init):
9940         * commandtags.h:
9941         * lyxfunc.C (dispatch): remove LFUN_LAYOUT_SAVE_DEFAULT.
9942
9943 2001-11-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9944
9945         * buffer.C (setPaperStuff): removed from here...
9946
9947         * bufferparams.C (setPaperStuff): ... and moved there.
9948
9949 2001-11-03  John Levon  <moz@compsoc.man.ac.uk>
9950
9951         * minibuffer.h:
9952         * minibuffer.C:
9953         * XFormsView.C: add support for drop-down completion
9954
9955 2001-11-03  Dekel Tsur  <dekelts@tau.ac.il>
9956
9957         * paragraph.C (TeXOnePar): Correct placement of \selectlanguage
9958         commands.
9959
9960 2001-10-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
9961
9962         * gettext.C (locale_init): set LC_NUMERIC to "C" even if nls is
9963         disabled.
9964
9965 2001-10-30  John Levon  <moz@compsoc.man.ac.uk>
9966
9967         * lyx_main.C: change ref to known bugs
9968
9969 2001-10-30  Kayvan A. Sylvan  <kayvan@sylvan.com>
9970
9971         * LaTeXFeatures.C (getPackages): Use lyxskak.sty now instead
9972         to work around older babel problems.
9973
9974 2001-10-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
9975
9976         * LaTeXFeatures.[hC]: Now uses skak.sty for chess material.
9977
9978 2001-10-24  Juergen Vigna  <jug@sad.it>
9979
9980         * tabular-old.C (ReadOld): below variable changes reflected.
9981
9982         * tabular.[Ch]: added ltType struct for longtable header/footer
9983         defines and changed all instances where they are used. Added
9984         future support for double top/bottom rows.
9985
9986 2001-10-24  José Matos  <jamatos@fep.up.pt>
9987
9988         * buffer.h (docbookHandleCaption):
9989         * buffer.C (docbookHandleCaption): removed unused function.
9990         (makeDocBookFile): moved docbook supported version to v4.1.
9991
9992 2001-10-24  José Matos  <jamatos@fep.up.pt>
9993
9994         * tabular.h:
9995         * tabular.C (docbookRow): new function to export docbook code of a row.
9996         (DocBook): now honors the longtable flags.
9997
9998 2001-10-23  José Matos  <jamatos@fep.up.pt>
9999
10000         * LaTeXFeatures.h:
10001         * LaTeXFeatures.C (getLyXSGMLEntities): new function to get the name
10002         of the lyx defined sgml entities used in a docbook/linuxdoc document.
10003
10004         * buffer.C (makeLinuxDocFile):
10005         (makeDocBookFile): reworked the preamble, more clean, and with
10006         support for lyx defined entities. Changed the document declaration
10007         to be more XML friendly.
10008
10009         * tabular.C (DocBook): removed / terminator to be more SGML friendly,
10010         if we need to output XML that should be done with a filter.
10011
10012 2001-10-22  Juergen Vigna  <jug@sad.it>
10013
10014         * sp_pspell.h (class PSpell): add alive function needed in the
10015         controller to see if the spellchecker could be started.
10016
10017 2001-10-22  Juergen Vigna  <jug@sad.it>
10018
10019         * buffer.C (insertStringAsLines): modify the font for inserting
10020         chars in certain conditions by calling checkInsertChar(font).
10021
10022 2001-10-19  Juergen Vigna  <jug@sad.it>
10023
10024         * text.C (workWidth): use getRow instead of wrong algorithm.
10025         (setHeightOfRow): fix for MARGIN_RIGHT_ADDRESS_BOX
10026
10027 2001-10-19  John Levon  <moz@compsoc.man.ac.uk>
10028
10029         * lyxserver.h:
10030         * lyxserver.C:
10031         * lyx_main.h:
10032         * lyx_main.C: add emergencyCleanup (remove pipes on crash)
10033
10034 2001-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10035
10036         * text.C (workWidth): do not search for the exact row when
10037         margintype is not MARGIN_RIGHT_ADDRESS_BOX. This is an
10038         optimization for big documents.
10039
10040 2001-10-18  Juergen Vigna  <jug@sad.it>
10041
10042         * text.C (workWidth): new function with added Inset * parameter.
10043
10044 2001-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10045
10046         * text2.C (setCursorFromCoordinates): use Paragraph::size_type
10047
10048         * lyxtext.h: change type of refresh_pos to Paragraph::size_type;
10049         change return type of getColumnNearX.
10050
10051
10052         * text.C (changeRegionCase): use uppercase/lowercase instead of
10053         toupper/tolower.
10054         (leftMargin):
10055         (rightMargin): simplify code by factoring out the uses of
10056         textclasslist.
10057         (labelFill):
10058         (numberOfHfills):
10059         (setHeightOfRow):
10060         (appendParagraph): use Paragraph::size_type
10061
10062 2001-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10063
10064         * vspace.C (asLatexString): add a missing break
10065
10066 2001-10-15  Herbert Voss  <voss@perce.de>
10067
10068         * vspace.C (asLatexString): fix bug in output of string for l% and p%.
10069
10070 2001-10-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10071
10072         * lyxfunc.C (getStatus): disable thesaurus when aiksaurus library
10073         is not available.
10074
10075 2001-10-10  André Pönitz <poenitz@gmx.net>
10076
10077         * lyxfunc.C: removed greek_kb_flag.
10078
10079 2001-10-10  Herbert Voss  <voss@perce.de>
10080
10081         * lyx_main.C: delete global string help_lyxdir.
10082
10083 2001-10-09  Herbert Voss  <voss@perce.de>
10084
10085         * commandtags.h (kb_action): added LFUN_HELP_TEXINFO.
10086
10087         * LyXAction.C (init): added LFUN_HELP_TEXINFO to items array.
10088
10089         * lyx_main.C: added global string help_lyxdir.
10090
10091         * lyxfunc.C (dispatch): added LFUN_HELP_TEXINFO to switch.
10092
10093 2001-10-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
10094
10095         * lyxrc.C (set_font_norm_type): support iso8859-4
10096
10097 2001-07-02  Claus Hentschel  <claus.hentschel@mbau.fh-hannover.de>
10098
10099         * LaTeX.C (deplog): add another regex for MikTeX
10100
10101 2001-10-05  Adrien Rebollo  <adrien.rebollo@gmx.fr>
10102
10103         * lyxrc.C (set_font_norm_type): support iso8859-3
10104
10105 2001-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10106
10107         * BufferView_pimpl.C (tripleClick): fix stupid logic error.
10108
10109         * LaTeXFeatures.C: remove special case of french and index
10110
10111         * buffer.C (makeLaTeXFile): _really_ load babel late (i.e. just
10112         before \begin{document}). This solves several incompatibilities.
10113
10114 2001-10-03  Garst Reese  <reese@isn.net>
10115
10116         * lyx_cb.C: change CheckTex error msg.
10117
10118 2001-10-03  José Matos  <jamatos@fep.up.pt>
10119
10120         * buffer.C (simpleDocBookOnePar): add support for pass_thru.
10121
10122 2001-10-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10123
10124         * .cvsignore: update
10125
10126         * lyx_main.C (commandLineVersionInfo): use new style version info.
10127
10128         * buffer.C (writeFile):
10129         (makeLaTeXFile):
10130         (makeLinuxDocFile):
10131         (makeDocBookFile): use lyx_docversion instead of LYX_DOCVERSION.
10132
10133         * WorkArea.C (WorkArea): use lyx_version instead of LYX_VERSION.
10134
10135         * version.h: update to use stuff in version.C
10136
10137         * version.C.in: new file. Contains version information determined
10138         at compile time. This is a merging of version.h and
10139         version_info.h.in.
10140
10141 2001-10-03  Juergen Vigna  <jug@sad.it>
10142
10143         * BufferView_pimpl.C (update): don't change "dirty" status in
10144         updateInset call.
10145
10146 2001-10-03  Angus Leeming  <a.leeming@ic.ac.uk>
10147
10148         * WorkArea.C (c-tor): re-position version string slightly.
10149
10150 2001-10-02  Angus Leeming  <a.leeming@ic.ac.uk>
10151
10152         * BufferView_pimpl.C (buffer): remove call to WorkArea::show() and
10153         revert to previous code.
10154
10155         WorkArea.[Ch]: (show, destroySplash): methods removed.
10156
10157         WorkArea.C: rework code so that it's an amalgam of the codes before and
10158         after the splash screen was moved to WorkArea.
10159
10160 2001-10-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10161
10162         * lyxrc.C (read):
10163         * vspace.C (inPixels):
10164         (lyx_advance):
10165         * kbmap.C (bind):
10166         * buffer.C (insertStringAsLines):
10167         (asciiParagraph): fix types to be large enough
10168
10169         * lyxlex_pimpl.h: change member status from short to int
10170
10171         * layout.h: fix type of endlabeltype
10172
10173         * kbmap.C (bind):
10174         * kbsequence.C (parse): change return type to string::size_type
10175
10176         * LaTeX.C (updateBibtexDependencies): comment out unneeded
10177         variable
10178
10179         * Bullet.C (bulletSize):
10180         (bulletEntry): do not use short ints as parameters
10181
10182         * BufferView2.C (insertLyXFile): change a char to an int.
10183
10184         * WorkArea.C (WorkArea): remove unneeded floats in computation
10185
10186 2001-10-01  Dekel Tsur  <dekelts@tau.ac.il>
10187
10188         * buffer.C (asciiParagraph): Treat '\\' as other chars.
10189
10190         * paragraph.C (asString): Do not ignore newline/hfill chars when
10191         copying to the clipboard.
10192
10193 2001-09-29  Dekel Tsur  <dekelts@tau.ac.il>
10194
10195         * paragraph_pimpl.C (simpleTeXSpecialChars): Call to textrow.start
10196         after a multi-line inset.
10197
10198 2001-09-28  Dekel Tsur  <dekelts@tau.ac.il>
10199
10200         * paragraph.C (validate): Set NeedLyXFootnoteCode
10201
10202 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
10203
10204         * lyxfont.C (LyXSizeNames): changed increase-error to increase
10205         and decrease-error to decrease.
10206
10207 2001-09-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10208
10209         * text2.C (deleteEmptyParagraphMechanism): reformat a bit to make
10210         it more readable (should be equivalent)
10211
10212 2001-09-27  Adrien Rebollo  <adrien.rebollo@gmx.fr>
10213
10214         * paragraph_pimpl.C (simpleTeXSpecialChars): handle latin9 too.
10215
10216 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10217
10218         * text2.C (fixCursorAfterDelete): new method. Fixes the parameters
10219         of a cursor (row, etc.) after a character has been deleted
10220         (deleteEmptyParagraphMechanism): call the method above on _all_
10221         cursors held by the LyXText when a double space has been
10222         detected/deleted.
10223
10224 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
10225
10226         * BufferView_pimpl.C (buffer): call WorkArea::show to pop-up the
10227         pixmap.
10228         (resizeCurrentBuff): remove code to destroy the old splash dialog.
10229
10230         * WorkArea.[Ch]: add the "LyX" pixmap and version string to the
10231         background. Use greyOut() and the new show() methods to toggle between
10232         the foreground and background. Add code to remove the splash after
10233         its initial showing.
10234
10235         * lyx_gui.C: Remove dependency on frontends/Dialogs.h.
10236         (create_forms): no longer call Dialogs::showSplash.
10237
10238 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10239
10240         * .cvsignore: add version_info.h
10241
10242 2001-09-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10243
10244         * version_info.h.in: new file
10245
10246         * Makefile.am: add version_info.h.in
10247
10248         * lyx_main.C (commandLineVersionInfo): use version_info defined in
10249         version_info.h instead of VERSION_INFO
10250
10251 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
10252
10253         * text.C (selectNextWordToSpellcheck): reverted change to if-block.
10254         The ERT inset now returns string().
10255
10256 2001-09-21  Angus Leeming  <a.leeming@ic.ac.uk>
10257
10258         * lyxtext.h, text.C (selectNextWord): renamed as
10259         selectNextWordToSpellcheck.
10260
10261         * text.C (selectNextWordToSpellcheck): Modified to not select
10262         words inside an ERT inset.
10263
10264 2001-09-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10265
10266         * lyx_cb.C (MenuLayoutSave): change a bit the question
10267
10268         * sp_base.h: include <sys/types.h>
10269
10270 2001-09-18  Angus Leeming  <a.leeming@ic.ac.uk>
10271
10272         * LColor.[Ch]: added graphicsbg to color enum and to ColorEntry.
10273
10274 2001-09-20  Michael Schmitt  <Michael.Schmitt@teststep.org>
10275
10276         * several files: fix typos in user-visible strings
10277
10278 2001-09-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10279
10280         * text2.C (pasteSelection): do not set the selection, since it
10281         will be cleared later. Actually, the intent was to fix the way the
10282         selection was set, but I figured rmoving the code was just as good.
10283
10284 2001-09-19  Dekel Tsur  <dekelts@tau.ac.il>
10285
10286         * FontLoader.C (available): Check if font is available without
10287         loading the font.
10288
10289 2001-09-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
10290
10291         * lyxrc.[Ch]: added auto_reset_options variable and associated code.
10292
10293 2001-09-13  Angus Leeming  <a.leeming@ic.ac.uk>
10294
10295         * lyxrc.[Ch]: added display_graphics variable and associated code.
10296
10297 2001-09-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10298
10299         * bufferparams.C (hasClassDefaults): new method. Returns true if
10300         the buffer parameters correspond to known class defaults
10301
10302 2001-09-17  Angus Leeming  <a.leeming@ic.ac.uk>
10303
10304         * XFormsView.C (show): set minimum size to the main window.
10305
10306 2001-09-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10307
10308         * text2.C (copySelection):
10309         (cutSelection):
10310         * lyxfind.C (LyXReplace):
10311         * BufferView_pimpl.C (Dispatch): pass the correct flag to
10312         LyXText::selectionAsString.
10313
10314         * paragraph.C (asString): add "label" argument to the second form
10315
10316         * text2.C (selectionAsString): add "label" argument and pass it to
10317         Paragraph::asString.
10318
10319 2001-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10320
10321         * lyx_main.C (commandLineHelp): remove version information
10322
10323 2001-09-08  Rob Lahaye  <lahaye@users.sourceforge.net>
10324
10325         * lyx_main.C: add -version commandline option
10326
10327 2001-09-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10328
10329         * paragraph.h: make the optional constructor arg required instead.
10330         some modifications to other files because of this.
10331
10332         * minibuffer.C (C_MiniBuffer_peek_event): make it static
10333
10334         * lyxserver.C (C_LyXComm_callback): make it static
10335
10336         * lyx_main.C (error_handler): make it static
10337
10338         * lyx_gui.C (LyX_XErrHandler): make it static
10339
10340         * XFormsView.C (C_XFormsView_atCloseMainFormCB): make it static
10341
10342         * WorkArea.C: make the extern "C" methods static.
10343
10344         * Makefile.am (lyx_LDADD): simplify
10345
10346 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
10347
10348         * commandtags.h: removed redundant LFUNs, LFUN_HELP_COPYRIGHT,
10349         LFUN_HELP_CREDITS, LFUN_HELP_VERSION.
10350
10351         * LyXAction.C (init):
10352         * lyxfunc.C (dispatch): associated code removal.
10353
10354 2001-09-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10355
10356         * lyxfont.h (isSymbolFont): shut off warning
10357
10358         * text.C (setHeightOfRow):
10359         (getVisibleRow): fix crash with empty paragraphs which have a
10360         bottom line
10361
10362 2001-09-07  Rob Lahaye  <lahaye@users.sourceforge.net>
10363
10364         * lyxrc.[Ch]: added dialogs_iconify_with_main variable and associated
10365         code.
10366
10367 2001-09-04  José Matos  <jamatos@fep.up.pt>
10368         * buffer.C
10369         * buffer.h
10370         * tabular.C (docbook): rename docBook method to docbook.
10371
10372 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
10373
10374         * Makefile.am: add dependencies to main.o.
10375
10376 2001-09-03  Dekel Tsur  <dekelts@tau.ac.il>
10377
10378         * FontLoader.C (available): Return false if !lyxrc.use_gui
10379
10380 2001-09-03  Michael Schmitt <schmitt@itm.mu-luebeck.de>
10381
10382         * FontInfo.C (query):
10383         * converter.C (view):
10384         * importer.C (Import):
10385         * exporter.C (Export): Can not -> cannot.
10386
10387 2001-09-02  John Levon  <moz@compsoc.man.ac.uk>
10388
10389         * BufferView_pimpl.C: allow to create index inset even if
10390           string is empty
10391
10392 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
10393
10394         * buffer.C (getLists): replace boost::tie code with an explicit pair
10395         as boost::tie can break some compilers.
10396
10397         * iterators.h: Added a std:: declaration to the return type of
10398         ParIterator::size.
10399
10400 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
10401
10402         * lyxrc.C: add help for view_dvi_paper_option, default to safe
10403           case.
10404
10405 2001-09-02  Dekel Tsur  <dekelts@tau.ac.il>
10406
10407         * iterators.[Ch]: New files. Provide paragraph iterators.
10408
10409         * buffer.C (changeLanguage): Use paragraph iterators.
10410         (isMultiLingual): ditto
10411
10412         * BufferView2.C (ChangeInsets): Use paragraph iterators.
10413
10414 2001-09-01  Dekel Tsur  <dekelts@tau.ac.il>
10415
10416         * FontLoader.C: Support for cmr font.
10417
10418 2001-08-31  Dekel Tsur  <dekelts@tau.ac.il>
10419
10420         * FontLoader.C (getFontinfo): Handle latex symbol fonts.
10421         (available): New method.
10422
10423         * FontInfo.C (getFontname): Use scalable fonts even when
10424         lyxrc.use_scalable_fonts is false, if no non-scalable fonts was
10425         found.
10426
10427 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
10428
10429         * converter.C (Formats::view): reverted! Incorrect fix.
10430
10431 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
10432
10433         * converter.C (Formats::view): only output the -paper option
10434         if the dvi viewer is xdvi, thereby fixing bug #233429.
10435
10436 2001-08-23  Herbert Voss  <voss@perce>
10437
10438         * BufferView_pimpl.C: small fix for LFUN_INSERT_BIBTEX
10439
10440 2001-08-20  Dekel Tsur  <dekelts@tau.ac.il>
10441
10442         * Spacing.h (Spacing): Set space to Default on in the default
10443         constructor.
10444
10445 2001-08-19  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10446
10447         * vc-backend.h (RCS::versionString): add RCS to version
10448         (CVS::versionString): add CVS to version
10449
10450         * vc-backend.C (scanMaster): do not add CVS to version.
10451         (scanMaster): do not add RCS to version
10452
10453         * lyxvc.C (versionString): new method
10454
10455         * lyxfunc.C (initMiniBuffer): use LyXVC::versionString
10456
10457 2001-08-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10458
10459         * Spacing.C (set): initialize fval
10460
10461 2001-08-15  Dekel Tsur  <dekelts@tau.ac.il>
10462
10463         * lyxlex_pimpl.C (next): Treat \ as normal char if not followed by
10464         " or \.
10465
10466 2001-08-16  Juergen Vigna  <jug@sad.it>
10467
10468         * lyxfunc.C (dispatch): implemented the new FINISHED states.
10469
10470 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
10471
10472         * BufferView_pimpl.C:
10473         * figureForm.C:
10474         * lyxtext.h:
10475         * text2.C: setParagraph takes linespacing now
10476
10477 2001-08-15  John Levon  <moz@compsoc.man.ac.uk>
10478
10479         * LyxAction.C: add internal LFUN_CITATION_INSERT
10480
10481         * LyXView.C: actually apply fix
10482
10483         * bufferlist.C: fix open non-existent file
10484
10485         * lyxfind.C: fix indentation
10486
10487         * lyxfunc.C: remove unneeded assert, fix typo
10488
10489 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
10490
10491         * MenuBackend.C: use "Floatname List"
10492
10493 2001-08-14  Dekel Tsur  <dekelts@tau.ac.il>
10494
10495         * buffer.C (parseSingleLyXformat2Token): Do not generate errors
10496         when converting LaTeX layout to insetERT.
10497         Generate a non-collapsed float when reading old float
10498
10499 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
10500
10501         * BufferView2.C (showLockedInsetCursor): Use normal cursor shape in
10502         ERT insets.
10503
10504 2001-08-13  Juergen Vigna  <jug@sad.it>
10505
10506         * text.C (fill): return 0 instead of 20 as this seems to be the more
10507         correct value.
10508
10509 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
10510
10511         * encoding.C (TransformChar): Use lyxrc.font_norm_type instead of
10512         lyxrc.font_norm.
10513
10514 2001-08-13  Juergen Vigna  <jug@sad.it>
10515
10516         * lyxfind.C (LyXReplace): fixed not single-replacing characters with
10517         casesensitive off.
10518         (SearchBackward): comment out the unlocking of the inset_owner this
10519         should not be needed!
10520
10521 2001-08-11  Dekel Tsur  <dekelts@tau.ac.il>
10522
10523         * Many files: Remove inherit_language, and add latex_language
10524
10525         * BufferView2.C (showLockedInsetCursor): Fix cursor shape in
10526         collapsible insets.
10527
10528 2001-08-10  Juergen Vigna  <jug@sad.it>
10529
10530         * text.C (prepareToPrint): fixed hfill-width in draw!
10531
10532         * BufferView2.C (selectLastWord): save the selection cursor as this
10533         now is cleared in the function LyXText::clearSelection!
10534
10535 2001-08-08  Juergen Vigna  <jug@sad.it>
10536
10537         * BufferView_pimpl.C (Dispatch): use a non-cut-buffer cut on DELTE
10538         BACKSPACE type functions.
10539
10540         * CutAndPaste.C (cutSelection): added a bool so that the stuff actually
10541         is only cutted from the document but not put in the cut-buffer, where
10542         still the old stuff should be.
10543
10544         * text2.C (cutSelection): added bool to pass to CutAndPaste::cutSelection.
10545
10546         * BufferView2.C (cut): added a bool to pass to LyXText::cutSelection.
10547
10548         * tabular.C (SetWidthOfCell): fixed special case where the width
10549         was not updated!
10550         (LeftLine): handle '|' in align_special.
10551         (RightLine): ditto
10552         (LeftAlreadyDrawed): ditto
10553         (SetWidthOfCell): ditto
10554
10555 2001-08-07  Juergen Vigna  <jug@sad.it>
10556
10557         * lyx_main.C (readUIFile): fixed some forgotten lowercase!
10558
10559 2001-08-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10560
10561         * lyxlex_pimpl.[Ch]: converto to lowercase funcs
10562         * lyxlex.[hC]: ditto
10563
10564 2001-08-06  Juergen Vigna  <jug@sad.it>
10565
10566         * text.C (getVisibleRow): fix up row clearing a bit.
10567
10568 2001-08-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10569
10570         * minibuffer.C: make sure the X server sees the changes in the input.
10571
10572 2001-08-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10573
10574         * paragraph.C (getFont): split into...
10575         (getLabelFont): this
10576         (getLayoutFont): and this
10577         * paragraph_pimpl.C (realizeFont): calling this
10578
10579         * text2.C (getFont): split into...
10580         (getLayoutFont): this
10581         (getLabelFont): and this
10582         (realizeFont): all three calling this
10583
10584         * lyxfont.h: remove all NO_LATEX macros and code... adjust all
10585         files where used.
10586
10587 2001-08-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10588
10589         * lyxfunc.C (getStatus): add checkbox support for LFUN_APPENDIX
10590
10591 2001-08-02  Kayvan A. Sylvan  <kayvan@sylvan.com>
10592
10593         * BufferView_pimpl.C (smartQuote): Added code to exempt pass_thru
10594         layouts from the Quote inset insertion.
10595
10596 2001-08-03  Juergen Vigna  <jug@sad.it>
10597
10598         * BufferView_pimpl.C (update): do the fitCursor only at the end!
10599
10600         * screen.C (drawFromTo): don't call fitcursor here and do the loop
10601         only if status not is already CHANGED_IN_DRAW (second level).
10602
10603         * text.C (draw): don't set the need_break_row when inside an
10604         InsetText LyXText.
10605
10606 2001-08-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10607
10608         * buffer.C (parseSingleLyXformat2Token): handle more latex
10609         conversion cases.
10610
10611         * bufferview_funcs.[hC]: change function names to
10612         begin with small char, adjust other files.
10613
10614 2001-08-02  André Pönitz <poenitz@gmx.net>
10615
10616         * lyxfunc.C:
10617         BufferView_pimpl.C: remove broken special code for math-greek
10618
10619 2001-08-02  Juergen Vigna  <jug@sad.it>
10620
10621         * BufferView_pimpl.C (update): redone this function so that we
10622         update the text again if there was a CHANGE_IN_DRAW.
10623
10624         * screen.C (cursorToggle): removed LyXText parameter and recoded.
10625         (drawFromTo): added a new internal bool which is used by draw() and
10626         redraw() function.
10627         (general): some cursor drawing problems fixed.
10628
10629 2001-08-01  Juergen Vigna  <jug@sad.it>
10630
10631         * lyxfind.C (LyXFind): fixed
10632         (SearchForward): ditto
10633         (SearchBackward): ditto
10634
10635         * BufferView_pimpl.C (workAreaMotionNotify): hopefully fixed the
10636         spurius drawing of the cursor in the main area.
10637
10638         * text2.C (status): small fix which could lead to a segfault!
10639         (clearSelection): remove unneeded BufferView param.
10640
10641 2001-08-01  André Pönitz <poenitz@gmx.net>
10642
10643         * lyxfunc.C: small change due to changed mathed interface
10644
10645 2001-08-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10646
10647         * bufferlist.C (loadLyXFile): add .lyx to file name if necessary
10648
10649 2001-08-01  John Levon  <moz@compsoc.man.ac.uk>
10650
10651         * lyxfunc.c: fail gracefully if file doesn't exist
10652
10653         * LyXSendto.C:
10654         * buffer.C:
10655         * lyxfunc.C:
10656         * BufferView_pimpl.C: IsDirWriteable() proto changed
10657
10658         * LyXView.C: fix updateWindowTitle() to store the last title
10659
10660 2001-07-31  Juergen Vigna  <jug@sad.it>
10661
10662         * text.C (setHeightOfRow): fixed setting of ascent/descent based on
10663         the font (wrong since using of Paragraph::highestFontInRange).
10664
10665         * paragraph.C (highestFontInRange): added a default_size parameter.
10666
10667         * text.C (getVisibleRow): minor clear row changes (still not perfect).
10668         (setHeightOfRow): reformat
10669
10670 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10671
10672         * converter.[hC] + affected files: move to (inital-char)lowercase
10673         function names.
10674
10675         * ParagraphParameters.C (ParagraphParameters): remove commented code
10676
10677         * PainterBase.[Ch]: remove commented code
10678
10679         * LaTeXFeatures.h: add "bool floats" for float.sty
10680
10681         * LaTeXFeatures.C (LaTeXFeatures): init floats
10682         (require): handle float
10683         (getPackages): do it with floats
10684
10685 2001-07-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10686
10687         * BufferView_pimpl.C (Dispatch): improve handling of
10688         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE
10689
10690         * commandtags.h: #include lyxfont.h here temporarily to avoid
10691         keybinding bug.
10692
10693         * bufferlist.h: include LString.h here.
10694
10695 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10696
10697         * text2.C (getStringToIndex): new method.
10698
10699 2001-07-29  Asger Alstrup Nielsen  <alstrup@alstrup>
10700
10701         * *: Reduced header file dependencies all over.
10702
10703 2001-07-30  Baruch Even  <baruch@lyx.org>
10704
10705         * buffer.C (readInset): Stop auto-converting InsetFig to InsetGraphics.
10706
10707 2001-07-29  Baruch Even  <baruch@lyx.org>
10708
10709         * buffer.C (readInset): Changed GRAPHICS to Graphics.
10710
10711 2001-07-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10712
10713         * ParameterStruct.h (endif): add a default constructor to make
10714         sure that all variables is initialized.
10715
10716         * ParagraphParameters.C (ParagraphParameters): adjust
10717
10718 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10719
10720         * BufferView_pimpl.C (Dispatch): use WHOLE_WORD selection for
10721         index; also, check that there is something to index, and that it
10722         does not span over several paragraphs.
10723         (doubleClick): use WHOLE_WORD_STRICT for double click.
10724
10725         * text.C (getWord): handle new WHOLE_WORD_STRICT word_location value.
10726
10727         * text2.C (toggleFree): do selection with WHOLE_WORD_STRICT
10728         scheme.
10729
10730 2001-07-26  Baruch Even  <baruch@lyx.org>
10731
10732         * buffer.C (readInset): Changed to call up InsetGraphics when reading
10733         an InsetFig figure, backwards compatible reading of old figure code.
10734
10735 2001-07-27  Juergen Vigna  <jug@sad.it>
10736
10737         * text2.C: font.realize function adaption.
10738
10739         * text.C (draw): add a warnings lyxerr text if needed.
10740
10741         * layout.C: font.realize function adaption.
10742
10743         * language.C: add inherit_language and implement it's handlings
10744
10745         * bufferview_funcs.C (StyleReset): remove language parameter from
10746         font creation (should be language_inherit now).
10747
10748         * bufferparams.C (writeFile): handle ignore_language.
10749
10750         * paragraph.C (getFontSettings): the language has to be resolved
10751         otherwise we have problems in LyXFont!
10752
10753         * lyxfont.C (lyxWriteChanges): added document_language parameter
10754         (update): removed unneeded language parameter
10755
10756         * paragraph.C (validate): fixed wrong output of color-package when
10757         using interface colors for certain fonts in certain environments,
10758         which should not seen as that on the final output.
10759
10760 2001-07-26  John Levon  <moz@compsoc.man.ac.uk>
10761
10762         * BufferView_pimpl.C:
10763         * Thesaurus.h:
10764         * Thesaurus.C:
10765         * Makefile.am:
10766         * commandtags.h:
10767         * LyXAction.C: add thesaurus support
10768
10769         * lyxfind.h:
10770         * lyxfind.C: add "once" parameter, for thesaurus, to not
10771           move to the next match
10772
10773 2001-07-26  Juergen Vigna  <jug@sad.it>
10774
10775         * lyxfont.C (realize): honor ignore_language too!
10776         (resolved): ditto.
10777
10778         * paragraph.C (TeXOnePar): handle ignore language right (hopefully).
10779
10780         * text.C (draw): one place more for ignore_language to not draw
10781         itself!
10782
10783 2001-07-25  Angus Leeming  <a.leeming@ic.ac.uk>
10784
10785         * LaTeXFeatures.C (getPackages): clean-up a little of the natbib code.
10786
10787 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10788
10789         * buffer.C (parseSingleLyXformat2Token): a more general fix for
10790         the minipage conversion problem.
10791
10792 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10793
10794         * buffer.C (parseSingleLyXformat2Token): check minipage if we
10795         insert an inset.
10796
10797 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10798
10799         * BufferView.h: don't forward declare WorkArea
10800
10801         * BufferView.C: don't include WorkArea.h
10802
10803 2001-07-25  André Pönitz <poenitz@gmx.net>
10804
10805         * commandtags.h:
10806         * LyXAction.C:
10807         * lyxfunc.C:  new LFUN 'math-space'
10808
10809         * BufferView.[Ch]: remove unneeded reference to 'WorkArea'
10810
10811 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10812
10813         * text2.C (toggleInset): call open/close
10814
10815 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10816
10817         * lyxfunc.C (dispatch): add debug for the disabled case
10818
10819         * font.C (buttonText): make similar to rectText
10820
10821         * buffer.C (readInset): comment out parsing of insetlist and
10822         insttheorem
10823
10824         * PainterBase.C (rectText): small correction
10825
10826         * BufferView_pimpl.C: comment out insettheorem and insetlist
10827         * LyXAction.C: ditto
10828         * commandtags.h: ditto
10829
10830 2001-07-24  Juergen Vigna  <jug@sad.it>
10831
10832         * text.C (draw): honor the ignore_language.
10833
10834         * lyxfont.C (LyXFont): set language to ignore_language in FONT_INIT1.
10835
10836 2001-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10837
10838         * lyxfunc.C (getStatus): BREAKLINE does _not_ insert a special
10839         char inset.
10840
10841 2001-07-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10842
10843         * lyxtext.h: remove unused (and unimplemented) methods
10844
10845 2001-07-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10846
10847         * text.C (getVisibleRow): honor background color
10848
10849         * PainterBase.h:
10850         * Painter.h: remove default color argument for fillRectangle
10851
10852         * text.C (backgroundColor): new method
10853
10854 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10855
10856         * text.C (getVisibleRow): adjust
10857
10858         * font.[Ch] (rectText): new method, metrics
10859         (buttonText): new method, metrics
10860
10861         * PainterBase.[hC]: make rectText and buttonText always draw and take
10862         fewer paramteres.
10863
10864 2001-07-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10865
10866         * ToolbarDefaults.C (read):
10867         * MenuBackend.C (read): allow escaping in all strings
10868
10869         * BufferView_pimpl.C (insertAndEditInset): new method.
10870         (Dispatch): use insertAndEditInset whenever appropriate.
10871
10872         * BufferView_pimpl.C (insertNote): removed
10873
10874         * BufferView_pimpl.C (smartQuote): new method, moved from
10875         BufferView; if an insetquote cannot be inserted, insert a '"'
10876         character instead.
10877
10878         * BufferView2.C: remove insertCorrectQuote();
10879
10880         * lyxfunc.C (getStatus): Add support for all remaingin
10881         inset-insert lfuns.
10882
10883         * trans_mgr.C (insertVerbatim): do not treat '"' specially.
10884
10885         * lyxrc.C (read): in RC_BIND, allow escaped sequences in the
10886         command (necessary to pass " as parameter of self-insert.
10887
10888         * text.C (selectWordWhenUnderCursor):
10889         (selectWord): add word_location parameter
10890         (selectWordWhenUnderCursor): same + remove special code for word
10891         boundary.
10892         (selectNextWord): use kind() to guess type of insetspecialchar,
10893         not latex().
10894
10895         * buffer.C (insertStringAsLines): new method, extracted from LyXText.
10896         (insertErtContents): create ert insets as collapsed.
10897         (readInset): better compatibility code for Info inset.
10898
10899 2001-07-20  Juergen Vigna  <jug@sad.it>
10900
10901         * lyxfunc.C (dispatch): use always LyXFind now!
10902
10903         * text2.C (init): add a reinit flag so that the LyXText can be
10904         reinited instead of deleted and reallocated (used in InsetText).
10905
10906         * BufferView_pimpl.C: use the new Inset::edit(BV, bool) where needed.
10907
10908         * text.C: ditto
10909
10910         * text2.C: ditto
10911
10912 2001-07-18  Juergen Vigna  <jug@sad.it>
10913
10914         * text.C (selectNextWord): handle insets inside inset by calling
10915         always the bv->text functions so that we can go up the_locking_inset!
10916
10917         * BufferView_pimpl.C (show/hideCursor): fixed cursor showing up
10918         in strange locations when inside an inset!
10919
10920         * lyxfind.[Ch]: give all functions a LyXText * parameter and implement
10921         handling to include insets.
10922
10923         * lyxfunc.C (dispatch): changes to calls SearchBackward/Forward.
10924
10925 2001-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
10926
10927         * LyXAction.C (init):
10928         * commandtags.h:
10929         * BufferView_pimpl.C (Dispatch): change HYPHENATION_BREAK to
10930         LIGATURE_BREAK, since the name is so stupid.
10931
10932 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
10933
10934         * buffer.C (readInset): enable reading of new InsetNotes as well as old
10935         InsetInfos.
10936
10937         * FontLoader.C: remove FORMS_H_LOCATION cruft.
10938
10939         * sp_form.[Ch]: remove.
10940
10941         * src/LColor.[Ch]: remove noteframe. Change note to "yellow".
10942
10943         * src/BufferView_pimpl.C (insertNote): use InsetNote in place of
10944         InsetInfo.
10945
10946         * src/buffer.C (readInset): ditto.
10947
10948 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10949
10950         * BufferView_pimpl.C (specialChar): new method. Obsoletes
10951         menuSeparator(), endOfSentenceDot(), ldots() and
10952         hyphenationPoint(), which are therefore removed.
10953         (Dispatch): handle LFUN_HYPHENATION_BREAK.
10954
10955         * LyXAction.C (init):
10956         * commandtags.h: add LFUN_HYPHENATION_BREAK.
10957
10958         * paragraph.C (getWord): removed.
10959
10960         * BufferView_pimpl.C (Dispatch): use last word or selection for
10961         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE.
10962
10963         * lyx_main.C (queryUserLyXDir): do not ask before creating
10964         user_dir, except if it has been named explicitely.
10965
10966 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
10967
10968         * BufferView_pimpl.C (updateScrollbar): Fix crash when reading in
10969         a document of zero size.
10970
10971 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
10972
10973         * LaTeXFeatures.[Ch]: add variable "bool natbib" and set it
10974         approriately in the c-tor and in require().
10975         (getPackages): output the appropriate LaTeX for natbib support.
10976
10977         * buffer.C (parseSingleLyXformat2Token): set the new bufferparams
10978         variables "use_natbib" and "use_numerical_citations" when reading the
10979         LyX file.
10980         (readInset): read the various natbib cite commands.
10981         (validate): white-space change.
10982
10983         * bufferparams.[Ch]: new variables "bool use_natbib" and
10984         "bool use_numerical_citations".
10985         (writeFile): output them in the LyX file.
10986
10987 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
10988
10989         * lyxfunc.C (getStatus): add support for all the inset insertion
10990         commands.
10991
10992         * text2.C (insertInset):
10993         * paragraph.C (insetAllowed):
10994         * BufferView_pimpl.C (insertInset): update to take in account the
10995         renaming of insertInsetAllowed
10996
10997         * lyxfunc.C (getStatus): add support for LFUN_INSET_TOGGLE.
10998
10999         * text2.C (getInset): new method. returns inset at cursor position.
11000
11001         * BufferView_pimpl.C (Dispatch): changes because of this.
11002
11003         * LyXAction.C (init): rename open-stuff to inset-toggle.
11004
11005         * commandtags.h: rename LFUN_OPENSTUFF to LFUN_INSET_TOGGLE.
11006
11007         * text2.C (toggleInset): renamed from openStuff; use
11008         Inset::open().
11009
11010 2001-07-13  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
11011
11012         * lyxrc.C (set_font_norm_type): recognise ISO_8859_15.
11013
11014         * lyxrc.h: added ISO_8859_15 to enum FontEncoding.
11015
11016 2001-07-18  Dekel Tsur  <dekelts@tau.ac.il>
11017
11018         * buffer.C (readLyXformat2): Add filename to the error dialog
11019
11020 2001-07-18  Juergen Vigna  <jug@sad.it>
11021
11022         * tabular.C (GetCellNumber): put an assert here instead of the check!
11023
11024 2001-07-17  Juergen Vigna  <jug@sad.it>
11025
11026         * BufferView_pimpl.C (toggleSelection): adapted too.
11027
11028         * text.C (selectNextWord): adapted for use with insets.
11029         (selectSelectedWord): ditto
11030
11031 2001-07-17  Juergen Vigna  <jug@sad.it>
11032
11033         * sp_spell.C (PSpell): fix initialitation order.
11034
11035 2001-07-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11036
11037         * paragraph.C: spacing
11038
11039 2001-07-17  Edwin Leuven  <leuven@fee.uva.nl>
11040
11041         * sp_spell.C: repair language selection for pspell
11042
11043 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11044
11045         * lyxfunc.h: change more methods to begin with lower char.
11046
11047 2001-07-16  Dekel Tsur  <dekelts@tau.ac.il>
11048
11049         * buffer.C (parseSingleLyXformat2Token): Generate error insets
11050         for unknown layouts.
11051
11052 2001-07-13  Dekel Tsur  <dekelts@tau.ac.il>
11053
11054         * buffer.C (readLyXformat2): Generate an error dialog if there are
11055         unknown layouts.
11056
11057 2001-07-16  Juergen Vigna  <jug@sad.it>
11058
11059         * sp_spell.C: always compile ISpell part.
11060
11061         * lyxrc.C: added use_pspell entry and it's handling.
11062
11063 2001-07-13  Juergen Vigna  <jug@sad.it>
11064
11065         * sp_spell.C: removed double includes.
11066
11067 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
11068
11069         Consistent use of Lsstream.h:
11070         * Lsstream.h: added using std::stringstream for consistencies sake.
11071
11072         * buffer.C: removed using std::stringstream
11073
11074         * lyxfont.C (stateText):
11075         * paragraph.C (asString):
11076         * text.C (selectNextWord, selectSelectedWord):
11077         * text2.C (setCounter):
11078         * vspace.C (asString, asLatexString):
11079         std::ostringstream -> ostringstream.
11080
11081 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
11082
11083         * LyXAction.C: add LFUN_HELP_ABOUTLYX
11084         * commandtags.h: add LFUN_HELP_ABOUTLYX
11085         * lyxfunc.C: add about lyx remove credits/copyright/version stuff
11086
11087 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
11088
11089         * BufferView_pimpl.C: sigchldchecker instead of sigchldhandeler in
11090         cursorToggle()
11091         * lyx_gui_misc.C: remove spellchecker
11092         * lyxfunc.C: showSpellchecker
11093         * sp_base.h: added
11094         * sp_ispell.h: added
11095         * sp_pspell.h: added
11096         * sp_spell.C: added
11097         * sp_form.[Ch]: removed
11098         * spellchecker.[Ch]: removed
11099
11100 2001-07-12  Kayvan A. Sylvan  <kayvan@sylvan.com>
11101
11102         * paragraph_pimpl.C (simpleTeXBlanks): Simply return if pass_thru
11103         is set.
11104         (simpleTeXSpecialChars): Simply print the input character without
11105         any special translation if pass_thru is set.
11106
11107         * layout.h: Added bool pass_thru to layout class for being able to
11108         implement pass through of a paragraph for Literate Programming.
11109
11110         * layout.C: add LT_PASS_THRU to LayoutTags enum.
11111         * layout.C (LyXLayout): set pass_thru to flase in constructor.
11112         * layout.C (Read): add "passthru" to list of layout tags and add
11113         code to set the pass_thru boolean when it is read.
11114
11115 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11116
11117         * trans_decl.h: remove allowed from KmodInfo
11118
11119         * trans.[Ch] (AddDeakkey): change prototype to not have allowd.
11120         remove allowed code
11121         (Load): adjust
11122
11123         * paragraph_pimpl.C (erase): use boost::prior
11124
11125         * Painter.C (text): use data() instead of c_str() when length is
11126         also provided.
11127         * WorkArea.C (putClipboard): ditto
11128         * font.h (width): ditto
11129
11130         * BufferView2.C: use it-> instead of (*it). for iterators
11131         * texrow.C: ditto
11132         * paragraph_pimpl.C: ditto
11133         * paragraph.C: ditto
11134         * minibuffer.C: ditto
11135         * language.C: ditto
11136         * kbmap.C: ditto
11137         * encoding.C: ditto
11138         * counters.C: ditto
11139         * converter.C: ditto
11140         * chset.C: ditto
11141         * Variables.C: ditto
11142         * TextCache.C: ditto
11143         * MenuBackend.C: ditto
11144         * LyXAction.C: ditto
11145         * LColor.C: ditto
11146         * FloatList.C: ditto
11147         * DepTable.C: ditto
11148         * ColorHandler.C (LyXColorHandler): ditto
11149
11150 2001-07-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11151
11152         * BufferView_pimpl.C (Dispatch): handle LFUN_OPENSTUFF.
11153
11154         * text2.C (openStuff): reintroduce this method (which had been
11155         nuked in NEW_INSETS frenzy).
11156
11157         * lyxfunc.C (Dispatch): when an action has not been handled, use
11158         its name in the error message, not its number.
11159
11160         * paragraph.C (inInset): change method name to begin with lowercase.
11161
11162         * undo_funcs.C:
11163         * text2.C: updates because of this.
11164
11165 2001-07-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11166
11167         * ToolbarDefaults.C (add): add spaces in error message
11168
11169 2001-07-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11170
11171         * buffer.C (readLyXformat2): initialize the ert comp. variables.
11172         (readLyXformat2): rename return_par to first_par, use lyxlex's
11173         pushToken and remove the manual push handling.
11174         (parseSingleLyXformat2Token): add another ert comp. variable:
11175         in_tabular, rename return_par to first_par. handle newlines better
11176
11177 2001-07-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11178
11179         * kbsequence.C (getiso): redirect debug info to Debug::KBMAP.
11180
11181 2001-07-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11182
11183         * text2.C (getParFromID): removed
11184
11185         * buffer.C (getParFromID): new method moved form lyxtext.
11186         * BufferView2.C (insertErrors): adjust
11187         (setCursorFromRow): adjust
11188         * BufferView_pimpl.C (restorePosition): adjust
11189         * lyxfunc.C (Dispatch): adjust
11190         * undo_funcs.C (textUndo): adjust
11191         (textRedo): adjust
11192         (textHandleUndo): adjust
11193         (textHandleUndo): adjust
11194
11195 2001-07-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11196
11197         * buffer.C: up' the LYX_FORMAT
11198
11199         * lyxfont.h: turn NO_LATEX on as default
11200
11201         * buffer.C (insertErtContents): new methods of tex style compability.
11202         (parseSingleLyXformat2Token): use it several places.
11203         * tabular.C (OldFormatRead): and here
11204
11205 2001-07-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11206
11207         * text2.C: remove some commented code.
11208         reindent file.
11209
11210         * trans_mgr.[Ch]: simplify normalkey to only take a char as arg.
11211         * trans.C: changes because of the above.
11212
11213 2001-07-07  Dekel Tsur  <dekelts@tau.ac.il>
11214
11215         * text2.C (setCounter): Fix counters bug with bibliography layout.
11216
11217 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11218
11219         * paragraph_pimpl.C (simpleTeXBlanks): don't go through owner_ for
11220         own member functions
11221         (simpleTeXSpecialChars): ditto
11222
11223 2001-07-06  Juergen Vigna  <jug@sad.it>
11224
11225         * a lot of files: changed the access to LyXText::status and the
11226         call of undo-functions.
11227
11228         * undo.[Ch]: added a inset_id to the undo informations.
11229
11230         * undo_funcs.[Ch]: added and moved here all undo functions.
11231
11232         * lyxtext.h: give the status enum a weight, made status_ a private
11233         variable and made accessor functions for it, removed the whole bunch
11234         of undo-functions as they are now in their own file, make some
11235         functions publically available. Added function ownerParagraph with
11236         int parameter.
11237
11238         * paragraph.[Ch]: added "bool same_ids" to the constructor,
11239         made InInset() a const function, added getParFromID() function.
11240
11241         * buffer.[Ch]: added const version for inset_iterator functions,
11242         added getInsetFromID() function.
11243
11244         * BufferView2.C, BufferView_pimpl.C, text.C, text2.C, lyxfunc.C:
11245         changed undo functions for new version.
11246
11247 2001-07-05  Juergen Vigna  <jug@sad.it>
11248
11249         * paragraph_pimpl.C (Pimpl): set id_ also here (this is because some
11250         unknow mechanism does not call the proper constructor but only this
11251         one also if I request the other!?
11252
11253 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11254
11255         * BufferView_pimpl.C (resizeCurrentBuffer): init the new LyXText
11256
11257         * text2.C (LyXText): use initialization lists.
11258
11259         * lyxtext.h (Selection): initialize set_ and mark_
11260         (init): remove method
11261
11262 2001-07-05  Dekel Tsur  <dekelts@tau.ac.il>
11263
11264         * LaTeX.C (scanLogFile): Parse rerun messages from latex packages.
11265
11266 2001-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11267
11268         * screen.[Ch]: change method names to begin with lowercase
11269
11270         * BufferView_pimpl.C (updateScrollbar): simplify further and
11271         hopefully make it a bit faster.
11272
11273 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11274
11275         * ColorHandler.C (LyXColorHandler): use GUIRunTime instead of
11276         calling directly xforms functions.
11277
11278         * Painter.C (Painter):
11279         * lyx_cb.C (MenuWrite):
11280         * FontInfo.C (query): use GUIRunTime::x11Display() instead of
11281         fl_display.
11282
11283         * lyx_gui.C: remove bogus guiruntime extern declaration.
11284
11285 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11286
11287         * text2.C (redoHeightOfParagraph): comment out stuff we don't need
11288         in NEW_INSETS
11289         (redoDrawingOfParagraph): ditto
11290         (redoParagraphs): ditto
11291         (cutSelection): don't create a object for CutAndPaste use the
11292         static method directly
11293         (pasteSelection): ditto
11294
11295         * bufferview_funcs.[Ch]: move ProhibitInput and AllowInput to
11296         LyXview (+ rename)
11297
11298 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11299
11300         * modifications to some other files because of this.
11301
11302         * Makefile.am (lyx_SOURCES): add XFormsView
11303
11304         * XFormsView.[Ch]: new files
11305
11306         * LyXView.[Ch]: make LyXView a base class for the gui handling for
11307         the main window. Move the gui dependent stuff to XFormsView
11308
11309 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11310
11311         * tabular.C (GetCellInset): update cur_cell also in the row/col
11312         version of this function.
11313
11314         * lyxfunc.C: no need to include figure_form.h here.
11315
11316         * FontLoader.h:
11317         * lyxfunc.h:
11318         * lyxscreen.h:
11319         * text2.C:
11320         * lyxvc.C: no need to include forms.h here.
11321
11322 2001-06-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11323
11324         * lyxrc.C (read): change debugging channel for RC_BIND to lyxrc.
11325
11326         * lyxfunc.C (Dispatch):
11327         * Spacing.C (set):
11328         * BufferView_pimpl.C (Dispatch): use .c_str() on istringstream
11329         constructor argument.
11330
11331 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11332
11333         * paragraph.C (Paragraph): dont't clear, and just set layout.
11334         (makeSameLayout): use params's copy contructor.
11335
11336         * ParagraphParameters.[Ch] (makeSame): delete method
11337
11338 2001-06-29  John Levon  <moz@compsoc.man.ac.uk>
11339
11340         * Variables.[Ch]: fix indentation, rename set to isSet
11341
11342 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11343
11344         * lyxfunc.C (Dispatch): fix typo
11345
11346 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11347
11348         * paragraph_pimpl.C: add std:: qualifier to lower_bound and
11349         upper_bound.
11350
11351         * bufferlist.C: include assert.h for emergencyWrite().
11352
11353 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
11354
11355         * lyx_main.C: if we can't even find a readable LYX_DIR directory,
11356           give up at last (bug #425202) !
11357
11358 2001-06-27  John Levon  <moz@compsoc.man.ac.uk>
11359
11360         * lyx_gui_misc.C:
11361         * sp_form.h:
11362         * sp_form.C:
11363         * spellchecker.h:
11364         * spellchecker.C: strip spellchecker options and bring up
11365           preferences tab instead
11366
11367 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11368
11369         * BufferView_pimpl.C (Dispatch): add .c_str() to the argument of
11370         the istringstream constructor
11371
11372 2001-06-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11373
11374         * paragraph.C (getLayout): fix return value
11375
11376         * paragraph.h: do not declare getLayout as inline.
11377
11378         * lyxtext.h: remove LyXText:: qualifier to changeRegionCase
11379
11380 2001-06-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11381
11382         * lyxcursor.h (operator<): new func
11383         (operator>): new func
11384         (operator>=): new func
11385         (operator<=): new func
11386
11387         * text.C (changeCase): use selection.start and selection.end
11388         (changeRegionCase): require from to be <= to. Require par to be a
11389         valid paragraph.
11390
11391         * LaTeXFeatures.C (getFloatDefinitions): std:: qualify ostream
11392
11393 2001-06-27  Juergen Vigna  <jug@sad.it>
11394
11395         * text.C (cursorLeftOneWord): changed to return the cursor and added
11396         overlay with BufferView * parameter which calls this one.
11397         (getWord): added
11398         (selectWord): use new getWord function.
11399         (changeCase): renamed from changeWordCase as and extended to work
11400         also on selections.
11401
11402         * lyxtext.h: added enum word_location
11403
11404         * BufferView_pimpl.C (Dispatch): change function changeWordCase to
11405         changeCase as this operates now also on selections.
11406
11407 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
11408
11409         * lyxfunc.C (getStatus): support LFUN_MATH_MUTATE
11410
11411         * many files: send debug output to Debug::INFO instead of
11412         Debug::ANY.
11413
11414         * converter.C (View):
11415         (Convert):
11416         (Move): send debug output to Debug::FILES instead of console.
11417
11418 2001-06-26  The LyX Project  <lyx@rose.home.sad.it>
11419
11420         * lyxfunc.C (getStatus): use func_status
11421
11422         * func_status.h: new header, describing the results of
11423         LyXFunc::getStatus;
11424
11425         * lyxfunc.C (getStatus): add support for LFUN_MATH_VALIGN and
11426         LFUN_MATH_HALIGN.
11427
11428 2001-06-25  The LyX Project  <jug@sad.it>
11429
11430         * buffer.C (sgmlOpenTag):
11431         (sgmlCloseTag):
11432         (SimpleDocBookOnePar):  disable the depth spaces, for the moment.
11433
11434 2001-06-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11435
11436         * text2.C: remove some dead code
11437
11438         * tabular.C (GetCellInset): store the last cell checked (gotten)
11439
11440         * tabular.h: add the helper for the speedup
11441
11442         * lyxtext.h: remove some dead code
11443
11444 2001-06-26  The LyX Project  <Asger>
11445
11446         * paragraph.C: Change export to LaTeX of alignment to
11447         \begin{center} and family for better roundtrip work with reLyX.
11448
11449         * Tune the math drawing a bit.
11450
11451 2001-06-25  The LyX Project  <Asger>
11452
11453         * LColor.C (LColor): New color for math background. New color
11454         for buttons.
11455
11456 2001-06-25  The LyX Project  <jug@sad.it>
11457
11458         * lyxfunc.C (MenuNew): remove extra check for .lyx file
11459
11460         * lyxfunc.C (Open):
11461         * bufferlist.C (newFile): do not restrict to files ending with
11462         .lyx
11463
11464         * BufferView_pimpl.C (MenuInsertLyXFile):
11465
11466 2001-06-24  The LyX Project  <jug@sad.it>
11467
11468         * lyxlex_pimpl.C (compare_tags): use compare_ascii_no_case instead
11469         of compare_no_case
11470
11471 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11472
11473         * lyxtext.h: rename most methods to begin with a small char.
11474         Lots of changes because of this.
11475
11476         * paragraph.C (Paragraph): do not call fitToSize
11477         (erase): call Pimpl::erase
11478         (insertChar): call Pimpl::insertChar
11479         (insertInset): call Pipl::insertInset
11480         (breakParagraph): do not call fitToSize
11481         (breakParagraphConservative): do not call fitToSize
11482         (fitToSize): remove method
11483
11484         * buffer.C (parseSingleLyXformat2Token): do not call fitToSize
11485
11486 2001-06-24  The LyX Project  <Asger>
11487
11488         * Fix Qt compilation^2
11489
11490 2001-06-24  The LyX Project  <jug@sad.it>
11491
11492         * paragraph.[Ch] (outerHook): new method. mostly equivalent to
11493         depthHook(getDepth()-1).
11494
11495         * paragraph.h:
11496         * ParagraphParameters.h:
11497         * ParameterStruct.h: change type of depth to unsigned int ==
11498         depth_type. Many adaptations to other files before of that.
11499
11500 2001-06-24  The LyX Project  <Asger>
11501
11502         * Fix Qt compilation.
11503
11504 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11505
11506         * paragraph.h: renamed several methods to begin with small letter.
11507         several changes to many parts of the code because of this.
11508
11509 2001-06-23  The LyX Project  <jug@sad.it>
11510
11511         * text2.C (InsertStringAsLines): renamed from InsertStringA;
11512         rewritten to discard all double spaces when KeepEmpty is off
11513         (InsertStringAsParagraphs): renamed from InsertStringB; rewritten
11514         to only handle newlines but not fiddle with spaces and friends.
11515
11516         * lyxfunc.C (MenuNew): when doing 'new from template', use
11517         template_path as default directory
11518
11519 2001-06-23  The LyX Project  <Asger>
11520
11521         * Clean-up of header file includes all over
11522         * paragraph.h: Move some of the stuff into paragraph_pimpl.h
11523
11524 2001-06-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11525
11526         * paragraph.h: renamed from lyxparagraph.h
11527
11528 2001-06-23  Asger  <lyx@violet.home.sad.it>
11529
11530         * Buffer.h: Removed Buffer::resize
11531         * BufferList.h: Removed BufferList::resize
11532         * LyXView.h: Added LyXView::resize. This way, we will only reflow
11533         the document lazily when we change the width, or the font settings.
11534
11535 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
11536
11537         * lyxfunc.C: silently ignore empty dispatches from the minibuffer
11538
11539 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
11540
11541         * buffer.h: remove out of date comment
11542
11543 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
11544
11545         * lyxscreen.h:
11546         * screen.C: fix "theoretical" GC leak
11547
11548 2001-06-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11549
11550         * LaTeX.C (scanAuxFile):
11551         (deplog): remove trailing \r when reading stream (useful under
11552         win32)
11553
11554 2001-06-15  Angus Leeming  <a.leeming@ic.ac.uk>
11555
11556         * BufferView_pimpl.C (fitCursor): emit a signal updateParagraph.
11557         (resizeCurrentBuffer): have functions BufferView::theLockingInset()
11558         and BufferView::theLockingInset(Inset*), so should use them and not
11559         access bv_->text->the_locking_inset directly.
11560
11561         * lyxfunc.C (Dispatch): cosmetic name change of three signals.
11562
11563 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
11564
11565         * Makefile.am:
11566         * tex-defs.h: remove old unused file
11567
11568 2001-06-15  John Levon  <moz@compsoc.man.ac.uk>
11569
11570         * BufferView_pimpl.C: fix typo, remove minibuffer message
11571           when buffer has loaded
11572
11573 2001-06-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11574
11575         * lyxfunc.C (Dispatch): use stringstream
11576         (MenuNew): use stringstream
11577         (Open): use stringstream
11578
11579         * importer.C (Import): use stringstream
11580
11581         * bufferview_funcs.C (CurrentState): use stringstream
11582
11583         * LaTeX.C (run): use stringstream
11584
11585         * BufferView_pimpl.C (savePosition): use stringstream
11586         (restorePosition): use stringstream
11587         (MenuInsertLyXFile): use stringstream
11588
11589 2001-06-14  Angus Leeming  <a.leeming@ic.ac.uk>
11590
11591         * BufferView.C:
11592         * Bullet.C:
11593         * ColorHandler.C:
11594         * FontInfo.C:
11595         * FontLoader.C:
11596         * LColor.C:
11597         * LaTeXFeatures.C:
11598         * Painter.C:
11599         * gettext.C:
11600         * lyx_gui_misc.C:
11601         * lyxserver.C:
11602         * vspace.C: removed // -*- C++ -*- as first line.
11603
11604         * lyxfind.h:
11605         * version.h: added // -*- C++ -*- as first line.
11606
11607 2001-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11608
11609         * lyxfunc.C (getStatus): support LFUN_READ_ONLY_TOGGLE
11610
11611         * text2.C (SetSelectionOverString): do not test str[i]==0 for end
11612         of string
11613
11614 2001-06-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11615
11616         * buffer.C (parseSingleLyXformat2Token): fix compatability reading
11617         of floats.
11618
11619 2001-06-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11620
11621         * gettext.C: include LString.h even when --disable-nls is on.
11622
11623 2001-06-12  Angus Leeming  <a.leeming@ic.ac.uk>
11624
11625         * converter.h (Get): changed argument type from int to
11626         FormatList::size_type to avoid unnecessary conversion.
11627
11628         * bufferview_funcs.C (ToggleAndShow): check state of LyXText pointer
11629         before using it.
11630
11631 2001-06-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11632
11633         * gettext.h: include LString.h even when --disable-nls is on.
11634
11635 2001-06-07  Juergen Vigna  <jug@sad.it>
11636
11637         * text.C (BreakAgain): subst spaces with tabs.
11638
11639         * paragraph.C (deleteInsetsLyXText): set recursive on deleteLyXText.
11640         (resizeInsetsLyXText): set force on resizeLyXText.
11641
11642 2001-06-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11643
11644         * gettext.h (gettext_init):
11645         (locale_init): use a real definition instead of a macro
11646
11647 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
11648
11649         * Bufferview_pimpl.C:
11650         * LColor.h:
11651         * LColor.C: further lcolor tidies
11652
11653 2001-06-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11654
11655         * BufferView_pimpl.C (updateScrollbar): simplify.
11656
11657         * BufferView2.C: don't include insets/insetinfo.h, change
11658         prototype for insertInset and call the Pimpl version. let
11659         updateInset call Pimpl version.
11660
11661         * BufferView.h: move inset_slept to BufferView::Pimpl, move
11662         gotoInset to BufferView::Pimpl
11663
11664 2001-06-01  Juergen Vigna  <jug@sad.it>
11665
11666         * lyxfunc.C (Dispatch): LFUN_PREFIX don't call the update if we're
11667         inside a LockingInset (is the update needed at all?).
11668
11669 2001-05-31  Juergen Vigna  <jug@sad.it>
11670
11671         * BufferView_pimpl.C (Dispatch): we need a new instanze of cursor
11672         here not the old one otherwise how should we compare it afterwards
11673         if it's the same!
11674
11675 2001-06-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11676
11677         * lyxfont.C:
11678         * tabular.C:
11679         * tabular-old.C:
11680         * FontInfo.C: bring C functions into global namespace when
11681         necessary
11682
11683 2001-05-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11684
11685         * LString.h: make sure config.h has been loaded before LString.h.
11686
11687         * lyxlex_pimpl.C (EatLine): comment out annoying debug messages
11688         (one for each char read by EatLine!).
11689
11690         * lyx_main.C (init): constify lyxdir. Lowercase the name of some
11691         variables.
11692
11693 2001-06-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11694
11695         * paragraph.C (BreakParagraph): set the inset_owner in the new par
11696         to the same as the par we break from
11697
11698 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11699
11700         * commandtags.h: add LFUN_INSET_WIDE_FLOAT
11701
11702         * MenuBackend.C (expand): also create menu entries for wide
11703         versions of the floats.
11704
11705         * LyXAction.C (init): add entry for LFUN_INSET_WIDE_FLOAT
11706
11707         * BufferView_pimpl.C (Dispatch): implement LFUN_INSET_WIDE_FLOAT
11708
11709         * Makefile.am (lyx_DEPENDENCIES): adjust for change in
11710         frontends/Makefile.am
11711
11712         * text2.C: adjust
11713         * text.C: adjust
11714
11715
11716         * tabular.C (getTokenValue): add std::
11717
11718         * tabular-old.C (getTokenValue): add std::
11719         (getTokenValue): ditto
11720         (getTokenValue): ditto
11721
11722         * screen.C (ToggleSelection): adjust
11723
11724         * lyxtext.h: put selection cursors inside a Selection struct.
11725
11726         * lyxfunc.C (moveCursorUpdate): adjust
11727
11728         * lyxfont.C (latexWriteStartChanges): add std::
11729
11730         * lyxfind.C: adjust
11731
11732         * font.h: delete with(char const *, LyXFont const &)
11733
11734         * buffer.C (parseSingleLyXformat2Token): use contains instead of strstr
11735
11736         * FontInfo.C (getFontname): add std::
11737
11738         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
11739         (workAreaButtonPress): adjust
11740         (tripleClick): adjust
11741         (update): adjust
11742         (moveCursorUpdate): adjust
11743         (Dispatch): adjust
11744
11745         * BufferView2.C (gotoInset): adjust
11746
11747 2001-05-30  Juergen Vigna  <jug@sad.it>
11748
11749         * spellchecker.C (USE_ORIGINAL_MANAGER_FUNCS): as it seems only I use
11750         to check pspell I add this as default as I now have new pspell
11751         libraries and they seem to use this.
11752
11753 2001-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11754
11755         * text2.C (CutSelection): make the cursor valid before the call to
11756         ClearSelection.
11757
11758 2001-05-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11759
11760         * kbsequence.C (parse): de-uglify a bit the parsing code, which
11761         relied on 0 terminated strings and other horrors. Bug found due to
11762         the new assert in lyxstring!
11763
11764         * lyx_main.C (defaultKeyBindings): add bindings the cursor-related
11765         KP_ keys.
11766
11767 2001-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11768
11769         * lyx_main.C (defaultKeyBindings): move self-insert KP_ bindings
11770         to latinkeys.bind.
11771
11772         * lyxfunc.C (processKeySym): change method of getting to the
11773         self-insert char.
11774
11775         * BufferView(2).[Ch]: move hfill, protectedBlank, newline,
11776         menuSeparator, endOfSentenceDot, ldots, hypenationPoint and menuUndo
11777         * BufferView_pimpl.[Ch]: here as private methods.
11778
11779 2001-05-28  Juergen Vigna  <jug@sad.it>
11780
11781         * text.C (SetHeightOfRow): added the update() call again as it is
11782         needed to initialize inset dimensions!
11783
11784 2001-05-16  Juergen Vigna  <jug@sad.it>
11785
11786         * text2.C (SetCharFont): Add new function with BufferView * and
11787         bool toggleall parameters for setting insets internal fonts.
11788         (SetFont): Freeze the undo as we may change fonts in Insets and
11789         all this change should be inside only one Undo!
11790
11791         * bufferview_funcs.C (ToggleAndShow): fixed this functions for
11792         setting font's in insets as for them we have the SetFont function!
11793
11794 2001-05-15  Juergen Vigna  <jug@sad.it>
11795
11796         * text2.C (ClearSelection): to be sure we REALLY don't have any
11797         selection anymore!
11798
11799         * tabular.C (TeXCellPreamble): fixed the left border problem for
11800         multicolumn cells.
11801
11802 2001-05-27  Dekel Tsur  <dekelts@tau.ac.il>
11803
11804         * LaTeX.C (deplog): Make sure that the main .tex file is in the
11805         dependancy file
11806
11807 2001-05-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11808
11809         * lyx_main.C (defaultKeyBindings): set KP_enter to point at
11810         LFUN_BREAKPARAGRAPH.
11811
11812         * LyXAction.C (init): remove external name for LFUN_LAYOUTNO, set
11813         help test to "internal only", similar for LFUN_INSERT_URL
11814
11815         * BufferView_pimpl.C (Dispatch::LFUN_QUOTE): change it to to the insertcorrectQuote.
11816         (Dispatch::LFUN_SELFINSERT): fix to handle math greek,
11817         auto_region_delete and deadkeys.
11818
11819 2001-05-22  John Levon  <moz@compsoc.man.ac.uk>
11820
11821         * LColor.h:
11822         * LColor.C: remove some dead entries, tidy a little
11823
11824 2001-05-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11825
11826         * lyxfunc.C (processKeySym): comment the Escape handling, remove
11827         commented code.
11828         (Dispatch): implement LFUN_ESCAPE
11829
11830         * commandtags.h: add LFUN_ESCAPE
11831
11832         * LyXAction.C (init): add entry for LFUN_ESCAPE
11833
11834         * BufferView_pimpl.C (Dispatch): adjust for open_new_inset move.
11835         Remove commented code.
11836         (insertNote): moved here
11837         (open_new_inset): moved here
11838
11839         * BufferView[2].[Ch]: move insertNote and open_new_inset to
11840         BufferView_pimpl
11841
11842 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11843
11844         * kbmap.C (findbinding): clean it up and make it work correctly.
11845
11846         * lyx_main.C (init): do not pass argc and argv as parameters
11847
11848 2001-05-16  Ruurd Reitsma  <r.a.reitsma@wbmt.tudelft.nl>
11849
11850         * buffer.C: fix path for OS/2 & Win32
11851
11852         * lyx_gui.C:
11853         * lyx_main:
11854         * lyx_main.C: Added os:: class.
11855
11856         * os2_defines.h: update
11857
11858 2001-05-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11859
11860         * lyxfunc.[Ch] (processKeySym): return void. Handle unknown actions
11861         better by trying again with reduced state.
11862
11863 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11864
11865         * lyxrc.C (read): print error about invalid key sequence only when
11866         debugging (because not all latinX keysyms are known to some X
11867         servers)
11868
11869         * kbsequence.C (getiso): add a few std:: qualifiers
11870         (getiso): comment out extra return statement.
11871
11872 2001-05-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11873
11874         * BufferView_pimpl.C (Dispatch): comment out the old "default" key
11875         handling.
11876         (Dispatch): enhance the accent inset a bit. (not perfect)
11877
11878 2001-05-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11879
11880         * buffer.C (makeLaTeXFile): use stringstream on language_optons.
11881
11882 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11883
11884         * bufferlist.C (emergencyWrite): fix assert() call
11885
11886 2001-05-04  Kayvan A. Sylvan  <kayvan@sylvan.com>
11887
11888         * text.C (InsertChar): Added trivial patch to only send the "you
11889         can not do multiple spaces this way" message once during a
11890         session.
11891
11892 2001-05-08  Baruch Even  <baruch@lyx.org>
11893
11894         * Makefile.am: Changed order of libraries to get LyX to link properly
11895         with the gnome frontend.
11896
11897 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11898
11899         * LaTeXFeatures.h: add a std:: qualifier
11900
11901 2001-05-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11902
11903         * paragraph.C (String): use stringstream
11904
11905 2001-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11906
11907         * paragraph.C (writeFile): remove footflag arg
11908
11909         * buffer.C (makeLaTeXFile): use stringstream
11910         (latexParagraphs): remove footnot gurba
11911
11912         * LaTeXFeatures.C (getPackages): use stringstream
11913         (getMacros): likewise
11914         (getTClassPreamble): likewise
11915         (getFloatDefinitions): new method
11916
11917         * paragraph.C (writeFile): reindent
11918         (Erase): reindent
11919
11920         * WorkArea.h: revert the xpos + etc changes.
11921
11922         * CutAndPaste.C (SwitchLayoutsBetweenClasses): constify name and s
11923
11924         * lyxparagraph.[Ch]: add copy constructor, remove Clone
11925
11926         * CutAndPaste.C (copySelection): use LyXParagraph copy constructor
11927         (pasteSelection): likewise
11928         * text2.C (CreateUndo): likewise
11929
11930 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11931
11932         * minibuffer.C (peek_event): temporarily reduce the functionality
11933         of the minibuffer (to allow args on lfuns)
11934
11935         * commandtags.h: remove LFUN_LOA_INSERT, LFUN_LOF_INSERT,
11936         LFUN_LOT_INSERT. add LFUN_FLOAT_LIST
11937
11938         * buffer.C (readInset): add compability reading of old float
11939         lists, add reading of new style float list.
11940         (readInset): avoid reevaluation of inscmd.getCmdName()
11941         (getLists): reindent
11942
11943         * MenuBackend.C (MenuItem): implement parsing of
11944         md_floatlistinsert and md_floatinsert.
11945         (expand::LastFiles): move initalizaton of iterators out of loop,
11946         avoid reevaluation.
11947         (expand::Documents): introduce typdedef vector<string> Strings,
11948         and use it.
11949         (expand::ExportFormats): introduce typedef vector<Format const *>
11950         Formats, and use it.
11951         (expand): implement FloatListInsert and FloatInsert.
11952
11953         * LyXAction.C (init): remove entries for LFUN_LOA_INSERT,
11954         LFUN_LOA_VIEW, LFUN_LOF_INSERT, LFUN_LOFVIEW, LFUN_LOT_INSERT,
11955         LFUN_LOTVIEW. Add entry for LFUN_FLOAT_LIST
11956
11957         * BufferView_pimpl.C (Dispatch::LFUN_TOC_INSERT): remvoe the float
11958         handling.
11959         (Dispatch::LFUN_FLOAT_LIST): implement
11960
11961 2001-04-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
11962
11963         * LaTeX.C (run): Fix problem with --export code.
11964
11965 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
11966
11967         * BufferView.[Ch] (workarea): removed.
11968         (getClipboard) new method; wrapper for workarea()->getClipboard()
11969
11970         * ToolbarDefaults.C (read): removed final lex.next() command; it's a
11971         bug.
11972
11973         * WorkArea.h (width, height, xpos, ypos): These methods all
11974         returned the dimensions of the work_area sub-area of WorkArea,
11975         resulting in a position error if the WorkArea were resized. Now
11976         return the dimensions of the entire WorkArea.
11977
11978         * lyx_main.C (ReadUIFile): don't print out spurious warnings.
11979
11980 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11981
11982         * LaTeX.C (deplog): correct the syntax of regex reg1
11983
11984 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11985
11986         * undo.C: remove !NEW_INSETS cruft
11987
11988 2001-04-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11989
11990         * text2.C: remove !NEW_INSETS cruft
11991
11992         * text.C: remove !NEW_INSETS cruft
11993
11994         * tabular.C: remove !NEW_INSETS cruft
11995
11996         * spellchecker.C: remove !NEW_INSETS cruft
11997
11998         * lyxtext.h: remove !NEW_INSETS cruft
11999
12000         * lyxlex_pimpl.C: remove !NEW_INSETS cruft
12001
12002         * lyxfunc.C: remove !NEW_INSETS cruft
12003
12004         * lyxfind.C: remove !NEW_INSETS cruft
12005
12006         * lyx_cb.C: remove !NEW_INSETS cruft
12007
12008         * figureForm.C: remove  !NEW_INSETS cruft
12009
12010         * bufferview_funcs.[Ch]: remove !NEW_INSETS cruft
12011
12012         * buffer.[Ch]: remove !NEW_INSETS cruft
12013
12014         * ToolbarDefaults.C: remove !NEW_INSETS cruft
12015
12016         * CutAndPaste.C: remove !NEW_INSETS cruft
12017
12018         * BufferView_pimpl.C: remove !NEW_INSETS cruft
12019
12020         * BufferView2.C: remove !NEW_INSETS cruft
12021
12022         * BufferView.h: remove !NEW_INSETS cruft
12023
12024 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12025
12026         * Lsstream.h: include LString.h before the sstream headers to
12027         fix problem with gcc 2.95.3 and lyxstring
12028
12029 2001-05-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12030
12031         * lyx_main.C: add using directives when needed for C functions
12032         declared in std:: namespace.
12033
12034 2001-04-27  Juergen Vigna  <jug@sad.it>
12035
12036         * text.C (Fill): return 20 instead of 0 if paper_width < 0 (endless)
12037         (SetHeightOfRow): comment out the update call should not be needed!
12038
12039 2001-04-13  Juergen Vigna  <jug@sad.it>
12040
12041         * tabular.C (GetAdditionalHeight): changed parameter from cell to row.
12042         (LyXTabular): tried to minimize operator= operations (and realized
12043         hopfully Lars wish).
12044
12045 2001-04-27  Juergen Vigna  <jug@sad.it>
12046
12047         * spellchecker.C (sc_check_word): fixed Assert to lyx::Assert.
12048
12049 2001-04-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12050
12051         * lyxfunc.C (Dispatch): hack to make listof algorithm work
12052
12053         * buffer.C (readInset): hack to make listof algorithm work
12054
12055         * BufferView_pimpl.C: hack to make listof algorithm work
12056
12057 2001-04-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12058
12059         * LyXAction.C: removed all !NEW_INSETS cruft
12060         (init): moved lfun_item in method
12061
12062         * lyxparagraph.[Ch]: removed all !NEW_INSETS cruft
12063
12064 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
12065
12066         * BufferView2.C (theLockingInset): white space.
12067
12068 2001-04-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12069
12070         * minibuffer.C: include <iostream>
12071
12072         * BufferView_pimpl.C: implement LFUN_TRANSPOSE_CHARS
12073
12074         * LyXAction.C (init): add LFUN_TRANSPOSE_CHARS
12075
12076         * commandtags.h: add LFUN_TRANSPOSE_CHARS
12077
12078         * text.[Ch] (TransposeChars): new method
12079
12080 2001-04-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12081
12082         * call message directly through LyXView instead of through LyXFunc
12083         * BufferView2.C: adjust
12084         * BufferView_pimpl.C: adjust
12085         * FontLoader.C: adjust
12086         * buffer.C: adjust
12087         * bufferview_funcs.C: adjust
12088         * converter.C: adjust
12089         * figureForm.C: adjust
12090         * importer.C: adjust
12091         * lyx_cb.C: adjust
12092         * lyx_gui_misc.C: adjust
12093         * lyxfunc.C: adjust
12094         * lyxvc.C: adjust
12095         * text2.C: adjust
12096         + more files in subdirs
12097
12098         * lyxparagraph.h (size): move up int file
12099         (GetLayout): ditto
12100
12101         * adjust all uses of Assert to lyx::Assert.
12102
12103         * BufferView2.C (ChangeCitationsIfUnique): adjust for
12104         lyxfunctional in namespace lyx
12105         * layout.C (hasLayout): ditto
12106         (GetLayout): ditto
12107         (GetLayout): ditto
12108         (delete_layout): ditto
12109         (NumberOfClass): ditto
12110         * converter.C (GetFormat): ditto
12111         (GetNumber): ditto
12112         (Add): ditto
12113         (Delete): ditto
12114         (SetViewer): ditto
12115         * bufferlist.C (getFileNames): ditto
12116         (emergencyWriteAll): ditto
12117         (exists): ditto
12118         (getBuffer): ditto
12119         * MenuBackend.C (hasSubmenu): ditto
12120         (hasMenu): ditto
12121         (getMenu): ditto
12122         * BufferView_pimpl.C (getInsetByCode): ditto
12123
12124 2001-04-18  Juergen Vigna  <jug@sad.it>
12125
12126         * vspace.C (asLatexString): fixed the 100% problem.
12127
12128 2001-04-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12129
12130         * lyxfunc.C (Dispatch):
12131         * minibuffer.C:
12132         * minibuffer.h: add a few std:: qualifiers
12133
12134 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12135
12136         * minibuffer.[Ch]: reimplement so that commands is initiated and
12137         run from lyxfunc, simplified som handling, and made the completion
12138         and history code for complete. wip.
12139
12140         * lyxfunc.C (processKeySym): call message
12141         (miniDispatch): new temporary method
12142         (LFUN_EXEC_COMMAND): reimplement for new minibuffer
12143         (LFUN_MESSAGE): implement
12144         (LFUN_MESSAGE_PUSH): implement
12145         (LFUN_MESSAGE_POP): implement
12146         (initMiniBuffer): the initial/defualt minibuffer message.
12147
12148         * lyxfont.[Ch]: inline some more getters
12149
12150         * lyx_gui_misc.C (WriteAlert): use LFUN_MESSAGE
12151
12152         * lyx_gui_misc.[Ch] (WriteStatus): remove method
12153
12154         * lyx_cb.[Ch] (ShowMessage): remove delay arg, use LFUN_MESSAGE
12155         (AutoSave): use LFUN_MESSAGE
12156         (Reconfigure): ditto
12157
12158         * importer.C (Import): constify som local vars, use LFUN_MESSAGE
12159
12160         * figureForm.C: use LFUN_MESSAGE
12161
12162         * converter.C (runLaTeX): use LFUN_MESSAGE
12163
12164         * bufferview_funcs.C: use LFUN_MESSAGE
12165         (Melt): ditto
12166         (changeDepth): ditto
12167
12168         * bufferparams.h: use boost::
12169
12170         * bufferlist.h: inherit privately from noncopyable
12171
12172         * bufferlist.C (loadLyXFile): remove some commented code.
12173
12174         * buffer.C (runChktex): use LFUN_MESSAGE
12175
12176         * ShareContainer.h: inherit privately from noncopyable
12177
12178         * ParagraphParameters.[hC] (depth): inline it.
12179
12180         * LyXView.[Ch] (LyXView): connect the minibuffer signals to lyxfunc
12181         methods.
12182         (message): new method
12183         (messagePush): ditto
12184         (messagePop): ditto
12185         (show): init minibuffer
12186         (showState): direct call
12187
12188         * LaTeX.[Ch]: inherit privately from noncopyable
12189         (run): change second arg to LyXFunc*, use LFUN_MESSAGE
12190         instead of WriteStatus.
12191
12192         * FontLoader.C (doLoad): use LFUN_MESSAGE_PUSH and LFUN_MESSAGE_POP
12193
12194         * BufferView_pimpl.C (buffer): don't init minibuffer
12195         (workAreaButtonPress): use LFUN_MESSAGE
12196         (workAreaButtonRelease): ditto
12197         (savePosition): ditto
12198         (restorePosition): ditto
12199         (MenuInsertLyXFile): ditto
12200         (workAreaExpose): don't init minibuffer
12201         (update): remove commented code, simplify
12202
12203         * BufferView2.C (openStuff): use LFUN_MESSAGE
12204         (toggleFloat): ditto
12205         (menuUndo): ditto
12206         (menuRedo): ditto
12207         (copyEnvironment): ditto
12208         (pasteEnvironment): ditto
12209         (copy): ditto
12210         (cut): ditto
12211         (paste): ditto
12212         (gotoInset): ditto
12213         (updateInset): remove some commented code
12214
12215         * lastfiles.h: inherit privately from noncopyable
12216         * layout.h: ditto
12217         * lyx_gui.h: ditto
12218         * lyx_main.h: ditto
12219         * lyxlex.h: ditto
12220         * lyxlex_pimpl.h: ditto
12221
12222         * commandtags.h: comment out LFUN_FOOTMELT, LFUN_MARGINMELT,
12223         LFUN_FLOATSOPERATE, LFUN_MELT, add LFUN_MESSAGE,
12224         LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
12225
12226         * LyXAction.h: inherit privately from noncopyable, add methods
12227         func_begin, func_end, returning iterators to the func map.
12228
12229         * LyXAction.C (init): comment out LFUN_FLOATSOPERATE, LFUN_MELT,
12230         add entries for LFUN_MESSAGE, LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
12231         (func_begin): new method
12232         (func_end): new method
12233
12234         * CutAndPaste.C (cutSelection): split into two versons (NEW_INSETS
12235         and not)
12236         (copySelection): ditto
12237         (pasteSelection): ditto
12238
12239         * BufferView.C: whitespace change
12240         * BufferView.h: inherit privately from noncopyable
12241
12242 2001-04-16  Allan Rae  <rae@lyx.org>
12243
12244         * tabular-old.C (l_getline):
12245         * spellchecker.C (sc_check_word):
12246         * lyxfunc.C (Dispatch): #warning triggers an error on Sun CC 6.0 as
12247         an unrecognised preprocessor directive.  So ensure they're wrapped.
12248
12249 2001-04-14  Dekel Tsur  <dekelts@tau.ac.il>
12250
12251         * src/exporter.C (Export): Give an error message when path to file
12252         contains spaces.
12253
12254 2001-04-12  Dekel Tsur  <dekelts@tau.ac.il>
12255
12256         * LaTeX.C (deplog): Always check that foundfile exists.
12257
12258 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12259
12260         * lyx_main.h:
12261         * lyx_main.C (ReadLanguagesFile): fix weird typo in method name
12262
12263 2001-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12264
12265         * tabular.[Ch] (getLabelList): implement new method
12266
12267         * minibuffer.h: comment ouf setTiimer
12268
12269         * minibuffer.C (ExecutingCB): constify res
12270         (peek_event): constify s
12271         (Set): constify ntext
12272         (Init): constify nicename
12273
12274         * BufferView2.C (updateInset): comment out Minibuffer::setTimer
12275
12276         * BufferView_pimpl.C (update): comment out Minibuffer::setTimer
12277         (savePosition): use two params to Minibuffer::Set
12278         (restorePosition): ditto
12279
12280 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12281
12282         * lyx_main.C: include language.h
12283
12284         * Makefile.am (lyx_main.o): add language.h
12285
12286 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12287
12288         * exporter.C:
12289         * paragraph.C:
12290         * screen.C:
12291         * tabular.C:
12292         * CutAndPaste.C: include gettext.h
12293
12294         * lyxfont.h: remove old hack with ON and OFF.
12295
12296         * lyxparagraph.h:
12297         * lyxfont.h: do not include language.h...
12298
12299         * BufferView2.C:
12300         * LaTeXFeatures.C:
12301         * Painter.C:
12302         * bufferview_funcs.C:
12303         * font.C:
12304         * lyxfont.C:
12305         * text.C:
12306         * text2.C:
12307         * trans_mgr.C:
12308         * paragraph.C: ... but do it here instead
12309
12310 2001-04-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12311
12312         * text2.C (SetLayout): split in NEW_INSETS and non NEW_INSETS version
12313
12314         * tabular.C: small reformat
12315
12316         * paragraph.C (GetFontSettings): split in NEW_INSETS and non
12317         NEW_INSETS version
12318         (GetChar): ditto
12319         (BreakParagraph): ditto
12320         (SetOnlyLayout): ditto
12321         (SetLayout): ditto
12322
12323         * lyxparagraph.h: add definitions for SetLayout and SetOnlyLayout
12324         with one arg less.
12325
12326         * lastfiles.C: removed most using decl, add std:: where needed
12327
12328         * buffer.C: ws changes
12329
12330         * MenuBackend.C (class compare_format): put into anon namespace
12331         (expand): constify label, names, action, action2
12332         (expand):
12333
12334         * text.C (SingleWidth): constify font
12335         (IsBoundary): constify rtl2
12336         (GetVisibleRow): constify ww
12337
12338         * LaTeX.C (deplog): constify logfile
12339
12340         * BufferView_pimpl.C (checkInsetHit): constify width, inset_x,
12341         start_x, end_x
12342         (workAreaExpose): constify widthChange, heightChange
12343
12344         * lyxrow.C (par): moved
12345         (height): moved
12346         (next): moved
12347         * lyxrow.h: as inlines here
12348
12349         * lyxfont.h (shape): moved from lyxfont.C
12350         (emph): moved from lyxfont.C
12351
12352         * lyxfont.C (LyXFont): use initialization list for all
12353         constructors
12354         (shape): move to lyxfont.h as inline
12355         (emph): move to lyxfont.h as inline
12356
12357
12358 2001-04-04  Juergen Vigna  <jug@sad.it>
12359
12360         * vspace.C: had to include stdio.h for use of sscanf
12361
12362 2001-04-03  Angus Leeming  <a.leeming@ic.ac.uk>
12363
12364         * BufferView.h:
12365         * BufferView_pimpl.h: remove xforms cruft. Both classes are
12366         independent of xforms.
12367
12368 2001-04-02  Juergen Vigna  <jug@sad.it>
12369
12370         * spellchecker.C: fixed namespace placing!
12371
12372 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
12373
12374         * lyxfunc.C (Dispatch): prevent crash in LFUN_GOTO_PARAGRAPH when
12375         the LyXParagraph * is 0.
12376
12377 2001-03-29  Juergen Vigna  <jug@sad.it>
12378
12379         * vspace.C: added support for %, c%, p%, l%.
12380         (stringFromUnit): added helper function.
12381         (asLatexString): changed to give right results for the %-values.
12382
12383         * buffer.C: convert the widthp in a width%.
12384
12385 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
12386
12387         * Makefile.am: removed form1.[Ch], lyx.[Ch] and added figure_form.[Ch],
12388         figureForm.[Ch].
12389
12390         * figureForm.[Ch]: stripped the FD_from_figure manipulation
12391         code out of lux_cb.[Ch], ready for its (imminent?) removal.
12392
12393         * lyx_cb.[Ch]: see above.
12394
12395         * figure_form.[Ch]: fdesign generated code, combining lyx.[Ch] and
12396         form1.[Ch].
12397
12398         * form1.[Ch]:
12399         * lyx.[Ch]: replaced by figure_form.[Ch].
12400
12401         * lyx_gui.C:
12402         * lyx_gui_misc.C:
12403         * lyxfunc.C: changed headers associated with above changes.
12404
12405 2001-03-27  Juergen Vigna  <jug@sad.it>
12406
12407         * BufferView_pimpl.C: set the temporary cursor right!
12408
12409 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
12410
12411         * BufferView_pimpl.C (Dispatch): corrected spelling givven -> given.
12412
12413 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
12414
12415         * LString.h: removed "using std::getline"!
12416
12417         * BufferView_pimpl.C (Dispatch): changes due to changes in
12418         InsetInclude::Params.
12419
12420         * buffer.C (tag_name): removed redundant break statements as they were
12421         producing lots of warnings with my compiler.
12422
12423 2001-03-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12424
12425         * LString.h: add "using std::getline" when using the real <string>.
12426
12427 2001-03-23  José Abílio Matos  <jamatos@fep.up.pt>
12428
12429         * buffer.C: removed bitset usage.
12430         PAR_TAG moved to an anonymous name space.
12431         (tag_name): new funtion, also in the anonymous namespace.
12432         (SimpleLinuxDocOnePar): replaced all the references to bitset by PAR_TAG.
12433         (makeDocBookFile): clean code. Completed transition from string arrays
12434         to string vectors.
12435         (SimpleDocBookOnePar): code clean.
12436
12437 2001-03-23  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12438
12439         * tabular.C: add some comments.
12440
12441 2001-03-22  Juergen Vigna  <jug@sad.it>
12442
12443         * buffer.C (parseSingleLyXformat2Token): redone the minipage
12444         compatibility read a bit and fixed bug with minipage in different
12445         depth.
12446
12447 2001-03-21  José Abílio Matos  <jamatos@fep.up.pt>
12448
12449         * buffer.C (pop_tag): removed.
12450         (push_tag): removed.
12451         (makeLinuxDocFile): cleaner C++ code, declarations near usage point,
12452         array replaced with vector. Added support for CDATA sections.
12453         (SimpleLinuxDocOnePar): ditto. Paragraph tags are correctly handled,
12454         at any nest level.
12455         (makeDocBookFile): XML conformant declaration of CDATA section,
12456         fixed bug related to <emphasis> in the first paragraph char.
12457         (sgmlOpenTag): exclude empty tags.
12458         (sgmlCloseTag): ditto.
12459
12460         * buffer.h (pop_tag): removed.
12461         (push_tag): removed.
12462
12463 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
12464
12465         * language.h (Languages): added size_type and size().
12466
12467 2001-03-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12468
12469         * buffer.C (parseSingleLyXformat2Token): Try to give a bit better
12470         response on compability reading of minipages. One probliem is that
12471         the old usage of minipages was «flertydig»
12472
12473         * several files here and in subdirs: don't use static at file
12474         scope use anon namespaces instead.
12475
12476 2001-03-19  Kayvan A. Sylvan <kayvan@sylvan.com>
12477
12478         * paragraph.C (TeXEnvironment): Added \n to \end{environment}
12479         LaTeX output. This is necessary for Literate document
12480         processing.
12481
12482 2001-03-17  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12483
12484         * buffer.C: insert hfill when needed.
12485
12486         * tabular.C (l_getline): use string::erase, small whitespace change.
12487
12488         * BufferView_pimpl.C: try the anon namespace.
12489         * WorkArea.C: ditto
12490
12491 2001-03-16  Juergen Vigna  <jug@sad.it>
12492
12493         * BufferView_pimpl.C (workAreaButtonRelease): return only on button==2
12494         otherwise it won't open options-dialogs.
12495
12496         * buffer.C: honor pextraWidth(p) on converting minipages.
12497
12498         * tabular.C (l_getline): changed the functions to strip trailing \r.
12499
12500 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
12501
12502         * BufferView_pimpl.C:
12503         * minibuffer..C: added "using SigC::slot" declaration.
12504
12505 2001-03-16  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12506
12507         * lyxlex_pimpl.h: noncopyable is in namespace boost.
12508
12509         * text2.C: ditto
12510
12511         * text.C: ditto
12512
12513         * paragraph.C: ditto
12514
12515         * lyxtext.h: NO_PEXTRA
12516
12517         * buffer.C: NO_PEXTRA_REALLY, NO_PEXTRA
12518
12519         * ParagraphParameters.C (clear): NO_PEXTRA_REALLY
12520         * ParameterStruct.h: ditto
12521         * ParagraphParameters.h: ditto
12522         * lyxparagraph.h: ditto
12523
12524 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12525
12526         * buffer.C: add compability for minipage alignment.
12527         (latexParagraphs): remove unwanted pextra check.
12528
12529         * several files: remove CXX_WORKING_NAMESPACES
12530
12531         * buffer.C (pop_tag): tie is in namespace boost
12532
12533         * BufferView.h: noncopyable is in namespace boost
12534         * lyxlex.h: ditto
12535         * lyx_main.h: ditto
12536         * lyx_gui.h: ditto
12537         * layout.h: ditto
12538         * lastfiles.h: ditto
12539         * bufferlist.h: ditto
12540         * ShareContainer.h: ditto
12541         * LyXView.h: ditto
12542         * LyXAction.h: ditto
12543         * LaTeX.h: ditto
12544
12545 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
12546
12547         * Merging changes from BRANCH_MVC back into HEAD.
12548
12549         * Makefile.am: added controllers/libcontrollers.la to lyx_DEPENDENCIES
12550
12551 2001-03-15  John Levon  <moz@compsoc.man.ac.uk>
12552
12553         * BufferView_pimpl.C: change from intl.C
12554
12555         * combox.h:
12556         * combox.C:
12557         * Makefile.am: move combox.*
12558
12559         * form1.h:
12560         * form1.C:
12561         * lyx_gui.C:
12562         * intl.h:
12563         * intl.C: remove dialog (covered by prefs)
12564
12565 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
12566
12567         * lyxfunc.C (Dispatch): removed redundant break statement.
12568
12569 2001-03-14  Juergen Vigna  <jug@sad.it>
12570
12571         * tabular.C (l_getline): pay attention on \r\n (from Windows-files)
12572
12573 2001-03-14  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12574
12575         * buffer.C: add hack to fix compability reading of minipages.
12576
12577 2001-03-13  Dekel Tsur  <dekelts@tau.ac.il>
12578
12579         * buffer.C (getLists): Cleanup.
12580
12581 2001-03-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12582
12583         * lyxfont.C (update): don't honor toggleall on font size.
12584
12585 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
12586
12587         * bmtable.c:
12588         * bmtable.h:
12589         * Makefile.am: moved to frontends/xforms/
12590
12591         * lyx_gui_misc.C:
12592         * lyxfunc.C:
12593         * BufferView_pimpl.C: changes for moved mathpanel
12594
12595 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
12596
12597         * gettext.h: fix gettext_init() in --disable-nls
12598
12599 2001-03-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12600
12601         * LaTeXFeatures.C (getMacros): add a .c_str() when using sstream.
12602
12603 2001-03-09  John Levon  <moz@compsoc.man.ac.uk>
12604
12605         * lyx.C:
12606         * lyx.h: strip external form
12607
12608 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
12609
12610         * BufferView_pimpl.C: add comment, destroySplash()
12611
12612 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
12613
12614         * BufferView_pimpl.C:
12615         * LyXAction.C:
12616         * buffer.C:
12617         * commandtags.h:
12618         * lyxfunc.C: use re-worked insetinclude
12619
12620 2001-03-12  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12621
12622         * buffer.C: add using std::stringstream.
12623
12624         * lyx_cb.C: readd using std::ios.
12625
12626         * buffer.C: add using std::map.
12627
12628         * BufferView_pimpl.C: add using std::vector.
12629
12630         * ShareContainer.h: add std:: to swap.
12631
12632         * buffer.h: add some typedefs
12633         * buffer.C (getLists): use them
12634         (getLists): renamed from getTocList.
12635         add a counter for the different float types and use it in the
12636         generated string.
12637         (getLists): use the same counter for the NEW_INSETS and the "non"
12638         NEW_INSETS
12639
12640         * lyx_cb.h: remove unused items, includes, using etc.
12641
12642         * ShareContainer.h: remove some commented code, add more comments
12643         and "documentation".
12644
12645 2001-03-11  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12646
12647         * buffer.C (getTocList): make the list also when NEW_INSETS is
12648         defined.
12649
12650         * buffer.h: remove TocType
12651
12652         * buffer.C (getTocList): change to return a map<string,
12653         vector<TocItem> >, implement for dynamic number of list.
12654
12655         * CutAndPaste.[Ch] (checkPastePossible): remove unused arg
12656         * text2.C (PasteSelection): adjust
12657         * CutAndPaste.C (pasteSelection): adjust
12658
12659         * FloatList.C (FloatList): update from the new_insets branch.
12660         * Floating.[Ch]: ditto
12661         * LaTeXFeatures.C: ditto
12662         * buffer.C: ditto
12663         * lyxlex_pimpl.C: ditto
12664
12665         * paragraph.C (Last): remove when NEW_INSETS is defined.
12666
12667         * other file: changes because of the above.
12668
12669 2001-03-09  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12670
12671         * lyxparagraph.h: rename next to next_, previous to previous_,
12672         make them private for NEW_INSETS. Rename Next() to next(),
12673         Previous() to previous().
12674
12675         * other files: changes because of the above.
12676
12677 2001-03-08  Dekel Tsur  <dekelts@tau.ac.il>
12678
12679         * BufferView.h:
12680         * lyxparagraph.h: Add '#include "LString.h"' to fix compilation
12681         problem.
12682
12683 2001-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12684
12685         * main.C (main): pass lyx_localedir to gettext_init().
12686
12687         * gettext.h: remove locale_init and gettext_init macros
12688
12689         * gettext.C (locale_init): new function
12690         (gettext_init): new function
12691
12692         * lyx_gui.C (LyXGUI): use locale_init() instead of explicit
12693         setlocale().
12694
12695 2001-03-07  Edwin Leuven  <leuven@fee.uva.nl>
12696
12697         * Moved credits to frontends:
12698         * credits.[Ch]: removed
12699         * credits_form.[Ch]: removed
12700         * lyx_gui_misc.C: remove credits stuff
12701         * Makefile.am:
12702
12703 2001-03-07  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12704
12705         * lyx_main.C: make toplevel_keymap a boost::scoped_ptr.
12706
12707         * kbmap.[Ch]: make kb_key::table a boost::shared_ptr, remove
12708         unneeded destructor.
12709
12710         * intl.[Ch] (Intl): free the fd_form_keymap, make the fd_form_keymap
12711         a standalone pointer again.
12712
12713         * ColorHandler.[Ch]: make lyxColorHandler a boost::scoped_ptr
12714
12715 2001-03-06  John Levon  <moz@compsoc.man.ac.uk>
12716
12717         * Makefile.am:
12718         * filedlg.h:
12719         * filedlg.C:
12720         * LyXAction.C:
12721         * ToolbarDefaults.C:
12722         * bufferlist.C:
12723         * commandtags.h:
12724         * form1.C:
12725         * form1.h:
12726         * lyx_cb.C:
12727         * lyx_cb.h:
12728         * lyxfunc.h:
12729         * lyxfunc.C:
12730         * BufferView_pimpl.C: use new file dialog in GUII
12731
12732         * lyx_cb.h:
12733         * lyx_cb.C: remove LayoutsCB to Toolbar
12734
12735 2001-03-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12736
12737         * ShareContainer.h (get): add std:: qualifier
12738
12739 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12740
12741         * ShareContainer.h: define a proper ShareContainer::value_type
12742         type (and use typename to please compaq cxx)
12743
12744 2001-03-06  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12745
12746         * lyxparagraph.h: move serveral local vars to
12747         ParameterStruct/ParagraphParameters., use ShareContainer in
12748         FontTable., make vars in FontTable private and add getter and
12749         setter.
12750
12751         * paragraph.C: changes because of the above.
12752
12753         * lyxfont.h: remove copy constructor and copy assignment. (the
12754         default ones is ok), move number inside FontBits. move inlines to
12755         lyxfont.C
12756
12757         * lyxfont.C: add number to initializaton of statics, move several
12758         inlines here. constify several local vars. some whitespace
12759         cleanup. Dont hide outerscope variables.
12760
12761         * Spacing.h: add two new constructors to match the set methods.
12762
12763         * ShareContainer.h: new file, will perhaps be moved to support
12764
12765         * ParameterStruct.h: new file
12766
12767         * ParagraphParameters.h: new file
12768
12769         * ParagraphParameters.C: new file
12770
12771         * Makefile.am (lyx_SOURCES): add ParagraphParameters.C,
12772         ParagraphParameters.h, ParameterStruct.h and ShareContainer.h
12773
12774         * BufferView_pimpl.C: ParagraphParameter changes.
12775         * buffer.C: Likewise.
12776         * bufferview_funcs.C: Likewise.
12777         * text.C: Likewise.
12778         * text2.C: Likewise.
12779
12780 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12781
12782         * lyxfind.C (LyXReplace): do not redefine default argument in
12783         implementation.
12784         (IsStringInText): ditto
12785         (SearchForward): ditto
12786         (SearchBackward): ditto
12787
12788 2001-03-06  Juergen Vigna  <jug@sad.it>
12789
12790         * lyxfind.C (IsStringInText): put parentes around expressions.
12791
12792 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
12793
12794         * lyxfind.[Ch]: find stuff moved out of text2.C/lyxtext.h
12795
12796 2001-02-23  John Levon  <moz@compsoc.man.ac.uk>
12797
12798         * lyx_main.C: add ISO_Left_Tab as bind synonym for Tab
12799
12800         * stl_string_fwd.h: add comment
12801
12802         * lyx_gui_misc.C: killed ALWAYS_CLOSE_MATH_PANELS
12803
12804         * tabular.h:
12805         * tabular.C: remove unused DocBook methods
12806
12807         * intl.C:
12808         * language.C:
12809         * paragraph.C:
12810         * buffer.C:
12811         killed DO_USE_DEFAULT_LANGUAGE
12812
12813 2001-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12814
12815         * lyx_gui.C: do not include language.h.
12816
12817         * bufferview_funcs.C (ToggleAndShow): do not provide optional
12818         arguments in function implementation.
12819
12820 2001-02-28  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12821
12822         * BufferView_pimpl.C: add <ctime>
12823
12824 2001-02-27  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12825
12826         * BufferView_pimpl.C: add using std::find_if
12827
12828 2001-02-27  José Matos  <jamatos@fep.up.pt>
12829
12830         * LaTeXFeatures.C (getIncludedFiles): call to BasePath replaced
12831         by OnlyPath.
12832
12833 2001-02-11  José Matos  <jamatos@fep.up.pt>
12834
12835         * buffer.C (makeDocBookFile): command styles now have a parameter as
12836         "title" by default.
12837
12838 2001-02-23  Edwin Leuven <leuven@fee.uva.nl>
12839
12840         * layout_forms.[Ch]: removed
12841         * lyx_cb.[Ch]: out character
12842         * lyx_gui.C: out character
12843         * lyx_gui_misc.C: out character
12844         * bufferview_funcs.C: : out character,
12845         added toggleall as parameter in ToggleAndShow
12846
12847 2001-02-26  Dekel Tsur  <dekelts@tau.ac.il>
12848
12849         * lyxfunc.C (getStatus): Fix the LFUN_EXPORT case.
12850
12851         * text2.C (SetCurrentFont): Disable number property at boundary.
12852
12853 2001-02-26  Juergen Vigna  <jug@sad.it>
12854
12855         * lyxfunc.C (getStatus): added a string argument override function so
12856         that this is correctly called from LyXFunc::Dispatch if it contains a
12857         do_not_use_argument which is used!
12858         (Dispatch): added check for "custom" export and call appropriate func.
12859
12860 2001-02-23  Dekel Tsur  <dekelts@tau.ac.il>
12861
12862         * lyxrc.C: Add language_command_local, language_use_babel and
12863         language_global_options.
12864
12865         * lyxfont.C (latexWriteStartChanges): Use language_command_local.
12866
12867         * buffer.C (makeLaTeXFile): Use language_use_babel and
12868         language_global_options.
12869
12870 2001-02-23  Juergen Vigna  <jug@sad.it>
12871
12872         * lyxfunc.C (Dispatch): removed the whole part of the switch statement
12873         which works with LyXText and putted it inside BufferView. Here now we
12874         only call for that part the BufferView::Dispatch() function.
12875
12876         * BufferView.C (Dispatch): added.
12877
12878         * BufferView_pimpl.C (Dispatch): added! Here are now all dispatch
12879         functions which needs to use a LyXText over from LyXFunc.
12880         (MenuInsertLyXFile): added
12881         (getInsetByCode): added
12882         (moveCursorUpdate): added
12883         (static TEXT): added
12884
12885 2001-02-22  Juergen Vigna  <jug@sad.it>
12886
12887         * BufferView_pimpl.C (update): call a status update to see if LyXText
12888         needs it.
12889
12890 2001-02-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
12891
12892         * vc-backend.C (revert): implement for CVS
12893         (getLog): implement for CVS
12894
12895 2001-02-20  Juergen Vigna  <jug@sad.it>
12896
12897         * text2.C (ClearSelection): added BufferView param for inset_owner call
12898
12899         * lyxfunc.C (TEXT): added this function and use it instead of
12900         directly owner->view()-text of getLyXText().
12901
12902 2001-02-20  Edwin Leuven <leuven@fee.uva.nl>
12903
12904         * src/layout_forms.C: out preamble
12905         * src/layout_forms.h: out preamble
12906         * src/lyx_cb.C: out preamble
12907         * src/lyx_cb.h: out preamble
12908         * src/lyx_gui.C: out preamble
12909         * src/lyx_gui_misc.C: out preamble
12910         * src/lyxfunc.C: connect with guii preamble
12911
12912 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
12913
12914         * src/buffer.h: tiny clean-ups to allow compilation with DEC cxx.
12915
12916 2001-02-17  Dekel Tsur  <dekelts@tau.ac.il>
12917
12918         * LaTeX.C (run): Do not use 'scanres & RERUN' when deciding
12919         whether to run bibtex.
12920
12921 2001-02-16  Dekel Tsur  <dekelts@tau.ac.il>
12922
12923         * Makefile.am (lyx_SOURCES): Remove BackStack.h
12924
12925 2001-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
12926
12927         * Makefile.am (lyx_SOURCES): removed bibforms.h
12928
12929         * vspace.h: doxygen
12930
12931         * text.C (GetVisibleRow): make several local vars const
12932
12933         * tabular.C: small cleanup.
12934
12935         * lyxserver.C (callback): use compare instead of strncmp
12936
12937         * lyxparagraph.h: remove all code dep. on HAVE_ROPE, move inclass
12938         inlines to after class or to paragraph.C
12939
12940         * lyxfont.h: remove friend operator!=
12941
12942         * converter.h: move friend bool operator< to non friend and after
12943         class def.
12944
12945         * combox.h: small cleanup
12946
12947         * buffer.h: doxygen, remove unused constructor, move inclas inlies
12948         to inlines after class def.
12949
12950         * buffer.C (pop_tag): use string operations instead of strcmp
12951
12952         * bmtable.c: doxygen, small cleanup
12953
12954         * LaTeX.h: remove friend operator==
12955
12956 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
12957
12958         * screen.C:
12959         * lyxrc.[Ch]:
12960         * lyxfunc.C:
12961         * lyxfont.[Ch]:
12962         * lyx_cb.C:
12963         * intl.[Ch]:
12964         * commandtags.h:
12965         * buffer.C:
12966         * WorkArea.[Ch]:
12967         * LyXAction.C:
12968         * BufferView_pimpl.C:
12969         * BufferView.[Ch]: remove cruft
12970
12971 2001-02-14  Juergen Vigna  <jug@sad.it>
12972
12973         * lyxfunc.C: removed #if 0 unused code
12974
12975         * lyxfunc.C (Dispatch): make LFUN_QUOTE work for InsetText.
12976
12977         * BufferView_pimpl.C (update): set updatestatus of inset if needed.
12978
12979         * text2.C (SetSelection): added a BufferView * parameter
12980
12981 2001-02-13  Juergen Vigna  <jug@sad.it>
12982
12983         * lyxfunc.C (Dispatch): fixed protected blank problem.
12984         * BufferView2.C (protectedBlank): added LyxText * parameter.
12985
12986         * tabular.C (AppendRow): forgot to set row_info of newly added row.
12987         (AppendColumn): same as above for column_info.
12988
12989         * lyxfunc.C (Dispatch): supported some more functions in InsetText.
12990         (moveCursorUpdate): use a LyXText param for support of InsetText.
12991
12992         * BufferView_pimpl.C (doubleClick): added support for InsetText.
12993         (tripleClick): ditto
12994
12995         * lyxfunc.C (LFUN_APPENDIX): changed to use "text" pointer.
12996
12997         * BufferView_pimpl.C (update): added LyXText param to honor insets.
12998
12999         * bufferview_funcs.C (ToggleAndShow): fixed for text in insets.
13000
13001         * text2.C (SetSelection): set correct update status if inset_owner
13002         (ToggleFree): ditto
13003
13004 2001-02-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
13005
13006         * tabular.C: remove some commented code.
13007
13008 2001-02-12  John Levon  <moz@compsoc.man.ac.uk>
13009
13010         * BufferView_pimpl.C: call hideSplash()
13011
13012         * LyXAction.C: make buffer-child-insert use LFUN_CHILD_CREATE
13013
13014         * include_form.h:
13015         * bibforms.h: remove
13016
13017         * lyxfunc.C:
13018         * src/commandtags.h: LFUN_CHILDINSERT -> LFUN_CHILD_INSERT,
13019           add LFUN_CHILD_CREATE
13020
13021         * counters.h: fix tiny typo
13022
13023         * lyx_cb.C:
13024         * lyx.h:
13025         * lyx_gui.C:
13026         * lyx.C: move splash to frontends/xforms/
13027
13028         * lyx_gui_misc.C: move Include and Bibform to frontends
13029
13030         * lyxvc.h: clarify comment
13031
13032         * vspace.C: tiny housekeeping
13033
13034 2001-02-10  Dekel Tsur  <dekelts@tau.ac.il>
13035
13036         * text.C (PrepareToPrint): RTL Fix.
13037
13038         * paragraph.C (GetUChar): New method.
13039         (String):  Use GetUChar.
13040
13041         * buffer.C (asciiParagraph): Use GetUChar.
13042
13043 2001-02-09  Dekel Tsur  <dekelts@tau.ac.il>
13044
13045         * text.C (GetVisibleRow): Fix selection drawing for RTL text in tables.
13046
13047 2001-02-09  John Levon  <moz@compsoc.man.ac.uk>
13048
13049         * buffer.h:
13050         * buffer.C: rename to getLogName(), handle
13051           build log / latex log nicely
13052
13053 2001-02-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13054
13055         * MenuBackend.C:
13056         * MenuBackend.h: remove support for reference menuitem type.
13057
13058 2001-02-07  John Levon  <moz@compsoc.man.ac.uk>
13059
13060         * BufferView_pimpl.C: housekeeping
13061         * BufferView_pimpl.h:
13062         * LyXView.h:
13063         * Makefile.am:
13064         * Timeout.C:
13065         * Timeout.h:
13066         * minibuffer.h: move Timeout GUI-I
13067
13068 2001-02-07  Dekel Tsur  <dekelts@tau.ac.il>
13069
13070         * lyxrc.C (read): Update converters data-structures.
13071
13072 2001-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
13073
13074         * LaTeX.h (operator!=): add operator != for Aux_Info
13075
13076 2001-02-06  John Levon  <moz@compsoc.man.ac.uk>
13077
13078         * Makefile.am: remove LaTeXLog.C, log_form.[Ch]
13079
13080         * LaTeXLog.C: deleted, useful code moved to Buffer
13081
13082         * buffer.h:
13083         * buffer.C: new function getLatexLogName()
13084
13085         * lyx_gui_misc.C:
13086         * lyx_gui.C:
13087         * lyxvc.C:
13088         * lyxvc.h:
13089         * lyxfunc.C: use frontends for LaTeX and VC logs
13090
13091 2001-02-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13092
13093         * LaTeX.h: yet another std:: that Allan forgot.
13094
13095         * Variables.C (set): renamed from isset(), because this clashes
13096         with some HP-UX macros (grr).
13097
13098 2001-02-06  Allan Rae  <rae@lyx.org>
13099
13100         * LaTeX.h: Another bug fix.  Missing std:: this time.
13101
13102 2001-02-04  Allan Rae  <rae@lyx.org>
13103
13104         * paragraph.C (TeXOnePar): Partial fix for the '\n' generation in
13105         floats problem. I've left it commented out because it's not quite
13106         correct.  It should also test that the current object is a table or
13107         figure inset.  But I haven't gotten around to figuring out how to do
13108         that.  I *think* it'll be something like: "table" == inset.type()
13109
13110         * LaTeX.h (operator==): Aux_Info should have a friend that returns a
13111         bool.
13112
13113 2001-02-02  Dekel Tsur  <dekelts@tau.ac.il>
13114
13115         * LaTeX.C (scanAuxFile): A rewrite of this method. It now returns
13116         all the citation/databases/styles in the auxilary file.
13117         (run): Rerun latex if there was a babel language error.
13118
13119 2001-02-01  Dekel Tsur  <dekelts@tau.ac.il>
13120
13121         * text.C (Backspace): Preserve the font when changing newline char
13122         with a space.
13123         (BreakParagraph): If the cursor is before a space, delete the space.
13124
13125         * lyx_cb.C (QuitLyX): Do not save files when running with no gui.
13126
13127 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
13128
13129         * BufferView2.C (ChangeInsets): Renamed from ChangeRefs. Accept a
13130         new argument (code).
13131         (ChangeCitationsIfUnique): New method.
13132
13133         * paragraph.C (GetPositionOfInset): Handle bibkey.
13134
13135 2001-01-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13136
13137         * BufferView_pimpl.h: change type of Position::par_pos to
13138         LyXParagraph::size_type.
13139
13140 2001-01-29  Dekel Tsur  <dekelts@tau.ac.il>
13141
13142         * BufferView_pimpl.C (savePosition, restorePosition): Write
13143         messages to minibuffer.
13144
13145 2001-01-28  José Matos  <jamatos@fep.up.pt>
13146
13147         * buffer.C (makeDocBookFile): adds support for document language.
13148         A silly restriction on the name of LatexCommand types where removed.
13149         Added support for CDATA sections, allows to chars unescaped, used
13150         among others in code, to avoid escape < and >.
13151
13152 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
13153
13154         * BufferView_pimpl.C (savePosition, restorePosition): Use a vector of
13155         saved positions instrad of a stack. Furthermore, a position is
13156         stored using paragraph id/paragraph position.
13157
13158         * commandtags.h: Add LFUN_BOOKMARK_SAVE and LFUN_BOOKMARK_GOTO.
13159         Remove LFUN_REF_BACK.
13160
13161 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
13162
13163         * converter.C (dvipdfm_options): New method.
13164
13165 2001-01-26  Dekel Tsur  <dekelts@tau.ac.il>
13166
13167         * vspace.C (isValidLength): Fix for empty input string.
13168
13169 2001-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13170
13171         * LyXAction.C (init): change description of LFUN_FIGURE to
13172         "Insert Graphics"
13173
13174 2001-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13175
13176         * LaTeX.C: add using directive
13177
13178 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
13179
13180         * MenuBackend.C (expand): Fix the sorting of the formats.
13181
13182 2001-01-24  John Levon  <moz@compsoc.man.ac.uk>
13183
13184         * lyx_main.C: tiny error message fix
13185
13186 2001-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13187
13188         * lyx_gui.C (LyXGUI): force the LC_NUMERIC locale to "C" after
13189         calling fl_initialize(). This fixes the problem with ',' as
13190         decimal separator in text files.
13191
13192 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
13193
13194         * trans.C (process): Fix the keymap bug.
13195
13196 2001-01-23  Dekel Tsur  <dekelts@tau.ac.il>
13197
13198         * LaTeX.C (scanAuxFiles): New method. Provides support for
13199         multiple bibliographies (when using the bibtopic/bibunits pacakges).
13200         (scanLogFile) Scan for "run BibTeX" messages.
13201
13202         * buffer.C (makeLaTeXFile): Do not load the ae package when using
13203         OT1 font encoding. Also, load the aecompl package if the ae
13204         package is loaded.
13205
13206         * tex-strings.C: Add "ae" to tex_fonts[] (from Matej Cepl).
13207
13208 2001-01-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13209
13210         * texrow.C (increasePos): turn two error messages into debug
13211         messages.
13212
13213 2001-01-20  Dekel Tsur  <dekelts@tau.ac.il>
13214
13215         * LaTeX.C (scanAux): Handle the \@input macro.
13216         (runBibTeX): Use scanAux().
13217
13218         * language.C (latex_options_): New field.
13219
13220         * LaTeXFeatures.C (getMacros): Add language macros.
13221
13222         * buffer.C (makeLaTeXFile): Small fix.
13223
13224 2001-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13225
13226         * lyxfunc.C: fix the name of the inset for LFUN_CHILDINSERT
13227
13228         * text2.C: add a using directive.
13229
13230 2000-01-17  John Levon  <moz@compsoc.man.ac.uk>
13231
13232         * BufferView2.C:
13233         * lyx_gui_misc.h:
13234         * lyxfr1.C:
13235         * lyxfunc.C: kill LyXBell.
13236
13237 2001-01-17  Dekel Tsur  <dekelts@tau.ac.il>
13238
13239         * text.C (IsBoundary): Remove the error message
13240
13241         * WorkArea.C (work_area_handler): Decrease keyboard purge threshold.
13242
13243         * lyxrc.C (setDefaults): Correct initialization value for
13244         font_norm_type.
13245
13246 2001-01-15  Dekel Tsur  <dekelts@tau.ac.il>
13247
13248         * BufferView2.C (gotoInset): New method. Replaces gotoNote() and
13249         gotoError().
13250
13251         * text2.C (GotoNextInset): New method. Replaces GotoNextError()
13252         and GotoNextNote().
13253
13254         * src/LyXAction.C: Added reference-next.
13255
13256         * text.C (InsertChar): Use contains instead of strchr.
13257
13258         * lyx_cb.C (MenuInsertLabel): Enable default value code.
13259
13260 2001-01-13  Dekel Tsur  <dekelts@tau.ac.il>
13261
13262         * paragraph.C (SimpleTeXOnePar) Put \protect before paragraph
13263         alignment commands (when needed).
13264
13265         * text.C (InsertChar): Add ':' to number separator chars.