]> git.lyx.org Git - lyx.git/blob - src/ChangeLog
display key binding in native UI style
[lyx.git] / src / ChangeLog
1 2004-03-26  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
2
3         * kbsequence.C (print): adjust
4
5         * kbmap.C (printKeySym): rename and change signature
6         (printKey): use LyXKeySym::print()
7
8 2004-03-26  Martin Vermeer  <martin.vermeer@hut.fi>
9
10         * undo.C: add using std::advance to compile for stlport
11
12 2004-03-24  Angus Leeming  <leeming@lyx.org>
13
14         * lyxfunc.C (dispatch): remove test code in LFUN_QUIT handler as
15         it leads to a crash when no buffer is present.
16
17 2004-03-25  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
18             Martin Vermeer  <martin.vermeer@hut.fi>
19
20         * lyxfunc.C (dispatch): 
21         * bufferparams.C (readToken): use the new LColor::setColor 
22
23         * LColor.[Ch] (setColor): new version that takes two strings as
24         argument and creates a new color entry if necessary
25
26 2003-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
27
28         * buffer.C (makeLaTeXFile): if the main latex file that is
29         processed is usually a subdocument of some master, then pretend
30         for a while that it is actually the master
31
32 2003-02-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
33
34         * buffer.C (getLabelList):
35         (getBibkeyList): use getMasterBuffer()
36         (getMasterBuffer): new method. Returns the main document in the
37         case where one is using included documents.
38
39 2004-03-25  André Pönitz  <poenitz@gmx.net>
40
41         * Makefile.am:
42         * iterators.[Ch]:
43         * PosIterator.[Ch]: drop PosIterator, replaced by DocumentIterator
44
45         * ParagraphList_fwd.h: change ParagraphList to a std::vector
46
47         * CutAndPaste.[Ch]: simpler interface by moving some stuff from
48         text*.C over here. Rename namespace CutAndPaste to lyx::cap
49
50         * ParameterStruct.h: merge with ParagraphParameters
51
52         * lyxtext.h: remove LyXText::parOffset() and getPar()
53
54         * text3.C: Remove all 'manual' update calls. We do now one per user
55         interaction which is completely sufficient.
56
57         * Bidi.C:
58         * BufferView.[Ch]:
59         * BufferView_pimpl.C:
60         * FontIterator.[Ch]:
61         * MenuBackend.C:
62         * ParagraphParameters.[Ch]:
63         * buffer.C:
64         * buffer.h:
65         * bufferlist.C:
66         * cursor.[Ch]:
67         * cursor_slice.[Ch]:
68         * dociterator.[Ch]:
69         * errorlist.[Ch]:
70         * factory.C:
71         * lfuns.h:
72         * lyxfind.C:
73         * lyxfunc.C:
74         * output_docbook.[Ch]:
75         * output_latex.[Ch]:
76         * output_linuxdoc.[Ch]:
77         * output_plaintext.[Ch]:
78         * paragraph.[Ch]:
79         * paragraph_funcs.[Ch]:
80         * paragraph_pimpl.[Ch]:
81         * rowpainter.C:
82         * tabular.[Ch]:
83         * text.C:
84         * text2.C:
85         * toc.C:
86         * undo.[Ch]: adjust
87
88         * frontends/controllers/ControlDocument.C:
89         * frontends/controllers/ControlErrorList.C:
90         * frontends/controllers/ControlSpellchecker.C:
91         * insets/inset.C:
92         * insets/inset.h:
93         * insets/insetbase.h:
94         * insets/insetbibitem.C:
95         * insets/insetbox.C:
96         * insets/insetbranch.C:
97         * insets/insetcaption.C:
98         * insets/insetcharstyle.C:
99         * insets/insetcharstyle.h:
100         * insets/insetcollapsable.C:
101         * insets/insetcollapsable.h:
102         * insets/insetert.C:
103         * insets/insetfloat.C:
104         * insets/insetfoot.C:
105         * insets/insetmarginal.C:
106         * insets/insetnote.C:
107         * insets/insetoptarg.C:
108         * insets/insettabular.C:
109         * insets/insettext.C:
110         * insets/insettext.h:
111         * insets/insetwrap.C:
112         * mathed/math_mboxinset.C:
113         * mathed/math_nestinset.C:
114         * mathed/math_scriptinset.C:
115         * mathed/math_scriptinset.h:
116         * support/types.h:
117
118 2004-03-24  Angus Leeming  <leeming@lyx.org>
119
120         * BufferView_pimpl.C (cursorToggle): use the cursor toggle to
121         deal with any child processes that have finished but are waiting to
122         communicate this fact to the rest of LyX.
123
124 2004-03-24  Angus Leeming  <leeming@lyx.org>
125
126         64-bit compile fixes.
127
128         * errorlist.[Ch] (pos_start, pos_end): store as lyx::pos_type.
129         (c-tor): pass lyx::pos_types rather than ints.
130
131         * paragraph.[Ch] (beginOfBody, begin_of_body_): return, store as
132         lyx::pos_type.
133
134         * text.C (Delete): compile fix.
135         (getPar): ensure that function declaration is the same as that in
136         the header file.
137
138 2004-03-23  Angus Leeming  <leeming@lyx.org>
139
140         * ispell.C (LaunchIspell):
141         * lyx_cb.C (AutoSaveBuffer): change the signature of clone to return
142         a boost::shred_ptr rather than a std::auto_ptr.
143
144 2004-03-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
145
146         * lyxfunc.C (getStatus): handle read-only buffers correctly;
147         handle LFUN_FILE_INSERT_*
148
149         * lyxrc.C (setDefaults, getDescription, output, read):
150         * lyxrc.h: remove ps_command
151
152 2004-03-22  Angus Leeming  <leeming@lyx.org>
153
154         * lyx_main.C (error_handler, init): remove handler for SIGPIPE.
155         Ensure that error_handler is processed once only and that all data
156         is saved before attempting to output any warning messages.
157
158         * cursor.[Ch] (nopos_, noPos): remove unused member variable/function.
159
160 2004-03-21  Alfredo Braunstein  <abraunst@lyx.org>
161
162         * tabular.C (TeXRow): crash fix (from Kayvan and André)
163
164 2004-03-19  André Pönitz  <poenitz@gmx.net>
165
166         * cursor.[Ch] (reset): take main text inset as argument
167
168         * BufferView: adjust
169         * BufferView_pimpl.C: adjust
170
171         * paragraph.[Ch]: fix completely broken operator=()
172
173 2004-03-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
174
175         * LColor.C (getFromLyXName): make sure that the color name is used
176         as lowercase.
177
178 2004-03-17  Angus Leeming  <leeming@lyx.org>
179
180         * lfuns.h:
181         * LyXAction.C (init): remove LFUN_FORKS_KILL.
182
183         * lyxfunc.C (getStatus, dispatch) remove lfuns to show the forks
184         dialog and to kill a forked process.
185
186 2004-03-17  Alfredo Braunstein  <abraunst@lyx.org>
187
188         * text2.C (setCursorFromCoordinates): fix font problem
189
190 2004-03-17  Alfredo Braunstein  <abraunst@lyx.org>
191
192         * BufferView_pimpl.C (resizeCurrentBuffer): remove unneeded and
193         bogus "rebuild cursor" code
194
195 2004-03-11  André Pönitz  <poenitz@gmx.net>
196
197         * buffer.[Ch]: use InsetText instead of LyXText as container for
198         the main lyx text.
199
200         * dociterator.[Ch]: drop the BufferView * member which is not needed
201         anymore after the change to buffer.C
202
203         * paragraph_funcs.C:
204         * text.C:
205         * text2.C:
206         * BufferView.[Ch]:
207         * BufferView_pimpl.[Ch]:
208         * cursor.[Ch]:
209         * cursor_slice.[Ch]: adjust
210
211         * text3.C: fix bug in mathDispatch
212
213 2004-03-08  André Pönitz  <poenitz@gmx.net>
214
215         * undo.[Ch]: use 'StableDocumentIterator' as base for
216         the Undo struct.
217
218 2004-03-07  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
219
220         * LaTeXFeatures.C:
221         * bufferparams.[Ch]: add jurabib support and param.
222
223         * LaTeX.C: add FIXME/comment.
224
225 2004-03-05  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
226
227         * buffer.C: increment file format to 230.
228
229 2004-03-04  Alfredo Braunstein  <abraunst@lyx.org>
230
231         * cursor.C (dispatch): avoid infinite loops
232
233 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
234
235         * rowpainter.C (paintSelection): fix x coordinates
236
237 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
238
239         * text.C (rowBreakPoint): fix breaking before displayed insets
240
241 2004-03-01  André Pönitz  <poenitz@gmx.net>
242
243         * dociterator.[Ch]: new class for the 'iterator part' of LCursor.
244
245         * cursor.[Ch]: adjust, additioally: remove the 'current_' machinery
246
247         * Makefile.am:
248         * BufferView.C:
249         * BufferView_pimpl.C:
250         * buffer.C:
251         * lyxfind.C:
252         * lyxfunc.C:
253         * text.C:
254         * text2.C:
255         * text3.C: adjust
256
257 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
258
259         * lyxtext.h:
260         * text.C:
261         * text2.C:
262         * rowpainter.C:
263         * BufferView_pimpl.C: rename textwidth -> maxwidth,
264         prepareToPrint -> computeRowMetrics and remove textWidth accessor.
265
266 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
267
268         * Bidi.[Ch] (computeTables): const correctness
269         * lyxrow.[Ch]: add RowMetrics class, move there fill_separator,
270         fill_hfill, fill_label_hfill and x from Row
271         * lyxtext.h: prepareToPrint returns a RowMetrics
272         * rowPainter.C: adjust
273         * text.C (prepareToPrint): use width, not textWidth. adjust
274         (redoParagraphInternal, cursorX): adjust
275         * text2.C (getColumnNearX): adjust
276         (init): put a default value to the top LyXText::width
277
278 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
279
280         * FontIterator.[Ch]: move FontIterator from lyxtext.h/text.C to here
281
282 2004-03-01  Alfredo Braunstein  <abraunst@lyx.org>
283
284         * lyxtext.h: add FontIterator class
285
286         * text.C (FontIterator, operator*, operator->, operator++): add
287         (rowBreakPoint, setRowWidth): adjust (fixing a
288         rebreaking bug)
289
290 2004-02-25  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
291
292         * BufferView_pimpl.C (workAreaDispatch): allow also
293         LFUN_FILE_OPEN, which is used by the drag-and-drop code.
294
295 2004-02-27  Alfredo Braunstein  <abraunst@lyx.org>
296
297         * text.C (rowBreakPoint): fix a bug showing with very large insets
298
299 2004-02-25  André Pönitz  <poenitz@gmx.net>
300
301         * text3.C:
302         * cursor.[Ch]: move some mathed specific code to mathed
303
304 2004-02-21  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
305
306         * lyxrc.C, buffer.C, exporter.C: use always a temp dir, ignore
307         use_tempdir in preferences
308         * buffer.C (readFile), lyxvc.C (getLogFile): check success of
309         tempfile creation
310         * lyx_main.C: ensure that tempdir is valid
311         * lyxlex.h: correct typo
312         * buffer.[Ch] (isMultiLingual), (isUnnamed): make const
313         * paragraph.[Ch] (isMultiLingual): make const
314         * cursor.[Ch] (openable): make const
315
316 2004-02-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
317
318         * text3.C: fixed LFUN_QUOTE and add lfun arguments single/double.
319
320 2004-02-20  André Pönitz  <poenitz@gmx.net>
321
322         * dispatchresult.h: rename 'FINISHED' to 'FINISHED_LEFT'
323
324         * cursor.[Ch]: prepare for localized getStatus()
325
326         * lyxtext.h:
327         * tabular.C:
328         * text.C:
329         * text2.C:
330         * text3.C:  streamlines the LyXText cursor movement handlers a bit.
331
332 2004-02-20  André Pönitz  <poenitz@gmx.net>
333
334         * lyxfunc.[Ch]: rename view_status_message() to viewStatusMessage()
335
336 2004-02-16  Alfredo Braunstein  <abraunst@lyx.org>
337
338         * text2.C (setCursorFromCoordinates): switch to absolute coords
339         (cursorUp): adjust
340         (cursorDown): adjust
341         * text3.C (dispatch): adjust
342
343 2004-02-16  André Pönitz  <poenitz@gmx.net>
344
345         * cursor.[Ch]: use new '_void_ dispatch(...)' signature (see
346           insets/ChangeLog)
347
348         * cursor_slice.[Ch]: remove unneeded acessor function
349
350         * lyxtext.h: rename rtl() to isRTL()
351
352         * rowpainter.C:
353         * tabular.C:
354         * text.C:
355         * text2.C:
356         * text3.C: adjust
357
358 2004-02-16  Alfredo Braunstein  <abraunst@lyx.org>
359
360         * rowpainter.C (paintSelection): coord fix
361
362 2004-02-15  Georg Baum <Georg.Baum@post.rwth-aachen.de>
363
364         * Spacing.C: compile fix
365
366 2004-02-13  Alfredo Braunstein  <abraunst@lyx.org>
367
368         * cursor.C (dispatch): restore current_ before returning
369
370 2004-02-13  Alfredo Braunstein  <abraunst@lyx.org>
371
372         * text2.C (cursorUp, cursorDown): fix coords
373         (moveUp): fix crash
374
375 2004-02-12  André Pönitz  <poenitz@gmx.net>
376
377         * lyxtext.h:
378         * text.C:
379         * text2.C:
380         * text3.C: add LCursor & parameter to most cursor movement functions
381           remove usage of LyXText::cursorRow() and cursorPar()
382
383         * cursor.[Ch]: add textRow() needed members
384
385         * BufferView.C:
386         * BufferView_pimpl.C:
387         * paragraph.[Ch]:
388         * BufferView.C:
389         * BufferView_pimpl.C: adjust
390
391 2004-02-11  André Pönitz  <poenitz@gmx.net>
392
393         * lyxfunc.C:
394         * BufferView.[Ch]:
395         * BufferView_pimpl.C: shift undo/redo handling
396
397         * cursor.[Ch]: fix mathed crash
398
399         * lyxfind.C:
400         * lyxtext.h: move selectionAsText to LCursor
401
402         * output_latex.C:
403         * paragraph.C:
404         * text.C:
405         * text2.C:
406         * text3.C: adjust
407
408         * rowpainter.C: fix excessive drawing
409
410 2004-02-06  André Pönitz  <poenitz@gmx.net>
411
412         * BufferView.[Ch]:
413         * BufferView_pimpl.[Ch]:
414         * text3.C: move some text specific LFUN handling
415
416 2004-02-06  Alfredo Braunstein  <abraunst@lyx.org>
417
418         * text3.C (checkInsetHit): adjust coords
419         * text2.C (getColumnNearX): adjust coords
420         (edit): adjust coords
421         * text.C (getRowNearY): add two asserts
422
423 2004-02-06  Martin Vermeer  <martin.vermeer@hut.fi>
424
425         * converter.C:
426         * format.C: add using std::distance to compile on gcc 2.95/stlport
427
428 2004-02-04  Martin Vermeer  <martin.vermeer@hut.fi>
429
430         * cursor.[Ch]: workaround gcc 2.95 pointer comparison bug
431
432 2004-02-04  André Pönitz  <poenitz@gmx.net>
433
434         * BufferView.[Ch] (insertInset):
435         * BufferView_pimpl.[Ch] (insertInset): remove unneeded return value
436
437         * text2.C:
438         * text3.C: adjust
439
440 2004-02-03  Alfredo Braunstein  <abraunst@lyx.org>
441
442         * BufferView_pimpl.C (dispatch): remove call to LCursor::dispatch
443         on the default clause of the switch
444         * lyxfunc.C (dispatch): call BufferView::dispatch if the event
445         wasn't catched by LCursor::dispatch
446
447 2004-02-03  André Pönitz  <poenitz@gmx.net>
448
449         * BufferView.C:
450         * cursor.[Ch]: some additional asserts
451
452         * undo.[Ch]: remove LyXText dependency in interface
453
454         * lyxfunc.C: adjust
455
456         * lyxtext.h (firstPar, lastPar): remove dead functions
457
458         * text.C:
459         * text2.C:
460         * text3.C:
461         * paragraph.[Ch]: adjust
462
463 2004-02-03  Alfredo Braunstein  <abraunst@lyx.org>
464
465         * lyxfind.C (find): fix argument order in call to ::find
466
467 2004-02-02  André Pönitz  <poenitz@gmx.net>
468
469         * cursor.[Ch]: remove direct access to anchor
470
471         * text.C: remove findText() hack
472
473 2004-02-02  Alfredo Braunstein  <abraunst@lyx.org>
474
475         * iterators.[Ch] (lockPath): remove in favour of...
476         * BufferView.[Ch] (setCursor): this addition
477         * BufferView.C (putSelectionAt): adjust
478         * undo.C (performUndoOrRedo): adjust
479         * lyxfunc.C (dispatch): adjust
480
481 2004-02-02  Alfredo Braunstein  <abraunst@lyx.org>
482
483         * iterators.C (lockPath): add a missing slice
484         * undo.C (performUndoOrRedo): remove redundant positioning code
485
486 2004-02-01  Lars Gullik Bjonnes  <larsbj@gullik.net>
487
488         * vc-backend.C (scanMaster): ";" -> ';'
489
490 2004-01-31  Lars Gullik Bjonnes  <larsbj@gullik.net>
491
492         * lyxtextclasslist.C (less_textclass_avail_desc): inherit from
493         std::binary_function
494
495         * lyxtextclass.C (compare_name): rename to...
496         (LayoutNamesEqual): ...this
497
498         * lyxlex_pimpl.C (compare_tags): inherit from
499         std::binary_function, put back into anon namespace
500
501         * lyxfind.C (MatchString): inherig from std::binary_function
502         (findChange): use empty() istead of !size()
503
504         * format.C (FormatNamesEqual): new functor
505         (getFormat): use it
506         (getNumber): use it
507         (add): use it
508         (erase): use it
509         (setViewer): use it
510
511         * converter.C (compare_Converter): rename to...
512         (ConverterEqual): ...this, and fixup a bit.
513         (getConverter): use it, and make function const
514         (getNumber): use it, and make function const
515         (add): use it
516         (erase): use it:
517
518         * bufferlist.C: add using boost::bind
519
520         * MenuBackend.C (MenuNamesEqual): new functor
521         (hasMenu): use it, and make function const
522         (hasSubmenu): use nested bind to get rid of compare_memfun.
523
524 2004-01-30  André Pönitz  <poenitz@gmx.net>
525
526         * BufferView_pimpl.C:
527         * cursor.C:
528         * cursor.h:
529         * cursor_slice.[Ch]:
530         * lyxfunc.C:
531         * lyxtext.h:
532         * paragraph_funcs.C:
533         * paragraph_funcs.h:
534         * rowpainter.C:
535         * text.C:
536         * text2.C:
537         * text3.C: move some of the edit(x,y) handling to the insets
538         some coordinate changes.
539
540 2004-01-28  Lars Gullik Bjonnes  <larsbj@gullik.net>
541
542         * text.C: add using statements for std::advance and std::distance
543
544         * paragraph.C: add using statement for std::distance
545
546         * lyxfind.C: add using statement for std::advance
547
548         * cursor.C (region): remove std:: from swap
549         (openable): use nucleus in stead of operator->
550
551         * BufferView.C: add using statements for std::distance and std::swap
552
553 2004-01-27  Lars Gullik Bjonnes  <larsbj@gullik.net>
554
555         * iterators.C: Remove the pimple, move the needed structures to
556         the header file. Create accessor for the positions stack.
557         (asPosIterator): remove function
558
559         * PosIterator.C (PosIterator): move constructors to top of file
560         (PosIterator): reimplement the constructor taking a ParIterator in
561         terms of setFrom.
562         (setFrom): new function
563         (operator!=): inline it
564
565 2004-01-26  Lars Gullik Bjonnes  <larsbj@gullik.net>
566
567         * lyxfind.C (replaceAll): use std::advance
568
569         * iterators.h: inherit from std::iterator.
570
571         * PosIterator.C (advance, distance): remove
572         * PosIterator.h: interit from std::iterator.
573
574 2004-01-26  André Pönitz  <poenitz@gmx.net>
575
576         * BufferView.[Ch]:
577         * BufferView_pimpl.[Ch]:
578         * InsetList.[Ch]:
579         * PosIterator.[Ch]:
580         * buffer.h:
581         * bufferview_funcs.C:
582         * cursor.[Ch]:
583         * cursor_slice.h:
584         * factory.[Ch]:
585         * iterators.[Ch]:
586         * lyxfind.C:
587         * lyxfunc.C:
588         * lyxtext.h:
589         * output_docbook.C:
590         * output_latex.C:
591         * output_linuxdoc.C:
592         * output_plaintext.C:
593         * paragraph.[Ch]:
594         * paragraph_funcs.[Ch]:
595         * paragraph_pimpl.[Ch]:
596         * rowpainter.C:
597         * tabular.C:
598         * tabular.h:
599         * text.C:
600         * text2.C:
601         * text3.C: more IU:  dumps most of the rest of the mathcursor
602     implementation into cursor.[Ch]; "globalize" a bit of it.
603
604 2004-01-25  Angus Leeming  <leeming@lyx.org>
605
606         * lyxfunc.C (dispatch): Dialogs::showSearch is no more.
607
608 2004-01-19  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
609
610         * LaTeXFeatures.h: add nice_ and nice() const
611         * buffer.[Ch]: remove niceFile(), use LaTeXFeatures::nice() instead
612
613 2004-01-20  André Pönitz  <poenitz@gmx.net>
614
615         * BufferView.[Ch]:
616         * BufferView_pimpl.C:
617         * PosIterator.C:
618         * bufferview_funcs.C:
619         * cursor.[Ch]:
620         * cursor_slice.[Ch]:
621         * factory.C:
622         * iterators.C:
623         * lyx_cb.C:
624         * lyxfind.C:
625         * lyxfunc.C:
626         * lyxtext.h:
627         * rowpainter.C:
628         * text.C:
629         * text2.C:
630         * text3.C:
631         * undo.[Ch]: lots of IU. Shift selection stuff from the BufferView to
632           LCursor and mathcursor parts to LCursor and InsetBase.
633
634 2004-01-15  André Pönitz  <poenitz@gmx.net>
635
636         * cursor_slice.[Ch]: add a few covienience functions
637
638         * funcrequest.[Ch]: remove BufferView * member
639
640         * BufferView_pimpl.C:
641         * cursor.C:
642         * factory.[Ch]:
643         * lyxfind.[Ch]:
644         * lyxfunc.C:
645         * lyxtext.h:
646         * text3.C:
647         * undo.[Ch]: adjust to this and changed signature of Inset::priv_dispatch()
648
649 2004-01-14  Alfredo Braunstein  <abraunst@lyx.org>
650
651         * text.C (getWord): fix getWord (and thus LFUN_WORDSEL)
652         * text3.C (dispatch): fix LFUN_WORD{RIGHT,LEFT}SEL
653
654 2004-01-13  André Pönitz  <poenitz@gmx.net>
655
656         * textcursor.[Ch]:
657         * lyxtext.h: hide cursor and selection anchor behind accessor function
658
659         * BufferView.C:
660         * BufferView_pimpl.[Ch]:
661         * PosIterator.C:
662         * bufferview_funcs.C:
663         * cursor.h:
664         * lyxfind.C:
665         * lyxfunc.C:
666         * text.C:
667         * text2.C:
668         * text3.C:
669         * undo.C: adjust
670
671         * cursor.h:
672         * cursor_slice.[Ch]: some integer type changes for inset unification
673
674         * lyxcursor.[hC]: remove, it's CursorSlice now.
675
676         * Makefile.am:
677         * BufferView_pimpl.[Ch]:
678         * bufferview_funcs.C:
679         * cursor_slice.C:
680         * lyxtext.h:
681         * text.C:
682         * text2.C:
683         * text3.C:
684         * textcursor.[Ch]: adjust
685
686 2004-01-08  Alfredo Braunstein  <abraunst@lyx.org>
687
688         * text2.C (undoSpan): add and use
689         * text.C (breakParagraph): use undoSpan (fix bug 578)
690         * lyxtext.h: adjust
691
692 2004-01-08  Angus Leeming  <leeming@lyx.org>
693
694         * BufferView_pimpl.C (MenuInsertLyXFile):
695         * lyx_cb.C (WriteAs, getContentsOfAsciiFile):
696         * lyxfunc.C (menuNew, open, doImport):
697         FileFilterList change to the FileDialog open and save functions.
698
699 2004-01-07  Lars Gullik Bjonnes  <larsbj@gullik.net>
700
701         * ShareContainer.h: make isEqual and isUnique adaptable
702
703         * CutAndPaste.C: make resetOwnerAndChanges adaptable
704
705 2004-01-07  Angus Leeming  <leeming@lyx.org>
706
707         * LyXAction.C:
708         * lfuns.h: add LFUN_WORD_FIND and LFUN_WORD_REPLACE.
709
710         * BufferView_pimpl.C (dispatch): act on these LFUNs.
711
712         * lyxfind.[Ch] (find2string, replace2string, find, replace): new
713         functions replacing find, replace and replaceAll.
714
715         * lyxfunc.C (dispatch): invoke LFUN_WORD_FIND from a call to
716         LFUN_WORDFIND(FORWARD|BACKWARD).
717
718 2004-01-07  Alfredo Braunstein  <abraunst@lyx.org>
719
720         * text.C (breakParagraph): remove an outdated #warning
721
722 2004-01-07  André Pönitz  <poenitz@gmx.net>
723
724         * lyxfind.C: somewhat clearer logic
725
726         * text.C: prevent crash in cursorX on unitialized row cache
727
728 2004-01-07  Alfredo Braunstein  <abraunst@lyx.org>
729
730         * lyxcursor.[Ch] (operator>): add
731         * textcursor.C (selStart, selEnd): use std::min and std::max
732
733 2004-01-06  Lars Gullik Bjonnes  <larsbj@gullik.net>
734
735         * Chktex.C: include boost/format.hpp
736
737 2004-01-05  Lars Gullik Bjonnes  <larsbj@gullik.net>
738
739         * InsetList.C: replace functor MathcIt with adaptable functor
740         InsetTablePosLess
741         (insetIterator): modify accordingly
742
743         * BranchList.h: move the BranchNamesEqual functor here from...
744         * BranchList.C: ... to here
745
746         * BranchList.C: new BranchListEqual fuctor, use it. Remove
747         SameName and match.
748         (add): replace a finding loop with std::find_if.
749
750 2003-12-31  Martin Vermeer  <martin.vermeer@hut.fi>
751
752         * output_docbook.C: moving LatexParam functionality into
753         .layout files
754
755 2003-12-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
756
757         * buffer.C: increment format to 229.
758
759 2003-12-28  Michael Schmitt  <michael.schmitt@teststep.org>
760
761         * LaTeXFeatures.C:
762         * lyx_sty.[Ch]: remove minipageindent_def
763
764         * LyXAction.C:
765         * factory.C:
766         * lfuns.h:
767         * lyxfunc.C:
768         * text3.C: remove LFUN_INSET_MINIPAGE
769
770 2003-12-28  Angus Leeming  <leeming@lyx.org>
771
772         * text3.C (dispatch): output useful info on receipt of LFUN_GETLAYOUT.
773
774 2003-12-19  Alfredo Braunstein  <abraunst@lyx.org>
775
776         * text2.C (setParagraph): fix off-by-one crash
777
778 2003-12-18  Martin Vermeer  <martin.vermeer@hut.fi>
779
780         * output_docbook.C: header stuff for AGU
781
782 2003-12-17  Alfredo Braunstein  <abraunst@lyx.org>
783
784         * text2.C (redoCursor): remove
785         * text.C:
786         * text3.C:
787         * BufferView_pimpl.C: remove calls to redoCursor and
788         setCursor(cursor.par(), cursor.pos()) all around
789
790 2003-12-15  Angus Leeming  <leeming@lyx.org>
791
792         * buffer.C: up the format to 228.
793
794 2003-12-15  André Pönitz  <poenitz@gmx.net>
795
796         * cursor_slice.[Ch]: new class to cover texted and mathed's cursor
797         slices
798
799         * Makefile.am:
800
801         * BufferView_pimpl.C:
802         * cursor.[Ch]:
803         * lyxcursor.[Ch]:
804         * rowpainter.[Ch]:
805         * lyxtext.h:
806         * text.C:
807         * text2.C:
808         * text3.C: adjust
809
810 2003-12-15  Angus Leeming  <leeming@lyx.org>
811
812         * metricsinfo.C (ColorChanger): use LColor::getFromLyXName rather
813         than getFromGUIName to manipulate the color.
814
815 2003-12-14  Angus Leeming  <leeming@lyx.org>
816
817         * BranchList.[Ch]: minimize the API.
818         (Branch::getBranch, getColor): now return a 'const &'.
819         (Branch::setSelected) now returns a bool set to true if the
820         selection status changes.
821         (BranchList::clear, size, getColor, setColor, setSelected,
822         allBranches, allSelected, separator): removed.
823         (BranchList::find): new functions, returning the Branch with
824         the given name.
825         (BranchList::add, remove): return a bool indicating that
826         the operation was successful.
827
828         * InsetList.C (insetsOpenCloseBranch): much simplified thanks to a
829         new InsetBranch::isBranchSlected member function.
830
831         * LColor.[Ch]: mimimize the API.
832         (fill): renamed as addColor and made private.
833         (setColor, getGUIName, getX11Name, getLaTeXName): the overloaded
834         versions of these functions taking a string arg have been removed.
835
836         * bufferparams.C (readToken):
837         * lyxfunc.C (dispatch):
838         * lyxrc.C (read): changes due to the altered BranchList and
839         LColor APIs.
840
841         * factory.C (createInset, readInset): changes due to altered
842         InsetBranch c-tor.
843
844 2003-12-14  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
845
846         * factory.C:
847         * lyxfunc.C: remove insetminipage. "minipage-insert"
848         now produces a frameless minipage box inset.
849
850 2003-12-12  Alfredo Braunstein  <abraunst@lyx.org>
851
852         * textcursor.[Ch] (selStart,selEnd): add new methods
853         remove selection::start, end, use LyXCursor::operator<
854         * lyxcursor.[Ch] (operator<): add
855         * BufferView_pimpl.[Ch]: add new struct xsel_cache_
856         * BufferView.[Ch] (unsetXSel): add
857         * text2.C (clearSelection): use unsetXSel,adjust
858         * text.C: adjust
859         * text3.C: adjust
860         * rowpainter.C: adjust
861         * bufferview_funcs.C (put_selection_at): adjust
862
863 2003-12-12  Alfredo Braunstein  <abraunst@lyx.org>
864
865         * BufferView_pimpl.C: small coord. correction
866
867 2003-12-12  Alfredo Braunstein  <abraunst@lyx.org>
868
869         * BufferView_pimpl.C (workAreaDispatch): avoid crashing when
870         dragging over the splash screen.
871
872 2003-12-11  Angus Leeming  <leeming@lyx.org>
873
874         * BufferView_pimpl.C (dispatch): remove LFUN_INSET_APPLY code
875         as it is now handled in LyXText::dispatch.
876
877         * text3.C (doInsertInset): remove a level of nesting.
878
879 2003-12-11  Angus Leeming  <leeming@lyx.org>
880
881         * factory.C (createInset): changes due to the changed interface to
882         InsetCommandMailer::string2params.
883
884 2003-12-10  Angus Leeming  <leeming@lyx.org>
885
886         * lyxfunc.C (dispatch): enable all inset dialogs to be opened with
887         'dialog-show-new-inset <inset name>'
888
889 2003-12-10  Angus Leeming  <leeming@lyx.org>
890
891         * buffer.C: up the format to 227.
892
893         * factory.C: the box inset is now identified simply by 'Box'.
894
895 2003-12-10  Angus Leeming  <leeming@lyx.org>
896
897         * buffer.C: up the format to 226.
898
899         * factory.C: the note inset is now identified simply by 'Note'.
900
901 2003-12-08  Alfredo Braunstein  <abraunst@libero.it>
902
903         * lyxtext.h, text2.C (setLayout): don't use cursor to iterate,
904         when a pit is enough. Standarize a couple of loops.
905
906 2003-12-05  Angus Leeming  <leeming@lyx.org>
907
908         * lyxfunc.C (dispatch): DIALOG_SHOW now handles "latexlog" and
909         "vclog" explicitly, passing the appropriate "<logtype> <filename>"
910         data to the re-worked "log" dialog.
911
912 2003-12-03  André Pönitz  <poenitz@gmx.net>
913
914         * PosIterator.C:
915         * iterators.C:
916         * lyxtext.h:
917         * output_latex.C:
918         * paragraph_funcs.C:
919         * text.C:
920         * text2.C: use Inset::getText instead of Inset::getParagraph
921
922 2003-12-03  André Pönitz  <poenitz@gmx.net>
923
924         * buffer.[Ch]:
925         * lyxtext.h:
926         * paragraph_funcs.[Ch]: consolidate parts of Buffer::read() and
927         InsetText::read() as LyXText::read()
928
929 2003-12-02  Angus Leeming  <leeming@lyx.org>
930
931         * lyxlex.[Ch] (operator void const *): add the 'const' to the return
932         type. Add a comment in the implementation that the function uses
933         the stream's bad() function rather than fail() as the std::streams
934         would do.
935
936 2003-12-02  André Pönitz  <poenitz@gmx.net>
937
938         * lyxlex.[Ch]: make interface more similar to std::stream
939
940         * lyxlex_pimpl.[Ch]: don't use '__' in identifiers
941
942 2003-12-01  Martin Vermeer  <martin.vermeer@hut.fi>
943
944         * lyxtextclass.[Ch]: add latexparam to CharStyle inset
945
946 2003-12-01  Michael Schmitt  <michael.schmitt@teststep.org>
947
948         * vspace.[Ch]: remove VSpace::NONE
949
950 2003-12-01  André Pönitz  <poenitz@gmx.net>
951
952         * buffer.[Ch]:
953         * lyxtext.h: move ParagraphList member to LyXText
954         rename LyXText::ownerParagraphs to LyXText::paragraph
955
956         * CutAndPaste.C:
957         * bufferview_funcs.C:
958         * iterators.[Ch]:
959         * lyx_cb.C:
960         * paragraph.C:
961         * rowpainter.C:
962         * tabular.C:
963         * text.C:
964         * text2.C:
965         * text3.C: adjust
966
967         * lyxfunc.C: move LFUN_INSET_TOGGLE handling to insets.
968
969         * undo.C: fix cursor positioning
970
971 2003-12-01  John Levon  <levon@movementarian.org>
972
973         * BufferView_pimpl.C: fix a crash on exit with
974         a buffer open
975
976 2003-11-30  Martin Vermeer  <martin.vermeer@hut.fi>
977
978         * BranchList.C: fix setSelected() method.
979
980 2003-11-28  André Pönitz  <poenitz@gmx.net>
981
982         * ParagraphParameters.[Ch]:
983         * ParameterStruct.h: remove space above/below from Paragraph to
984          InsetVSpace
985
986         * BufferView_pimpl.C:
987         * factory.C:
988         * lyxfunc.C:
989         * lyxtext.h:
990         * output_latex.C:
991         * paragraph.C:
992         * paragraph_funcs.C:
993         * rowpainter.[Ch]:
994         * text.C:
995         * text2.C:
996         * text3.C: adjust
997
998 2003-11-28  Martin Vermeer  <martin.vermeer@hut.fi>
999
1000         * factory.C: Syntax change for CharStyles
1001
1002 2003-11-28  André Pönitz  <poenitz@gmx.net>
1003
1004         * BufferView.[Ch]:
1005         * BufferView.[Ch]:
1006         * buffer.[Ch]:
1007         * buffer.[Ch]: move LyXText member
1008
1009 2003-11-28  André Pönitz  <poenitz@gmx.net>
1010
1011         * BufferView.[Ch]: make LyXText * text a private member
1012
1013         * BufferView_pimpl.C:
1014         * cursor.C:
1015         * iterators.C:
1016         * lyx_cb.C:
1017         * lyxfind.C:
1018         * lyxtext.h:
1019         * rowpainter.[Ch]:
1020         * text.C:
1021         * text2.C:
1022         * undo.C: adjust
1023
1024         * output_plaintext.C: cleanup
1025
1026 2003-11-27  Martin Vermeer  <martin.vermeer@hut.fi>
1027
1028         * buffer.C:
1029         * lyxtextclass.[Ch]: parametrize SGML document header
1030
1031 2003-11-27  Martin Vermeer  <martin.vermeer@hut.fi>
1032
1033         * converter.[Ch]:
1034         * exporter.C: replace bool-valued Pdflatex() by FLAVOR-valued
1035         getFlavor().
1036
1037 2003-11-27  Alfredo Braunstein  <abraunst@lyx.org>
1038
1039         * text2.C (setFont): rework using PosIterator (no more recursive)
1040         (setCharFont): no more needed
1041         (setLayout): no more selection cursors fiddling (done by redoCursor)
1042         * text.C: cursorRight(bv)->cursorRight(true) (TODO: find and
1043         destroy remaining ones)
1044
1045 2003-11-26  Alfredo Braunstein  <abraunst@lyx.org>
1046
1047         * bufferview_funcs.[Ch]: split changeDepthAllowed from changeDepth
1048         * lyxtext.h: ditto
1049         * text2.C: same thing + updateCounters fix + redoCursor also adjusts
1050         selection cursors
1051         * lyxfunc.C: adjust
1052         * text3.C: adjust + re-allow multi par depth changes
1053         * textcursor.C: simplify a bit
1054
1055 2003-11-25  Martin Vermeer  <martin.vermeer@hut.fi>
1056
1057         * src/buffer.C:
1058         * src/lyxlayout.C:
1059         * src/lyxlayout.h:
1060         * src/lyxtext.h:
1061         * src/output_docbook.C:
1062         * src/output_latex.C:
1063         * src/paragraph.C:
1064         * src/paragraph.h:
1065         * src/sgml.C:
1066         * src/sgml.h:
1067         * src/text2.C: Introducing a number of tags parametrizing various
1068         XML formats that we may want to support
1069
1070 2003-11-25  André Pönitz  <poenitz@gmx.net>
1071
1072         * InsetList.[Ch] (begein, end): inline as suggested by profiler
1073
1074         * lyxtext.h (leftMargin/rightMargin): simplify interface
1075
1076         * rowpainter.C:
1077         * text.C:
1078         * text2.C:
1079         * text3.C: adjust
1080
1081 2003-11-24  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
1082
1083         * lyxfunc.C (dispatch): propogate the bibtex databases from the
1084         master file to any child files. Fixes bug 546.
1085
1086 2003-11-24  Alfredo Braunstein  <abraunst@lyx.org>
1087
1088         * lyxfind.C (findNextChange): remove unneeded bv->text->init call
1089
1090 2003-11-24  André Pönitz  <poenitz@gmx.net>
1091
1092         * rowpainter.C: simplification
1093
1094         * text2.C (updateCounters): remove call to redoParagraph on
1095         changed labels as this is far too expensive.
1096
1097 2003-11-24  Alfredo Braunstein  <abraunst@lyx.org>
1098
1099         * converter.C (convert): fix a crash: this function gets
1100         called with buffer == 0 from importer code.
1101
1102 2003-11-22  Lars Gullik Bjonnes  <larsbj@gullik.net>
1103
1104         * text3.C (cursorPrevious): make sure that we do not compare
1105         iterators form different containers.
1106         (cursorNext): ditto
1107
1108         * rowpainter.C (paintSelection): make sure that we do not compare
1109         iterators from different containers.
1110
1111         * text3.C (dispatch): [PRIOR] make sure that we do not compare
1112         iterators from different ParagraphList containers.
1113         [NEXT] ditto
1114
1115         * text2.C (LyXText): change order of initialization slightly
1116         (operator=): new function. copy all variables except cache_par_
1117         (moveUp): make sure that we do not compare iterators from
1118         different ParagraphList constainers.
1119         (moveDown): ditto
1120
1121         * text.C (firstPar): new function
1122         (lastPar): new function
1123         (endPar): new function
1124
1125         * lyxtext.h: move things around and group public functions, public
1126         variables, private functions, private variables
1127
1128 2003-11-21  Michael Schmitt  <michael.schmitt@teststep.org>
1129
1130         * factory.C: change call to InsetERT constructor to avoid
1131         additional invocation of method status
1132         * text2.C (toggleInset): remove redundant update() call
1133         * InsetList.[Ch] (insetsOpenCloseBranch): Pass Buffer reference
1134         instead of a Bufferview pointer
1135
1136 2003-11-21  André Pönitz  <poenitz@gmx.net>
1137
1138         * rowpainter.C: simplification
1139
1140 2003-11-21  Alfredo Braunstein  <abraunst@lyx.org>
1141
1142         * text3.C (dispatch): make possible to extend a word/row selection
1143         with the mouse
1144
1145 2003-11-21  Alfredo Braunstein  <abraunst@lyx.org>
1146
1147         * lyxtext.h: x0_,y0_ -> xo_,yo_
1148         * text2.C (cursorUp, cursorDown): adjust + some cursorRow use
1149         * text3.C (checkInsetHit): fix coordinates using absolute xo_,yo_
1150         * rowpainter.C (paintRows): paint full paragraphs
1151
1152 2003-11-20  Alfredo Braunstein  <abraunst@lyx.org>
1153
1154         * text2.C (cursorUp, cursorDown): small fix (insettext::edit takes
1155         screen coordinates)
1156
1157 2003-11-20  Alfredo Braunstein  <abraunst@lyx.org>
1158
1159         * lyxtext.h: add x0_, y0_
1160         * text3.C (cursorPrevious, cursorNext): rewrite (using x0_, y0_)
1161         * text2.C (cursorDown, cursorUp): rewrite (using x0_, y0_)
1162
1163 2003-11-18  Alfredo Braunstein  <abraunst@lyx.org>
1164
1165         * text2.C (setCursorIntern): move the x_target update here *
1166         * text3.C: change some bv() to true/false in calls to
1167         cursorUp/Down/Right/Left
1168         * cursor.C: use helper function.
1169
1170 2003-11-17  Alfredo Braunstein  <abraunst@lyx.org>
1171
1172         * BufferView_pimpl.C: send LFUN_MOUSE_MOTION to the cursor
1173         * paragraph_funcs.[Ch]: correct comment
1174         * rowpainter.C: do not paint selections away from bv->cursor()
1175         Fix a long standing selection painting bug.
1176         * text3.C: generalize mouse-selection code to LyXTexts other that
1177         top one
1178         * textcursor.C: do not use y coords if we can use par offsets
1179
1180 2003-11-17  Alfredo Braunstein  <abraunst@lyx.org>
1181
1182         * lyxfunc.C (dispatch): add a missing LCursor::updatePos (fix
1183         cursor position after e.g. inset insert)
1184
1185 2003-11-16  Alfredo Braunstein  <abraunst@lyx.org>
1186
1187         * lyxfind.C (replace): adjust to locking removal + some
1188         code simplification
1189
1190 2003-11-14  Alfredo Braunstein  <abraunst@lyx.org>
1191
1192         * cursor.C (dispatch): dispatch to BufferView::dispatch at the end
1193         of the path
1194
1195 2003-11-14  Martin Vermeer  <martin.vermeer@hut.fi>
1196
1197         * lyxlayout.[Ch]:
1198         * output_docbook.C: XML sanitation: new layout
1199         parameters InnerTag and CommandDepth
1200
1201 2003-11-13  Martin Vermeer  <martin.vermeer@hut.fi>
1202
1203         * BufferView_pimpl.C:
1204         * factory.C:
1205         * text3.C: Fix the insertion and modification of button-style
1206         insets
1207
1208 2003-11-13  André Pönitz  <poenitz@gmx.net>
1209
1210         * InsetList.[Ch]: remove deleteLyXText
1211
1212         * paragraph.[Ch]: cache beginOfBody position
1213
1214         * Bidi.C:
1215         * text.C:
1216         * text2.C:
1217         * text3.C: remove superfluous update() calls
1218
1219         * vspace.C: cleanup
1220
1221 2003-11-13  Alfredo Braunstein  <abraunst@lyx.org>
1222
1223         * BufferView_pimpl.C (fitCursor): call screen().fitCursor()
1224         * BufferView.C (fitLockedInsetCursor): remove
1225         * cursor.[Ch] (getDim): add
1226         * text.C (getRowNearY): add faster version
1227         * text3.C: remove some update calls
1228
1229 2003-11-12  Martin Vermeer  <martin.vermeer@hut.fi>
1230
1231         * LaTeXFeatures.C:
1232         * LyXAction.C:
1233         * MenuBackend.C:
1234         * MenuBackend.h:
1235         * dispatchresult.h:
1236         * factory.C:
1237         * lfuns.h:
1238         * lyxfunc.C:
1239         * lyxtextclass.C:
1240         * lyxtextclass.h:
1241         * text3.C: The Character Style /XML short element patch.
1242
1243 2003-11-11  Martin Vermeer  <martin.vermeer@hut.fi>
1244
1245         * text3.C:
1246         * factory.C: Small step to solving 'unable to insert some insets'
1247         problem
1248
1249 2003-11-11  Alfredo Braunstein  <abraunst@lyx.org>
1250
1251         * cursor.[Ch] (updatePos): new function for updating the y
1252         position of the tip inset
1253         * bufferview_funcs.C (put_selection_at):
1254         * BufferView_pimpl.C (workAreaDispatch): rationalise update calls
1255
1256 2003-11-11  André Pönitz  <poenitz@gmx.net>
1257
1258         * text.C: remove big comment on invalid Paragraph pointers as it is
1259         not valid anymore
1260
1261 2003-11-11  André Pönitz  <poenitz@gmx.net>
1262
1263         * text_funcs.[Ch]: merge with ...
1264
1265         * text.C: ... this
1266
1267         * lyxtext.h:
1268         * text2.C:
1269         * text3.C: adjust
1270
1271         * Makefile.am: remove text_funcs.[Ch]
1272
1273 2003-11-11  Alfredo Braunstein  <abraunst@libero.it>
1274
1275         * cursor.C (getPos): return absolute cached y coord
1276
1277         * BufferView_pimpl.C (fitCursor): new simplistic code
1278         (workAreaDispatch): add a fitCursor call
1279
1280 2003-11-10  André Pönitz  <poenitz@gmx.net>
1281
1282         * BufferView.[Ch]:
1283         * BufferView_pimpl.[Ch]: merge update() and updateInset()
1284
1285 2003-11-10  André Pönitz  <poenitz@gmx.net>
1286
1287         * lfuns.h: new LFUN_FINISHED_LEFT, LFUN_FINISHED_RIGHT,
1288         LFUN_FINISHED_UP, LFUN_FINISHED_DOWN used in dispatch to
1289         indicate that the cursor needs to leave an inset
1290
1291         * lyxtext.h: remove inset locking
1292
1293         * cursor.[Ch]: re-implement functionality provided by inset locking
1294
1295         * BufferView.[Ch]:
1296         * BufferView_pimpl.[Ch]:
1297         * LyXAction.C:
1298         * bufferview_funcs.[Ch]:
1299         * factory.C:
1300         * funcrequest.[Ch]:
1301         * iterators.C:
1302         * lyx_cb.C:
1303         * lyxfind.C:
1304         * lyxfunc.C:
1305         * text.C:
1306         * text2.C:
1307         * text3.C:
1308         * undo.C: adjust
1309
1310 2003-11-07  Alfredo Braunstein  <abraunst@libero.it>
1311
1312         * PosIterator.[Ch]: replace the stack with a vector, add inset
1313         accesor
1314         * iterators.[C]: adjust
1315
1316 2003-11-06  Alfredo Braunstein  <abraunst@libero.it>
1317
1318         * lyxfind.C (replaceAll): mark the buffer dirty if something was
1319         replaced
1320         * paragraph_funcs.C (readParToken): put the correct id in the
1321         error item, not the id of the top paragraph
1322
1323 2003-11-06  Alfredo Braunstein  <abraunst@libero.it>
1324
1325         * iterators.[Ch] (ParIterator): new PosIterator-based ctor
1326         * bufferview_funcs.C (put_selection_at): use the above
1327
1328 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
1329
1330         * text2.C (deleteEmptyParagraphMechanism): fix n-th crash
1331
1332 2003-11-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1333
1334         * output_linuxdoc.h:
1335         * output_plaintext.h:
1336         * output.h:
1337         * output_docbook.h: add #include statements
1338
1339 2003-11-05  José Matos  <jamatos@lyx.org>
1340
1341         * output_docbook.[Ch]:
1342         * output_latex.[Ch]:
1343         * output_linuxdoc.[Ch]:
1344         * output_plaintext.[Ch]: New files for output formats.
1345         * output.[Ch]: New file for helper functions.
1346
1347         * buffer.[Ch]:
1348         * paragraph_funcs.[Ch]: output functions moved to new files.
1349
1350         * outputparams.h: rename of latexrunparams.h
1351
1352         * LaTeX.[Ch]:
1353         * buffer.[Ch]:
1354         * bufferlist.[Ch]:
1355         * converter.[Ch]:
1356         * exporter.C:
1357         * paragraph.[Ch]:
1358         * paragraph_funcs.[Ch]:
1359         * paragraph_pimpl.[Ch]:
1360         * tabular.[Ch]: rename ascii to plaintext
1361         and LatexRunParams to OutputParams.
1362
1363 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
1364
1365         * iterators.[Ch] (text): require bv argument
1366         * undo.C (recordUndo):
1367         * lyxfunc.C (dispatch):
1368         * bufferview_funcs.C (put_selection_at): adjust
1369
1370 2003-11-05  João Luis M. Assirati  <assirati@fma.if.usp.br>
1371
1372         * lyxsocket.C: export variables XEDITOR and LYXSOCKET
1373
1374 2003-11-05  Alfredo Braunstein  <abraunst@libero.it>
1375
1376         * lyxfunc.C (dispatch): make LFUN_GOTO_PARAGRAPH work with deep
1377         nestings
1378
1379 2003-11-04  André Pönitz  <poenitz@gmx.net>
1380
1381         * cursor.[Ch]: restructure
1382
1383         * BufferView.[Ch]:
1384         * BufferView_pimpl.[Ch]: new LCursor cursor_ member
1385
1386         * iterators.[Ch] (asCursor): remove
1387
1388         * lfuns.h: remove LFUN_INSET_EDIT
1389
1390         * lyxfunc.C:
1391         * tabular.C:
1392         * text.C:
1393         * text2.C:
1394         * text3.C: use Inset::edit() instead of dispatch(LFUN_INSET_EDIT)
1395
1396 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
1397
1398         * lyxfind.[Ch]: complete overhaul
1399         * BufferView_pimpl.C:
1400         * lyxfunc.C: adjust
1401         * paragraph.[Ch] (insert): add
1402
1403 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
1404
1405         * BufferView.[Ch]:
1406         * lyxtext.h:
1407         * text.C: remove dead spellcheck code
1408
1409 2003-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
1410
1411         * dispatchresult.h: add a val setter
1412
1413         * cursor.C (dispatch): use a tempvar for data_[i]
1414
1415 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
1416
1417         * PosIterator.[Ch]: compile fix
1418
1419 2003-11-04  Alfredo Braunstein  <abraunst@libero.it>
1420
1421         * text.C (cursorPar): deactivate the cursor cache
1422
1423 2003-11-03  Alfredo Braunstein  <abraunst@libero.it>
1424
1425         * undo.C (performUndoOrRedo): fix cursor positioning with lockPath
1426
1427 2003-11-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
1428
1429         * text3.C (dispatch): adjust for new DisptchResult semantics.
1430
1431         * lyxfunc.C (dispatch): handle update when return from
1432         Cursor::dispatch, adjust for new DispatchResult semantics.
1433
1434         * dispatchresult.h: drop NOUPDATE from dispatch_result_t. Make
1435         DispatchResult(true) mean to not update. Add class functions for
1436         setting dispatched and update, as well as reading.
1437
1438         * cursor.C (dispatch): don't handle update here
1439
1440 2003-11-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
1441
1442         * trans_mgr.h: store t1_ and t2_ in scoped_ptr
1443         * trans_mgr.C: adjust
1444
1445         * paragraph_funcs.C (readParToken): exception safety
1446
1447         * lyxvc.h: store the vcs pointer in a scoped_ptr
1448         * lyxvc.C: adjust
1449
1450         * lyxsocket.C (serverCallback): exception safety
1451
1452         * lyx_cb.C (AutoSaveBuffer): make it return a auto_ptr
1453
1454         * ispell.C (clone): make it return a auto_ptr
1455
1456         * factory.C (createInset): exception safety
1457         (readInset): exception safety
1458
1459         * bufferlist.C (newBuffer): exception safety
1460
1461         * Thesaurus.C (Thesaurus): use initialization for aik_
1462
1463         * MenuBackend.C (expandToc): exception safety.
1464
1465 2003-11-03  André Pönitz  <poenitz@gmx.net>
1466
1467         * buffer.C:
1468         * buffer.h:
1469         * bufferview_funcs.C: remove getInsetFromId()
1470
1471         * lyxcursor.[Ch]:
1472         * BufferView.[Ch]: move x_fix from LyXCursor to BufferView
1473
1474         * lyxfunc.C:
1475         * text2.C:
1476         * text3.C: adjust
1477
1478 2003-11-03  Alfredo Braunstein  <abraunst@libero.it>
1479
1480         * PosIterator.C (distance, advance): new
1481         * bufferview_funcs.[Ch] (put_selection_at): new
1482         * iterators.[Ch] (lockPath): new
1483
1484 2003-11-02  Alfredo Braunstein  <abraunst@libero.it>
1485
1486         * iterators.[Ch] (asPosIterator): added
1487         * buffer.[Ch] (pos_iterator_begin, pos_iterator_end): added
1488         * PosIterator.[Ch]: added
1489
1490 2003-11-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
1491
1492         * text3.C:
1493         * lyxfunc.C:
1494         * cursor.C (dispatch):
1495         * BufferView_pimpl.C (dispatch): adjust for DispatchResult changes
1496
1497         * dispatchresult.h: remove UNDISPATCHED, DISPATCHED and
1498         DISPATCHED_NOUPDATE from dispatch_result_t, add NONE. Add a
1499         contructor, add a class function dispatched. Remove operator>=
1500
1501 2003-11-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
1502
1503         * debug.C: only use the default constructor for debugstream
1504         (lyxerr) here.
1505
1506         * main.C (main): include debug.h and setup the lyxerr streambuf
1507         here.
1508
1509 2003-10-31  José Matos  <jamatos@lyx.org>
1510
1511         * paragraph_funcs.C (addDepth, asciiParagraph): move from buffer.C
1512
1513         * buffer.[Ch] (writeFileAscii, makeLinuxDocFile, makeDocBookFile):
1514         * paragraph.[Ch] (simpleLinuxDocOnePar, simpleDocBookOnePar, asString):
1515         * paragraph_funcs.[Ch] (linuxdocParagraphs, docbookParagraphs):
1516         * paragraph_pimpl.C (simpleTeXSpecialC):
1517         * tabular.[Ch] (linuxdoc, docbookRow, docbook, ascii):
1518         add LatexRunParams argument.
1519
1520         * exporter.C (Export): change call accordingly.
1521
1522         * latexrunparams.h: add new member to take care of the other backends.
1523 2003-10-30  José Matos  <jamatos@lyx.org>
1524
1525         * buffer.C (makeLinuxDocFile, makeDocBookFile):
1526         * paragraph_funcs.[Ch] (linuxdocParagraphs, docbookParagraphs):
1527         factorise code for paragraph output.
1528         * buffer.[Ch]:
1529         * paragraph.[Ch] (simpleLinuxDocOnePar, simpleDocBookOnePar):
1530         move functions.
1531
1532 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
1533
1534         * text3.C (dispatch):
1535         * lyxfunc.C (dispatch):
1536         * cursor.C (dispatch):
1537         * BufferView_pimpl.C (dispatch): explict DispatchResult ctor fallout.
1538
1539         * dispatchresult.h: make the dispatch_result_t ctor explicit
1540
1541 2003-10-29  Martin Vermeer  <martin.vermeer@hut.fi>
1542
1543         * sgml.[Ch]:
1544         * buffer.C: small refactoring of docbook stuff
1545
1546 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
1547
1548         * dispatchresult.h: remove FINISHED_POP as FINISHED has the same
1549         meaning.
1550
1551 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
1552
1553         * dispatchresult.h: rename DISPATCHED_POP to FINISHED_POP, remove
1554         operator dispatch_result_t, and operators for == != and >=
1555
1556         * cursor.C (dispatch): adjust for operator dispatch_result_t
1557         removal. comment out call to update
1558
1559         * BufferView_pimpl.C (dispatch): dont implicit covert to bool
1560
1561 2003-10-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
1562
1563         * text3.C:
1564         * text2.C:
1565         * text.C:
1566         * lyxtext.h:
1567         * lyxfunc.C:
1568         * cursor.C:
1569         * BufferView_pimpl.C: dispatch_result -> DispatchResult changes.
1570         (dispatch):
1571
1572         * dispatchresult.h: new file, DispatchResult broken out of
1573         insets/insetbase.h
1574
1575         * Makefile.am (lyx_SOURCES): add dispatchresult.h
1576
1577 2003-10-28  Alfredo Braunstein  <abraunst@libero.it>
1578
1579         * text.C (rowBreakPoint): put a hack inside #if 0
1580
1581 2003-10-28  André Pönitz  <poenitz@gmx.net>
1582
1583         * lyxtext.h:
1584         * metricsinfo.C:
1585         * paragraph_funcs.C:
1586         * rowpainter.C:
1587         * text.C:
1588         * text2.C: general cleanup (lots of small stuff)
1589
1590 2003-10-28  Alfredo Braunstein  <abraunst@libero.it>
1591
1592         * text2.C (cursorEnd): simple fix to the "end key goes to one
1593         before the end on last row" bug
1594
1595 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
1596
1597         * text.C (backspace): fix the "zombie characters"
1598
1599 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
1600
1601         * lyxfunc.C (dispatch): small fix to toc navigation inside branches
1602
1603 2003-10-27  André Pönitz  <poenitz@gmx.net>
1604
1605         * lfuns.h: new LFUN_REPEAT, LFUN_INSERT_LINE, LFUN_INSERT_PAGEBREAK
1606
1607         * factory.C: handle new InsetPagebreak, InsetLine
1608
1609         * ParagraphParameters.h: remove [line|pagebreak]_[above|below]
1610         and move handling into new InsetPagebreak, InsetLine
1611
1612         * BufferView_pimpl.C:
1613         * LyXAction.C:
1614         * ParagraphParameters.C:
1615         * ParameterStruct.h:
1616         * lyxfunc.C:
1617         * lyxtext.h:
1618         * paragraph.C:
1619         * paragraph.h:
1620         * paragraph_funcs.C:
1621         * paragraph_pimpl.C:
1622         * rowpainter.C:
1623         * text.C:
1624         * text2.C:
1625         * text3.C: adjust
1626
1627 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
1628
1629         * text.C:
1630         * lyxrow_funcs.[Ch]:
1631         * Bidi.C:
1632         * paragraph.C:
1633         * lyxtext.h:
1634         * rowpainter.C:
1635         * text2.C:
1636         * text3.C: remove lastPos uses in favour of Row::endpos
1637
1638 2003-10-27  Alfredo Braunstein  <abraunst@libero.it>
1639
1640         * undo.C (performUndoOrRedo): fix two crashes by setting a
1641         cursor by hand and reordering some calls. Use bv->lockInset instead
1642         of inset->edit because the latter loses cursor information
1643
1644 2003-10-25  Alfredo Braunstein  <abraunst@libero.it>
1645
1646         * text.C (prepareToPrint): fix linebreak rowbreaking as suggested
1647         by Martin
1648         (rowBreakPoint): fix width. change point to point + 1.
1649         Add a missing check.
1650
1651 2003-10-25  Martin Vermeer  <martin.vermeer@hut.fi>
1652
1653         * MenuBackend.C:
1654         * lyxfunc.C: fix (at least partly) the problems
1655         with the Nav menu and headers inside branch insets
1656         reported by Kayvan
1657
1658 2003-10-24  Alfredo Braunstein  <abraunst@libero.it>
1659
1660         * paragraph.C (getChar): add strong asserts
1661
1662         * lyxrow_funcs.C (lastPos): remove hideous hack
1663
1664         * text.C (addressBreakPoint, rowBreakPoint): put endpos in place
1665         (fill): adjust to that (avoid an infinite loop)
1666
1667 2003-10-23  Alfredo Braunstein  <abraunst@libero.it>
1668
1669         * text3.C (cursorPrevious, cursorNext): fix 2 "dontlikes"
1670
1671 2003-10-23  André Pönitz  <poenitz@gmx.net>
1672
1673         * RowList_fwd.h: change list<> to vector<> to gain speed
1674         after suggestion from Alfredo
1675
1676 2003-10-23  Alfredo Braunstein  <abraunst@libero.it>
1677
1678         * lyxtext.h: move the bidi stuff from here...
1679         * text.C: and here
1680         * text2.C: and here
1681         * Bidi.[Ch]: ... to here
1682
1683 2003-10-23  André Pönitz  <poenitz@gmx.net>
1684
1685         * lyxtext.h:
1686         * text.C (isLastRow, isFirstRow): new functions
1687
1688         * paragraph.h: new width cache member
1689
1690         * rowpainter.C: replace RowList::iterator with Row & where possible
1691
1692         * lyxfunc.C: replace several view()->text with a single call
1693
1694         * toc.C: fix 'unused' warning
1695
1696 2003-10-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
1697
1698         * lyxlex_pimpl.C (setFile,setStream): be sure to use correct types
1699         when woring with stream::pos_type
1700         * paragraph_pimpl.C (simpleTeXSpecialChars): ditto
1701
1702 2003-10-22  André Pönitz  <poenitz@gmx.net>
1703
1704         * lyxtext.h:
1705         * text.C: use Row & instead of RowList::iterator
1706
1707         * lyxrow.h: rename end() to endpos()
1708
1709         * rowpainter.C:
1710         * text.C:
1711         * text2.C: adjust
1712
1713 2003-10-22  Angus Leeming  <leeming@lyx.org>
1714
1715         * buffer.[Ch] (fully_loaded): new member function, returning true
1716         only when the file has been loaded fully.
1717         Used to prevent the premature generation of previews and by the
1718         citation inset to prevent computation of the natbib-style label.
1719
1720         * buffer_funcs.C (newFile): set Buffer::fully_loaded once the
1721         templates are all set up.
1722
1723         * factory.C (createInset): remove call to InsetCitation::setLoadingBuffer.
1724
1725 2003-10-22  Martin Vermeer  <martin.vermeer@hut.fi>
1726
1727         * text.C: fixed an "oops" in the "is a bit silly"
1728         bug fix
1729
1730 2003-10-21  André Pönitz  <poenitz@gmx.net>
1731
1732         * FuncStatus.[Ch]: small stuff, whitespace
1733
1734         * lyxfont.[Ch]: operator<<() for debug reasons
1735
1736         * lyxfunc.C:
1737         * lyxrow_funcs.C:
1738         * lyxtext.h: whitespace, spelling
1739
1740         * paragraph.C: naming of variables
1741
1742         * text.C:
1743         * text2.C: small stuff
1744
1745
1746 2003-10-21  Martin Vermeer  <martin.vermeer@hut.fi>
1747
1748         * text.C: (1) finish off the inset display() work;
1749         (2) fix the "is a bit silly" bug (accessing char
1750         past end of par).
1751
1752 2003-10-20  Martin Vermeer  <martin.vermeer@hut.fi>
1753
1754         * text.C: re-introduce display() for insets, fixing the
1755         various bugs (stretch of line above, math inset
1756         positioning, ...)
1757
1758 2003-10-20  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1759
1760         * text.C (rightMargin): remove spurious semicolon
1761
1762         * lengthcommon.C: add empty unit_name* entries for UNIT_NONE (bug
1763         1415)
1764
1765 2003-10-18  Martin Vermeer  <martin.vermeer@hut.fi>
1766
1767         * text3.C: fix one crash due to wrong cursor def
1768
1769 2003-10-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
1770
1771         * vc-backend.C (scanMaster): make the regex static
1772
1773         * LaTeX.C (scanAuxFile): make the regexs static
1774
1775         * text3.C (doInsertInset, dispatch, dispatch):
1776         * text2.C (cursorUp, cursorDown):
1777         * text.C (selectNextWordToSpellcheck):
1778         * BufferView_pimpl.C (dispatch):
1779         * lyxfunc.C (dispatch):  localDispatch -> dispatch
1780
1781 2003-10-14  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
1782
1783         * lyxsocket.C: include <cerrno>
1784
1785 2003-10-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
1786
1787         * lyxfunc.C (dispatch): remove textcache stuff
1788
1789         * bufferlist.C (release): remove textcache stuff
1790         (closeAll): ditto
1791
1792         * TextCache.C: delete file
1793         * TextCache.h: delete file
1794
1795         * Makefile.am (lyx_SOURCES): delete TextCache.C and TextCache.h
1796
1797         * BufferView_pimpl.C (buffer): remove textcache stuff, add a
1798         delete of the bv_->text.
1799         (resizeCurrentBuffer): remove texcache stuff
1800         (workAreaResize): ditto
1801
1802 2003-10-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
1803
1804         * lyxfunc.C (getStatus): also set flag disabled if it is a unknown
1805         action.
1806
1807 2003-10-16  André Pönitz  <poenitz@gmx.net>
1808
1809         * lyxrow.[Ch]:
1810         * paragraph.h:
1811         * rowpainter.C:
1812         * text.C:
1813         * text2.C:
1814         * text3.C: speed up by storing y positions per paragraph plus per-row
1815         offset instead of having a 'full' y position in the row.
1816
1817 2003-10-15  André Pönitz  <poenitz@gmx.net>
1818
1819         * iterators.[Ch]:
1820         * iterators.[Ch]:
1821         * undo.[Ch]: make undo aware of inner insets
1822
1823 2003-10-14  Angus Leeming  <leeming@lyx.org>
1824
1825         * lyx_main.[Ch]: make LyX a singleton class, accessible though the new
1826         static member functions LyX::ref() and LyX::cref.
1827         (lastfiles): new accessor functions for the new lastfiles_ member var.
1828         (addLyXView, views_): add a new LyXView to the list of views_.
1829         (updateInset): loop over all LyXViews to call their own updateInset
1830         member function, returning a pointer to the Buffer owning the inset.
1831
1832         * BufferView_pimpl.C (loadLyXFile):
1833         * MenuBackend.C (expandLastfiles):
1834         * bufferlist.C (MenuWrite, QuitLyX):
1835         lastfiles is no longer a global variable.
1836         Access through LyX::ref().lastfiles(), LyX::cref().lastfiles().
1837
1838         * boost.C (emergencyCleanup): LyX::emergencyCleanup is no longer a
1839         static function. Access through LyX::cref().emergencyCleanup().
1840
1841 2003-10-14  André Pönitz  <poenitz@gmx.net>
1842
1843         * iterators.[Ch]: new direct access to innermost LyXText and Inset
1844
1845         * undo.[Ch]: restoring part of 'undo in insets'
1846
1847         * Makefile.am:
1848         * undo_funcs.[Ch]: merge with undo.[Ch]
1849
1850         * tabular.C: small cleansing stuff
1851
1852 2003-10-14  Alfredo Braunstein  <abraunst@libero.it>
1853
1854         * paragraph_funcs.C (readParToken): report unknown insets as error
1855         boxes. Use the outer paragraph as location (also for unknown
1856         tokens).
1857
1858         * factory.C (readInset): do not abort on reading an unknown inset.
1859         Eat it and return 0.
1860
1861 2003-10-13  Angus Leeming  <leeming@lyx.org>
1862
1863         * lyx_main.C (LyX): remove call to setDisplayTranslator().
1864
1865         * lyxrc.C: displayTranslator is now a function,
1866         declared in GraphicsTypes.h.
1867
1868 2003-10-13  Joao Luis Meloni Assirati <assirati@fma.if.usp.br>
1869
1870         * format.C: new placeholder $$a to pass the socket address.
1871
1872         * bufferlist.[Ch]: new function getBufferFromTmp.
1873
1874         * lyxfunc.C: Modification of LFUN_GOTOFILEROW so that it can handle
1875           files in the temporary dir.
1876
1877 2003-10-13  Joao Luis Meloni Assirati <assirati@fma.if.usp.br>
1878
1879         * lyxsocket.[Ch]: new files. A simple local socket interface for lyx.
1880
1881         * Makefile.am: add lyxsocket.[Ch].
1882
1883         * lyx_main.C (error_handler): handle SIGPIPE.
1884
1885 2003-10-13  André Pönitz  <poenitz@gmx.net>
1886
1887         * BufferView_pimpl.C:
1888         * lyxtext.h:
1889         * text.C:
1890         * text2.C:
1891         * text3.C:
1892         * undo_funcs.[Ch]: use paroffset_type instead of
1893           ParagraphList::iterators to prevent multiple conversion
1894           (and get a more robust interface)
1895
1896 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
1897
1898         * lyxfunc.C (dispatch): RESULT -> dispatch_result
1899         * lyxtext.h: ditto
1900         * text3.C (dispatch): ditto
1901
1902 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
1903
1904         * LaTeX.C (handleFoundFile): move the static to smaller scope,
1905         move the onlyfile, use onlyfile instead of foundfile in a couple
1906         of places.
1907
1908         * DepTable.C (update): flush the error stream a bit more
1909
1910 2003-10-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
1911
1912         * lyxserver.C (callback): adjust
1913
1914         * lyxfunc.C (getStatus): add a missing brace in commented code
1915         (ensureBufferClean): reindent
1916         (dispatch): delete version taking a string
1917
1918 2003-10-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
1919
1920         * LaTeX.C (deplog): move found file handlig from here...
1921         (handleFoundFile): .. to new function here.
1922         (deplog): make sure to discover several files mentioned on the
1923         same log line.
1924
1925 2003-10-10  André Pönitz  <poenitz@gmx.net>
1926
1927         * lyxfunc.C:
1928         * lyxtext.h:
1929         * tabular.C:
1930         * text.C:
1931         * text2.C:
1932         * text3.C: fix some of the tabular crashes
1933
1934 2003-10-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
1935
1936         * MenuBackend.C (binding): put debug message into Debug::KBMAP
1937
1938         * lyxlex_pimpl.C (setFile): put debug messages into Debug::LYXLEX.
1939
1940 2003-10-09  André Pönitz  <poenitz@gmx.net>
1941
1942         * lyxcursor.h: use paroffset_type instead of ParagraphList::iterator
1943
1944         * BufferView.C:
1945         * BufferView_pimpl.C:
1946         * bufferview_funcs.C:
1947         * lyx_cb.C:
1948         * lyxcursor.C:
1949         * lyxfind.C:
1950         * lyxfunc.C:
1951         * lyxtext.h:
1952         * text.C:
1953         * text2.C:
1954         * text3.C:
1955         * text_funcs.[Ch]:
1956         * textcursor.[Ch]:
1957         * undo_funcs.C: adjust
1958
1959 2003-10-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
1960
1961         * text2.C (incrementItemDepth): new function, use a backtracking
1962         algorithm to discover the correct item depth.
1963         (resetEnumCounterIfNeeded): new function, use a backtracking
1964         algorithm to discover if counter reset is needed.
1965         (setCounter): use them. Simplify a bit. Add different labels for
1966         different item depths for itemize.
1967
1968         * paragraph.C (Paragraph): remove initialization of enumdepth
1969         (operator=): ditto
1970
1971         * paragraph.h: get rid of enumdepth, and use itemdepth both for
1972         enumerate and itemize. Change the type of itemdepth to signed char.
1973
1974 2003-10-08  André Pönitz  <poenitz@gmx.net>
1975
1976         * lyxtext.h: make the paragraphs_ a pointer instead a ref to make the
1977           thing assignable.
1978         * text.C:
1979         * text2.C: adjust
1980
1981         * tabular.[Ch]: fix crash after 'row-insert'
1982
1983 2003-10-08  Angus Leeming  <leeming@lyx.org>
1984
1985         Fix doxygen warnings.
1986
1987         * CutAndPaste.[Ch] (availableSelections). Now returns a const vector.
1988         Remove CutAndPaste:: prefix from header file declaration.
1989
1990         * LColor.h (fill): remove LColor:: prefix from declaration.
1991
1992         * buffer.C (readParagraph, simpleLinuxDocOnePar, simpleDocBookOnePar):
1993         use lyx::depth_type rather than Paragraph::depth_type so that
1994         header file and .C file match.
1995
1996         * converter.h (intToFormat): remove Converters:: prefix from declaration.
1997
1998         * Spacing.h: \file Spacing.h -> \file src/Spacing.h
1999         * aspell.C: \file aspell_local.C -> \file aspell.C
2000         * gettext.C: \file gettext.C -> \file src/gettext.C
2001         * gettext.h: \file gettext.h -> \file src/gettext.h
2002         * lyxfont.C: \file lyxfont.C -> \file src/lyxfont.C
2003         * lyxfont.h: \file lyxfont.h -> \file src/lyxfont.h
2004         * text.C: \file text.C -> \file src/text.C
2005
2006         * toc.C: move comment so that doxygen is not confused.
2007
2008 2003-10-07  Angus Leeming  <leeming@lyx.org>
2009
2010         * factory.C (createInset): InsetExternal::Params -> InsetExternalParams
2011
2012 2003-10-07  Jürgen Spitzmüller <j.spitzmueller@gmx.de>
2013
2014         * aspell.C:
2015         * aspell_local.h: add forgotten std::string's.
2016
2017 2003-10-07  Martin Vermeer <martin.vermeer@hut.fi>
2018
2019         * LaTeXFeatures.C:
2020         * LyXAction.C:
2021         * factory.C:
2022         * lfuns.h:
2023         * lyxfunc.C:
2024         * text3.C: The Box patch. Fancybox support, minipage, parbox
2025
2026 2003-10-07  Martin Vermeer <martin.vermeer@hut.fi>
2027
2028         * CutAndPaste.h:
2029         * DepTable.h:
2030         * FloatList.h:
2031         * LaTeXFeatures.h:
2032         * ParagraphParameters.h:
2033         * TextCache.h:
2034         * Thesaurus.h:
2035         * bufferlist.h:
2036         * exporter.h:
2037         * importer.h:
2038         * lastfiles.h:
2039         * lyxfind.h:
2040         * lyxfont.h:
2041         * lyxlex.h:
2042         * lyxtextclasslist.h:
2043         * messages.h:
2044         * paragraph.h:
2045         * paragraph_pimpl.C:
2046         * textcursor.h: add <string> and other small fixes to make Lars'
2047         std::string patch compile with STLport.
2048
2049 2003-10-06  Angus Leeming  <leeming@lyx.org>
2050
2051         * LColor.h: Add missing #include <string>.
2052
2053 2003-10-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
2054
2055         * All most all file in all subdirs: Make <string> be the prefered
2056         way of getting to std::string, add using declarations.
2057
2058 2003-10-06  André Pönitz  <poenitz@gmx.net>
2059
2060         * metricsinfo.C: initialize LyXFont before changing attribute.
2061         (fixes the 'math in \emph is upright' bug)
2062
2063 2003-10-06  André Pönitz  <poenitz@gmx.net>
2064
2065         * tabular.[Ch]: saner reinitialization, ret rid of LyXTabular::owner_
2066
2067 2003-10-06  Martin Vermeer  <martin.vermeer@hut.fi>
2068
2069         * graph.C:
2070         * paragraph_pimpl.C: Small fixes to build using STLport
2071
2072 2003-10-02  André Pönitz  <poenitz@gmx.net>
2073
2074         * lyxfunc.C:
2075         * text3.C: move handling of LFUN_DEPTH *; fix #1360
2076
2077 2003-10-01  André Pönitz  <poenitz@gmx.net>
2078
2079         * factory.C: assert early
2080
2081 2003-09-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
2082
2083         * lyx_main.C: remove the global debug object
2084
2085         * debug.h: adjust for new debugstream
2086
2087         * debug.C: adjust for new debugstream and keep the global debug
2088         object here.
2089
2090 2003-09-22  Angus Leeming  <leeming@lyx.org>
2091
2092         * paragraph_pimpl.h: add #include "lyxfont.h". Needed by earlier versions
2093         of g++ which otherwise complain that the scoped_ptr destructor can't delete
2094         an incomplete class LyXFont.
2095
2096 2003-09-22  Martin Vermeer  <martin.vermeer@hut.fi>
2097
2098         * factory.C: bug fix in branches
2099
2100 2003-09-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
2101
2102         * lyxfunc.C (processKeySym): adjust
2103         (dispatch): adjust
2104         (dispatch): change arg name from ev to func, adjust
2105         (sendDispatchMessage): ditto
2106
2107         * lyx_main.C (defaultKeyBindings): adjust keybindings
2108         (deadKeyBindings): ditto
2109
2110         * kbsequence.C (addkey): return a FuncRequest
2111
2112         * kbmap.h (kb_key): struct var FuncRequest instead of int action.
2113
2114         * kbmap.C (bind): take a FuncRequest as arg, adjust
2115         (read): adjust
2116         (lookup): adjust
2117         (defkey): change to take a FuncRequest as arg, adjust
2118         (findbinding): take a FuncRequest as arg, adjust.
2119
2120         * funcrequest.h (operator=): added
2121
2122         * funcrequest.C (FuncRequest): default kb_action changed from
2123         LFUN_UNKNOWN_ACTION to LFUN_NO_ACTION
2124
2125         * buffer.C (dispatch): simplify
2126         (dispatch): adjust to take a FuncRequest as arg, adjust
2127
2128         * boost.C (assertion_failed): change assertion message slightly
2129
2130         * ToolbarBackend.C (read): simplify
2131
2132         * MenuBackend.C (binding): adjust call to findbinding, add a
2133         message if no binding is found.
2134         (read): simplify
2135         (expandToc): correct by adding a empty FuncRequest
2136
2137         * LyXAction.C: include <boost/assert.hpp>
2138         (isPseudoAction): delete function
2139         (LookupFunc): change name to...
2140         (lookupFunc): this. change return type to FuncRequest.
2141         (getActionName): take kb_action as arg, simplify
2142         (funcHasFlag): add an assert, simplify.
2143
2144 2003-09-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
2145
2146         * toc.C (action): return a FuncRequest, simplify
2147
2148         * lyxfunc.C (processKeySym): adjust
2149         (getStatus): delete version that takes an int.
2150         (getStatus): adjust
2151         (dispatch): delete version that takes action as int
2152         (dispatch): adjust
2153         (sendDispatchMessage): simplify and adjust
2154
2155         * funcrequest.C (getArg): take unsigned int as arg
2156
2157         * ToolbarBackend.C (read): adjust
2158         (add): delete version that takes func as a string.
2159         (getIton): take a FuncRequest as arg
2160
2161         * MenuBackend.h (MenuItem): store a FuncRequest instead of an int
2162         action.
2163
2164         * MenuBackend.C (MenuItem): add a new construct that only takes a
2165         Kind, simplify the constructor use for submenus.
2166         (add): adjust
2167         (expandLastfiles): adjust
2168         (expandDocuments): adjust
2169         (expandFormats): adjust
2170         (expandFloatListInsert): adjust
2171         (expandFloatInsert): adjust
2172         (expandToc2,expandToc,expandPasteRecent,expandBranches): adjust
2173
2174         * LyXAction.h: remove typdefs pseudo_map, arg_item and arg_map.
2175         Remove class variables lyx_pseudo_map and lyx_arg_map
2176
2177         * LyXAction.C (searchActionArg): delete function
2178         (getPseudoAction): delete function
2179         (retrieveActionArg): delete function
2180         (LookupFunc): make it return kb_action, simplify.
2181         (getActionName): simplify
2182
2183         * factory.C (createInset): fix new bug
2184
2185 2003-09-19  Angus Leeming  <leeming@lyx.org>
2186
2187         * CutAndPaste.C (pasteSelection): remove fudge used to set the
2188         masterFilename_ parameter in the include inset.
2189
2190         * factory.C (createInset): changes due to the changes to InsetInclude.
2191
2192 2003-09-19  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
2193
2194         * paragraph.C: use appropriate alignment tags inside floats (bug 1290)
2195
2196 2003-09-18  Angus Leeming  <leeming@lyx.org>
2197
2198         * buffer.C:
2199         * BufferView.C: pass the buffer when calling Inset::getLabelList,
2200         Inset::fillWithBibKeys.
2201         * tabular.[Ch] (getLabelList): receive, pass on a Buffer const & arg.
2202
2203 2003-09-18  Angus Leeming  <leeming@lyx.org>
2204
2205         * LaTeXFeatures.[Ch]: append a '_' to the names of all private member
2206         variables.
2207         (ctor): pass and store a 'Buffer const &'
2208         (buffer): new member function.
2209
2210         * buffer.C (makeDocBookFile, makeLinuxDocFile, makeLaTeXFile): pass
2211         '*this' to the LaTeXFeatures ctor.
2212
2213 2003-09-18  Angus Leeming  <leeming@lyx.org>
2214
2215         * LColor.h:
2216         * lyxfont.C:
2217         * lyxfont.h:
2218         * lyxtext.h:
2219         * text.C: rename EnumLColor as LColor_color.
2220
2221 2003-09-18  Angus Leeming  <leeming@lyx.org>
2222
2223         * cursor.[Ch]: use the dispatch_result wrapper class DispatchResult to
2224         remove #include "insets/insetbase.h" from cursor.h.
2225
2226 2003-09-18  Angus Leeming  <leeming@lyx.org>
2227
2228         * paragraph.[Ch] (insetAllowed): use the InsetOld::Code wrapper class
2229         InsetOld_code to remove #include "inset.h".
2230
2231         * iterators.C: add #include "insets/inset.h"
2232
2233 2003-09-16  Martin Vermeer  <martin.vermeer@hut.fi>
2234
2235         * BufferView.C: remove more locking stuff that apparently doesn't
2236         do anything sensible.
2237
2238 2003-09-16  André Pönitz  <poenitz@gmx.net>
2239
2240         * paragraph.[Ch]:
2241         * paragraph_pimpl.[Ch]: un-pimpl Paragraph::(Pimpl::)text for a >10%
2242           performance boost.
2243
2244 2003-09-16  Angus Leeming  <leeming@lyx.org>
2245
2246         * lyxfont.h (LyXFont_size): a wrapper class for LyXFont::FONT_SIZE.
2247
2248         * paragraph.[Ch] (highestFontInRange): use LyXFont_size as function
2249         arg/return type.
2250
2251         * paragraph.h: remove #include "lyxfont.h". Forward declare
2252         LyXFont_size.
2253
2254 2003-09-16  Angus Leeming  <leeming@lyx.org>
2255
2256         * paragraph.C (IsInsetChar): new function in namespace anon, moved out
2257         of support/textutils.h.
2258         (isWord): move the contents of support/textutils.h's IsWordChar here.
2259
2260         * buffer.C:
2261         * lyxfind.C:
2262         * rowpainter.C:
2263         * text.C:
2264         * text2.C: add #include "paragraph.h".
2265
2266         * rowpainter.C:
2267         * text.C: replace IsInsetChar(c) with a direct test of Paragraph::META_INSET.
2268
2269 2003-09-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
2270
2271         * main.C:
2272         * lyx_main.C:
2273         * lyx_cb.C:
2274         * buffer.C:
2275         * LaTeX.C: use namespace alias for lyx::support::os
2276
2277 2003-09-16  Angus Leeming  <leeming@lyx.org>
2278
2279         * bufferparams.C:
2280         * bufferview_funcs.C:
2281         * factory.C:
2282         * lyxfunc.C:
2283         * paragraph_pimpl.C:
2284         * rowpainter.C:
2285         * text.C: add #include "LColor.h".
2286
2287 2003-09-16  Angus Leeming  <leeming@lyx.org>
2288
2289         * lyxfont.[Ch]: (setFamily, setSeries, setShape, setSize, setEmph,
2290         setUnderbar, setNoun, setNumber, setColor, setLanguage): no longer
2291         return LyXFont &.
2292         Store the FontBits::color variable as an int rather than as an
2293         LColor::colorso that we can move LColor.h out of the lyxfont.h header
2294         file.
2295
2296         * rowpainter.C (paintAppendixStart, paintPageBreak, paintLengthMarker):
2297         LyXFont::setColor, decSize no longer return a LyXFont &, so cannot
2298         string calls together.
2299
2300         * lyxrc.C: add #include "LColor.h".
2301
2302 2003-09-15  Angus Leeming  <leeming@lyx.org>
2303
2304         * bufferparams.[Ch]: store the pimpl_ as a copied_ptr, rather than as
2305         a cow_ptr.
2306
2307 2003-09-15  Angus Leeming  <leeming@lyx.org>
2308
2309         * LColor.h: add an EnumLColor wrapper for LColor::color.
2310
2311         * lyxfont.[Ch] (color, setColor, realColor):
2312         * lyxtext.h, text.C (backgroundColor):
2313         pass EnumLColor args to/from the functions, rather than LColor::color
2314         ones.
2315
2316         * lyxfont.h:
2317         * lyxtext.h: forward declare EnumLColor.
2318
2319         * lyx_main.C: add #include "LColor.h".
2320
2321 2003-09-15  Angus Leeming  <leeming@lyx.org>
2322
2323         * .cvsignore: add lyx-gtk.
2324
2325 2003-09-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
2326
2327         * Chktex.C
2328         * LaTeX.C
2329         * LaTeXFeatures.C
2330         * ParagraphParameters.C
2331         * Spacing.C
2332         * buffer.C
2333         * bufferparams.C
2334         * bufferview_funcs.C
2335         * chset.C
2336         * counters.C
2337         * funcrequest.C
2338         * lyxfont.C
2339         * lyxgluelength.C
2340         * lyxlength.C
2341         * paragraph.C
2342         * paragraph_funcs.C
2343         * text3.C
2344         * vc-backend.C: remove usage of STRCONV
2345
2346 2003-09-15  Angus Leeming  <leeming@lyx.org>
2347
2348         * rowpainter.C (paintLengthMarker, paintPageBreak, paintAppendixStart):
2349         explicitly define the color passed to the painter.
2350
2351 2003-09-15  Angus Leeming  <leeming@lyx.org>
2352
2353         * bufferparams.C (BufferParams): reorder member initializers to avoid
2354         compiler warning.
2355
2356 2003-09-15  Alfredo Braunstein  <abraunst@libero.it>
2357
2358         * CutAndPaste.C (pasteSelection): remove an outdated #warning
2359         * text.C (updateRowPositions): remove an unusual nop
2360
2361 2003-09-12  André Pönitz  <poenitz@gmx.net>
2362
2363         * BufferView_pimpl.C:
2364         * Bullet.C:
2365         * layout.h:
2366         * lyxfunc.C:
2367         * lyxlayout.[Ch]:
2368         * lyxtextclass.C:
2369         * rowpainter.C:
2370         * text.C:
2371         * text2.C:
2372         * Counters.[Ch]: finish the 'automatic counters' job
2373
2374 2003-09-12  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
2375
2376         * aspell.C: include <boost/assert.cpp> (compile fix)
2377
2378 2003-09-10  Rob Lahaye  <lahaye@snu.ac.kr>
2379
2380         * boost.C (assertion_failed): use lyx::support::abort instead of
2381         assert.
2382
2383 2003-09-10  Angus Leeming  <leeming@lyx.org>
2384
2385         * Makefile.am (lyx_SOURCES): replace ParagraphList.h and RowList.h
2386         with their _fwd progeny.
2387
2388 2003-09-09  Angus Leeming  <leeming@lyx.org>
2389
2390         134 files throughtout the source tree: replace 'using namespace abc;'
2391         directives with the appropriate 'using abc::xyz;' declarations.
2392
2393 2003-09-09  Lars Gullik Bjønnes  <larsbj@lyx.org>
2394
2395         * boost.C (emergencyCleanup): moved here from LAssert.c
2396         (assertion_failed): new function, called by BOOST_ASSERT
2397
2398         * several files: change Assert to BOOST_ASSERT
2399
2400 2003-09-09  Angus Leeming  <leeming@lyx.org>
2401
2402         * buffer.[Ch]: Add an Impl class and move Buffer's member
2403         variables into it. As a result move several header files out of
2404         buffer.h.
2405
2406         Add header files to lots of .C files all over the tree as a result.
2407
2408 2003-09-09  Angus Leeming  <leeming@lyx.org>
2409
2410         * buffer.[Ch]: make Buffer's member variables private. Add
2411         accessor functions.
2412
2413         Lots of changes all over the tree as a result.
2414
2415 2003-09-08  Angus Leeming  <leeming@lyx.org>
2416
2417         * graph.C: #include <config.h>.
2418
2419 2003-09-08  Angus Leeming  <leeming@lyx.org>
2420
2421         * BranchList.C:
2422         * BufferView.C:
2423         * BufferView_pimpl.C:
2424         * CutAndPaste.C:
2425         * DepTable.C:
2426         * LaTeX.C:
2427         * LaTeXFeatures.C:
2428         * LyXAction.C:
2429         * MenuBackend.C:
2430         * TextCache.C:
2431         * aspell.C:
2432         * buffer.C:
2433         * bufferlist.C:
2434         * changes.C:
2435         * chset.C:
2436         * converter.C:
2437         * counters.C:
2438         * debug.C:
2439         * graph.C:
2440         * ispell.C:
2441         * lyx_cb.C:
2442         * lyxfind.C:
2443         * lyxfunc.C:
2444         * lyxlex_pimpl.C:
2445         * lyxrc.C:
2446         * lyxrow.C:
2447         * paragraph.C:
2448         * rowpainter.C:
2449         * texrow.C:
2450         * text.C:
2451         * text2.C:
2452         * toc.C: remove redundant using directives.
2453
2454 2003-09-07  Angus Leeming  <leeming@lyx.org>
2455
2456         * LaTeXFeatures.h: remove #include "support/types.h".
2457         * ToolbarBackend.h: remove #include <algorithm>.
2458         * changes.h: remove #include <ctime>.
2459         * debug.h: remove #include <iosfwd>.
2460         * graph.h: remove #include "support/std_string.h".
2461         * lyx_main.h: remove #include <csignal>.
2462         * lyxlex_pimpl.h: remove #include <fstream>.
2463         * sgml.h: remove #include <algorithm>, <utility>.
2464         * toc.h: remove #include "support/std_ostream.h".
2465         Add #include <iosfwd>.
2466
2467 2003-09-07  Angus Leeming  <leeming@lyx.org>
2468
2469         * vspace.[Ch] (length): returns a const & to a LyXGlueLength.
2470
2471         * converter.h: forward declare LatexRunParams.
2472         * encoding.h: remove #include "lyxrc.h".
2473         * lyxtext.h: remove #include "LColor.h".
2474         * lyxtextclass.h: remove #include "support/types.h".
2475         * trans.h: remove #include "tex-accent.h".
2476         * trans_mgr.h: remove #include "tex-accent.h".
2477         * insets/inset.h: remove #include "support/types.h", <vector>.
2478         * insets/insetcollapsable.h: remove #include "LColor.h".
2479         * insets/insetinclude.h: remove #include "dimension.h".
2480         * insets/insetlatexaccent.h: remove #include "dimension.h".
2481         * insets/insetoptarg.h:: remove #include "insettext.h".
2482         * insets/insettext.h: remove #include "dimension.h",
2483         <boost/shared_ptr.hpp>
2484
2485         * insets/renderers.h: add #include "dimension.h".
2486         * insets/updatableinset.h: add #include "support/types.h".
2487
2488         * many .C files: Associated changes.
2489
2490 2003-09-06  Angus Leeming  <leeming@lyx.org>
2491
2492         * Bullet.[Ch]: factorize all those #ifdef ENABLE_ASSERTIONS to just
2493         one, inside testInvariant.
2494
2495         * PrinterParams.C: new file.
2496         * PrinterParams.[Ch]: move the function bodies out of line.
2497
2498 2003-09-06  Angus Leeming  <leeming@lyx.org>
2499
2500         * ParagraphParameters.h: forward declare ParameterStruct rather than
2501         including its header file.
2502         (depth): moved out-of-line.
2503
2504 2003-09-06  Angus Leeming  <leeming@lyx.org>
2505
2506         * BufferView_pimpl.h:
2507         * kbmap.h:
2508         * kbsequence.h:
2509         * lyxfunc.h: forward declare LyXKeySym rather than
2510         #include "frontends/LyXKeySym.h".
2511
2512         * BufferView_pimpl.C:
2513         * kbmap.C:
2514         * kbsequence.C:
2515         * lyxfunc.C: associated changes.
2516
2517 2003-09-06  Angus Leeming  <leeming@lyx.org>
2518
2519         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
2520         As a result, can remove the #include "insets/inset.h" from BufferView.h
2521
2522 2003-09-06  Angus Leeming  <leeming@lyx.org>
2523
2524         * BufferView.[Ch] (ChangeInsets): moved to BufferView_pimpl.[Ch].
2525         As a result, can remove the #include "insets/inset.h" from BufferView.h
2526
2527 2003-09-06  Angus Leeming  <leeming@lyx.org>
2528
2529         * buffer_funcs.C:
2530         * buffer.h:
2531         * bufferlist.C:
2532         * BufferView.C:
2533         * bufferview_funcs.C:
2534         * BufferView_pimpl.C:
2535         * CutAndPaste.C:
2536         * lyx_cb.C:
2537         * lyxfunc.C:
2538         * paragraph.h:
2539         * ParagraphParameters.C:
2540         * tabular.C:
2541         * text3.C:
2542         * toc.C:
2543         * undo_funcs.C:
2544         * frontends/controllers/ControlDocument.C:
2545         * insets/insetcaption.C: rearrange the #includes into some sort of
2546         coherent order.
2547
2548         * buffer.h: remove #includes ErrorList.h, undo.h
2549
2550 2003-09-06  Angus Leeming  <leeming@lyx.org>
2551
2552         * support/types.h: add a 'depth_type' typedef, used to store the
2553         nesting depth of a paragraph.
2554
2555         * paragraph.h:
2556         * ParameterStruct.h: use this lyx::depth_type typedef rather than
2557         defining explicitly.
2558
2559         * buffer.h:
2560         * paragraph_funcs.h:
2561         * ParagraphParameters.h:
2562         * sgml.h: use lyx::depth_type rather than Paragraph or
2563         ParameterStruct's depth_type.
2564
2565         * buffer.h
2566         * paragraph_funcs.h: no need to #include paragraph.h anymore.
2567
2568         * BufferView.C:
2569         * BufferView_pimpl.C:
2570         * CutAndPaste.C:
2571         * ParagraphParameters.C:
2572         * buffer_funcs.C:
2573         * bufferlist.C:
2574         * bufferview_funcs.C:
2575         * lyx_cb.C:
2576         * lyxfunc.C:
2577         * tabular.C:
2578         * text3.C:
2579         * toc.C:
2580         * undo_funcs.C:
2581         * frontends/LyXView.C:
2582         * frontends/controllers/ControlDocument.C:
2583         * frontends/controllers/ControlErrorList.C:
2584         * insets/insetbibitem.C:
2585         * insets/insetbranch.C:
2586         * insets/insetcaption.C:
2587         * insets/insetcollapsable.C:
2588         * insets/insetenv.C:
2589         * insets/insetert.C:
2590         * insets/insetfloat.C:
2591         * insets/insetfoot.C:
2592         * insets/insetfootlike.C:
2593         * insets/insetnewline.C:
2594         * insets/insetquotes.C:
2595         * insets/insettabular.C:
2596         * insets/insettext.C:
2597         * insets/insetwrap.C: must now explicitly #include "paragraph.h".
2598
2599         * frontends/controllers/ControlChanges.C: #include "changes.h".
2600
2601 2003-09-06  Angus Leeming  <leeming@lyx.org>
2602
2603         * ParagraphList_fwd.h: new file, forward-declaring Paragraph rather
2604         than #including paragraph.h.
2605
2606         * ParagraphList.h:
2607         * RowList.h: deleted. Superfluous.
2608
2609         * CutAndPaste.h:
2610         * iterators.h:
2611         * lyxcursor.h:
2612         * lyxtext.h:
2613         * text_funcs.h:
2614         * undo.h:
2615         * undo_funcs.h:
2616         * insets/inset.h:
2617         * insets/insettext.h: use ParagraphList_fwd.h rather than
2618         ParagraphList.h.
2619
2620         * paragraph.h: don't forward declare ParagraphList.
2621
2622         * buffer.h:
2623         * paragraph_funcs.h: #include ParagraphList_fwd.h and paragraph.h
2624         rather than ParagraphList.h. paragraph.h is still needed for the
2625         Paragraph::depth_type parameters.
2626
2627         * textcursor.h: enable it to compile stand-alone in light of the
2628         above changes.
2629
2630         * bufferview_funcs.C:
2631         * iterators.C:
2632         * lyxfunc.C:
2633         * lyxrow_funcs.C:
2634         * paragraph.C:
2635         * rowpainter.C:
2636         * text.C:
2637         * text2.C:
2638         * text3.C:
2639         * text_funcs.C:
2640         * textcursor.C:
2641         * undo.C:
2642         * frontends/controllers/ControlParagraph.C:
2643         * frontends/controllers/ControlTabular.C:
2644         * insets/insetmarginal.C:
2645         * insets/insetminipage.C:
2646         * insets/insetnote.C:
2647         * insets/insetoptarg.C: add header files needed to compile again.
2648
2649 2003-09-06  Angus Leeming  <leeming@lyx.org>
2650
2651         * RowList_fwd.h: new file, forward-declaring Row rather than
2652         #including lyxrow.h.
2653
2654         * lyxrow_funcs.h:
2655         * lyxtext.h:
2656         * paragraph.h:
2657         * insets/insettext.h: use it instead of RowList.h
2658
2659         * bufferview_funcs.C:
2660         * lyxfunc.C:
2661         * lyxrow_funcs.C:
2662         * paragraph.C:
2663         * rowpainter.C:
2664         * text.C:
2665         * text2.C:
2666         * text3.C: #include "RowList.h".
2667
2668 2003-09-05  Angus Leeming  <leeming@lyx.org>
2669
2670         * factory.C (createInset):
2671         * vspace.C (c-tor): replace sscanf call with an istringstream.
2672         * ispell.C: re-add missing HP/UX headers.
2673         * lyxserver.C: re-add missing  os2 headers.
2674
2675 2003-09-05  Martin Vermeer  <martin.vermeer@hut.fi>
2676
2677         * BranchList.C:
2678         * graph.C:
2679         * ispell.C:
2680         * lastfiles.C:
2681         * lyx_cb.C:
2682         * lyxserver.C:
2683         * texrow.C:
2684         * text3.C: re-add missing system headers, needed for 2.95.2.
2685
2686 2003-09-05  Angus Leeming  <leeming@lyx.org>
2687
2688         Changes most place everywhere due to the removal of using directives
2689         from support/std_sstream.h.
2690
2691 2003-09-05  Angus Leeming  <leeming@lyx.org>
2692
2693         Replace LString.h with support/std_string.h,
2694         Lsstream.h with support/std_sstream.h,
2695         support/LIstream.h with support/std_istream.h,
2696         support/LOstream.h with support/std_ostream.h.
2697
2698         Changes resulting throughout the tree.
2699
2700 2003-09-05  Angus Leeming  <leeming@lyx.org>
2701
2702         * sgml.h: ensure that the header file can be compiled stand-alone.
2703         * *.C: strip out redundant #includes. (320 in total.)
2704
2705 2003-09-04  Angus Leeming  <leeming@lyx.org>
2706
2707         * LaTeXFeatures.C (getMacros): move the output of the preamble_snippets
2708         here (from getPackages).
2709
2710         * debug.[Ch]: add a new EXTERNAL tag.
2711
2712 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
2713
2714         * text2.C (cursorEnd): simplify
2715         (setCursor): adjust
2716         (getColumnNearX): adjust
2717
2718         * text.C (computeBidiTables): adjust
2719         (fill): adjust
2720
2721         * rowpainter.C (paintChars): adjust
2722         (paintSelection): adjust
2723         (paintChangeBar): adjust
2724         (paintText): adjust
2725
2726         * lyxrow_funcs.C (lastPrintablePos): remove, all users now call
2727         lastPos instead.
2728         (numberOfSeparators): adjust
2729
2730 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
2731
2732         * LyXAction.C:
2733         * box.[Ch]:
2734         * lfuns.h:
2735         * lyxfunc.C:
2736         * text3.C: Restricts the mouse click functionality
2737         of insets like bibtex, include, toc and floatlist to the visible
2738         button, and allows the use of LFUN_INSET_SHOW_DIALOG to bring
2739         up the dialogs. Cursor has to be in front of the inset (i.e.
2740         start of row) for this to function.
2741
2742 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
2743
2744         * bufferview_funcs.C (currentState): output row information
2745
2746 2003-09-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
2747
2748         * bufferview_funcs.C (currentState): output paragraph position
2749
2750 2003-09-04  Angus Leeming  <leeming@lyx.org>
2751
2752         * FloatList.h: move out #include "Floating.h".
2753         * LaTeX.h: move out #include "DepTable.h".
2754         * LyXAction.h: move out #include "funcrequest.h".
2755         * buffer.h: move out #include "author.h", "iterators.h".
2756         * bufferparams.h: move out #include "LaTeXFeatures.h", "texrow.h".
2757         * lyx_main.h: move out #include "errorlist.h".
2758         * lyxfunc.h: move out #include "FuncStatus.h".
2759         * lyxtext: move out #include "lyxcursor.h".
2760         * paragraph_pimpl.h: move out #include "counters.h".
2761
2762 2003-09-03  Angus Leeming  <leeming@lyx.org>
2763
2764         * LaTeXFeatures.[Ch]: replace the externalPreambles string with a
2765         preamble_snippets list, enabling us to add snippets to the preamble
2766         only if the snippet was not there already.
2767
2768 2003-09-04  Angus Leeming  <leeming@lyx.org>
2769
2770         * Chktex.C, converter.C, lyx_cb.C: add #include "support/lyxlib.h".
2771
2772 2003-09-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
2773
2774         * lyxfunc.C (dispatch): if fitCursor did something be sure to
2775         update
2776
2777 2003-09-03  Martin Vermeer  <martin.vermeer@hut.fi>
2778
2779         * BranchList.C: point fix, earlier forgotten
2780
2781 2003-09-02  Angus Leeming  <leeming@lyx.org>
2782
2783         * box.C (contains): renamed from 'contained' after a fantastic
2784         amount of hot air.
2785
2786 2003-09-02  John Levon  <levon@movementarian.org>
2787
2788         * BufferView.C:
2789         * lyxcursor.h:
2790         * lyxcursor.C:
2791         * lyxfunc.C:
2792         * lyxfunc.h: remove cursor.i[x]y(), it no longer differs
2793
2794 2003-09-02  John Levon  <levon@movementarian.org>
2795
2796         * text2.C: simplification of cursorEnd(), including partial
2797         fix for bug 1376
2798
2799 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
2800
2801         * buffer.C (readFile): add a space
2802
2803 2003-09-02  Alfredo Braunstein  <abraunst@libero.it>
2804
2805         * BufferView_pimpl.C (update): remove bogus fitCursor() call
2806
2807 2003-09-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
2808
2809         * buffer.C (readFile): new function, take a filename and a
2810         ParagraphList::iterator
2811         (readFile): adjust
2812         (readFile): adjust, make it private. don't use setStream, make
2813         lyx2lyx use a temporary file. Some simplificaton. Make the Alerts
2814         always contain the filename.
2815
2816         * BufferView.C (insertLyXFile): simplify and make it work for
2817         gzipped files.
2818
2819 2003-08-30  John Levon  <levon@movementarian.org>
2820
2821         * Makefile.am: fix dist (from Kayvan)
2822
2823 2003-08-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
2824
2825         * most files: change to use const Buffer refs
2826
2827 2003-08-27  André Pönitz  <poenitz@gmx.net>
2828
2829         * BufferView.[Ch]: remove getParentText, implement getParentLanguage
2830         on top of ownerPar().
2831
2832 2003-08-27  John Levon  <levon@movementarian.org>
2833
2834         * funcrequest.C: properly initialise POD members
2835
2836 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
2837
2838         * lyxtext.h (top_y): move top_y from here
2839         * text.C:
2840         * text2.C:
2841         * text3.C:
2842         * BufferView.[Ch]:
2843         * BufferView_pimpl.[Ch]: to here
2844         * frontends/screen.C:
2845         * insets/insettabular.C:
2846         * insets/insettext.C: adjust
2847         * rowpainter.[Ch] (paintRows): remove LyXText & argument
2848
2849 2003-08-27  Alfredo Braunstein  <abraunst@libero.it>
2850
2851         * BufferView.[Ch]:
2852         * BufferView_pimpl.[Ch] (updateInset): add an InsetOld * argument
2853
2854 2003-08-26  André Pönitz  <poenitz@gmx.net>
2855
2856         * paragraph_func.[Ch] (outerPar): new function
2857
2858         * paragraph.C:
2859         * paragraph_funcs.C:
2860         * paragraph_funcs.h:
2861         * paragraph_pimpl.C:
2862         * text2.C: remove Inset::par_owner
2863
2864 2003-08-25  Martin Vermeer  <martin.vermeer@hut.fi>
2865
2866         * lyxrow_funcs.C:
2867         * lyxtext.h:
2868         * text.C:
2869         * text2.C: eliminates the needFullRow/display() stuff
2870         altogether, putting the logic in metrics/draw in the insets.
2871
2872 2003-08-25  Alfredo Braunstein  <abraunst@libero.it>
2873
2874         * text2.C (redoParagraphInternal, redoParagraphs):
2875         * text.C (redoParagraph): add a call to updateRowPositions at the
2876         end of each 'metrics-like' call. Remove all others.
2877         (getRow): remove the 'y-computing' version.
2878         (getRowNearY): do not compute nor return the real y. Solve the
2879         'y < 0' problem and simplify.
2880
2881 2003-08-22  Angus Leeming  <leeming@lyx.org>
2882
2883         * *.[Ch]: clean-up of licence and author blurbs.
2884         Also move config.h out of a few .h files and into a few .C files.
2885
2886 2003-08-22  André Pönitz  <poenitz@gmx.net>
2887
2888         * lyxrow.[Ch]: add x_ and *fill_ members
2889
2890         * lyxtext.h:
2891         * text.C:
2892         * rowpainter.C:
2893         * text2.C: adjust/remove prepareToPrint() calls
2894
2895 2003-08-22  André Pönitz  <poenitz@gmx.net>
2896
2897         * lyxrow.[Ch]: add  end_ member
2898
2899         * lyxrow_funcs.C: use LyXRow::end_
2900
2901         * lyxtext.h (singleWidth): add LyXFont parameter
2902
2903         * rowpainter.C:
2904         * text2.C: adjust LyXText::singleWidth() calls
2905
2906         * text.C (redoParagraph): simplify row breaking logic
2907
2908
2909 2003-08-19  André Pönitz  <poenitz@gmx.net>
2910
2911         * funcrequest.C: initialize button_ member
2912
2913         * text3.C:
2914         * rowpainter.[Ch]: interface consolidation
2915
2916 2003-08-18  André Pönitz  <poenitz@gmx.net>
2917
2918         * BufferView.C:
2919         * BufferView_pimpl.C:
2920         * lyxfind.C:
2921         * paragraph_funcs.C:
2922         * rowpainter.C:
2923         * text3.C: remove LyXScreen::draw() and fitCursor calls
2924
2925         * BranchList.h: remove spurious semicolons
2926
2927         * MenuBackend.C: fix branchlist related crash
2928
2929 2003-08-17  Martin Vermeer  <martin.vermeer@hut.fi>
2930
2931         * BranchList.[Ch]:
2932         * InsetList.[Ch]:
2933         * LColor.[Ch]:
2934         * LyXAction.C:
2935         * Makefile.am:
2936         * MenuBackend.[Ch]:
2937         * bufferparams.[Ch]:
2938         * factory.C:
2939         * lfuns.h:
2940         * lyxfunc.C:
2941         * text3.C: implements the 'branch inset'
2942         idea. This allows the output of various versions of a document
2943         from a single source version, selectively outputing or suppressing
2944         output of parts of the text.
2945         This implementation contains a 'branch list editor' in a separate
2946         tab of the document settings dialog. Branches are user definable
2947         and have a "display colour" to distinguish them on-screen.
2948
2949         ColorHandler was somewhat cleaned up.
2950         (1) make possible a dynamically growing LColor list by allowing
2951         the graphic context cache to grow along (vector);
2952         (2) eliminate an IMHO unnecessary step in colour allocation.
2953
2954 2003-08-15  Kayvan A. Sylvan <kayvan@sylvan.com>
2955
2956         * BufferView_pimpl.C: compile fix
2957
2958 2003-08-15  André Pönitz  <poenitz@gmx.net>
2959
2960         * rowpainter.C: remove extra metrics calls
2961
2962         * lyxtext.h: merge the two constructors into a single one,
2963           pass reference to owner's par list
2964
2965         * BufferView_pimpl.C:
2966         * text.C:
2967         * text2.C: adjust
2968
2969 2003-08-15  André Pönitz  <poenitz@gmx.net>
2970
2971         * lyxrow_funcs.[Ch]:
2972         * lyxtext.h:
2973         * paragraph.h:
2974         * paragraph_funcs.C:
2975         * rowpainter.C:
2976         * text.C:
2977         * text2.C:
2978         * text3.C:
2979         * text_funcs.C: split LyXText::rowlist_ into individual
2980         Paragraph::rows_ chunks
2981
2982         * BufferView.[Ch]:
2983         * BufferView_pimpl.[Ch]:
2984         * lyxfind.C:
2985         * lyxtext.h:
2986         * text3.C: remove toggleSelection()
2987
2988 2003-08-12  Michael Schmitt  <michael.schmitt@teststep.org>
2989
2990         * bufferlist.C: beautify two alerts (shorter text of buttons)
2991         * buffer.C: Remove redundant ' ' from message
2992         * tabular.h:
2993         * tabular.C: rename LYX_VALIGN_CENTER" to LYX_VALIGN_MIDDLE";
2994         rename M_VALIGN_CENTER to M_VALIGN_MIDDLE;
2995         rename VALIGN_CENTER to VALIGN_MIDDLE
2996
2997 2003-08-11  André Pönitz  <poenitz@gmx.net>
2998
2999         * lyxtext.h (getPar):
3000         * text.C: new function
3001
3002 2003-08-11  André Pönitz  <poenitz@gmx.net>
3003
3004         * Makefile.am:
3005         * tracer.[Ch]: remove unneeded files
3006
3007         * InsetList.[Ch]: remove resizeInsetsLyXText()
3008
3009         * lyxtext.h:
3010         * text.C:
3011         * text2.C:
3012         * text3.C: merge insertParagraphs() and appendParagraph()
3013         remove breakAgain(), update()
3014
3015         * BufferView_pimpl.[Ch]:
3016         * bufferview_funcs.[Ch]:
3017         * lyxfunc.C:
3018         * paragraph.[Ch]:
3019         * rowpainter.C:
3020         * tabular.C: adjust after text & InsetList changes.
3021
3022 2003-08-08  André Pönitz  <poenitz@gmx.net>
3023
3024         * text.C (insertChar, backspace): replace rowlist fiddling
3025         with rebreak of full par
3026
3027         * lyxtext.h:
3028         * text.C (breakAgainOneRow, redoHeightOfParagraph,
3029         checkParagraph, updateInset): removed
3030
3031 2003-08-07  André Pönitz  <poenitz@gmx.net>
3032
3033         * paragraph.C:
3034         * text3.C: merge some LFUN handlers, remove dead code
3035
3036 2003-08-06  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3037
3038         * .cvsignore: add lyx-xforms, lyx-qt, version.C-tmp and stamp-version
3039
3040 2003-08-05  Alfredo Braunstein  <abraunst@libero.it>
3041
3042         * text2.C (DEPM): fix part of bug 1255 and 1256
3043
3044 2003-08-05  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3045
3046         * BufferView_pimpl.C (workAreaDispatch): change to use
3047         LyXView::dispatch instead of BufferView::Pimpl::dispatch for lfuns
3048         that are no mouse related.
3049
3050 2003-08-05  André Pönitz  <poenitz@gmx.net>
3051
3052         * BufferView.[Ch]:
3053         * BufferView_pimpl.[Ch]:
3054         * bufferview_funcs.C:
3055         * text2.C:
3056         * text3.C: rip out "deep update"
3057
3058         * textcursor.[Ch] (last_sel_cursor): remove unused member
3059
3060 2003-08-04  André Pönitz  <poenitz@gmx.net>
3061
3062         * BufferView.[Ch]:
3063         * BufferView_pimpl.[Ch]:
3064         * ParagraphParameters.C:
3065         * bufferview_funcs.C:
3066         * lyx_cb.C:
3067         * lyxfind.C:
3068         * lyxfunc.C:
3069         * text.C:
3070         * text2.C:
3071         * text3.C: replace "complicated" BufferView::update(...) calls with
3072         simpler ones.
3073
3074         * BufferView.[Ch]: remove now unneeded BufferView::UpdateCodes
3075
3076 2003-08-02  Kayvan Sylvan  <kayvan@sylvan.com>
3077
3078         * Makefile.am (lyx_SOURCES): add paper.h
3079
3080 2003-08-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3081
3082         * Makefile.am: move things around so that both lyx-qt and
3083         lyx-xforms can be built (according to --with-frontend). Then lyx
3084         is a symbolic link to lyx-[firstfrontend]
3085
3086 2003-08-02  Lars Gullik Bjønnes  <larsbj@lyx.org>
3087
3088         * Always use std::endl with lyxerr
3089
3090 2003-08-01  Lars Gullik Bjønnes  <larsbj@lyx.org>
3091
3092         * BufferView_pimpl.C: _Always_ use std::endl with lyxerr
3093
3094 2003-08-01  André Pönitz  <poenitz@gmx.net>
3095
3096         * BufferView.[Ch]:
3097         * BufferView_pimpl.[Ch]:
3098         * lyxfunc.C:
3099         * text3.C: merge BufferView::repaint() and BufferView::update()
3100
3101 2003-08-01  José Matos  <jamatos@lyx.org>
3102
3103         * buffer.[Ch]: file_format is no longer a buffer data element.
3104
3105 2003-08-01  André Pönitz  <poenitz@gmx.net>
3106
3107         * BufferView.C:
3108         * lyxtext.h:
3109         * text.C:
3110         * text2.C: make redoParagraph more independent of current cursor
3111
3112         * lyxtext.h (need_update, needUpdate, postPaint, clearPaint):
3113         * text.C:
3114         * text2.C: remove unneeded members
3115
3116 2003-07-30  André Pönitz  <poenitz@gmx.net>
3117
3118         * paragraph.[Ch] (copyIntoMinibuffer): removed unused function
3119
3120         * paragraph.[Ch] (cutIntoMinibuffer, insertFromMinibuffer):
3121           create a single function...
3122
3123         * paragraph_funcs.C (moveItem): ... here.
3124
3125         * text.C:
3126           lyxtext.h (LyXText::workWidth(InsetOld*)) remove. unused.
3127
3128 2003-07-30  Martin Vermeer  <martin.vermeer@hut.fi>
3129
3130         * LColor.[Ch]: Add comment and greyedout logical colors.
3131
3132 2003-07-30  André Pönitz  <poenitz@gmx.net>
3133
3134         * tabular.C: don't use Assert too heavily. This crashes where it
3135           shouldn't
3136
3137 2003-07-30  Alfredo Braunstein  <abraunst@libero.it>
3138
3139         * lyxfunc.C (dispatch): do not mark the buffer dirty if the action
3140         is disabled (bug 1232)
3141
3142 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
3143
3144         * factory.C: limited 'arg' scope
3145
3146 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
3147
3148         * factory.C: fixed Note submenu issues
3149
3150 2003-07-30      Martin Vermeer  <martin.vermeer@hut.fi>
3151
3152         * factory.C: submenu for Note/Comment/Greyedout
3153
3154 2003-07-29  Alfredo Braunstein  <abraunst@libero.it>
3155
3156         * lyx_main.C (LyX):
3157         * BufferView_pimpl.C (loadLyXFile): fix to bugs 1287 and 1297 + ws
3158
3159 2003-07-29  Martin Vermeer  <martin.vermeer@hut.fi>
3160
3161         * LaTeXFeatures.C:
3162         * lyx_sty.[Ch]:h: Implement a newenvironment in preamble for
3163         greyedout. Patch provided by Jürgen Spitzmüller.
3164
3165 2003-07-29  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3166
3167         * kbmap.C (read): fix error message when reading bind files
3168
3169 2003-07-29  Angus Leeming  <leeming@lyx.org>
3170
3171         * BufferView.[Ch] (ChangeCitationsIfUnique): This function most
3172         certainly does not do what it purports to do. I am doing it, and
3173         us, a favour by killing it.
3174
3175 2003-07-28  José Matos  <jamatos@lyx.org>
3176
3177         * buffer.C (readBody, do_writeFile):
3178         * paragraph.C(readParagraph): \end_document replaces \the_end.
3179
3180 2003-07-29  André Pönitz  <poenitz@gmx.net>
3181
3182         * BufferView.[Ch]:
3183         * BufferView_pimpl.[Ch]:
3184         * lyxfunc.C:
3185         * text2.C:
3186         * text3.C:
3187         * textcursor.[Ch]: remove toggleToggle & Co
3188
3189 2003-07-28  José Matos  <jamatos@fep.up.pt>
3190
3191         * buffer.C (readParagraph):
3192         * params_func (readParToken, readParagraph):
3193         * paragraph.C (write): \layout -> \begin_layout.
3194
3195 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
3196
3197         * lyxlex_pimpl.C (setFile): clean up slightly.
3198
3199         * bufferparams.h: add compressed var
3200
3201         * buffer_funcs.C (readFile): adjust for LyXLex change
3202         (newFile): ditto + simplify
3203
3204         * buffer.C (writeFile): handle writing of compressed files
3205
3206         * buffer.[Ch] (readFile): begin LyXLex here, remove one argument.
3207         Check if the file is compressed and set a bufferparm if so.
3208
3209         * Makefile.am (lyx_LDADD): remove explicit -lz
3210
3211 2003-07-28  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3212
3213         * buffer.C (do_writeFile, makeLaTeXFile, makeLinuxDocFile,
3214         makeDocBookFile): put the real LyX version in the first line of
3215         the file
3216
3217         * version.h:
3218         * version.C.in: remove lyx_docversion
3219
3220         * tabular.C (write_attribute): add a template-based version to
3221         write enums properly
3222
3223 2003-07-28  André Pönitz  <poenitz@gmx.net>
3224
3225         * lyxtext.h:
3226         * text.C:
3227         * text2.C:
3228         * text3.C: use doubles again for x-coordinates. They are needed.
3229
3230 2003-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
3231
3232         * messages.C (getLocaleDir): use lyx_localedir()
3233
3234         * lyxlex_pimpl.C (setFile): compress stuff
3235
3236         * buffer.C (writeFile): add some compression stuff
3237         (do_writeFile): new func, dont call expliti close... will this
3238         breake anything?
3239
3240         * Makefile.am (lyx_LDADD): add -lz
3241
3242 2003-07-28  José Matos  <jamatos@fep.up.pt>
3243
3244         * buffer.C: increment file format.
3245         * paragraph_funcs (readParagraph, readParToken):
3246         * paragraph.C (readParagraph): add \end_layout.
3247
3248 2003-07-27  Angus Leeming  <leeming@lyx.org>
3249
3250         * Makefile.am: remove special casing for configure-time setting of
3251         LYX_DIR, TOP_SRCDIR and LOCALEDIR.
3252
3253         * lyx_main.C (init): remove all Jean-Marc's magic setting of
3254         system_lyxdir, build_lyxdir and user_lyxdir into the support lib.
3255
3256 2003-07-26  André Pönitz  <poenitz@gmx.net>
3257
3258         * paragraph_func.[Ch]:
3259         * paragraph.C (realizeFont): inline it whereever it is used
3260
3261         * rowpainter.C:
3262         * text.C:
3263         * text2.C:
3264         * text3.C: remove Buffer * parameter from a bunch of get*Font functions
3265
3266
3267 2003-07-26  André Pönitz  <poenitz@gmx.net>
3268
3269         *       lyxtext.h:
3270         * text.C:
3271         * text2.C: get rid of LyXText::need_break_row
3272
3273 2003-07-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
3274
3275         * toc.[Ch]: put namespace toc inside namespace lyx
3276
3277         * MenuBackend.C (expandToc2): adjust for lyx::toc
3278         (expandToc): ditto
3279
3280         * lyxfunc.C (dispatch): adjust for lyx::find
3281
3282         * lyxfind.[hC]: get rid of namespace lyxfind introduce namespace
3283         lyx::find instead. Reorganize a bit.
3284         (LyXReplace): rename to replace
3285         (LyXFind): rename to find
3286
3287         * BufferView_pimpl.C (trackChanges): adjust for lyx::find
3288         (dispatch): ditto
3289
3290 2003-07-26  André Pönitz  <poenitz@gmx.net>
3291
3292         * text.C (setHeightOfRow): restrict scope of temporary variable
3293
3294         * paragraph_funcs.C (readParToken): remove USE_CAPTION  compatibility
3295           code (never has been used?)
3296
3297 2003-07-27  Asger Alstrup  <alstrup@local>
3298
3299         * text.C (fill): Optimise algorithm to exploit that we can reuse
3300         the LyXFont for many characters.
3301         (setHeightOfRow): Same thing.
3302         (rowBreakPoint): Same thing.
3303
3304 2003-07-26  Asger Alstrup  <alstrup@local>
3305
3306         * text2.C (metrics): change a brain-dead algorithm to a smarter one.
3307
3308         * text.C (singleWidth): Spurious font copying in hot-spot
3309         singleWidth avoided. Reorder tests for arabic for efficiency.
3310
3311         * text.C (fill): handle empty paragraphs better.
3312
3313 2003-07-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3314
3315         * ispell.C:
3316         * encoding.h: add includes
3317
3318         * lyxrc.C: remove reading of bind files
3319
3320         * lyx_main.C (init): setup bindings and menus only if we have a
3321         gui.
3322
3323         * kbmap.C (read): new method. Do the actual reading of bind
3324         files.
3325
3326         * converter.C (dvipdfm_options):
3327         * bufferparams.C:
3328         * lyxrc.C (read):
3329         (output): adapt PAPER_* enums.
3330
3331         * lyxrc.h: include paper.h instead of bufferparams.h (mucho lighter)
3332
3333         * bufferparams.h: remove paper-related enums from there
3334
3335         * paper.h: New file. A trivial header file to hold paper-related
3336         enums. It should later expand to contain many paper-related
3337         horrors access.
3338
3339         * lyxrc.C: declare extern displayTranslator
3340
3341 2003-07-27  José Matos  <jamatos@fep.up.pt>
3342
3343         * tabular.[Ch] (linuxdoc): add support for tables and figures
3344         (linuxdoc).
3345
3346 2003-07-27  José Matos  <jamatos@fep.up.pt>
3347
3348         * buffer.[Ch] (makeLaTeXFile): changed name of arguments for
3349         consistency in both functions.
3350         * bufferlist.C (updateIncludedTeXfiles): change client to comply.
3351
3352 2003-07-26  Asger Alstrup  <alstrup@local>
3353
3354         * rowpainter.C (paintRows): Change algorithm to work directly on
3355         the insets rather than asking every character in the document
3356         whether its an inset.
3357
3358 2003-07.26  Alfredo Braunstein  <abraunst@libero.it>
3359
3360         * buffer.C (openFileWrite): factorize some code
3361
3362 2003-07-26  Angus Leeming  <leeming@lyx.org>
3363
3364         * lyx_cb.C:
3365         * lyx_main.[Ch]: replace occurances of system_tempdir with
3366         os::getTmpDir().
3367
3368 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
3369
3370         * rename Inset to InsetOld
3371
3372 2003-07-25  Asger Alstrup  <alstrup@diku.dk>
3373
3374         * undo_funcs.h: Removed setCursorParUndo to simplify things a bit.
3375         Renamed setUndo family to recordUndo. Renamed FINISH to ATOMIC
3376         which I think is a bit clearer. EDIT is gone, since it was
3377         premature optimisation, and broken for mathed anyway.
3378         * undo_funcs.C (performUndoOrRedo): Cleaned up and made it work
3379         with cursor positioning in insets as well (math insets still do not
3380         work, but that's a different story anyway.) It mysteriously
3381         crashes sometimes with undo in the first paragraph, but I'm fairly
3382         confident that this is a compiler bug.
3383
3384 2003-07-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
3385
3386         * paragraph.C (Paragraph): adjust for new clone return type
3387         (operator==): ditto
3388         (copyIntoMinibuffer): ditto
3389
3390 2003-07-25  Asger Alstrup  <alstrup@lyx.org>
3391
3392         * undo_funcs.C (textHandleUndo): Fix undo crash in first paragraph
3393         by not having a special case, and always doing a full rebreak of
3394         the document after undo.
3395
3396 2003-07-23  Angus Leeming  <leeming@lyx.org>
3397
3398         * factory.C (createInset): InsetExternal::setParams now takes a
3399         Buffer const * arg.
3400
3401 2003-07-23  Angus Leeming  <leeming@lyx.org>
3402
3403         * factory.C (createInset): changed interface to the external and
3404         graphics mailers' string2params functions.
3405
3406 2003-07-23  Angus Leeming  <leeming@lyx.org>
3407
3408         * factory.C (createInset): pass a
3409         Buffer const * parameter to InsetExternalMailer's string2params.
3410
3411 2003-07-22  John Levon  <levon@movementarian.org>
3412
3413         * Thesaurus.h: include the right aiksaurus header
3414
3415 2003-07-21  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3416
3417         * MenuBackend.C (expand): check menu shortcuts unconditionally
3418
3419 2003-07-21  Angus Leeming  <leeming@lyx.org>
3420
3421         * factory.C (createInset): pass a
3422         buffer_path parameter to InsetGraphicsMailer's string2params.
3423
3424 2003-07-21  Angus Leeming  <leeming@lyx.org>
3425
3426         * BufferView_pimpl.C (buffer):
3427         * buffer.C (d-tor):
3428         * lyx_main.C (LyX):
3429         * lyxfunc.C (dispatch):
3430         * lyxrc.C (setDefaults, read, output): use namespace lyx::graphics
3431         rather than the grfx shortcut.
3432
3433 2003-07-21  André Pönitz  <poenitz@gmx.net>
3434
3435         * rowpainter.C: remove unused variables
3436
3437         * tabular_funcs.C:
3438         * tabular_funcs.h: move to tabular.C
3439         * Makefile.am: adjust
3440
3441         * tabular.[Ch]: basic optical cleaning
3442
3443         * author.h: pass references, not values
3444
3445 2003-07-18  André Pönitz  <poenitz@gmx.net>
3446
3447         * lyxtext.h:
3448         * metricsinfo.C:
3449         * metricsinfo.h:
3450         * rowpainter.C:
3451         * text.C:
3452         * text2.C:
3453         * text3.C: two-phase drawing for InsetText and InsetTabular
3454         some float -> int changes.
3455
3456 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
3457
3458         * lyx_main.C: fix the fix
3459
3460 2003-07-18  Alfredo Braunstein  <abraunst@libero.it>
3461
3462         * lyx_main.C: fix a crash in batch mode if no files specified
3463         * converter.C: ws
3464
3465 2003-07-17  Alfredo Braunstein  <abraunst@libero.it>
3466
3467         * format.[Ch] (papersize): moved to BufferParams
3468         * converter.[Ch] (dvips_options): moved to BufferParams
3469         (dvipdfm_options): moved to anon namespace
3470         * bufferparams.[Ch]: added above functions.
3471
3472 2003-07-17  André Pönitz  <poenitz@gmx.net>
3473
3474         * lyxtext.h:
3475         * rowpainter.C:
3476         * text2.C: don't call inset->update() anymore
3477
3478         * metricsinfo.[Ch]: add convenience constructor
3479
3480 2003-07-16  André Pönitz  <poenitz@gmx.net>
3481
3482         * lyxcursor.[Ch]:
3483         * lyxfunc.[Ch]:
3484         * text.C:
3485         * text2.C: replace the LyXCursor::irow_ member with
3486          on-demand computation of the value
3487
3488 2003-07-16  John Levon  <levon@movementarian.org>
3489
3490         * lyxfunc.C: support LFUN_INSET_SETTINGS for Note
3491
3492 2003-07-15  André Pönitz  <poenitz@gmx.net>
3493
3494         * text.C:
3495         * text2.C: remove no more needed refresh_row
3496
3497 2003-07-15  André Pönitz  <poenitz@gmx.net>
3498
3499         * lyxtext.h:
3500         * rowpainter.C:
3501         * text2.C:
3502         * text3.C: refresh_status tristate -> need_update bool
3503
3504 2003-07-15  Alfredo Braunstein  <abraunst@libero.it>
3505
3506         * lyxtext.h (init): remove reinit argument (act as if always true)
3507         * text2.C: adjust to that
3508
3509 2003-07-14  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
3510
3511         * bufferview_funcs.[Ch]: introduce function replaceSelection()
3512         * text3.C: use it to delete selections in some cases
3513         (bugs 441, 673, 702, 954).
3514
3515 2003-07-14  André Pönitz  <poenitz@gmx.net>
3516
3517         * rowpainter.[Ch]: reduce interface
3518
3519 2003-07-14  André Pönitz  <poenitz@gmx.net>
3520
3521         * BufferView_pimpl.C:
3522         * text2.C: adjust after removing unused BufferView * argument
3523
3524 2003-07-14  Alfredo Braunstein  <abraunst@libero.it>
3525
3526         * text2.C (init): fix a crash fired on resize
3527
3528 2003-07-11  Alfredo Braunstein  <abraunst@libero.it>
3529
3530         * buffer.[Ch]: added new closing signal
3531         * BufferView_pimpl.[Ch]: connect/disconnect to new signal
3532         * lyxfunc.C: removed BufferView::buffer(0) call now handled in
3533         BufferView::Pimpl via the closing the signal
3534
3535 2003-07-10  Alfredo Braunstein  <abraunst@libero.it>
3536
3537         * buffer.[Ch]: take out all bv-related from buffer
3538         * BufferView.C:
3539         * BufferView_pimpl.[Ch]: connect to new signals
3540         * CutAndPaste.C: removed useless asserts
3541         * bufferview_funcs.[Ch] (resizeInsets): moved from buffer
3542         * lyxvc.[Ch]:
3543         * vc-backend.[Ch]:
3544         * lyxfunc.C: moved view-related funciontality from vc here
3545         * paragraph.C: removed outdated comments
3546         * text.C: ws
3547
3548 2003-07-10  André Pönitz  <poenitz@gmx.net>
3549
3550         * BufferView_pimpl.C:
3551         * tabular.h:
3552         * tabular_funcs.C:
3553         * text.C:
3554         * text2.C: remove InsetText::InnerCache, clean up consequences
3555
3556 2003-07-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
3557
3558         * ispell.C: fix two typos in error messages
3559
3560 2003-07-08  Martin Vermeer  <martin.vermeer@hut.fi>
3561
3562         * Extend Note inset to other forms of annotation like Comment
3563         and Greyedout. Right button click gives dialog.
3564
3565         Files modified or added (+):
3566
3567         * insetnote.[Ch]
3568         * FormNote.[Ch]      +
3569         * ControlNote.[Ch]   +
3570         * form_note.fd       +
3571         * Makefile.am in frontends/xforms, frontends/xforms/forms,
3572         frontends/controllers
3573         * xforms/Dialogs.C
3574         * factory.C
3575
3576 2003-07-01  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
3577
3578         * aspell.C: add missing namespace lyx::support
3579
3580 2003-07-07  Alfredo Braunstein  <abraunst@libero.it>
3581
3582         * BufferView.[Ch] (newFile): Add
3583         * BufferView_pimpl.[Ch] (newFile, connectBuffer, disconnectBuffer): Add
3584         * LaTeX.[Ch] (message): added this signal and use it
3585         * buffer.[Ch] (busy, message): added these signals and use them
3586         * buffer_funcs.[Ch]: rename parseErrors to bufferErrors
3587         * converter.C:
3588         * exporter.C:
3589         * format.C:
3590         * importer.C: use buffer signals instead of direct bv calling
3591         * lyx_cb.[Ch] (ShowMessage): removed
3592         * lyx_main.C:
3593         * lyxfunc.C:
3594         * paragraph_funcs.C:
3595         * text2.C: use buffer signals
3596
3597 2003-07-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
3598
3599         * introduce namespace lyx::graphics
3600
3601 2003-07-02  André Pönitz  <poenitz@gmx.net>
3602
3603         * BufferView_pimpl.C (workAreaDispatch): tell the FuncRequest who we are
3604
3605 2003-07-01  André Pönitz  <poenitz@gmx.net>
3606
3607         * text.C:
3608         * text2.C:
3609         * text3.C:
3610         * text_funcs.[Ch]:
3611         * textcursor.h:
3612         * lyxtext.h: shuffle pure paragraph/cursor related cursor movement from
3613           text*.C to text_func.C
3614
3615 2003-07-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
3616
3617         * introduce namespace lyx::support
3618
3619 2003-06-30  André Pönitz  <poenitz@gmx.net>
3620
3621         * Chktex.C:
3622         * funcrequest.C:
3623         * lyxtext.h:
3624         * text.C: re-enable --with-included-string
3625
3626 2003-06-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
3627
3628         * textcursor.C: add <config.h>
3629
3630         * text.C (getWord): remove const from word_location arg
3631
3632         * lyxvc.C (getLogFile): fix const type order
3633
3634         * lyxtext.h: remove const from word_location arg, add arg name
3635
3636         * lyxlayout.h: currect type on labeltype.
3637
3638         * importer.C: correct \file
3639
3640         * converter.C (intToFormat): use std:: on ret val, ws changes
3641
3642         * bufferlist.h: correct \file
3643
3644         * buffer.C (makeLinuxDocFile): fix const type order
3645         (makeDocBookFile): ditto
3646         (fillWithBibKeys): use std:: on stdlib args.
3647
3648         * CutAndPaste.C: fix authors.
3649         (availableSelections): use std:: on return vector
3650
3651 2003-06-27  André Pönitz  <poenitz@gmx.net>
3652
3653         * BufferView_pimpl.C:
3654         * bufferview_funcs.C:
3655         * lyxcursor.C:
3656         * lyxcursor.h:
3657         * lyxfunc.C:
3658         * lyxtext.h:
3659         * rowpainter.C:
3660         * text.C:
3661         * text2.C:
3662         * text3.C: remove LyXCursor::row_ member
3663
3664         * lyxtext.h:
3665         * text.C: rename fullRebreak() to partialRebreak() and implement
3666           a fullRebreak() that really bereks fully
3667
3668         * textcursor.h: new struct for cursor-related data
3669
3670 2003-06-26  Alfredo Braunstein  <abraunst@lyx.org>
3671
3672         * lyx_main.C (LyX): get full path of document loaded on the
3673         command line
3674
3675 2003-06-26  André Pönitz  <poenitz@gmx.net>
3676
3677         * lyxcursor.[Ch]: move rarely used operator==,!= out of line
3678           remove unused/broken operator>,<,>=.
3679
3680         *       text.C: remove only use of broken operator<= in an Assert().
3681
3682 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
3683
3684         * BufferView.[Ch] (getErrorList): removed unneeded forward declare,
3685         moved errorlist_.clear to showErrorList
3686
3687 2003-06-24  Alfredo Braunstein  <abraunst@lyx.org>
3688
3689         * converter.C (scanLog, runLaTeX):
3690         * buffer.C (makeLinuxDocFile, makeDocBookFile, runChkTeX):
3691         move the bv->showErrorList call to the callers
3692         * lyxfunc.C: i.e. here...
3693         * text2.C: and here
3694         * BufferView.[Ch] (setErrorList, resetErrorList): both removed
3695         * exporter.[Ch] (Backends, BufferFormat): the first was moved to anon
3696         namespace, the second to...
3697         * buffer_funcs (BufferFormat, parseErrors): added
3698         * errorlist.C (ErrorList(TeXErrors const &)): removed
3699
3700 2003-06-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3701
3702         * ToolbarBackend.C (getIcon): complain when icon cannot be found
3703
3704 2003-06-24  "Garst R. Reese" <reese@isn.net>
3705
3706         * debug.C: fix typo
3707
3708 2003-06-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3709
3710         * lyx_main.C (init): honor LYX_DIR_14x and LYX_USERDIR_14x
3711
3712         * version.C.in: change docversion to 1.4
3713
3714 2003-06-22  Alfredo Braunstein  <abraunst@libero.it>
3715
3716         * buffer.C: fix a bug just introduced
3717
3718 2003-06-21  Alfredo Braunstein  <abraunst@libero.it>
3719
3720         * buffer.[Ch]: added the parseError signal and use it, removed
3721         sgmlError
3722         * BufferView.[Ch] (addError): moved to ...
3723         * BufferView_pimpl.[Ch] (addError, loadLyXFile): ... here. Attach
3724         to the Buffer::parseError signal to catch (guess what) parse errors
3725         * lyx_main.[Ch] (printError,LyX): added gui-less parsing error feedback
3726
3727 2003-06-19  Alfredo Braunstein  <abraunst@libero.it>
3728
3729         * bufferlist.[Ch] (loadLyXFile, readFile, newFile): removed the
3730         ability to create a buffer and to return an existing one from
3731         the list. Moved these functions to...
3732         * buffer_funcs.[Ch]: added
3733         * BufferView.[Ch] (loadLyXFile): added
3734         * BufferView_pimpl.[Ch] (loadLyXFile): Added. Does the guessing
3735         job removed from bufferlist::loadLyXFile.
3736         * buffer.C (setReadOnly): make it work without view
3737         (i.e added an if (users))
3738
3739 2003-06-19  Angus Leeming  <leeming@lyx.org>
3740
3741         * lfuns.h:
3742         * LyXAction.C (init):
3743         * lyxfunc.C (getStatus, dispatch): remove 14 LFUNs, replacing them
3744         with LFUN_DIALOG_SHOW <name> <data>.
3745
3746 2003-06-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3747
3748         * CutAndPaste.C (availableSelections): small compilation fix for
3749         ancient (gcc 2.9x) compilers
3750
3751 2003-06-18  Lars Gullik Bjønnes  <larsbj@gullik.net>
3752
3753         * text3.C (cursorNext): add tmp var
3754
3755         * text2.C (updateCounters): for function calling out of for clause
3756         (replaceSelectionWithString): ditto
3757         (insertStringAsParagraphs): ditto
3758         (getColumnNearX): add tmp var
3759         (setCursorFromCoordinates): add tmp var
3760         (cursorDownParagraph): add tmp var
3761         (deleteEmptyParagraphMechanism): add tmp var
3762
3763         * text.C (insertChar): add tmp var
3764
3765         * rowpainter.C (paintDepthBar): add tmp var
3766
3767         * CutAndPaste.C (availableSelections): potentially check all
3768         paragraphs in a cut to fill the shown strings.
3769
3770 2003-06-18  André Pönitz  <poenitz@gmx.net>
3771
3772         * kbmap.[Ch]: use vector<> instead of list<>
3773
3774 2003-06-17  Lars Gullik Bjønnes  <larsbj@lyx.org>
3775
3776         * text3.C (dispatch): handle arg to LFUN_PASTE, call
3777         pasteSelection with index
3778
3779         * text2.C (pasteSelection): modify, call pasteSelection with index
3780
3781         * paragraph.C (asString): reimplement version with no interval to
3782         call the one with interval.
3783
3784         * lyxtext.h: add index arg to pasteSelection
3785
3786         * MenuBackend.C (MenuItem): handle PasteRecent
3787         (Menu::read::Menutags): add md_pasterecent
3788         (read): handle it
3789         (expandPasteRecent): new function
3790         (expand): use it
3791
3792         * MenuBackend.h: add PasteRecent to MenuItem::Kind
3793
3794         * CutAndPaste.C: get rid of some stale comments. Add typdefe for
3795         the limited stack
3796         (availableSelections): new function
3797
3798 2003-06-17  Angus Leeming  <leeming@lyx.org>
3799
3800         * lyxfunc.C (dispatch): s/showMathPanel/show("mathpanel")/
3801
3802 2003-06-17  Angus Leeming  <leeming@lyx.org>
3803
3804         * lfuns.h:
3805         * LyXAction.C (init): new LFUN_DIALOG_SHOW.
3806
3807         * lyxfunc.C (dispatch): invoke it.
3808
3809 2003-06-16  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3810
3811         * iterators.C (operator++, ParPosition): reintroduce some
3812         const_cast for the benefit of older compilers.
3813
3814 2003-06-13  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
3815
3816         * text3.C (dispatch): do not modify clipboard when doing
3817         LFUN_BACKSPACE, LFUN_BACKSPACE_SKIP, LFUN_DELETE or
3818         LFUN_DELETE_SKIP on a selection selection
3819
3820 2003-06-16  André Pönitz  <poenitz@gmx.net>
3821
3822         * BufferView.C:
3823         * buffer.C:
3824         * buffer.h:
3825         * paragraph.C:
3826         * tabular.[Ch]: IU of clone() and getLabelList();
3827
3828 2003-06-13  André Pönitz  <poenitz@gmx.net>
3829
3830         * tabular.h: compactification
3831
3832 2003-06-12  André Pönitz  <poenitz@gmx.net>
3833
3834         * tabular.C:
3835         * tabular.h:
3836         * tabular_funcs.h: some renaming plus whitespace
3837
3838 2003-06-12  André Pönitz  <poenitz@gmx.net>
3839
3840         * BufferView.C:
3841         * BufferView_pimpl.C:
3842         * CutAndPaste.C:
3843         * buffer.C:
3844         * iterators.[Ch]:
3845         * lyxfunc.C:
3846         * text.C:
3847         * toc.C: Return a Paragraph & for ParIterator::operator*()
3848
3849 2003-06-11  John Levon  <levon@movementarian.org>
3850
3851         * lyx_main.C:
3852         * ToolbarBackend.h:
3853         * ToolbarBackend.C: add "Toolbars" section and
3854         put the flags there
3855
3856 2003-06-10  Angus Leeming  <leeming@lyx.org>
3857
3858         * lfuns.h:
3859         * LyXAction.C (init): new LFUN_EXTERNAL_EDIT.
3860
3861         * lyxfunc.C (dispatch): invoke it.
3862
3863 2003-06-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
3864
3865         * main.C: protect <ios> with HAVE_IOS
3866         (main): protect sync_with_stdio with HAVE_IOS
3867
3868 2003-06-10  Lars Gullik Bjønnes  <larsbj@lyx.org>
3869
3870         * text2.C (cutSelection): adjust
3871         (pasteSelection): adjust
3872
3873         * messages.C: handle get of empty string
3874
3875         * main.C (main): use sync_with_stdio(false)
3876
3877         * lyxfunc.C (dispatch): adjust
3878
3879         * lyx_cb.[Ch] (MenuWrite): remove unneeded BufferView arg
3880         (WriteAs): remove unneeded BufferView arg.
3881
3882         * bufferparams.h: use correct types on papersize, papersize2 and
3883         paperpackage.
3884
3885         * bufferparams.C (readToken): adjust for type
3886         (writeLaTeX): add missing cases to switch.
3887
3888         * bufferlist.C (quitWriteBuffer): adjust
3889         (close): adjust
3890
3891         * buffer.C (asciiParagraph): remove some commented code.
3892
3893         * CutAndPaste.C: remove current_view extern variable.
3894         (cutSelection): add BufferParams arg.
3895         (eraseSelection): add BufferParams arg.
3896         (pasteSelection): add Buffer const & arg
3897
3898 2003-06-07  John Levon  <levon@movementarian.org>
3899
3900         * buffer.C:
3901         * paragraph_funcs.C:
3902         * paragraph_pimpl.C:
3903         * text.C:
3904         * text2.C:
3905         * paragraph.h:
3906         * paragraph.C: allow InsetERT to freely space lines,
3907         and some consolidation of code
3908
3909 2003-06-06  José Matos  <jamatos@fep.up.pt>
3910
3911         * buffer.C (makeDocBookFile): fix bug #821
3912
3913 2003-06-06  Alfredo Braunstein  <abraunst@libero.it>
3914
3915         * BufferView_pimpl.C (dispatch): use Dialogs::visible
3916
3917 2003-06-04  Angus Leeming  <leeming@lyx.org>
3918
3919         * buffer.C: bump format to 224.
3920
3921 2003-06-05  André Pönitz  <poenitz@gmx.net>
3922
3923         * text2.C (redoParagraphs): remove two const_cast<>
3924
3925 2003-06-04  Lars Gullik Bjønnes  <larsbj@lyx.org>
3926
3927         * ParagraphList.h: remove last remnants of NO_STD_LIST
3928
3929 2003-06-03  Angus Leeming  <leeming@lyx.org>
3930
3931         * factory.C (createInset): small change to the way InsetExternal's params
3932         are set.
3933
3934 2003-06-04  André Pönitz  <poenitz@gmx.net>
3935
3936         * buffer.h: use Undo directly instead of shared_ptr<Undo>
3937
3938         * paragraph_pimpl.h:
3939         * paragraph.[Ch]: some Inset -> UpdatableInset changes
3940
3941         * undo.[Ch]: use ParagraphList instead of vector<Paragraph>
3942
3943         * undo_funcs.C: make some simple cases of undo work again
3944
3945 2003-06-03  John Levon  <levon@movementarian.org>
3946
3947         * ispell.C: HPUX doesn't have sys/select.h
3948         (from Albert Chin)
3949
3950 2003-06-03  John Levon  <levon@movementarian.org>
3951
3952         * CutAndPaste.C: update tabular and include inset
3953         buffer references
3954
3955         * buffer.h:
3956         * paragraph.h:
3957         * paragraph.C: remove owningBuffer(), don't pass Buffer
3958         to clone()
3959
3960         * factory.C: insetGraphicsParams changed
3961
3962 2003-06-02  John Levon  <levon@movementarian.org>
3963
3964         * LyXAction.C:
3965         * factory.C:
3966         * lfuns.h:
3967         * lyxfunc.C:
3968         * text3.C: remove insetparent
3969
3970 2003-06-02  John Levon  <levon@movementarian.org>
3971
3972         * buffer.h:
3973         * buffer.C: fix inset_iterator.end(), move out of line
3974         (bug 1149)
3975
3976 2003-06-01  John Levon  <levon@movementarian.org>
3977
3978         * text3.C: use a proper cut/paste when doing inset
3979         insert (from Jürgen Spitzmüller)
3980
3981 2003-06-01  John Levon  <levon@movementarian.org>
3982
3983         * factory.C: accept "\bibtex" not "\BibTeX" (bug 1018)
3984
3985 2003-05-30  André Pönitz  <poenitz@gmx.net>
3986
3987         * rowpainter.C: unify second drawing phase
3988
3989 2003-05-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
3990
3991         * trans_mgr.C: remove one case of current_view
3992
3993         * text2.C (cursorBottom): delete NO_STD_LIST stuff
3994
3995         * paragraph_funcs.h: remove paragraph.h include
3996
3997         * paragraph.h: delete NO_STD_LIST stuff
3998
3999         * paragraph.C (Paragraph): delete NO_STD_LIST stuff
4000
4001         * buffer.h: remove paragraph.h include
4002
4003         * ParagraphList.C: delete file
4004
4005         * Makefile.am (lyx_SOURCES): remove ParagraphList.C
4006
4007         * toc.C (getTocList): adjust
4008
4009         * paragraph_pimpl.C (validate): adjust
4010
4011         * paragraph_funcs.C (optArgInset): use const_iterator, adjust
4012
4013         * paragraph.C (Paragraph): adjust
4014         (getPositionOfInset): use const_iterator, adjust
4015         (bibitem): use const_iterator, adjust
4016         (setInsetOwner): adjust
4017
4018         * iterators.C (operator++): adjust
4019
4020         * InsetList.[Ch]: Replace selfmade iterator with standard
4021         vector::iterator also introduce const_iterator. Remove getPos,
4022         getInset and setInset from InsetTable. Adjust accordingly.
4023
4024         * BufferView.C (lockInset): adjust
4025         (ChangeInsets): adjust
4026
4027         * tabular.[Ch]: delete commented same_id functions
4028
4029 2003-05-28  John Levon  <levon@movementarian.org>
4030
4031         * lyxfunc.C: fix LFUN_ESCAPE (bug 1055)
4032
4033 2003-05-28  André Pönitz  <poenitz@gmx.net>
4034
4035         * metricsinfo.[Ch]: remove 'fullredraw' member
4036
4037 2003-05-28  Lars Gullik Bjønnes  <larsbj@lyx.org>
4038
4039         * lyxtextclass.C (operator): remove caching.
4040
4041 2003-05-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
4042
4043         * text3.C: adjust
4044
4045         * text2.C (cursorBottom): adjust
4046         (setCounter): use ParagraphList::find, adjust
4047
4048         * text.C (workWidth): use ParagraphList::find, adjust
4049
4050         * lyxcursor.C (LyXCursor): adjust
4051
4052         * buffer.C (inset_iterator): adjust
4053
4054         * ParagraphList.h: make iterator(value_type) private, make
4055         ParagraphList a friend of iterator.
4056
4057         * ParagraphList.C (find): new function
4058
4059         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
4060
4061 2003-05-27  André Pönitz  <poenitz@gmx.net>
4062
4063         * dimension.[Ch]: a -> asc, d -> des, w -> wid
4064
4065 2003-05-27  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
4066
4067         * lyxfont.C (latexWriteStartChanges): fix character count for \noun
4068
4069 2003-05-26  John Levon  <levon@movementarian.org>
4070
4071         * LyXAction.C: LFUN_ESCAPE should be ReadOnly
4072
4073 2003-05-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
4074
4075         * remove same_id from function signatures, adjust.
4076
4077 2003-05-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
4078
4079         * undo_funcs.C (createUndo): use the id functions directly, adjust.
4080
4081         * paragraph_pimpl.C (Pimpl): get rid of same_ids parameter
4082
4083         * paragraph.C (Paragraph): get rid of same_ids parameter
4084
4085         * ParagraphList.C (insert): adjust
4086         (push_back): adjust
4087
4088 2003-05-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
4089
4090         * paragraph_funcs.C (breakParagraph): adjust
4091         (breakParagraphConservative): adjust
4092
4093         * buffer.C (readParagraph): adjust
4094
4095         * ParagraphList.C (insert): take a reference instead of a pointer
4096         (insert): adjust
4097
4098         * paragraph.[Ch] (id): new function
4099
4100         * bufferlist.C (newFile): adjust
4101
4102         * ParagraphList.C (ParagraphList): adjust
4103         (assign): adjust
4104         (push_back): take a reference instead of a pointer.
4105
4106         * paragraph.h: add NO_STD_LIST define, remove NO_NEXT define.
4107
4108         * paragraph.C: remove all NO_NEXT node add some NO_STD_LIST parts
4109         instead.
4110
4111         * ParagraphList.h: degenerate to std::list if NO_STD_LIST is not
4112         set else use old code.
4113
4114         * ParagraphList.C: remove all NO_NEXT code and only compile this
4115         code of NO_STD_LIST is set.
4116
4117 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
4118
4119         * BufferView_pimpl.C:
4120         * TextCache.C:
4121         * TextCache.h:
4122         * bufferlist.C:
4123         * errorlist.h:
4124         * format.C:
4125         * format.h:
4126         * graph.C:
4127         * lyxfunc.C:
4128         * lyxrc.C:
4129         * graphics/GraphicsConverter.C:
4130         * graphics/PreviewLoader.C: header adjustment
4131
4132 2003-05-23  Angus Leeming  <leeming@lyx.org>
4133
4134         * LaTeXFeatures.[Ch] (useBabel): new method.
4135         * bufferparams.C (writeLaTeX): use it.
4136
4137 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
4138
4139         * ParagraphList.h (set): remove unused function.
4140
4141 2003-05-23  André Pönitz  <poenitz@gmx.net>
4142
4143         * BufferView.C:
4144         * BufferView_pimpl.C:
4145         * buffer.C:
4146         * buffer.h:
4147         * lyxfunc.C:
4148         * undo_funcs.C: setUndo reworked
4149
4150         * iterators.[Ch]: add access to topmost ParagraphList
4151
4152         * lyxtext.[Ch] (workWidth): add a const
4153
4154 2003-05-23  Alfredo Braunstein  <abraunst@libero.it>
4155
4156         * texrow.[Ch] (increasePos): remove function
4157         * exporter.C (export): removed unused var and outdated comment
4158
4159 2003-05-23  Angus Leeming  <leeming@lyx.org>
4160
4161         * latexrunparams.h: rename fragile as moving_arg.
4162         * paragraph.C (simpleTeXOnePar): ditto.
4163         * paragraph_pimpl.C (simpleTeXSpecialChars): ditto.
4164
4165 2003-05-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
4166
4167         * undo_funcs.C (textHandleUndo): comment out next/previous stuff
4168         (createUndo): ditto
4169         (textUndoOrRedo): comment out a currently unused var.
4170
4171         * paragraph.h (NO_NEXT): enable NO_NEXT
4172
4173         * lyxfunc.C (dispatch): remove LFUN_REMOVEERRORS
4174
4175         * lfuns.h: remove LFUN_REMOVEERRORS and adjust lfun numbers.
4176
4177         * exporter.C (Export): adjust for removeAutoInsets removal.
4178
4179         * buffer.C (runChktex): adjust for removeAutoInsets removal.
4180
4181         * LyXAction.C (init): remove LFUN_REMOVEERRORS
4182
4183         * BufferView.[Ch] (removeAutoInsets): delete function
4184
4185 2003-05-22  Angus Leeming  <leeming@lyx.org>
4186
4187         * latexrunparams.h: add a free_spacing variable.
4188
4189         * paragraph.[Ch] (simpleTeXOnePar): further fragile clean-up; no need
4190         to pass moving_arg, as the data is stored in runparams.fragile.
4191
4192         * paragraph_funcs.C (TeXOnePar): no longer pass free_spacing arg
4193         to Inset::latexOptional or to simpleTeXOnePar.
4194
4195         * paragraph_pimpl.C (simpleTeXSpecialChars): no longer pass
4196         free_spacing arg to Inset::latexOptional.
4197
4198         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
4199         free_spacing arg.
4200
4201 2003-05-22  Angus Leeming  <leeming@lyx.org>
4202
4203         * latexrunparams.h: add fragile and use_babel variables.
4204
4205         * bufferparams.[Ch] (writeLaTeX): return use_babel.
4206         * buffer.C (makeLaTeXFile): store this returned value in
4207         runparams.use_babel, thus passing it to the inset::latex methods.
4208
4209         * paragraph.C (simpleTeXOnePar): no need to pass 'moving_arg' to
4210         simpleTeXSpecialChars as it is now stored in runparams.fragile.
4211
4212         * paragraph_funcs.[Ch] (TeXOnePar, latexParagraphs): TeXOnePar no
4213         longer has a fragile arg, as it is stored in runparams.fragile.
4214
4215         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars): no longer has a
4216         moving_arg parameter as the data is stored in runparams.fragile.
4217
4218         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow): no longer have
4219         a fragile parameter as the data is stored in runparams.fragile.
4220
4221 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
4222
4223         * paragraph.C (Paragraph): initialize next_par_ and prev_par_
4224
4225 2003-05-22  Angus Leeming  <leeming@lyx.org>
4226
4227         * latexrunparams.h: add a 'bool nice' which defaults to false.
4228
4229         * buffer.[Ch] (makeLaTeXFile): remove the nice parameter as it is
4230         now encapsulated within runparams.
4231
4232         * bufferlist.C (updateIncludedTeXfiles):
4233         * exporter.C (Export): ensuing change to the calls to makeLaTeXFile.
4234
4235 2003-05-22  Angus Leeming  <leeming@lyx.org>
4236
4237         * latexrunparams.h: new file containing struct LatexRunParams.
4238         * Makefile.am: add new file.
4239
4240         * LaTeX.[Ch] (c-tor, run):
4241         * buffer.[Ch] (makeLaTeXFile):
4242         * bufferlist.[Ch] (updateIncludedTeXfiles):
4243         * converter.C (convert, scanLog):
4244         * converter.[Ch] (runLaTeX):
4245         * exporter.C (Export):
4246         * paragraph.[Ch] (simpleTeXOnePar):
4247         * paragraph_funcs.C (TeXEnvironment, TeXOnePar, TeXDeeper):
4248         * paragraph_funcs.[Ch] (latexParagraphs):
4249         * paragraph_pimpl.[Ch] (simpleTeXSpecialChars):
4250         * tabular.[Ch] (TeXLongtableHeaderFooter, TeXRow, latex):
4251         pass around a LatexRunParams parameter.
4252
4253 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
4254
4255         * paragraph.[Ch]: remove unused constructor
4256
4257         * ParagraphList.C (erase): new function, taking two iterators
4258
4259 2003-05-22  André Pönitz  <poenitz@gmx.net>
4260
4261         * undo_funcs.C: remove duplicated code
4262
4263         * iterator.[Ch]: operator=
4264
4265 2003-05-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
4266
4267         * tabular.C (SetMultiColumn): ws changes
4268
4269         * rowpainter.C (paintFirst): get rid of a ->previous
4270
4271         * lyx_cb.C (getPossibleLabel): parlist simplification
4272
4273         * BufferView.C (ChangeInsets): simplify slightly.
4274
4275 2003-05-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
4276
4277         * LyXAction.C: new lfun space-insert, kill protected-space-insert
4278         * lfuns.h: new LFUN_SPACE
4279         * lyxfunc.C: protected space has a new lfun
4280         * paragraph_funcs.C: read new space insets
4281         * text3.C:
4282         * factory.C: handle new space insets
4283
4284 2003-05-22  André Pönitz  <poenitz@gmx.net>
4285
4286         * BufferView.C:
4287         * BufferView_pimpl.C:
4288         * buffer.[Ch]:
4289         * lyxfunc.C:
4290         * undo_funcs.C: return a ParIterator from getParFromID.
4291
4292         * iterators.[Ch]: add two const's
4293
4294 2003-05-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
4295
4296         * toc.C (getTocList): adjust
4297
4298         * iterators.[Ch]: rework for parlist
4299
4300         * buffer.C (par_iterator_begin): adjust
4301         (par_iterator_end): adjust
4302
4303         * CutAndPaste.C (SwitchLayoutsBetweenClasses): adjust
4304
4305         * BufferView.C (removeAutoInsets): adjust
4306         (ChangeInsets): adjust
4307
4308 2003-05-21  Alfredo Braunstein  <abraunst@libero.it>
4309
4310         * text.C (top_y): fix bug 1110
4311
4312 2003-05-08  Alfredo Braunstein  <abraunst@libero.it>
4313
4314         * errorlist.[Ch]: added
4315         * buffer.C:
4316         * BufferView.[Ch]:
4317         * BufferView_pimpl.C:
4318         * CutAndPaste.[Ch]: get rid of InsetError users, use ErrorList
4319         instead
4320
4321 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
4322
4323         * Makefile.am: ensure that lyx is relinked upon changes to the
4324         various "convenience" libs.
4325
4326 2003-05-20  Angus Leeming  <leeming@lyx.org>
4327
4328         * Makefile.am (lyx_SOURCES): move format.[Ch] and graph.[Ch] so that
4329         files are compiled in alphabetical order again.
4330
4331         * gettext.h: #ifndef _GETTEXT_H_ -> #ifndef GETTEXT_H.
4332
4333 2003-05-19  Angus Leeming  <leeming@lyx.org>
4334
4335         * gettext.[Ch]: remove "char const * _(char const *)".
4336
4337 2003-05-19  André Pönitz  <poenitz@gmx.net>
4338
4339         * dimension.[Ch]: promote from mathed/dimension.[Ch]
4340
4341         * Makefile.am:
4342         * BufferView.C:
4343         * DepTable.h:
4344         * LaTeXFeatures.C:
4345         * buffer.C:
4346         * lyxfont.C:
4347         * lyxlex.h:
4348         * paragraph_funcs.C: dimensions() instead of ascend/descend/width
4349
4350 2003-05-19  André Pönitz  <poenitz@gmx.net>
4351
4352         * buffer.C:
4353         * lyxlayout.[Ch]:
4354         * lyxtextclass.[Ch]:
4355         * paragraph.C:
4356         * paragraph_funcs.[Ch]:
4357         * text2.C:
4358         * text3.C: more insetenv work
4359
4360 2003-05-16  Alfredo Braunstein  <abraunst@libero.it>
4361
4362         * ParagraphParameters.C (params2string): small bug fixed
4363
4364 2003-05-16  André Pönitz  <poenitz@gmx.net>
4365
4366         * debug.C:
4367         * bufferview_funcs.C: patch from Kornel Benko to prevent
4368           crash when _(...) is called twice in a statement
4369
4370 2003-05-16  André Pönitz  <poenitz@gmx.net>
4371
4372         * BufferView.C:
4373         * lyxfunc.C:
4374         * text.C:
4375         * text2.C:
4376         * text3.C:
4377         * undo_funcs.C: edit() -> LFUN_INSET_EDIT
4378
4379 2003-05-14  Alfredo Braunstein  <abraunst@libero.it>
4380
4381         * lyx_main.C (init): remove spurious static_cast
4382
4383 2003-05-14  André Pönitz  <poenitz@gmx.net>
4384
4385         * BufferView.C: fix format string
4386
4387 2003-05-12  Alfredo Braunstein  <abraunst@libero.it>
4388
4389         * BufferView.[Ch] (insertErrors): removed
4390         * BufferView.[Ch] (showErrorList): added
4391         * buffer.C (runChkTeX):
4392         * converter.C (scanLog): call showErrorList instead of inserterrors
4393
4394 2003-05-13  André Pönitz  <poenitz@gmx.net>
4395
4396         * BufferView_pimpl.C:
4397         * buffer.C:
4398         * bufferview_func.C:
4399         * MenuBackend.C:
4400         * lyxfunc.C:
4401         * lyxrc.C:
4402         * tex-accent.C:
4403         * text3.C:
4404         * toc.C:
4405         * tabular_funcs.h: tostr() from its own header
4406
4407         * ParagraphParameters.C:
4408         * ToolbarBackend.C:
4409         * bufferparams.C:
4410         * format.C:
4411         * lyxlex_pimpl.C:
4412         * text3.C: STRCONV()
4413
4414 2003-05-12  André Pönitz  <poenitz@gmx.net>
4415
4416         * BufferView.C:
4417         * BufferView_pimpl.C:
4418         * CutAndPaste.C:
4419         * LaTeX.C:
4420         * LaTeXFeatures.C:
4421         * ParagraphParameters.C:
4422         * buffer.C:
4423         * bufferlist.C:
4424         * bufferparams.C:
4425         * bufferview_funcs.C:
4426         * converter.C:
4427         * counters.C:
4428         * debug.C:
4429         * exporter.C:
4430         * format.C:
4431         * importer.C:
4432         * lyx_cb.C:
4433         * lyx_main.C:
4434         * lyxfont.C:
4435         * lyxfunc.C:
4436         * lyxvc.C:
4437         * paragraph.C:
4438         * paragraph_funcs.C:
4439         * tabular.C:
4440         * tabular_funcs.C:
4441         * text2.C:
4442         * text3.C:  boost::format -> bformat  all over the place
4443
4444
4445 2003-05-09  André Pönitz  <poenitz@gmx.net>
4446
4447         * LColor.[Ch]: Pimpl the #include <map> away
4448
4449 2003-05-09  John Levon  <levon@movementarian.org>
4450
4451         * bufferlist.C: never remove emergency saves
4452
4453 2003-05-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
4454
4455         * Makefile.am: better lib building
4456
4457 2003-05-07  Lars Gullik Bjønnes  <larsbj@gullik.net>
4458
4459         * texrow.[Ch]: remove dependency on Paragraph and just store a id
4460         instead.
4461         * paragraph_pimpl.C (simpleTeXBlanks): adjust
4462         (simpleTeXSpecialChars): adjust
4463         (simpleTeXSpecialChars): adjust
4464         * paragraph.C (simpleTeXOnePar): adjust
4465         * buffer.C (makeLaTeXFile): adjust
4466
4467         * Makefile.am (BOOST_LIBS): allow boost as system lib.
4468
4469         * text2.C (changeDepth): parlist cleanup
4470         (getColumnNearX): ditto
4471
4472         * rowpainter.C (getLabelFont): parlist cleanup
4473
4474         * bufferlist.C (newFile): parlist cleanup
4475
4476         * CutAndPaste.C (eraseSelection): parlist cleanup
4477
4478         * BufferView_pimpl.C (trackChanges): parlist cleanup
4479         (dispatch): ditto
4480
4481         * BufferView.C (lockInset): parlist cleanup.
4482         (ChangeInsets): ditto
4483
4484 2003-05-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
4485
4486         * CutAndPaste.h: Update file header.
4487
4488         * CutAndPaste.C: Update file header.
4489         Store the parts cut out of the Document in a limited_stack.
4490         (copySelection): adjust
4491         (pasteSelection): new function, takes the index in the limited stack.
4492         (nrOfParagraphs): adjust
4493         (SwitchLayoutsBetweenClasses): Change to take a ParagraphList&,
4494         simplify error inset insertion.
4495         (checkPastePossible): adjust
4496
4497 2003-05-06  John Levon  <levon@movementarian.org>
4498
4499         * text2.C: don't cast wrap inset to float
4500
4501 2003-05-05  André Pönitz  <poenitz@gmx.net>
4502
4503         * iterator.C:
4504         * undo_funcs.C: use getParagraphs() instead of getFirstParagraph()
4505
4506         * buffer.[Ch]: new function hasParWithId() to help to get rid of a
4507           few naked Paragraph *.
4508
4509 2003-05-02  Michael Schmitt  <michael.schmitt@teststep.org>
4510
4511         * bufferparams.C: Output warning if a document with missing
4512         TeX document class is loaded
4513         * exporter.C: Disable TeX exports if the document class is missing
4514         * lyxtextclass.C:
4515         * lyxtextclass.h:
4516         * lyxtextclasslist.C: Handle new textclass.lst format; new method
4517         isTeXClassAvailable()
4518
4519 2003-05-03  John Levon  <levon@movementarian.org>
4520
4521         * BufferView.h:
4522         * BufferView.C: remove showLockedInsetCursor(), showCursor(),
4523         explicit cursor show/hide
4524
4525         * BufferView_pimpl.h:
4526         * BufferView_pimpl.C: hide cursor before dispatching. Show cursor
4527         after a cursor move lfun. Simplify cursorToggle(). Remove show/hideCursor().
4528
4529         * lyxfunc.C: hide cursor before dispatching.
4530
4531         * lyx_cb.C:
4532         * lyxfind.C:
4533         * text.C:
4534         * text3.C: remove explicit cursor hides
4535
4536 2003-05-02  André Pönitz  <poenitz@gmx.net>
4537
4538         * buffer.[Ch]: two instances of Paragraph * -> ParagraphList::iterator
4539
4540         * undo_funcs.C:
4541         * undo.[Ch]: rely on std::vector<Paragraph *> instead of manually
4542           linked lists
4543
4544         * text2.C: tiny whitespace
4545
4546 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
4547
4548         * undo_funcs.C: almost only ws changes.
4549
4550         * ParagraphList.C (splice): just return if pl is empty.
4551
4552 2003-05-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
4553
4554         * ParagraphList.C (splice): new function.
4555
4556         * CutAndPaste.C (pasteSelection): use it
4557
4558 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4559
4560         * CutAndPaste.C (pasteSelection): remove the last next and
4561         previous from this file.
4562
4563 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4564
4565         * CutAndPaste.C (pasteSelection): more clean up, user proper
4566         ParagraphList functions for pasteing.
4567
4568         * ParagraphList.C (insert): new function, three arg insert
4569
4570 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4571
4572         * ParagraphList.C (insert): new function, three arg insert
4573
4574         * CutAndPaste.C (pasteSelection): work on the simple_cut_clone,
4575         not on paragraphs.
4576
4577 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4578
4579         * CutAndPaste.C (pasteSelection): copy paragraphlist the nice way.
4580
4581 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4582
4583         * CutAndPaste.C (pasteSelection): remove some unneeded code.
4584
4585 2003-05-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
4586
4587         * CutAndPaste.C (resetOwnerAndChanges): new helper functor
4588         (copySelection): clean up a bit.
4589         (pasteSelection): use make_pair
4590
4591         * ParagraphList.C (ParagraphList): implement copy constructor
4592         (operator=): implement, base on copy constructor.
4593         (assign): new func
4594
4595         * paragraph.C (erase): return a bool
4596
4597         * paragraph_pimpl.C (erasePos): remove function, move contents...
4598         (erase): ... here. Return a bool.
4599         (erase): call erase instead of erasePos.
4600
4601 2003-04-30  Alfredo Braunstein  <abraunst@libero.it>
4602
4603         * ParagraphList.h: define PitPosPair
4604         * CutAndPaste.C (copySelection, pasteSelection): big rework, use
4605         ParagraphList, fix a bug on pasting multiple pars
4606         * text2.C: change interface to C&P
4607
4608 2003-04-30  André Pönitz  <poenitz@gmx.net>
4609
4610         * undo_func.C: revert part of yesterday's patch 2
4611
4612 2003-04-30  John Levon  <levon@movementarian.org>
4613
4614         * LColor.C: s/tabular/table/
4615
4616 2003-04-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
4617
4618         * text3.C (dispatch): do not convert iterator -> pointer
4619         * undo_funcs.C (setCursorParUndo): ditto
4620         * text_funcs.C (transposeChars): ditto
4621
4622         * text2.C (setLayout): ws changes only
4623
4624         * text.C (breakParagraph): do not convert iterator -> pointer
4625         (insertChar): ditto
4626         (acceptChange): ditto
4627         (rejectChange): ditto
4628         (changeCase): ditto
4629         (Delete): ditto
4630         (backspace): ditto
4631
4632         * BufferView.C (lockedInsetStoreUndo): do not convert iterator ->
4633         pointer
4634
4635 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
4636
4637         * text3.C (gotoInset): YABG (yet another bad getChar)
4638
4639 2003-04-29  André Pönitz  <poenitz@gmx.net>
4640
4641         * paragraph.h: make operator= private unimplemented as long as
4642           it is unusable
4643
4644         * ParagraphList.C: whitespace
4645
4646         * paragraph.[Ch]:
4647         * paragraph_pimpl.[Ch]:
4648         * paragraph_funcs.C:
4649         * CutAndPaste.C:
4650         * undo_funcs.C: whitespace + Paragraph *  -> Paragraph (const) &
4651
4652         * text2.C:
4653           undo_funcs.[Ch]: Paragraph * -> ParagraphList::iterator
4654
4655 2003-04-29  Alfredo Braunstein  <abraunst@libero.it>
4656
4657         * CutAndPaste.[Ch] (cutSelection): big rework, some bugs fixed
4658         * paragraph.[Ch] (erase):
4659         * paragraph_pimpl.[Ch] (erase): change return type and value
4660         * text2.C (cutSelection): some rework
4661
4662 2003-04-28  John Levon  <levon@movementarian.org>
4663
4664         * bufferlist.C: changes for unsaved changes dialog
4665
4666 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
4667
4668         * bufferlist.C (newFile): set language (messages_) for new
4669         documents also.
4670
4671         * buffer.C (readFile): ws changes only.
4672
4673 2003-04-28  André Pönitz  <poenitz@gmx.net>
4674
4675         * undo_funcs.C:
4676         * lyxfunc.C:
4677         * buffer.[Ch]:
4678         * BufferView_pimpl.C:
4679         * BufferView.C: getParFromID related ParagraphList::iterator changes
4680
4681 2003-04-28  André Pönitz  <poenitz@gmx.net>
4682
4683         * tabular.[Ch]: part of Lars' Paragraph * -> ParagraphList::iterator
4684           Changes
4685
4686 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
4687
4688         * messages.C: remove one more localedir class variable.
4689
4690 2003-04-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
4691
4692         * messages.C (getLocaleDir): singleton generation function
4693         (Pimpl): use it.
4694         (Messages): add a default constructor.
4695
4696         * main.C (main): do not setup localedir here, do not call
4697         gettext_init.
4698
4699         * gettext.C (_): use it.
4700         (gettext_init): delete funciton
4701
4702 2003-04-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
4703
4704         * gettext.C (getLyXMessages): new singleton generating function.
4705
4706         * buffer.C (updateDocLang): adjust
4707
4708         * Makefile.am (messages.o): add target
4709         (main.o): remove target
4710
4711 2003-04-27  John Levon  <levon@movementarian.org>
4712
4713         * bufferlist.C:
4714         * lyx_cb.C:
4715         * lyxfunc.C:
4716         * lyxvc.C: specify cancel button in Alert::prompt
4717
4718 2003-04-26  John Levon  <levon@movementarian.org>
4719
4720         * text3.C:
4721         * lyxfunc.C:
4722         * lfuns.h:
4723         * LyXAction.C: add LFUN_INSET_SETTINGS
4724
4725         * lyxfunc.C: don't enable tabular-feature when there's
4726         just any locking inset
4727
4728 2003-04-26  John Levon  <levon@movementarian.org>
4729
4730         * bufferlist.C: re-add Cancel to buffer close question
4731
4732         * lyxfunc.C: fix import UI a bit
4733
4734 2003-04-25  John Levon  <levon@movementarian.org>
4735
4736         * gettext.C: remove the broken asserts for now
4737
4738 2003-04-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
4739
4740         * messages.C: make case where setlocale cannot comply work better.
4741
4742         * buffer.C (updateDocLang): new function
4743         (changeLanguage): use it
4744         (readFile): use it
4745
4746         * text2.C (setCounter): use B_ a bit.
4747
4748         * lyxlayout.C (Read): be sure to trim the label strings.
4749
4750         * messages.C (Messages): fix typo in comment
4751
4752         * buffer.C (readFile): set message_ after file is loaded.
4753         (makeDocBookFile): remove double return
4754         (changeLanguage): reset message_ upon language change.
4755         (B_): new func, use this to get translated buffer strings.
4756
4757         * main.C: add myself and Jean Marc as authors.
4758
4759 2003-04-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
4760
4761         * messages.[hC]: pimplify Messages, and three different pimpls to be
4762         used in different circumstances.
4763
4764         * gettext.[Ch]: change for use with new message code.
4765
4766 2003-04-24 André Pönitz <poenitz@gmx.net>
4767
4768         * factory.C: support for eqref
4769
4770 2003-04-23  Lars Gullik Bjønnes  <larsbj@gullik.net>
4771
4772         * messages.[Ch]: add missing char
4773
4774         * Makefile.am (lyx_SOURCES): add messages.[Ch]
4775
4776         * messages.[Ch]: New files
4777
4778 2003-04-18  John Levon  <levon@movementarian.org>
4779
4780         * BufferView.h:
4781         * BufferView.C:
4782         * BufferView_pimpl.C:
4783         * lfuns.h:
4784         * LyXAction.C:
4785         * lyxtext.h:
4786         * text2.C: remove layout-copy/paste (bug 778)
4787
4788 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
4789
4790         * text2.C (redoParagraphs): eliminate good_prevrit, rewrite a loop
4791
4792 2003-04-16  Alfredo Braunstein  <abraunst@libero.it>
4793
4794         * bufferlist.C (quitWriteBuffer): WriteAs and MenuWrite return true
4795         if they succeed. Act accordingly.
4796
4797 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
4798
4799         * text2.C (setCharFont): adjust
4800         (setCounter): adjust
4801         (insertStringAsLines): adjust
4802
4803         * text.C (leftMargin): adjust
4804         (setHeightOfRow): adjust
4805
4806         * rowpainter.C (paintFirst): adjust
4807         (paintLast): adjust
4808
4809         * paragraph_funcs.C (depthHook): ParagraphList::iterators
4810         (outerHook): ditto
4811         (isFirstInSequence): ditto
4812         (getEndLabel): ditto
4813         (outerFont): adjust
4814
4815         * paragraph.C (getParLanguage): comment out some hard stuff.
4816
4817         * buffer.C (insertStringAsLines): take a ParagraphList as arg
4818         (sgmlError): ditto
4819         (simpleDocBookOnePar): ditto
4820         (makeDocBookFile): use ParagraphList::iterator
4821
4822         * CutAndPaste.C (pasteSelection): adjust
4823
4824 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
4825
4826         * text2.C (getFont): adjust
4827         (getLayoutFont): adjust
4828         (getLabelFont): adjust
4829
4830         * paragraph_funcs.C (TeXOnePar): adjust
4831
4832         * buffer.C (simpleLinuxDocOnePar): adjust
4833         (simpleDocBookOnePar): adjust
4834
4835         * CutAndPaste.C (pasteSelection): adjust
4836
4837         * BufferView.C (getEncoding): adjust
4838
4839         * paragraph_funcs.C (outerFont): prepare for a ParagraphList arg.
4840
4841 2003-04-16  John Levon  <levon@movementarian.org>
4842
4843         * lyxfind.C: use parlist stuff for search/changes
4844
4845 2003-04-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
4846
4847         * undo_funcs.C (textHandleUndo): ajust (rather big adsjust this one)
4848
4849         * text2.C (deleteEmptyParagraphMechanism): adjust
4850
4851         * text2.[Ch] (ownerParagraph): delete func (both of them
4852
4853 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
4854
4855         * text_funcs.C (transposeChars): use ParagraphList::iterator here.
4856
4857 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
4858
4859         * ParagraphList.C: prepare for NO_NEXT
4860
4861 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
4862
4863         * text2.C (getFont): adjust
4864         (getLayoutFont): adjust
4865         (getLabelFont): adjust
4866
4867         * paragraph.C (getFont): adjust
4868         (getLabelFont): adjust
4869         (getLayoutFont): adjust
4870
4871         * paragraph_funcs.[Ch] (realizeFont): remove unneeded arguments.
4872
4873 2003-04-15  John Levon  <levon@movementarian.org>
4874
4875         From Angus Leeming
4876
4877         * lyx_main.C: handle Include in .ui files
4878
4879 2003-04-15  John Levon  <levon@movementarian.org>
4880
4881         * MenuBackend.C: make the doc files length shorter
4882
4883         * ToolbarBackend.h:
4884         * ToolbarBackend.C: handle toolbar placement flags,
4885         Minibuffer
4886
4887 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
4888
4889         * paragraph_pimpl.C (simpleTeXSpecialChars): take a outerfont arg,
4890         adjust
4891
4892         * paragraph_funcs.C (TeXOnePar): adjust
4893
4894         * paragraph.C (getLabelFont): add outerfont arg, adjust
4895         (getLayoutFont): ditto
4896         (simpleTeXOnePar): adjust
4897
4898         * paragraph_pimpl.C (realizeFont): delete func
4899
4900 2003-04-14  Alfredo Braunstein  <abraunst@libero.it>
4901
4902         * text2.C (beforeFullRowInset): added a bad getchar check, removed
4903         row argument, constify cur argument.
4904
4905 2003-04-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
4906
4907         * text2.C (getFont): adjust
4908         (getLayoutFont): adjust
4909         (getLabelFont): adjust
4910
4911         * paragraph_funcs.C (TeXOnePar): adjust
4912         (outerFont): new func...
4913         (realizeFont): ...moved out from here, changed this to facilitate
4914         transition
4915
4916         * paragraph.C (getFont): take outerfont as arg, adjust
4917         (simpleTeXOnePar): add outerfont arg, adjust
4918
4919         * buffer.C (simpleLinuxDocOnePar): adjust
4920         (simpleDocBookOnePar): adjust
4921
4922         * CutAndPaste.C (pasteSelection): adjust
4923
4924         * BufferView.C (getEncoding): adjust
4925
4926 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
4927
4928         * text2.C (setCharFont): adjust
4929         (setCounter): adjust
4930
4931         * text.C (leftMargin): adjust
4932         (setHeightOfRow): adjust
4933
4934         * rowpainter.C (paintFirst): adjust
4935         (paintLast): adjust
4936
4937         * paragraph_pimpl.C (realizeFont): adjust
4938
4939         * paragraph.C (isFirstInSequence): move from here...
4940         * paragraph_funcs.C (isFirstInSequence): ...to here
4941
4942         * paragraph.C (outerHook): move from here...
4943         * paragraph_funcs.C (outerHook): ...to here
4944
4945         * paragraph.C (depthHook): move from here...
4946         * paragraph_funcs.C (depthHook): ...to here
4947
4948         * paragraph.C (getEndLabel): move from here...
4949         * paragraph_funcs.C (getEndLabel): ...to here
4950
4951         * text2.C (realizeFont): move from here...
4952         * paragraph_funcs.C (realizeFont): ...to here
4953
4954 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
4955
4956         * text3.C (gotoNextInset): use separate tmp vars for par and pos.
4957
4958 2003-04-14  Angus Leeming  <leeming@lyx.org>
4959
4960         * LColor.[Ch]: scrap LColor mathcursor.
4961
4962 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
4963
4964         * lyxlex.[Ch] (text): delete function
4965         * trans.C (Load): adjust
4966         * paragraph_funcs.C (readParToken): adjust
4967
4968 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
4969
4970         * lyxlex_pimpl.h: get rid of LEX_MAX_BUFF, change buff to be a
4971         vector<char> instead of a char[].
4972
4973         * lyxlex_pimpl.C (getString): adjust
4974         (next): adjust
4975         (lex): use getString
4976         (eatLine): adjust
4977         (nextToken): adjust
4978
4979         * lyxlex.C (text): use pimpl_->getString()
4980         (getBool): ditto
4981         (findToken): ditto
4982
4983 2003-04-14  Lars Gullik Bjønnes  <larsbj@gullik.net>
4984
4985         * text2.C (getInset): temp vars for cursor.par() and cursor.pos()
4986         (makeFontEntriesLayoutSpecific): temp var for par.size()
4987         (setLayout): temp var for ownerParagraphs().end()
4988         (fullRebreak): temp var for rows().end()
4989         (selectionAsString): temp var for boost::next(startpit), realize
4990         that the while really is a regular for loop.
4991         (cursorEnd): temp vars for cursor.row(), lastPos ++, only call
4992         setCursor in one place.
4993         (setParagraph): temp vr for ownerParagraphs().end()
4994         (updateCounters): make the while loop a for loop
4995         (cutSelection): temp var for ownerParagraphs().end()
4996         (updateInset): make the do {} while() a regular for loop
4997         (getCursorX): use temp vars
4998         (setCurrentFont): use temp vars
4999         (getColumnNearX): use temp vars
5000
5001 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
5002
5003         * text.C (transformChar): use temp var for getChar
5004         (computeBidiTables): use temp var for row->par()
5005         (fill): move temp vars for row->par() and pit->layout() earlier in
5006         the function.
5007         (labelFill): use temp var for row->par()
5008         (setHeightOfRow): do not allow rit to be RowList::end, get rid of
5009         asc and desc, realize that pit never changes and that firstpit is
5010         just a duplicate and not needed. Exchange rit->par() with pit in a
5011         lot of places.
5012         (breakAgain): use a temp var for boost::next(rit)
5013         (breakAgainOneRow): ditto
5014         (breakParagraph): use a temp var for rows().begin()
5015         (prepareToPrint): move nlh into minimal scope, use temp var for rit->par()
5016         (cursorRightOneWord): use temp var for cursor.par() and
5017         cursor.pos(), remove usage of tmpcursor.
5018         (cursorLeftOneWord): use temp var for cursor.par() and
5019         cursor.pos() only set cur at end of function.
5020
5021 2003-04-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
5022
5023         * text.C, text2.C: exchange all usage of Paragraph::next with
5024         boost::next(ParagraphList::iterator)
5025
5026         * CutAndPaste.C (cutSelection): change 2. arg to a Paragraph*
5027
5028         * text2.C (cursorTop): simplify implementation
5029         (cursorBottom): ditto
5030         (setParagraph): use ParagraphList::iterator
5031         (setCurrentFont): adjust
5032         (getColumnNearX): adjust
5033         (cursorRight): adjust
5034         (cursorLeft): remove usage of Paragraph::previous
5035         (cursorUpParagraph): ditto
5036         (deleteEmptyParagraphMechanism): slight cleanup
5037
5038         * text.C (isBoundary): take a Paragraph const & instead of a
5039         pointer as arg.
5040         (addressBreakPoint): ditto
5041         (leftMargin): remove usage of Paragraph::previous.
5042         (setHeightOfRow): ditto
5043         (cursorLeftOneWord): ditto
5044         (selectNextWordToSpellcheck): ditto
5045         (Delete): ditto
5046         (backspace): ditto
5047         (breakParagraph): remove one usage of Paragraph::next
5048         (redoParagraph): ditto
5049         (acceptChange): ditto
5050         (insertChar): adjust
5051         (rowBreakPoint): adjust
5052
5053         * bufferview_funcs.C (toggleAndShow): adjust
5054
5055 2003-04-11  Alfredo Braunstein  <abraunst@libero.it>
5056
5057         * lyxrow.[Ch]: add a cached y position to a Row and Row::y()
5058         methods to access it.
5059         * lyxtext.h:
5060         * text.C: Added updateRowPositions to compute all row positions.
5061         Make top_y and getRowNearY() to use the cached y position
5062
5063 2003-04-11  John Levon  <levon@movementarian.org>
5064
5065         * text.C (rowBreakPoint): reintroduce the labelEnd
5066         checks, code copied from the row fill stuff. Deep voodoo.
5067
5068         * text.C (fill): add a comment and debugging for the
5069         next poor soul.
5070
5071 2003-04-11  John Levon  <levon@movementarian.org>
5072
5073         * text.C: make sure fullrow insets get wrapped to the next line,
5074         even when they're in a manual label
5075
5076 2003-04-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
5077
5078         * text2.C (insertParagraph): make it take ParagraphList::iterator
5079         as arg.
5080         (setLayout): make it return ParagraphList::iterator
5081         (redoParagraphs): ditto
5082         (setCounter): ditto
5083         (checkParagraph): ditto
5084
5085         * text.C (getRow): make getrow take ParagraphList::iterator as arg
5086
5087         * text2.C: adjust several funcs.
5088         (realizeFont): take a ParagraphList::iterator as arg.
5089         (getLayoutFont): ditto
5090         (getLabelFont): ditto
5091         (setCharFont): ditto
5092
5093         * text.C: adjust several funcs.
5094
5095 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
5096
5097         * text.C (selectNextWordToSpellcheck): don't accidentally
5098         skip insets
5099
5100 2003-04-10  John Levon  <levon@movementarian.org>
5101
5102         * ToolbarBackend.C (getIcon): special handling for
5103         LFUN_MATH_DELIM
5104
5105 2003-04-09  Alfredo Braunstein  <abraunst@libero.it>
5106
5107         * text2.C (cursorRight): a getChar assert fixed
5108
5109 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
5110
5111         * text2.C (getFont): change to take a ParagraphList::iterator
5112         instead of Paragraph*
5113         Adjust several functions.
5114
5115         * text.C (transformChar): change to take a ParagraphList::iterator
5116         instead of Paragraph*
5117         (singleWidth): ditto
5118         Adjust several functions.
5119
5120         * rowpainter.C: adjust several functions
5121         * rowpainter.h:store a ParagraphList::iterator and not a
5122         Paragraph&.
5123
5124
5125 2003-04-09  John Levon  <levon@movementarian.org>
5126
5127         * lyxfunc.C:
5128         * lfuns.h:
5129         * LyXAction.h:
5130         * LyXAction.C: remove LFUN_APROPOS, LFUN_GETTIP,
5131         and the "help" bits as well
5132
5133 2003-04-09  John Levon  <levon@movementarian.org>
5134
5135         * ToolbarBackend.h:
5136         * ToolbarBackend.C: allow multiple toolbars
5137
5138 2003-04-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
5139
5140         * undo_funcs.C (setCursorParUndo): adjust
5141
5142         * text_funcs.C (transposeChars): adjust
5143
5144         * text3.C (gotoNextInset): adjust
5145         (dispatch): adjust
5146
5147         * text2.C (setLayout): adjust
5148         (changeDepth): adjust
5149         (setFont): adjust
5150         (redoParagraphs): adjust
5151         (selectionAsString): adjust
5152         (setParagraph): adjust
5153         (insertInset): adjust
5154         (cutSelection): adjust
5155         (copySelection): adjust
5156         (pasteSelection): adjust
5157         (insertStringAsLines): adjust
5158         (updateInset): adjust
5159         (setCursor): change to take a ParagraphList::iterator parameter
5160         (setCursorIntern): change to take a ParagraphList::iterator parameter
5161         (setCurrentFont): adjust
5162         (cursorLeft): adjust
5163         (cursorRight): adjust
5164         (deleteEmptyParagraphMechanism): adjust
5165
5166         * text.C (breakParagraph): adjust
5167         (insertChar): adjust
5168         (acceptChange): adjust
5169         (rejectChange): adjust
5170         (selectNextWordToSpellcheck): adjust
5171         (changeCase): adjust
5172         (Delete): adjust
5173         (backspace): adjust
5174
5175         * lyxfind.C (SearchForward): adjust
5176         (SearchBackward): adjust
5177         (nextChange): adjust
5178
5179         * lyxcursor.C (par): adjust
5180
5181         * lyxcursor.h: store a ParagraphList::iterator instead of a
5182         Paragraph*
5183
5184         * lyx_cb.C (getPossibleLabel): adjust
5185
5186         * bufferview_funcs.C (toggleAndShow): adjust
5187
5188         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
5189         (dispatch): adjust
5190
5191         * BufferView.C (removeAutoInsets): adjust
5192         (lockedInsetStoreUndo): adjust
5193
5194 2003-04-09  John Levon  <levon@movementarian.org>
5195
5196         * ToolbarBackend.C: try icon without argument
5197         if with argument fails
5198
5199 2003-04-08  John Levon  <levon@movementarian.org>
5200
5201         * ToolbarBackend.h:
5202         * ToolbarBackend.C: add getIcon(), handle tooltip,
5203         and change from "Icon" to "Item".
5204
5205 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
5206
5207         * BufferView.C (lockInset): another bad getchar crunched
5208
5209 2003-04-08  Alfredo Braunstein  <abraunst@libero.it>
5210
5211         * text2.C (changeDepth): do not setUndo on test_only (make undo work
5212         again)
5213
5214 2003-04-05  Alfredo Braunstein  <abraunst@libero.it>
5215
5216         * lyxfind.C (searchForward, searchBackwards): bug 782
5217
5218 2003-04-07  John Levon  <levon@movementarian.org>
5219
5220         * paragraph.C: remove dead comment
5221
5222         * text.C: remove troublesome depth-fiddling code
5223         in leftMargin() and rightMargin() (bug 1017)
5224
5225         * text.C: fix breaking of rows in nested lists
5226         (bug 1004)
5227
5228         * text2.C (updateCounters): fix up depth values
5229         (bug 1013)
5230
5231 2003-04-07  John Levon  <levon@movementarian.org>
5232
5233         * BufferView_pimpl.C: clear message when doc finishes resizing,
5234         and after a mouse event
5235
5236         * lyxfunc.C: clear message after exiting inset
5237
5238 2003-04-07  John Levon  <levon@movementarian.org>
5239
5240         * bufferview_funcs.C: show math status not outside
5241         status in the statusbar
5242
5243 2003-04-07  John Levon  <levon@movementarian.org>
5244
5245         * lyxfunc.C: note status changed after a depth change
5246
5247 2003-04-04  Angus Leeming  <leeming@lyx.org>
5248
5249         * LaTeX.h: move AuxInfo operator==, != out of line.
5250         Remove LaTeX virtual destructor; nothing derives from it.
5251         Move operator()() out of public area and rename it startscript().
5252         Change protected for private.
5253
5254 2003-04-04  Angus Leeming  <leeming@lyx.org>
5255
5256         * lyxfunc.C:
5257         * text2.C: remove unneeded #includes.
5258
5259 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
5260
5261         * text2.C (dEPM): fix the heigth of the next row
5262
5263 2003-04-03  Alfredo Braunstein  <abraunst@libero.it>
5264
5265         * text.C: squashed an invalid getChar requester + some ws changes
5266
5267 2003-04-03  John Levon  <levon@movementarian.org>
5268
5269         * bufferview_funcs.h:
5270         * bufferview_funcs.C:
5271         * lyxfunc.C:
5272         * lyxtext.h:
5273         * text2.C: make getStatus work for the env depth lfuns
5274
5275 2003-04-03  John Levon  <levon@movementarian.org>
5276
5277         * bufferview_funcs.h:
5278         * bufferview_funcs.C:
5279         * lyxfunc.C:
5280         * lyxtext.h:
5281         * text2.C: parlistize decDepth(), by merging it with incDepth()
5282
5283 2003-04-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
5284
5285         * lyxrow.h: store a ParagraphList::iterator instead of a
5286         Paragraph* and adjust other class functions to suit.
5287
5288         * lyxrow_funcs.C, text.C, text2.C, text3.C: adjust because of the
5289         above.
5290
5291 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
5292
5293         * text2.C (setCursor): do not anchor to cursor row for the time being
5294
5295 2003-04-02  John Levon  <levon@movementarian.org>
5296
5297         * LyXAction.C:
5298         * lfuns.h:
5299         * lyx_main.C:
5300         * lyxtext.h:
5301         * text.C:
5302         * text3.C: rename the "tab" lfuns. Remove tab support from normal text
5303
5304 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
5305
5306         * paragraph.h: make ParagraphList and ParagraphList::iterator
5307         friends of Paragraph.
5308
5309         * buffer.C (makeLinuxDocFile): move towards ParagraphList
5310
5311         * ParagraphList.C: Use the private next_ and previous_ from
5312         Paragraph.
5313
5314 2003-04-01  John Levon  <levon@movementarian.org>
5315
5316         * ToolbarBackend.h:
5317         * ToolbarBackend.C:
5318         * Makefile.am: rename, remove defaults gunk
5319
5320         * MenuBackend.h:
5321         * MenuBackend.C: remove defaults gunk
5322
5323         * Languages.h:
5324         * Languages.C: remove defaults gunk
5325
5326         * lyx_main.h:
5327         * lyx_main.C: error out if files couldn't be found.
5328
5329 2003-04-02  John Levon  <levon@movementarian.org>
5330
5331         * text2.C: make incDepth() use parlist
5332
5333 2003-04-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
5334
5335         * undo_funcs.C (firstUndoParagraph): adjust
5336
5337         * text3.C (gotoInset): adjust
5338         (dispatch): adjust, and rewrite loop.
5339
5340         * text2.C (init): adjust, and rewrite loop.
5341         (redoParagraphs): adjust
5342         (updateInset): adjust, and rewrite loop.
5343         (deleteEmptyParagraphMechanism): adjust
5344
5345         * tabular.C (LyXTabular): adjust
5346         (SetMultiColumn): adjust
5347         (TeXRow): adjust
5348
5349         * lyxtext.[Ch] (ownerParagraph): delete function
5350         (ownerParagraphs): new function returns a ParagraphList.
5351
5352         * BufferView.C (removeAutoInsets): adjust
5353         (insertErrors): adjust
5354         (setCursorFromRow): adjust
5355
5356 2003-04-01  Angus Leeming  <leeming@lyx.org>
5357
5358         * BufferView_pimpl.C (buffer): ensure that the Layout is correct
5359         in the frontends.
5360
5361 2003-04-02  John Levon  <levon@movementarian.org>
5362
5363         * lyxtext.h:
5364         * text.C:
5365         * Makefile.am:
5366         * text_funcs.h:
5367         * text_funcs.C: make transposeChars a free function
5368
5369         * lyxrow_funcs.C: remove wrong comment
5370
5371 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5372
5373         * lyxtext.h: adjust
5374         * rowpainter.C: adjust
5375         * text.C: adjust
5376         * text2.C: adjust
5377         * text3.C: adjust
5378
5379         * lyxrow_funcs. [Ch]: new files
5380
5381         * lyxrow.[Ch]: remove next and previous pointers
5382         (next,previous): remove accessor functions
5383         (isParEnd): move to lyxrow_funcs
5384         (lastPos): move to lyxrow_funcs
5385         (nextRowIsAllInset): move to lyxrow_funcs
5386         (lastPrintablePos): move to lyxrow_funcs
5387         (numberOfSeparators): move to lyxrow_funcs
5388         (numberOfHfills): move to lyxrow_funcs
5389         (numberOfLabelHfills): move to lyxrow_funcs
5390         (hfillExpansion): move to lyxrow_funcs
5391
5392         * lyxfunc.C: adjust
5393
5394         * bufferview_funcs.C (toggleAndShow): adjust
5395
5396         * RowList.h: Remove class RowList from file leave just a
5397         std::list<Row>.
5398
5399         * RowList.C: delete file
5400
5401         * Makefile.am (lyx_SOURCES): remove RowList.C, add lyxrow_funcs.C
5402         and lyxrow_funcs.h
5403
5404 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5405
5406         * text3.C (cursorPrevious): adjust
5407         (cursorNext): adjust
5408         (dispatch): adjust
5409
5410         * text2.C (redoHeightOfParagraph): adjust
5411         (redoDrawingOfParagraph): adjust
5412         (setCursor): adjust
5413
5414         * text.C (breakParagraph): adjust
5415         (insertChar): adjust
5416         (backspace): adjust
5417
5418         * rowpainter.C (RowPainter): adjust
5419         (leftMargin): simplify and adjust
5420         (most rowpainter functions): adjust.
5421
5422         * rowpainter.h: store the row as RowList::iterator not as Row*
5423
5424         * lyxcursor.C (row): taka RowList::iterator as arg
5425         (irow): ditto
5426
5427         * lyxcursor.h: make the LyXCursor store RowList::iterators instead
5428         of Row*.
5429
5430 2003-04-01  Angus Leeming  <leeming@lyx.org>
5431
5432         * bufferview_funcs.C (string2font): rewrite so that it no longer uses
5433         stuff like bool Bool.
5434
5435 2003-04-01  Alfredo Braunstein  <abraunst@libero.it>
5436
5437         * text2.C (redoParagraphs): fix a bug (introduced by myself) and
5438         rewrite a loop
5439
5440 2003-04-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
5441
5442         * text2.C (redoParagraphs): rewrite (with help from Alfredo) for
5443         RowList::iterator.
5444
5445         * lyxtext.h (rows): drop one version and leve a const variant that
5446         returns a RowList::iterator.
5447
5448 2003-03-31  Angus Leeming  <leeming@lyx.org>
5449
5450         * text.C (fill): ensure that the signature is the same as that in the
5451         header file.
5452
5453 2003-03-31  Lars Gullik Bjønnes  <larsbj@gullik.net>
5454
5455         * text2.C (redoParagraphs): adjust
5456         (updateCounters): adjust
5457         (checkParagraph): adjust
5458         (getColumnNearX): adjust and reformat a bit.
5459
5460         * text.C (top_y): adjust
5461         (workWidth): adjust
5462         (leftMargin): adjust
5463         (prepareToPrint): adjust
5464         (getRow): adjust
5465         (getRowNearY): adjust
5466
5467         * lyxtext.h: make rowlist_ mutable.
5468
5469         * RowList.h: add const_iterator
5470         * RowList.C: adjust for RowList::const_iterator.
5471
5472         * text2.C (getCursorX): make it take a RowList::iterator as arg,
5473         adjust.
5474
5475 2003-03-31  John Levon  <levon@movementarian.org>
5476
5477         * lyxrc.h:
5478         * lyxrc.C: moved pdf_mode and use_gui to elsewhere
5479
5480         * lyx_main.C: set default fonts from using lyx_gui funcs
5481
5482         * exporter.C: pdf_mode moved from lyxrc
5483
5484         * lyx_cb.C:
5485         * lyxfunc.C: changes from above
5486
5487 2003-03-31  John Levon  <levon@movementarian.org>
5488
5489         * lyx_main.C: fix to the last fix
5490
5491 2003-03-31  John Levon  <levon@movementarian.org>
5492
5493         * bufferlist.C: "Load original" -> "Load Original"
5494
5495         * converter.C:
5496         * exporter.C:
5497         * importer.C:
5498         * lyx_main.C:
5499         * format.C: more Alert cleanups
5500
5501 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
5502
5503         * text2.C (removeParagraph): make it take a RowList::iterator as
5504         arg, adjust.
5505         (getColumnNearX): make it take a RowList::iterator as arg, adjust.
5506         (postRowPaint): make it take a RowList::iterator as arg, adjust.
5507
5508         * text.C (anchor_row): make it take a RowList::iterator as arg,
5509         adjust.
5510         (computeBidiTables): make it take a const reference to Row instead
5511         of Row pointer, adjust.
5512         (leftMargin): make it take a RowList::iterator as arg, adjust.
5513         (rowBreakPoint): adjust
5514         (breakAgainOneRow): make it take a RowList::iterator as arg,
5515         adjust.
5516         (prepareToPrint): make it take a RowList::iterator as arg, adjust.
5517
5518         * bufferview_funcs.C (toggleAndShow): adjust
5519
5520 2003-03-30  John Levon  <levon@movementarian.org>
5521
5522         * Makefile.am:
5523         * BoostFormat.h:
5524         * boost-inst.C: moved to support
5525
5526         * several files: changes as a result
5527
5528 2003-03-30  Lars Gullik Bjønnes  <larsbj@gullik.net>
5529
5530         * text2.C (LyXText): adjust.
5531         (init): adjust
5532         (removeRow): make it take a RowList::iterator as arg, adjust.
5533         (fullRebreak): adjust
5534         (deleteEmptyParagraphMechanism): adjust
5535         (clearPaint): adjust
5536         (postPaint): adjust
5537
5538         * text.C (top_y): adjust
5539         (setHeightOfRow): make it take a RowList::iterator as arg, adjust.
5540         (breakAgain): make it take a RowList::iterator as arg, adjust.
5541         (breakParagraph): adjust
5542         (insertChar): adjust
5543         (backspace): adjust
5544
5545         * lyxtext.h: make anchor_row_ be a RowList::iterator, ditto
5546         need_break_row, and refresh_row.
5547
5548         * text3.C (dispatch): adjust
5549
5550         * text2.C (checkParagraph): adjust
5551         (setCursor): adjust
5552         (setCursorFromCoordinates): adjust
5553
5554         * text.C (top_y): adjust
5555         (workWidth): adjust
5556         (getRow): make it return a RowList::iterator, adjust
5557         (getRowNearY): make it return a RowList::iterator, adjust
5558
5559         * text2.C (init): adjust
5560         (insertRow): remove function
5561         (insertParagraph): adjust
5562         (redoParagraphs): adjust
5563         (fullRebreak): adjust
5564         (updateCounters): adjust
5565
5566         * text.C (top_y): rewrite to use RowList iterators.
5567         (top_y): adjust
5568         (setHeightOfRow): rewrite to sue RowList iterators.
5569         (appendParagraph): adjust
5570         (breakAgain): adjust
5571         (breakAgainOneRow): adjust
5572         (breakParagraph): adjust
5573         (getRow): adjust
5574         (getRowNearY): adjust, and remove commented code.
5575
5576         * lyxtext.h (firstRow): delete function
5577         (lastRow): delete function
5578         (rows): new function (const and non-const versions.)
5579         (insertRow): delete function
5580
5581         * lyxrow.[Ch] (Row): new constructor taking a par and a pos
5582
5583 2003-03-29  John Levon  <levon@movementarian.org>
5584
5585         * BufferView_pimpl.C: always update scrollbar top
5586         because pasting text when we're anchored could mean we
5587         miss an update altogether
5588
5589 2003-03-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
5590
5591         * text2.C (init): use rowlist_.end() and not 0.
5592         (insertRow): change to take a RowList::iterator as arg, adjust
5593         for this.
5594         (insertParagraph): change to take a RowList::iterator as arg,
5595         adjust for this.
5596         (redoParagraphs): remove some debug msgs.
5597
5598         * text.C (appendParagraph): change to take a RowList::iterator
5599         arg, adjust for this.
5600         (breakAgain): add an assert
5601         (breakAgainOneRow): ditto
5602
5603 2003-03-29  John Levon  <levon@movementarian.org>
5604
5605         * text2.C: do not clear selection after inc/decDepth
5606         (bug 550)
5607
5608 2003-03-29  John Levon  <levon@movementarian.org>
5609
5610         * BufferView.C:
5611         * buffer.C: fix broken strerrors according to Lars
5612
5613 2003-03-29  John Levon  <levon@movementarian.org>
5614
5615         * converters.C: more Alert cleanups
5616
5617 2003-03-29  John Levon  <levon@movementarian.org>
5618
5619         * bufferview_funcs.C: remove pointless Alert
5620
5621         * buffer.C: fix confusing error message when
5622         a template is chmoded 000
5623
5624 2003-03-29  John Levon  <levon@movementarian.org>
5625
5626         * BufferView.C:
5627         * BufferView.h:
5628         * BufferView_pimpl.C: Alert fixes
5629
5630         * Makefile.am:
5631         * tabular.C:
5632         * tabular-old.C: remove unused table compat reading
5633
5634 2003-03-29  John Levon  <levon@movementarian.org>
5635
5636         * BufferView.C:
5637         * buffer.C:
5638         * lyx_cb.h:
5639         * lyx_cb.C: more Alert cleanups
5640
5641         * lyxfunc.C: don't allow chktex if not latex document
5642
5643 2003-03-29  John Levon  <levon@movementarian.org>
5644
5645         * lyx_cb.C:
5646         * BufferView.C:
5647         * buffer.C: warnings pushed down from support/,
5648         kill err_alert
5649
5650 2003-03-29  John Levon  <levon@movementarian.org>
5651
5652         * lyxfunc.C: safety check for C-r (revert)
5653
5654 2003-03-29  John Levon  <levon@movementarian.org>
5655
5656         * bufferlist.h:
5657         * bufferlist.C: several UI fixes using Alert::prompt.
5658         Fix the pointless looping quit code. Fix stupid revert
5659         behaviour (bug 938)
5660
5661         * lyxvc.h:
5662         * lyxvc.C:
5663         * lyx_cb.C: use Alert::prompt
5664
5665         * lyx_main.C: remove a silly question
5666
5667         * lyxfunc.C: remove a couple of silly questions,
5668         use Alert::prompt
5669
5670 2003-03-28  John Levon  <levon@movementarian.org>
5671
5672         * text2.C: fix bug 974 (End on empty par)
5673
5674 2003-03-28  John Levon  <levon@movementarian.org>
5675
5676         * BufferView_pimpl.C:
5677         * LyXAction.C:
5678         * lfuns.h: remove do-nothing math greek lfuns
5679
5680 2003-03-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
5681
5682         * lyxgluelength.h (isValidGlueLength): add default arg on
5683         parameter 2. Remove default arg from friend in class.
5684
5685         * lyxlength.h (isValidLength): add default arg on parameter 2.
5686         Remove default arg from friend in class.
5687
5688         * text2.C (LyXText): adjust, initialize refresh_row.
5689         (init): adjust
5690         (removeRow): adjust
5691         (insertRow): adjust
5692         (insertParagraph): adjst
5693         (redoParagraphs): adjust
5694         (fullRebreak): adjust
5695         (updateCounters): adjust
5696         (deleteEmptyParagraphMechanism): first attempt at fixing a
5697         crashing bug.
5698
5699         * text.C (top_y): adjust
5700         (setHeightOfRow): adjust
5701         (getRow): adjust
5702         (getRowNearY): adjust
5703
5704         * lyxtext.h: include RowList.h
5705         (~LyXText): not needed anymore, deleted.
5706         (firstRow): modify for RowList
5707         (lastRow): new function
5708         Delete firstrow and lastrow class variables, add a Rowlist
5709         rowlist_ class variable.
5710
5711         * lyxrow.C (lastPos): use empty() and not !size() to check if a
5712         paragraph is empty.
5713
5714         * RowList.C (insert): fix case where it == begin().
5715
5716 2003-03-26  Angus Leeming  <leeming@lyx.org>
5717
5718         * BufferView_pimpl.C (dispatch): changes to the Dialogs interface for
5719         the thesaurus dialog.
5720
5721 2003-03-26  Lars Gullik Bjønnes  <larsbj@gullik.net>
5722
5723         * Makefile.am (lyx_SOURCES): add RowList.[Ch]
5724
5725         * RowList.[Ch]: new files
5726
5727         * ParagraphList.C (erase): handle the case where it == begin
5728         correctly.
5729
5730 2003-03-25  John Levon  <levon@movementarian.org>
5731
5732         * Makefile.am:
5733         * aspell_local.h:
5734         * aspell.C: add new aspell support
5735
5736         * lyxrc.h:
5737         * lyxrc.C: Make use_pspell be use_spell_lib. Always
5738         have it accessible.
5739
5740 2003-03-25  Angus Leeming  <leeming@lyx.org>
5741
5742         * lfuns.h:
5743         * LyXAction.C (init): new LFUN_INSET_INSERT.
5744
5745         * BufferView_pimpl.C (dispatch): split out part of the
5746         LFUN_INSET_APPLY block LFUN_INSET_INSERT.
5747
5748         * factory.C (createInset): act on LFUN_INSET_INSERT rather than
5749         LFUN_INSET_APPLY.
5750
5751 2003-03-25  Angus Leeming  <leeming@lyx.org>
5752
5753         * lyxfunc.C (dispatch): changes to the Dialogs interface.
5754
5755 2003-03-25  Alfredo Braunstein  <abraunst@libero.it>
5756
5757         * text2.C:
5758         * text3.C: remove useless row->height(0)
5759
5760 2003-03-25  John Levon  <levon@movementarian.org>
5761
5762         * lyxtext.h:
5763         * text2.C:
5764         * text3.C: rename the refreshing stuff to better names
5765
5766 2003-03-24  John Levon  <levon@movementarian.org>
5767
5768         * BufferView_pimpl.h:
5769         * BufferView_pimpl.C: update layout choice on a mouse
5770         press/release
5771
5772 2003-03-23  John Levon  <levon@movementarian.org>
5773
5774         * Makefile.am: fix commandtags.h reference
5775
5776 2003-03-22  John Levon  <levon@movementarian.org>
5777
5778         * BufferView_pimpl.C:
5779         * lyxtext.h:
5780         * rowpainter.C:
5781         * rowpainter.h:
5782         * text.C:
5783         * text2.C: remove CHANGED_IN_DRAW, it cannot happen now
5784
5785 2003-03-21  Alfredo Braunstein  <abraunst@libero.it>
5786
5787         * lyxtext.h:
5788         * text.C: take the rtl methods out of line
5789
5790 2003-03-21 André Pönitz <poenitz@gmx.net>
5791
5792         * metricsinfo.[Ch]: new files containing structures to be passed around
5793         during the two-phase-drawing...
5794
5795 2003-03-21 André Pönitz <poenitz@gmx.net>
5796
5797         * lyxtextclass.C: read 'environment' tag.
5798
5799 2003-03-20  Alfredo Braunstein  <abraunst@libero.it>
5800
5801         * text2.C (removeRow): fix bug 964
5802
5803 2003-03-20  John Levon  <levon@movementarian.org>
5804
5805         * rowpainter.C:
5806         * text.C:
5807         * text2.C: paint cleanups. Inset::update() dropped font
5808         parameter
5809
5810 2003-03-19  John Levon  <levon@movementarian.org>
5811
5812         * lyxfunc.C: only fitcursor/markDirty if available()
5813
5814 2003-03-19  John Levon  <levon@movementarian.org>
5815
5816         * commandtags.h: rename to ...
5817
5818         * lfuns.h: ... this, and renumber / cleanup
5819
5820 2003-03-19  John Levon  <levon@movementarian.org>
5821
5822         * lyxfunc.C: mark buffer dirty if we executed a "dirtying" lfun.
5823         fit the cursor after an lfun
5824
5825         * BufferView.h:
5826         * BufferView.C:
5827         * BufferView_pimpl.h:
5828         * BufferView_pimpl.C: remove BufferView::FITCUR/CHANGE
5829
5830         * LyXAction.C: layout-character should have ReadOnly
5831
5832         * ParagraphParameters.C:
5833         * buffer.C:
5834         * bufferview_funcs.C:
5835         * lyx_cb.C:
5836         * lyxfind.C:
5837         * lyxtext.h:
5838         * text.C:
5839         * text2.C:
5840         * text3.C:
5841         * undo_funcs.C: changes from above
5842
5843 2003-03-18  John Levon  <levon@movementarian.org>
5844
5845         * BufferView_pimpl.C (scrollDocView): add updateLayoutChoice(),
5846         remove it from update()
5847
5848         * lyxfunc.C: update layout choice after an lfun
5849
5850         * text3.C: remove extra updateLayoutChoice()s
5851
5852 2003-03-18  John Levon  <levon@movementarian.org>
5853
5854         * text.C: top_y change means full repaint, fix
5855         a drawing bug with cursor movement
5856
5857 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
5858
5859         * lyxtext.h:
5860         * text.C:
5861         * text2.C: anchor row on setCursor
5862
5863 2003-03-18  Alfredo Braunstein  <abraunst@libero.it>
5864
5865         * lyxtext.h: remove almost all mutable keywords
5866         * text.C:
5867         * text2.C:
5868         * text3.C: remove const keywords accordingly
5869
5870 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
5871
5872         * paragraph_funcs.C (TeXDeeper): reduce number of args, move into
5873         anon namespace
5874         (TeXEnvironment): ditto
5875         (TeXOnePar): ditto
5876
5877 2003-03-17  John Levon  <levon@movementarian.org>
5878
5879         * text.C (rowBreakPoint): remove attempt to fix displayed
5880         math insets inside a manual label
5881
5882 2003-03-17  Lars Gullik Bjønnes  <larsbj@gullik.net>
5883
5884         * lyxtext.h: remove BufferView* as first arg from almost all class
5885         functions.
5886         * other files: adjust.
5887
5888 2003-03-17  John Levon  <levon@movementarian.org>
5889
5890         * lyxtext.h:
5891         * undo_funcs.C:
5892         * text2.C: more paint cleanups
5893
5894         * BufferView_pimpl.C: screen prototype changed, use postPaint etc.
5895
5896         * rowpainter.h:
5897         * rowpainter.C: remove "smart" background painting code
5898
5899 2003-03-16  John Levon  <levon@movementarian.org>
5900
5901         * lyxtext.h:
5902         * text.C:
5903         * text2.C:
5904         * text3.C: add helper functions for setting refresh_row/y
5905
5906 2003-03-14  Kayvan Sylvan  <kayvan@sylvan.com>
5907
5908         * paragraph_pimpl.C (simpleTeXSpecialChars): Added fix for the
5909         newline inset which *can* get inserted in the pass_thru layouts.
5910         This is primarily for literate documents.
5911
5912 2003-03-14  Dekel Tsur  <dekelts@tau.ac.il>
5913
5914         * buffer.C: increment LYX_FORMAT to 223
5915
5916 2003-03-14 André Pönitz <poenitz@gmx.net>
5917
5918         * textclass.h: prepare for environment handling, ws changes
5919         * lyxlayout.C: read latexheader and latexfooter tags
5920
5921 2003-03-14  John Levon  <levon@movementarian.org>
5922
5923         * text2.C: rewrite ::status() a bit
5924
5925 2003-03-13  John Levon  <levon@movementarian.org>
5926
5927         * lyxtext.h: add some docs
5928
5929 2003-03-13  John Levon  <levon@movementarian.org>
5930
5931         * lyxtext.h:
5932         * text.C:
5933         * text2.C:
5934         * text3.C: remove pointless 2nd arg to setHeightOfParagraph()
5935
5936 2003-03-13  John Levon  <levon@movementarian.org>
5937
5938         * text3.C: fix appendix redrawing
5939
5940 2003-03-13  John Levon  <levon@movementarian.org>
5941
5942         * text.C (setHeightOfRow):
5943         * rowpainter.h:
5944         * rowpainter.C: make appendix mark have the text
5945           "Appendix" so the user knows what it is
5946
5947         * LColor.h:
5948         * LColor.C: s/appendixline/appendix/ from above
5949
5950 2003-03-13  John Levon  <levon@movementarian.org>
5951
5952         * paragraph_pimpl.C: fix Andre's backing out of the strong assertion
5953
5954         * text.C: fix a getChar(pos) bug properly
5955
5956 2003-03-13  Angus Leeming  <leeming@lyx.org>
5957
5958         * commandtags.h:
5959         * LyXAction.C (init): new LFUNs PARAGRAPH_APPLY and PARAGRAPH_UPDATE.
5960         Probably only temporary. Let's see how things pan out.
5961
5962         * BufferView.C (unlockInset):
5963         * BufferView_pimpl.C (fitCursor):
5964         replace Dialogs::updateParagraph with dispatch(LFUN_PARAGRAPH_UPDATE).
5965
5966         * BufferView_pimpl.C (dispatch): code for LFUNs LAYOUT_PARAGRAPH,
5967         PARAGRAPH_UPDATE, PARAGRAPH_APPLY.
5968
5969         * ParagraphParameters.[Ch] (setParagraphParams, params2string):
5970         new functions that convert ParagraphParameters to and from a string.
5971
5972         * lyxfunc.C (dispatch): move LFUN_LAYOUT_PARAGRAPH to
5973         BufferView::Pimpl's dispatch.
5974         In LFUN_ESCAPE, dispatch LFUN_PARAGRAPH_UPDATE.
5975
5976 2003-03-13 André Pönitz <poenitz@gmx.net>
5977
5978         * lyxfunc.C:
5979         * text3.C:
5980         * factory.C: make it aware of InsetEnv
5981
5982 2003-03-13  Lars Gullik Bjønnes  <larsbj@gullik.net>
5983
5984         * text2.C (setCursor): never ask for one past last
5985         (setCursor): add some debugging messages.
5986
5987         * text.C (singleWidth): never ask for one past last
5988         (singleWidth): ditto
5989         (leftMargin): ditto
5990         (rightMargin): ditto
5991         (rowBreakPoint): ditto
5992         (setHeightOfRow): ditto
5993         (prepareToPrint): ditto
5994
5995         * rowpainter.C (paintBackground): never ask for one past last
5996         (paintText): never ask for one past last
5997
5998         * paragraph_pimpl.C (getChar): make the assert stricter, never
5999         allow the one past last pos to be taken
6000
6001         * paragraph.C (getChar): ws changes only
6002
6003         * lyxrow.C (nextRowIsAllInset): never ask for one past last
6004         (numberOfSeparators): ditto
6005         (numberOfHfills): ditto
6006
6007 2003-03-12  John Levon  <levon@movementarian.org>
6008
6009         * author.h:
6010         * author.C:
6011         * bufferparams.h:
6012         * bufferparams.C:
6013         * paragraph_funcs.C: fix per-buffer authorlists
6014
6015 2003-03-12  John Levon  <levon@movementarian.org>
6016
6017         * text.C: fix newline in right address
6018
6019 2003-03-12  Angus Leeming  <leeming@lyx.org>
6020
6021         * BufferView_pimpl.C (dispatch): remove LFUNs from switch as they
6022         duplicate those in LyXFunc::dispatch.
6023
6024         * commandtags.h:
6025         * LyXAction.C:
6026         * ToolbarDefaults.C:
6027         rename LFUN_FREE as LFUN_FONTFREE_APPLY.
6028         Add LFUN_FONTFREE_UPDATE.
6029
6030         * lyxfunc.C (dispatch): code for LFUN_FREEFONT_APPLY,
6031         LFUN_FREEFONT_UPDATE, LFUN_LAYOUT_CHARACTER.
6032
6033         * bufferview_func.[Ch]: several new functions to facilliate
6034         transfer of data to and from the character dialog.
6035
6036 2003-03-12  John Levon  <levon@movementarian.org>
6037
6038         * buffer.C:
6039         * paragraph.h:
6040         * paragraph.C:
6041         * paragraph_funcs.C:
6042         * paragraph_pimpl.C:
6043         * sgml.C:
6044         * tabular.C:
6045         * text.C:
6046         * text3.C: remove META_NEWLINE in favour of an inset
6047
6048         * rowpainter.h:
6049         * rowpainter.C: remove paintNewline (done by inset)
6050
6051 2003-03-12  John Levon  <levon@movementarian.org>
6052
6053         * paragraph_pimpl.C: complain about bad getChar()s
6054         for a while at least
6055
6056 2003-03-12  John Levon  <levon@movementarian.org>
6057
6058         * buffer.h:
6059         * buffer.C: move paragraph read into a separate function,
6060         a little renaming to reflect that.
6061
6062         * bufferparams.h:
6063         * bufferparams.C: remove the author_ids map, not necessary now
6064
6065         * factory.h:
6066         * factory.C: moved Buffer::readInset to here
6067
6068         * paragraph_funcs.h:
6069         * paragraph_funcs.C: readParagraph free function moved from
6070         buffer.C
6071
6072         * tabular.C: name change
6073
6074 2003-03-12  John Levon  <levon@movementarian.org>
6075
6076         * buffer.C:
6077         * ParagraphParameters.C: move par params input to
6078         a read() method
6079
6080         * lyxlex_pimpl.C: make nextToken()/next() after a pushToken()
6081         behave like a normal read from the stream wrt reading
6082         a line vs. a \\token
6083
6084 2003-03-12  John Levon  <levon@movementarian.org>
6085
6086         * paragraph.C:
6087         * ParagraphParameters.h:
6088         * ParagraphParameters.C: move output code to a
6089         ::write() method
6090
6091 2003-03-12  John Levon  <levon@movementarian.org>
6092
6093         * BufferView.C (insertLyXFile):
6094         * buffer.h:
6095         * buffer.C:
6096         * tabular.C: use a parlist iterator for creating the
6097           document.
6098
6099 2003-03-12  John Levon  <levon@movementarian.org>
6100
6101         * buffer.C: make current_change static local not
6102           static file-scope
6103
6104 2003-03-12  John Levon  <levon@movementarian.org>
6105
6106         * buffer.C: fix insertStringAsLines for change tracking
6107
6108 2003-03-12  John Levon  <levon@movementarian.org>
6109
6110         * BufferView.C:
6111         * tabular.C:
6112         * buffer.h:
6113         * buffer.C:
6114         * bufferparams.h:
6115         * bufferparams.C: move author list into params. Rename some
6116           functions. Move the header reading into a separate token
6117           loop. Move the header token reading into BufferParams.
6118
6119 2003-03-12  John Levon  <levon@movementarian.org>
6120
6121         * changes.C: put debug inside lyxerr.debugging() checks
6122
6123 2003-03-11 André Pönitz <poenitz@gmx.net>
6124
6125         * factory.C: make it aware of InsetHFill
6126
6127 2003-03-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
6128
6129         * buffer.C (latexParagraphs): move function from here...
6130         * paragraph_funcs.C (latexParagraphs): ...to here, and adjust
6131         args.
6132
6133 2003-03-10  Angus Leeming  <leeming@lyx.org>
6134
6135         * LyXAction.C (init): fix bug in poplating array with multiple entries
6136         with the same LFUN (spotted by JMarc).
6137
6138 2003-03-10  John Levon  <levon@movementarian.org>
6139
6140         * text.C:
6141         * text2.C: move getColumnNearX() near its
6142         only call site
6143
6144 2003-03-10  John Levon  <levon@movementarian.org>
6145
6146         * text.C: fix break before a minipage
6147
6148 2003-03-10  John Levon  <levon@movementarian.org>
6149
6150         * text.C: fix the last commit
6151
6152 2003-03-09  John Levon  <levon@movementarian.org>
6153
6154         * lyxtext.h:
6155         * text.C:
6156         * text2.C: clean up nextBreakPoint (now rowBreakPoint). Fix
6157         bug 365 (don't break before insets unless needed). Don't
6158         return a value > last under any circumstances.
6159
6160 2003-03-09  Angus Leeming  <leeming@lyx.org>
6161
6162         * BufferView_pimpl.C (trackChanges, dispatch): call
6163         Dialogs::show("changes") rather than Dialogs::showMergeChanges().
6164
6165 2003-03-09  Angus Leeming  <leeming@lyx.org>
6166
6167         * lyxfunc.C (dispatch): call Dialogs::show("about") rather
6168         than Dialogs::showAboutlyx().
6169
6170 2003-03-09  Angus Leeming  <leeming@lyx.org>
6171
6172         * factory.C (createInset): call Dialogs::show("tabularcreate") rather
6173         than Dialogs::showTabularCreate().
6174
6175 2003-03-09  John Levon  <levon@movementarian.org>
6176
6177         * lyxtext.h:
6178         * text.C:
6179         * text2.C: 3rd arg to nextBreakPoint was always the same.
6180           Use references.
6181
6182 2003-03-08  John Levon  <levon@movementarian.org>
6183
6184         * lyxrow.C:
6185         * paragraph.C:
6186         * paragraph.h:
6187         * rowpainter.C:
6188         * text.C:
6189         * text2.C: Remove the "main" bit from the "main body"
6190           notion.
6191
6192 2003-03-08  John Levon  <levon@movementarian.org>
6193
6194         * text.C (leftMargin): The left margin of an empty
6195         manual label paragraph should not include the label width
6196         string length.
6197
6198         * text.C (prepareToPrint): don't attempt to measure hfills
6199         for empty manual label paragraphs - the answer should be 0
6200
6201 2003-03-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
6202
6203         * CutAndPaste.C: remove commented code and reindent.
6204
6205 2003-03-08  John Levon  <levon@movementarian.org>
6206
6207         * lyxfunc.h:
6208         * lyxfunc.C: move reloadBuffer()
6209
6210         * BufferView.h:
6211         * BufferView.C: to here
6212
6213         * lyxvc.C: add comment
6214
6215         * vc-backend.h:
6216         * vc-backend.C: call bv->reload() to avoid
6217           getStatus() check on MENURELOAD
6218
6219 2003-03-07  Dekel Tsur  <dekelts@tau.ac.il>
6220
6221         * LaTeX.C (run): Fix a bug where the DVI file was not updated due
6222         to an old format .dep file.
6223
6224 2003-03-07  Angus Leeming  <leeming@lyx.org>
6225
6226         * text3.C (dispatch): remove the 'gross hack' of calling inset->edit
6227         when the LFUN_MOUSE_RELEASE should have been handled by
6228         inset->localDispatch.
6229
6230 2003-03-07  Angus Leeming  <leeming@lyx.org>
6231
6232         * BufferView_pimpl.C (dispatch):
6233         * LyXAction.C (init):
6234         * ToolbarDefaults.C (init):
6235         * commandtags.h:
6236         * lyxfunc.C (getStatus):
6237         remove LFUN_INSET_GRAPHICS.
6238
6239         * factory.C (createInset): add "graphics" to LFUN_INSET_APPLY.
6240
6241 2003-03-07  Angus Leeming  <leeming@lyx.org>
6242
6243         * commandtags.h:
6244         * LyXAction.C (init):
6245         * lyxfunc.C (getStatus): remove LFUN_REF_INSERT.
6246
6247         * lyxfunc.C (getStatus): add LFUN_DIALOG_SHOW_NEW_INSET to switch.
6248
6249         * commandtags.h:
6250         * LyXAction.C: add LFUN_INSET_DIALOG_UPDATE.
6251
6252         * lyxfunc (dispatch): on LFUN_DIALOG_UPDATE, pass the 'open' inset's
6253         localDispatch method LFUN_INSET_DIALOG_UPDATE.
6254
6255 2003-03-07  Angus Leeming  <leeming@lyx.org>
6256
6257         * lyxfunc.C (dispatch): add "include" to LFUN_SHOW_NEW_INSET and
6258         remove "ert".
6259
6260 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
6261
6262         * ParagraphList.C (front): new function
6263         (back): implement
6264
6265 2003-03-06  Alfredo Braunstein  <abraunst@libero.it>
6266
6267         * lyxtext.h (top_y): added these 2 methods, and private vars top_row_
6268         and top_row_offset_. removed var first_y.
6269         * text.C (top_y):
6270         * text2.C (LyXText, removeRow):
6271         * text3.C:
6272         * BufferView_pimpl.C:
6273         use these methods instead of using first_y
6274
6275 2003-03-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
6276
6277         * text2.C (pasteSelection): adjust for checkPastePossible
6278
6279         * CutAndPaste.C: remove Paragraph * buf and replace with
6280         ParagraphList paragraphs.
6281         (DeleteBuffer): delete
6282         (cutSelection): change the tc type to textclass_type
6283         (copySelection): change the tc type to textclass_type
6284         (copySelection): adjust for ParagraphList
6285         (pasteSelection): change the tc type to textclass_type
6286         (pasteSelection): adjust for Paragraphlist
6287         (nrOfParagraphs): simplify for ParagraphList
6288         (checkPastePossible): simplify for ParagraphList
6289         (checkPastePossible): remove unused arg
6290
6291         * ParagraphList.C (insert): handle the case where there are no
6292         paragraphs yet.
6293
6294         * CutAndPaste.h: make CutAndPaste a namespace.
6295
6296         * text3.C (dispatch): adjust
6297
6298         * text.C (breakParagraph): add a ParagraphList as arg
6299
6300         * paragraph_funcs.C (breakParagraph): change to take a
6301         BufferParams and a ParagraphList as args.
6302         (breakParagraphConservative): ditto
6303         (mergeParagraph): ditto
6304         (TeXDeeper): add a ParagraphList arg
6305         (TeXEnvironment): ditto
6306         (TeXOnePar): ditto
6307
6308         * buffer.C (readLyXformat2): adjust
6309         (insertStringAsLines): adjust
6310         (latexParagraphs): adjust
6311
6312         * CutAndPaste.C (cutSelection): use 'true' not '1' as truth value.
6313         (cutSelection): adjust
6314         (pasteSelection): adjust
6315
6316         * BufferView_pimpl.C (insertInset): adjust
6317
6318 2003-03-05  Angus Leeming  <leeming@lyx.org>
6319
6320         * commandtags.h:
6321         * LyXAction.C (init):
6322         * BufferView_pimpl.C (dispatch):
6323         * lyxfunc.C (getStatus):
6324         remove LFUN_CHILD_INSERT.
6325
6326         * factory.C (createInset): add "include" to LFUN_INSET_APPLY.
6327
6328 2003-03-05  Angus Leeming  <leeming@lyx.org>
6329
6330         * commandtags.h:
6331         * LyXAction.C (init):
6332         * src/factory.C (createInset):
6333         * lyxfunc.C (getStatus):
6334         * text3.C (dispatch):
6335         remove LFUN_INSET_EXTERNAL and LFUN_INSERT_URL
6336
6337         * factory.C (createInset): add "external" to LFUN_INSET_APPLY.
6338
6339 2003-03-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
6340
6341         * ParagraphList.C (insert): handle insert right before end()
6342         (erase): fix cases where it can be first or last paragraph.
6343
6344 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
6345
6346         * paragraph_funcs.C (TeXEnvironment): remove all usage of
6347         Paragraph::next and Paragraph::previous
6348         (TeXOnePar): ditto
6349
6350         * text.C (breakParagraph): adjust
6351
6352         * paragraph_funcs.C (breakParagraph): take a Buffer* instead of a
6353         BufferParams& as arg.
6354         (breakParagraph): use ParagraphList::insert
6355         (breakParagraphConservative): take a Buffer* instead of a
6356         BufferParams& as arg.
6357         (breakParagraphConservative): use ParagraphList::insert.
6358
6359         * buffer.C (insertStringAsLines): un-const it
6360         (insertStringAsLines): adjust
6361
6362         * ParagraphList.C (insert): new function
6363
6364         * CutAndPaste.C (pasteSelection): adjust
6365
6366         * text.C (backspace): adjust
6367
6368         * tabular.C (SetMultiColumn): adjust
6369
6370         * CutAndPaste.C (cutSelection): adjust
6371         (pasteSelection): adjust
6372
6373         * tabular.C (SetMultiColumn): make it take a Buffer* instead of a
6374         Buffer const * as arg
6375
6376         * ParagraphList.C (erase): new function
6377         * paragraph_funcs.C (mergeParagraph): use it
6378         (mergeParagraph): make it take a Buffer* instead of a
6379         BufferParams* as arg
6380
6381         * paragraph_funcs.C (breakParagraph): take ParagraphList::iterator
6382         as arg
6383         (breakParagraphConservative): ditto
6384
6385         * paragraph.h: remove the breakParagraph friend
6386
6387         * paragraph.C (eraseIntern): new function
6388         (setChange): new function
6389
6390         * paragraph_funcs.C (mergeParagraph): make it take a
6391         ParagraphList::iterator instead of a Paragraph *, adjust
6392         accordingly.
6393
6394         * paragraph.h: move an #endif so that the change tracking stuff
6395         also works in the NO_NEXT case.
6396
6397 2003-03-04  Angus Leeming  <leeming@lyx.org>
6398
6399         * commandtags.h:
6400         * LyXAction.C: new LFUN_INSET_MODIFY.
6401
6402         * BufferView_pimpl.C (dispatch): if an inset is found to be open
6403         on LFUN_INSET_APPLY, pass LFUN_INSET_MODIFY to its localDispatch.
6404
6405 2003-03-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
6406
6407         * several files: ws changes only
6408
6409         * paragraph_funcs.C (TeXOnePar): take ParagraphList::iterator as args
6410         (TeXEnvironment): ditto
6411         (TeXDeeper): ditto
6412
6413         * buffer.C (makeLaTeXFile): adjust
6414         (latexParagraphs): make it take ParagraphList::iterator as args
6415
6416 2003-03-03  Lars Gullik Bjønnes  <larsbj@gullik.net>
6417
6418         * buffer.C (latexParagraphs): adjust
6419
6420         * paragraph.C (TeXOnePar): move function...
6421         (optArgInset): move function...
6422         (TeXEnvironment): move function...
6423         * paragraph_pimpl.C (TeXDeeper): move function...
6424         * paragraph_funcs.C: ...here
6425
6426         * tabular.C (UseParbox): rewrite to use ParagraphList iterators.
6427
6428 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
6429
6430         * buffer.C (readInset): remove compability code for old Figure and
6431         InsetInfo insets
6432
6433 2003-03-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
6434
6435         * buffer.C: ws changes
6436         (readInset):
6437
6438         * BufferView_pimpl.C: ditto
6439         * author.C: ditto
6440         * buffer.h: ditto
6441         * bufferlist.h: ditto
6442         * changes.h: ditto
6443         * lyxfunc.C: ditto
6444
6445 2003-02-28  Alfredo Braunstein <abraunst@libero.it>
6446
6447         * converter.[Ch]: split into itself +
6448         * graph.[Ch]
6449         * format.[Ch]
6450         * Makefile.am: += graph.[Ch] + format.[Ch]
6451         * MenuBackend.C
6452         * buffer.C
6453         * exporter.C
6454         * importer.C
6455         * lyx_main.C
6456         * lyxfunc.C
6457         * lyxrc.C: added #include "format.h"
6458
6459 2003-02-27  Angus Leeming  <leeming@lyx.org>
6460
6461         * BufferView_pimpl.C (dispatch): call a real, LyX dialog to insert
6462           a label.
6463
6464         * factory.C (createInset): add "label" to the factory.
6465
6466         * lyx_cb.[Ch] (getPossibleLabel): rewrite MenuInsertLabel to return the
6467           string and do no more.
6468
6469 2003-02-27  Angus Leeming  <leeming@lyx.org>
6470
6471         * commandtags.h:
6472         * LyXAction.C (init):
6473         * factory.C (createInset):
6474         * BufferView_pimpl.C (dispatch):
6475           collapse LFUN_XYZ_APPLY to LFUN_INSET_APPLY.
6476
6477         * lyxfunc.C (getStatus): remove LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY.
6478
6479         * lyxfunc.C (dispatch):
6480         * text3.C (dispatch): pass name to params2string.
6481
6482 2003-02-26  Angus Leeming  <leeming@lyx.org>
6483
6484         * BufferView_pimpl.C (dispatch): collapse the various LFUN_XYZ_APPLY
6485           blocks together.
6486           Rearrange the ~includes. Strip out the unnecessary ones.
6487
6488         * factory.C (createInset): reformat.
6489           create new insets for the various LFUN_XYZ_APPLY lfuns.
6490
6491 2003-02-26  John Levon  <levon@movementarian.org>
6492
6493         * lyxrow.h:
6494         * lyxrow.C: add isParStart,isParEnd helpers
6495
6496         * paragraph.h: make isInserted/DeletedText take refs
6497
6498         * paragraph_funcs.h:
6499         * paragraph_funcs.C: remove #if 0'd code
6500
6501         * lyxtext.h:
6502         * text3.C:
6503         * text2.C:
6504         * text.C: use lyxrow helpers above.
6505           Move draw and paint routines to RowPainter.
6506           Make several methods use refs not pointers.
6507           Make backgroundColor() const.
6508           Add markChangeInDraw(), isInInset().
6509           Merge changeRegionCase into changeCase.
6510           Make workWidth() shouldn't-happen code into an Assert.
6511
6512         * rowpainter.h:
6513         * rowpainter.C: new class for painting a row.
6514
6515         * vspace.h:
6516         * vspace.C: make inPixels take a ref
6517
6518 2003-02-26  Angus Leeming  <leeming@lyx.org>
6519
6520         * BufferView_pimpl.C (dispatch): use InsetCommand::localDispatch for
6521         LFUN_REF_APPLY.
6522
6523 2003-02-25  John Levon  <levon@movementarian.org>
6524
6525         * ispell.C: give the forked command a more accurate name
6526
6527 2003-02-22  John Levon  <levon@movementarian.org>
6528
6529         * toc.h:
6530         * toc.C: make TocItem store an id not a Paragraph *
6531           (bug #913)
6532
6533 2003-02-21  Angus Leeming  <leeming@lyx.org>
6534
6535         * commandtags.h: Retire LFUN_CITATION_INSERT, LFUN_CITATION_CREATE,
6536           LFUN_INSERT_BIBTEX, LFUN_BIBTEX_STYLE, LFUN_BIBDB_ADD, LFUN_BIBDB_DEL.
6537           Bring to life LFUN_DIALOG_SHOW_NEW_INSET, LFUN_DIALOG_SHOW_NEXT_INSET,
6538           LFUN_DIALOG_UPDATE, LFUN_DIALOG_HIDE, LFUN_DIALOG_DISCONNECT_INSET,
6539           LFUN_BIBITEM_APPLY, LFUN_BIBTEX_APPLY, LFUN_CITATION_APPLY,
6540           LFUN_INDEX_APPLY, LFUN_REF_APPLY, LFUN_TOC_APPLY, LFUN_URL_APPLY,
6541
6542         * BufferView_pimpl.C (dispatch):
6543         * LyXAction.C (init):
6544         * factory.C (createInset):
6545         * lyxfunc.C (getStatus, dispatch):
6546         * text3.C (dispatch): retire old LFUNs and bring new ones to life.
6547
6548 2003-02-21  Angus Leeming  <leeming@lyx.org>
6549
6550         * BufferView_pimpl.C (MenuInsertLyXFile):
6551         * lyx_cb.C (WriteAs, getContentsOfAsciiFile):
6552         * lyxfunc.C (menuNew, open, doImport):
6553           no longer pass a LyXView & to fileDlg.
6554
6555 2003-02-21  Angus Leeming  <leeming@lyx.org>
6556
6557         * BufferView_pimpl.C: replace insetbib.h with insetbibtex.h.
6558         * LyXAction.C: change, BIBKEY to BIBITEM.
6559         * buffer.C: replace insetbib.h with insetbibitem.h and insetbibtex.h.
6560         Change InsetBibKey to InsetBibitem.
6561         Change BIBKEY_CODE to BIBITEM_CODE.
6562         * commandtags.h: change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
6563         * factory.C: replace insetbib.h with insetbibitem.h.
6564         Change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
6565         * paragraph.C: replace insetbib.h with insetbibitem.h.
6566         * paragraph.[Ch]: change InsetBibKey to InsetBibitem.
6567         Change bibkey() to bibitem().
6568         * text.C: remove insetbib.h.
6569         * text2.C: replace insetbib.h with insetbibitem.h.
6570         change bibkey() to bibitem().
6571         * text3.C: remove insetbib.h.
6572         change LFUN_INSERT_BIBKEY to LFUN_INSERT_BIBITEM.
6573
6574 2003-02-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6575
6576         * lyxrc.C (output): enclose user email in quotes (in case there are
6577         several words)
6578
6579 2003-02-18  John Levon  <levon@movementarian.org>
6580
6581         * buffer.h: add std::
6582
6583 2003-02-17  John Levon  <levon@movementarian.org>
6584
6585         * SpellBase.h:
6586         * ispell.h:
6587         * ispell.C:
6588         * pspell.h:
6589         * pspell.C: reworking. Especially in ispell, a large
6590           number of clean ups and bug fixes.
6591
6592         * lyxfunc.C: fix revert to behave sensibly
6593
6594 2003-02-17 André Pönitz <poenitz@gmx.net>
6595
6596         * LyXAction.C:
6597         * commandtags.h: new LFUN_INSERT_BIBKEY
6598
6599         * layout.h:
6600         * lyxlayout.C:
6601         * buffer.C:
6602         * factory.C:
6603         * text.C:
6604         * text2.C:
6605         * text3.C:
6606         * paragraph.[Ch]:
6607         * paragraph_func.C: remove special bibkey handling
6608
6609 2003-02-17  John Levon  <levon@movementarian.org>
6610
6611         * text.C (Delete): fix case where delete at the end of
6612           the very first paragraph would not merge the pars
6613
6614 2003-02-17  John Levon  <levon@movementarian.org>
6615
6616         * lyxrow.C: fix lastPrintablePos()
6617
6618 2003-02-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6619
6620         * bufferparams.C (writeLaTeX): add a std:here
6621
6622         * buffer.C: and remove a using directive there
6623
6624 2003-02-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6625
6626         * buffer.C (makeLaTeXFile): move the code that generates the
6627           preamble...
6628
6629         * bufferparams.C (writeLaTeX): ... in this new method
6630
6631         * LaTeXFeatures.C (getEncodingSet): make const
6632           (getLanguages): make const
6633
6634         * MenuBackend.C (binding): returns the binding associated to this
6635           action
6636           (add): sets the status of each item by calling getStatus. Adds
6637           some intelligence.
6638           (read): add support for OptSubMenu
6639           (expand): remove extra separator at the end of expanded menu
6640
6641 2003-02-15  John Levon  <levon@movementarian.org>
6642
6643         * BufferView.C:
6644         * BufferView_pimpl.C:
6645         * bufferlist.h:
6646         * bufferlist.C: remove pointless BufferStorage bloat. Remove
6647           inset code that had no actual effect. Remove unneeded status
6648           code.
6649
6650 2003-02-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6651
6652         * buffer.C (makeLaTeXFile): fix counting of number of line feeds
6653           in preamble
6654
6655 2003-02-14  Michael Schmitt <michael.schmitt@teststep.org>
6656
6657         * text.C (drawLengthMarker): also draw an arrow marker for
6658           symbolic lengths (medskip...)
6659
6660 2003-02-14  John Levon  <levon@movementarian.org>
6661
6662         * tabular.h:
6663         * tabular.C: better method names
6664
6665 2003-02-14  John Levon  <levon@movementarian.org>
6666
6667         * BufferView_pimpl.C:
6668         * bufferlist.C:
6669         * buffer.C:
6670         * converter.C:
6671         * lyx_cb.C:
6672         * lyxfunc.C: change prohibit/allowInput to busy(bool), as
6673           it's a more accurate name. Remove some pointless uses.
6674
6675 2003-02-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6676
6677         * text2.C (LyXText): change order of initilizers to shut off
6678           warnings
6679
6680 2003-02-14  John Levon  <levon@movementarian.org>
6681
6682         * buffer.C: use ParIterator for getParFromID()
6683
6684         * paragraph.h:
6685         * paragraph.C:
6686         * paragraph_pimpl.h:
6687         * paragraph_pimpl.C: remove unused getParFromID()
6688
6689 2003-02-14  John Levon  <levon@movementarian.org>
6690
6691         * buffer.C: remove some very old #if 0'd parse code
6692
6693 2003-02-13  John Levon  <levon@movementarian.org>
6694
6695         * text.h:
6696         * text.C:
6697         * text2.C: move hfillExpansion(), numberOfSeparators(),
6698           rowLast(), rowLastPrintable(), numberofHfills(),
6699           numberOfLabelHfills() ...
6700
6701         * lyxrow.h:
6702         * lyxrow.C: ... to member functions here.
6703
6704         * paragraph.h:
6705         * paragraph.C:
6706         * lyxtext.h:
6707         * text.C: remove LyXText::beginningOfMainBody(), and call
6708           p->beginningOfMainBody() directly. Move the check for
6709           LABEL_MANUAL into the latter.
6710
6711         * text.h:
6712         * text.C:
6713         * text2.C:
6714         * vspace.C:
6715         * BufferView.h:
6716         * BufferView.C: make defaultHeight() be a free defaultRowHeight()
6717
6718         * text.h:
6719         * text.C:
6720         * text2.C:
6721         * text3.C:
6722         * frontends/screen.C: move bv_owner private, introduce isTopLevel()
6723           to make it clear we're testing for outmost-lyxtext vs. inset's lyxtext
6724
6725 2003-02-13  John Levon  <levon@movementarian.org>
6726
6727         * CutAndPaste.C: remove debug
6728
6729 2003-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
6730
6731         * paragraph.C (asString): remove two unused variables
6732
6733         * lyxtextclass.C (readTitleType):
6734           (Read):
6735           (LyXTextClass): handle new members titletype_ and titlename_
6736
6737         * buffer.C (latexParagraphs): honor LyXTextClass::titletype
6738
6739 2003-02-09  John Levon  <levon@movementarian.org>
6740
6741         * buffer.h:
6742         * buffer.C: replace hand-coded list with a map for the dep clean
6743
6744 2003-02-08  John Levon  <levon@movementarian.org>
6745
6746         * LaTeX.C: consolidate code into showRunMessage() helper
6747
6748 2003-02-08  John Levon  <levon@movementarian.org>
6749
6750         * lyxfind.C:
6751         * lyxtext.h:
6752         * text2.C:
6753         * BufferView.C: change setSelectionOverString() to setSelectionRange()
6754           and pass the size in explicitly
6755
6756         * BufferView_pimpl.h:
6757         * BufferView_pimpl.C:
6758         * BufferView.h:
6759         * BufferView.C: add getCurrentChange()
6760
6761         * BufferView_pimpl.h:
6762         * BufferView_pimpl.C: handle change lfuns
6763
6764         * CutAndPaste.C: merge the cut and copy code. Rework the cut code
6765           for changes. Mark pasted paragraphs as new.
6766
6767         * support/lyxtime.h:
6768         * support/lyxtime.C:
6769         * DepTable.C: abstract time_t as lyx::time_type
6770
6771         * LColor.h:
6772         * LColor.C: add colours for new text, deleted text, changebars
6773
6774         * LaTeXFeatures.C: add dvipost as a simple feature. Make the color
6775           package use "usenames" option.
6776
6777         * commandtags.h:
6778         * lyxfunc.C:
6779         * LyXAction.C: add change lfuns
6780
6781         * Makefile.am:
6782         * author.h:
6783         * author.C: author handling
6784
6785         * buffer.h:
6786         * buffer.C: add a per-buffer author list, with first entry as
6787           current author. Handle new .lyx tokens for change tracking. Output
6788           author list to .lyx file. Output dvipost stuff to .tex preamble.
6789           Bump lyx format to 222.
6790
6791         * bufferlist.h:
6792         * bufferlist.C: add setCurrentAuthor() to reset current author details
6793           in all buffers.
6794
6795         * bufferparams.h:
6796         * bufferparams.C: add param for tracking
6797
6798         * bufferview_funcs.C: output change info in minibuffer
6799
6800         * Makefile.am:
6801         * changes.h:
6802         * changes.C: add change-tracking structure
6803
6804         * debug.h:
6805         * debug.C: add CHANGES debug flag
6806
6807         * lyxfind.h:
6808         * lyxfind.C: add code for finding the next change piece
6809
6810         * lyxrc.h:
6811         * lyxrc.C: add user_name and user_email
6812
6813         * lyxrow.h:
6814         * lyxrow.C: add a metric for the top of the text line
6815
6816         * lyxtext.h:
6817         * text.C: implement accept/rejectChange()
6818
6819         * lyxtext.h:
6820         * text.C: paint changebars. Paint new/deleted text in the chosen
6821         colours. Strike through deleted text.
6822
6823         * paragraph.h:
6824         * paragraph.C:
6825         * paragraph_pimpl.h:
6826         * paragraph_pimpl.C: output change markers in .lyx and .tex. Pass
6827           in the current change to the insert functions. Rework erase to
6828           mark text as deleted, adding an eraseIntern() and a range-based
6829           erase(). Implement per-paragraph change lookup and
6830           accept/reject.
6831
6832         * paragraph_funcs.C: Fixup paste for change tracking.
6833
6834         * tabular.C: mark added row/columns as new.
6835
6836         * text.C: fix rowLast() to never return -1. Don't allow
6837           spellchecking of deleted text. Track transpose changes. Don't
6838           allow paragraph break or merge where appropriate.
6839
6840         * text2.C: leave cursor at end of selection after a cut.
6841
6842 2003-02-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6843
6844         * text.C (getLengthMarkerHeight):
6845         (drawLengthMarker): make the `symbolic' lengths (small/med/big)
6846         visible on screen too.
6847
6848 2003-02-07  John Levon  <levon@movementarian.org>
6849
6850         * text.C: s/LYX_PAPER_MARGIN/PAPER_MARGIN/g
6851
6852 2003-02-05  Angus Leeming  <leeming@lyx.org>
6853
6854         * lyxserver.C (read_ready): revert my patch of 11 September last year
6855         as it sends PC cpu through the roof. Presumably this means that
6856         the lyxserver will no longer run on an Alpha...
6857
6858 2003-01-30  Angus Leeming  <leeming@lyx.org>
6859
6860         * factory.C (createInset): create an InsetCommandParam of type "index"
6861         and use it to 'do the right thing'.
6862
6863         * text2.C (getStringToIndex): ensure that cursor position is always
6864         reset to the reset_cursor position.
6865
6866 2003-01-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6867
6868         * lyxfunc.C (getStatus): "buffer-export custom" should never be
6869         disabled.
6870
6871 2003-01-20  Michael Schmitt <michael.schmitt@teststep.org>
6872
6873         * bufferview.C:
6874         * lyxcb.C:
6875         * lyxfunc.C: Output messages with identical spelling, punctuation,
6876         and spaces
6877
6878 2003-01-22  Michael Schmitt  <Michael.Schmitt@teststep.org>
6879
6880         * MenuBackend.C (expandFormats): List only viewable export formats
6881         in "View" menu
6882
6883         * buffer.C (parseSingleLyXformat2Token): Fix misleading error
6884         message
6885
6886         * lyxfunc.C (getStatus): Make sure that formats other than
6887         "fax" can also be disabled
6888
6889 2003-01-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6890
6891         * text3.C (dispatch): put the lfuns that insert insets in 3
6892         groups, and call doInsertInset with appropriate arguments.
6893         (doInsertInset): new function, that creates an inset and inserts
6894         it according to some boolean parameters.
6895
6896 2003-01-16  Lars Gullik Bjønnes  <larsbj@gullik.net>
6897
6898         * buffer.C (readFile): remember to pass on 'par' when calling
6899         readFile recursively.
6900
6901 2003-01-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6902
6903         * MenuBackend.C (expandFormats): add "..." to import formats.
6904
6905 2003-01-15  Dekel Tsur  <dekelts@tau.ac.il>
6906
6907         * paragraph.C (asString): Remove XForms RTL hacks.
6908
6909 2003-01-13  Alfredo Braunstein <abraunst@libero.it>
6910         * buffer.C: fix typo
6911
6912 2003-01-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
6913
6914         * Makefile.am (LIBS): delete var
6915         (lyx_LDADD): add @LIBS@ here instead.
6916
6917 2003-01-08  Michael Schmitt <Michael.Schmitt@teststep.org>
6918
6919         * Clarify the meaning of "wheel mouse jump"
6920
6921 2003-01-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6922
6923         * lyxfunc.C (getStatus): fix disabling of cut/paste of cells in a
6924         tabular in a float
6925
6926 2003-01-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6927
6928         * importer.C (Loaders): do not preallocate 3 elements in the
6929         vector, since one ends up with 6 elements otherwise
6930
6931 2002-12-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6932
6933         * DepTable.C (write): write the file name as last element of the
6934         .dep file (because it may contain spaces)
6935         (read): read info in the right order
6936
6937 2003-01-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6938
6939         * paragraph_pimpl.C (simpleTeXBlanks):
6940         (simpleTeXSpecialChars):
6941         * paragraph.C (simpleTeXOnePar): make `column' unsigned.
6942
6943         * tabular.C (latex): add some missing case statements. Reindent.
6944
6945         * MenuBackend.C (expandToc): remove unused variable.
6946
6947 2003-01-06  Michael Schmitt <Michael.Schmitt@teststep.org>
6948
6949         * LColor.C:
6950         * LaTeX.C:
6951         * LyXAction.C:
6952         * MenuBackend.C:
6953         * buffer.C:
6954         * exporter.C:
6955         * lyxfunc.C:
6956         * lyxrc.C: fix inconsistent usage of spaces, colons, capitalization,
6957         and the like.
6958
6959 2003-01-05  John Levon  <levon@movementarian.org>
6960
6961         * BufferView.h:
6962         * BufferView.C: add getEncoding()
6963
6964         * kbsequence.h:
6965         * kbsequence.C: do not store last keypress
6966
6967         * lyxfunc.h:
6968         * lyxfunc.C: store last keypress here instead. Pass encoding
6969           to getISOEncoded()
6970
6971 2002-12-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6972
6973         * lyx_main.C (init): remove annoying error message when following
6974         symbolic links (bug #780)
6975
6976 2002-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6977
6978         * text.C (insertChar):
6979         * lyxrc.C (getDescription): remove extra spaces
6980
6981 2002-12-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6982
6983         * lyxrc.C (getDescription): remove extra spaces
6984
6985 2002-12-20  John Levon  <levon@movementarian.org>
6986
6987         * text3.C: hack fix for page up/down across tall rows
6988
6989 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6990
6991         * text2.C (pasteEnvironmentType): avoid crash if layout-copy has
6992         not been invoked
6993
6994 2002-12-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
6995
6996         * lyxfunc.C (getStatus): query lyx_gui::getStatus() to catter for
6997         unimplemented lfuns. Make LFUN_THESAURUS_ENTRY status unknown if
6998         thesaurus is not compiled in
6999
7000 2002-12-17  Alfredo Braunstein <abraunst@libero.it>
7001
7002         * lyxfunc.C: correct  inversion of WORDFINDBACK/FORWARD
7003
7004 2002-12-16  Angus Leeming  <leeming@lyx.org>
7005
7006         * lyxrc.[Ch]:
7007         * lyx_main.C (init): remove override_x_deadkeys stuff.
7008
7009 2002-12-12  John Levon  <levon@movementarian.org>
7010
7011         * lyxfunc.C: use LyXKeySym->isText() as last-ditch
7012           insert. Only remove shift modifier under strict
7013           circumstances.
7014
7015 2002-12-09  Lars Gullik Bjønnes  <larsbj@gullik.net>
7016
7017         * MenuBackend.C (expandToc): fix crash.
7018
7019 2002-12-08  Lars Gullik Bjønnes  <larsbj@gullik.net>
7020
7021         * MenuBackend.C (expandToc): gettext on float names.
7022
7023 2002-12-03  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
7024
7025         * lyxlength.[Ch]: set default unit to UNIT_NONE,
7026         implement bool empty() [bug 490]
7027
7028 2002-12-02  Lars Gullik Bjønnes  <larsbj@gullik.net>
7029
7030         * text2.C, CutAndPaste.C: use BoostFormat.h not boost/format.hpp
7031
7032 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
7033
7034         * several files: ws changes
7035
7036 2002-12-01  Lars Gullik Bjønnes  <larsbj@gullik.net>
7037
7038         * text2.C (setCounter): clean up a bit, use boost.format.
7039         (updateCounters): initialize par upon declaration.
7040
7041         * CutAndPaste.C (SwitchLayoutsBetweenClasses): set the layout also
7042         if the layout exists. We do not just store the layout any more.
7043         (SwitchLayoutsBetweenClasses): use boost.format
7044
7045 2002-11-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7046
7047         * converter.C (convert): if from and to files are the same, use a
7048         temporary files as intermediary
7049
7050 2002-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7051
7052         * commandtags.h:
7053         * LyXAction.C (init): remove LFUN_VECTOR (bug 662)
7054
7055 2002-11-27  Dekel Tsur  <dekelts@tau.ac.il>
7056
7057         * lyxrc.[Ch]: Add {roman,sans,typewriter}_font_foundry variables.
7058
7059 2002-11-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
7060
7061         * tabular.C (asciiPrintCell): use string(size, char) instead of
7062         explicit loop.
7063
7064         * sgml.C (openTag): fix order of arguments to string constructor
7065         (closeTag): ditto
7066
7067         * lyxfunc.C (dispatch): use boost.format
7068
7069         * lots of files: change "c" -> 'c'
7070
7071 2002-11-25  Dekel Tsur  <dekelts@tau.ac.il>
7072
7073         * encoding.C: Patch from Isam Bayazidi: Fix Arabic shaping.
7074
7075 2002-11-25  Angus Leeming  <leeming@lyx.org>
7076
7077         * BoostFormat.h: wrap code inside #ifdef __GNUG__ block.
7078
7079         * lyx_main.C (init): compile fix.
7080
7081 2002-11-25  Lars Gullik Bjønnes  <larsbj@gullik.net>
7082
7083         * lyx_cb.C (start): boost.formatify
7084         do not include <iostream>
7085
7086         * lengthcommon.C: ws only
7087
7088         * boost-inst.C,BoostFormat.h: add more explict instantations
7089
7090 2002-11-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
7091
7092         * lots of files: handle USE_BOOST_FORMAT
7093
7094 2002-11-21  John Levon  <levon@movementarian.org>
7095
7096         * pspell.C: fix compile
7097
7098 2002-11-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7099
7100         * lyxfunc.C (dispatch): use boost::format
7101         (open): ditto
7102         (doImport): ditto
7103
7104         * lyxfont.C (stateText): use boost::format
7105
7106         * lyx_main.C (LyX): use boost::format
7107         (init): ditto
7108         (queryUserLyXDir): ditto
7109         (readRcFile): ditto
7110         (parse_dbg): ditto
7111         (typedef boost::function): use the recommened syntax.
7112
7113         * importer.C (Import): use boost::format
7114
7115         * debug.C (showLevel): use boost::format
7116
7117         * converter.C (view): use boost::format
7118         (convert): ditto
7119         (move): ditto
7120         (scanLog): ditto
7121
7122         * bufferview_funcs.C (currentState): use boost::format
7123
7124         * bufferlist.C (emergencyWrite): use boost::format
7125
7126         * buffer.C (readLyXformat2): use boost::format
7127         (parseSingleLyXformat2Token): ditto
7128
7129         * Makefile.am (lyx_SOURCES): add BoostFormat.h and boost-inst.C
7130
7131         * LaTeX.C (run): use boost::format
7132
7133         * Chktex.C (scanLogFile): use boost::format
7134
7135         * BufferView_pimpl.C (savePosition): use boost::format
7136         (restorePosition): ditto
7137         (MenuInsertLyXFile): ditto
7138
7139         * BoostFormat.h: help file for explicit instation.
7140
7141 2002-11-21  Dekel Tsur  <dekelts@tau.ac.il>
7142
7143         * tabular.C (latex): Support for block alignment in fixed width
7144         columns.
7145
7146 2002-11-17  John Levon  <levon@movementarian.org>
7147
7148         * BufferView_pimpl.C:
7149         * lyx_cb.C:
7150         * lyxfunc.C: split filedialog into open/save
7151
7152 2002-11-08  Juergen Vigna  <jug@sad.it>
7153
7154         * undo_funcs.C (textHandleUndo): fixed problems with undo introduced
7155         by my last patch (hopefully).
7156
7157 2002-11-08  John Levon  <levon@movementarian.org>
7158
7159         * iterators.h:
7160         * iterators.C:
7161         * buffer.h:
7162         * buffer.C:
7163         * paragraph.h:
7164         * paragraph.C:
7165         * toc.h:
7166         * toc.C: ParConstIterator, and use it (from Lars)
7167
7168 2002-11-07  Ben Stanley  <bds02@uow.edu.au>
7169
7170         * lyxtextclass.[Ch]: revise and add doxygen comments
7171
7172 2002-11-07  John Levon  <levon@movementarian.org>
7173
7174         * text.C: fix progress value for spellchecker
7175
7176         * toc.C: fix navigate menu for insetwrap inside minipage
7177
7178         * paragraph_funcs.C: added FIXME for suspect code
7179
7180 2002-11-07  John Levon  <levon@movementarian.org>
7181
7182         * BufferView_pimpl.C: fix redrawing of insets
7183           on buffer switch
7184
7185 2002-11-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7186
7187         * text2.C (updateCounters): fix bug 668
7188
7189 2002-11-04  Dekel Tsur  <dekelts@tau.ac.il>
7190
7191         * text3.C (dispatch): Do not make the buffer dirty when moving the
7192         cursor.
7193
7194 2002-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
7195
7196         * vc-backend.C: STRCONV
7197         (scanMaster): ditto
7198
7199         * text2.C (setCounter): STRCONV
7200
7201         * paragraph.C (asString): STRCONV
7202
7203         * lyxlength.C (asString): STRCONV
7204         (asLatexString): ditto
7205
7206         * lyxgluelength.C (asString): STRCONV
7207         (asLatexString): ditto
7208
7209         * lyxfunc.C (dispatch): STRCONV
7210         (open): ditto
7211
7212         * lyxfont.C (stateText): STRCONV
7213
7214         * importer.C (Import): STRCONV
7215
7216         * counters.C (labelItem): STRCONV
7217         (numberLabel): ditto
7218         (numberLabel): remove unused ostringstream o
7219
7220         * chset.C: STRCONV
7221         (loadFile): ditto
7222
7223         * bufferview_funcs.C (currentState): STRCONV
7224
7225         * buffer.C (readFile): STRCONV
7226         (asciiParagraph): ditto
7227         (makeLaTeXFile): ditto
7228
7229         * Spacing.C (writeEnvirBegin): STRCONV
7230
7231         * LaTeXFeatures.C (getLanguages): STRCONV
7232         (getPackages): ditto
7233         (getMacros): ditto
7234         (getBabelOptions): ditto
7235         (getTClassPreamble): ditto
7236         (getLyXSGMLEntities): ditto
7237         (getIncludedFiles): ditto
7238
7239         * LaTeX.C: STRCONV
7240         (run): ditto
7241         (scanAuxFile): ditto
7242         (deplog): ditto
7243
7244         * LString.h: add the STRCONV macros
7245
7246         * BufferView_pimpl.C (savePosition): STRCONV
7247         (restorePosition): ditto
7248         (MenuInsertLyXFile): ditto
7249
7250         * vc-backend.C (scanMaster): change from submatch[...] to
7251         submatch.str(...)
7252
7253         * funcrequest.C: include config.h
7254
7255         * factory.C: include config.h
7256
7257         * chset.C (loadFile): change from submatch[...] to submatch.str(...)
7258
7259         * box.C: include config.h
7260
7261         * LaTeX.C (scanAuxFile): change from submatch[...] to
7262         submatch.str(...)
7263         (deplog): ditto
7264
7265 2002-10-25  Angus Leeming  <leeming@lyx.org>
7266
7267         * BufferView_pimpl.C (cursorToggle): remove reapSpellchecker hack.
7268
7269         * ispell.[Ch] (setError): new method.
7270         * ispell.C (c-tor): move out child process into new class LaunchIspell.
7271         Use setError() insetead of goto END.
7272
7273         * lyx_cb.C (AutoSave): move out child process into new class
7274         AutoSaveBuffer.
7275
7276 2002-10-30  John Levon  <levon@movementarian.org>
7277
7278         * text3.C: make start appendix undoable
7279
7280 2002-10-24  Dekel Tsur  <dekelts@tau.ac.il>
7281
7282         * lyxlength.C (inPixels): Fix returned value.
7283
7284         * paragraph.C (TeXOnePar): Fix bug with language changes in nested
7285         environment.
7286
7287 2002-10-24  Angus Leeming  <leeming@lyx.org>
7288
7289         * lyxgluelength.h: no need to forward declare BufferParams
7290         or BufferView, so don't.
7291
7292 2002-10-21  John Levon  <levon@movementarian.org>
7293
7294         * BufferView.C: menuUndo ->undo, redo
7295
7296         * BufferView.h: document, remove dead, make some methods private
7297
7298         * paragraph_funcs.h:
7299         * paragraph_funcs.C:
7300         * CutAndPaste.C: s/pasteParagraph/mergeParagraph
7301
7302         * buffer.h:
7303         * buffer.C:
7304         * sgml.h:
7305         * sgml.C: move sgml open/close tag into sgml.C
7306
7307         * bufferview_funcs.h: unused prototype
7308
7309         * lyxfunc.h:
7310         * lyxfunc.C: remove unused
7311
7312         * lyxtext.h:
7313         * text.C: remove unused
7314
7315 2002-10-21  John Levon  <levon@movementarian.org>
7316
7317         * BufferView.h:
7318         * BufferView.C:
7319         * BufferView_pimpl.h:
7320         * BufferView_pimpl.C: fix mouse wheel handling based on
7321           patch from Darren Freeman
7322
7323 2002-10-09  Dekel Tsur  <dekelts@tau.ac.il>
7324
7325         * lyx_main.C (queryUserLyXDir): Fix automatic reconfiguration.
7326
7327 2002-10-17  Dekel Tsur  <dekelts@tau.ac.il>
7328
7329         * lyxlength.C (inPixels): Fix hanfling of negative length.
7330         Fix LyXLength::MU case.
7331
7332 2002-10-16  John Levon  <levon@movementarian.org>
7333
7334         * buffer.C: remove \\protected_separator parsing done by lyx2lyx now
7335
7336 2002-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7337
7338         * converter.C (view): add support for $$i (file name) and $$p
7339         (file path) for the viewer command. If $$i is not specified, then
7340         it is appended to the command (for compatibility with old syntax)
7341
7342 2002-10-14  Juergen Vigna  <jug@sad.it>
7343
7344         * undo_funcs.C (textHandleUndo): alter the order in which the
7345         new undopar is added to the LyXText, as we have to set first
7346         the right prev/next and then add it as otherwise the rebuild of
7347         LyXText is not correct. Also reset the cursor to the right paragraph,
7348         with this IMO we could remove the hack in "redoParagraphs()".
7349
7350 2002-10-09  Angus Leeming  <leeming@lyx.org>
7351
7352         * Bufferview_pimpl.C (dispatch): call InsetCitation::setLoadingBuffer
7353         to turn off an optimisation if a new inset is to be inserted.
7354
7355 2002-10-11 André Pönitz <poenitz@gmx.net>
7356
7357         * lyxtext.h: make some functions public to allow access
7358         from inset/lyxtext for handling LFUN_PRIOR/NEXT
7359
7360 2002-10-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7361
7362         * text3.C (dispatch): when changing layout, avoid an infinite loop
7363         [bug #652]
7364
7365 2002-10-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7366
7367         * lyxrc.C (read): treat a viewer or converter command of "none" as
7368         if it were empty.
7369
7370         * MenuBackend.C (expandFormats): for an update, also allow the
7371         formats that are not viewable
7372
7373         * lyx_main.C (queryUserLyXDir): re-run automatically the configure
7374         script if it is newer than the lyxrc.defaults in user directory
7375
7376 2002-10-07 André Pönitz <poenitz@gmx.net>
7377
7378         * text.C: Vitaly Lipatov's small i18n fix
7379
7380 2002-09-25  Angus Leeming  <leeming@lyx.org>
7381
7382         * ispell.h: doxygen fix.
7383
7384 2002-09-25  Dekel Tsur  <dekelts@tau.ac.il>
7385
7386         * buffer.h (readFile): Add a new argument to the method, to allow
7387         reading of old-format templates.
7388
7389 2002-09-24  Dekel Tsur  <dekelts@tau.ac.il>
7390
7391         * toc.C (getTocList): Get TOC from InsetWrap.
7392
7393 2002-09-16  John Levon  <levon@movementarian.org>
7394
7395         * lyxfunc.C: check tabular for cut/copy too
7396
7397 2002-09-12  John Levon  <levon@movementarian.org>
7398
7399         * LyXAction.C: tidy
7400
7401         * factory.h:
7402         * factory.C: add header
7403
7404         * paragraph_funcs.h:
7405         * paragraph_funcs.C: cleanup
7406
7407 2002-09-11  John Levon  <levon@movementarian.org>
7408
7409         * PrinterParams.h: odd/even default to true
7410
7411 2002-09-12  Rob Lahaye  <lahaye@snu.ac.kr>
7412
7413         * PrinterParams.h: update printer parameters for new xforms dialog
7414
7415 2002-09-11  Angus Leeming  <leeming@lyx.org>
7416
7417         * lyxserver.C (read_ready): re-write to make it more transparent
7418         and to make it work in coherent fashion under Tru64 Unix.
7419
7420 2002-09-11  André Pönitz <poenitz@gmx.net>
7421
7422         * commandtags.h:
7423         * LyXAction.C:
7424         * text3.C: implement LFUN_WORDSEL
7425
7426 2002-09-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
7427
7428         * lyxtextclass.h: don't include FloatList.h, forward declare instead.
7429         make floatlist_ a boost::shared_ptr<FloatList>
7430
7431         * lyxtextclass.C: include FloatList.h
7432         (LyXTextClass): initialize floatlist_
7433         (TextClassTags): add TC_NOFLOAT
7434         (Read): match "nofloat" to TC_NOFLOAT and use it.
7435         (readFloat): modify call to floatlist_
7436         (floats): ditto
7437         (floats): ditto
7438
7439         * FloatList.[Ch] (FloatList): remove commented out float
7440         initialization.
7441         (erase): new function
7442
7443 2002-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
7444
7445         * MenuBackend.C (expandToc): fix crash when there is no document
7446         open
7447
7448 2002-09-10  Dekel Tsur  <dekelts@tau.ac.il>
7449
7450         * many files: Add insetwrap.
7451
7452 2002-09-09  John Levon  <levon@movementarian.org>
7453
7454         * text2.C: remove confusing and awkward depth wraparound
7455
7456 2002-09-09  John Levon  <levon@movementarian.org>
7457
7458         * BufferView_pimpl.C: Don't use empty arg for LFUN_CHILD_INSERT
7459
7460         * buffer.h:
7461         * buffer.C: remove getIncludeonlyList()
7462
7463         * paragraph.C:
7464         * lyxfunc.C: remove headers
7465
7466 2002-09-09  Juergen Vigna  <jug@sad.it>
7467
7468         * text.C (getColumnNearX): fix form Michael this is most
7469         probably a cut&paste bug.
7470
7471 2002-09-06  Lars Gullik Bjønnes  <larsbj@gullik.net>
7472
7473         * remove all INHERIT_LANG and INHERIT_LANGUAGE commented code
7474
7475         * LaTeXFeatures.C (useLayout): let tclass and lyt be a const
7476         references, ws changes.
7477
7478         * text2.C (init): update counters after init
7479         (insertParagraph): no need to set counter on idividual paragraphs.
7480         (setCounter): access the counters object in the textclass object
7481         on in the buffer object.
7482         (updateCounters): ditto
7483
7484         * lyxtextclass.C: include counters.h, add variable ctrs_ as
7485         shared_ptr<Counters> to avoid loading counters.h in all
7486         compilation units.
7487         (LyXTextClass): initialize ctrs_
7488         (TextClassTags): add TC_COUNTER, and ...
7489         (Read): use it here.
7490         (CounterTags): new tags
7491         (readCounter): new function
7492         (counters): new funtion
7493         (defaultLayoutName): return a const reference
7494
7495         * counters.C (Counters): remove contructor
7496         (newCounter): remove a couple of unneeded statements.
7497         (newCounter): simplify a bit.
7498         (numberLabel): some small formatting changes.
7499
7500         * buffer.[Ch]: remove all traces of counters, move the Counters
7501         object to the LyXTextClass.
7502
7503 2002-09-06  Alain Castera  <castera@in2p3.fr>
7504
7505         * tabular.C: uses \tabularnewline; uses >{...} construct from array
7506         package to set the horizontal alignment on fixed width columns.
7507
7508         * lyx_sty.C:
7509         * lyx_sty.h: added tabularnewline macro def.
7510
7511         * LaTeXFeatures.C: added NeedTabularnewline macro feature
7512
7513 2002-09-06  John Levon  <levon@movementarian.org>
7514
7515         * LyXAction.C: tooltips for sub/superscript
7516
7517         * MenuBackend.C: a bit more verbose
7518
7519         * lyxfunc.C: tiny clean
7520
7521         * undo_funcs.C: document undo_frozen
7522
7523 2002-09-05  Lars Gullik Bjønnes  <larsbj@gullik.net>
7524
7525         * counters.C (Counters): add missing algorithm counter.
7526
7527         * text2.C (setCounter): lookup the counter with layouts latexname
7528         instead of by section number.
7529         (setCounter): use a hackish way to lookup the correct enum
7530         counter.
7531         a float name->type change
7532         reset enum couners with counter name directly instead of depth value.
7533
7534         * counters.C (Counters): remove the push_backs, change to use the
7535         float type not the float name.
7536         (labelItem): remove unused string, float name->type change
7537
7538         * counters.h: don't include vector, loose the enums and sects vectors
7539
7540 2002-09-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
7541
7542         * lyxtextclass.C (TextClassTags): add TC_FLOAT
7543         (Read): add float->TC_FLOAT to textclassTags
7544         (Read): and handle it in the switch
7545         (readFloat): new function
7546
7547         * FloatList.C (FloatList): comment out the hardcoded float
7548         definitions.
7549
7550         * lyxlayout.h: ws change.
7551
7552 2002-08-29  Dekel Tsur  <dekelts@tau.ac.il>
7553
7554         * buffer.C (readFile): Look for lyx2lyx in LYXDIR/lyx2lyx/
7555
7556 2002-09-03  Angus Leeming  <leeming@lyx.org>
7557
7558         * BufferView_pimpl.h: qualified name is not allowed in member
7559         declaration: WorkArea & Pimpl::workarea() const;
7560
7561         * factory.C: added using std::endl directive.
7562
7563         * text3.C: added using std::find and std::vector directives.
7564
7565 2002-08-29  André Pönitz <poenitz@gmx.net>
7566
7567         * lyxtext.h:
7568         * text2.C: remove unused member number_of_rows
7569
7570         * Makefile.am:
7571         * BufferView2.C: remove file, move contents to...
7572         * BufferView.C: ... here
7573
7574         * BufferView_pimpl.C:
7575         * factory.C: move more inset creation to factory
7576
7577         * vspace.C: avoid direct usage of LyXText, ws changes
7578
7579         * BufferView.[Ch]:
7580                 don't provide direct access to WorkArea, use two simple
7581                 acessors haveSelction() and workHeight() instead
7582
7583
7584 2002-08-29  John Levon  <levon@movementarian.org>
7585
7586         * BufferView_pimpl.C (dispatch): do not continue when
7587           no buffer
7588
7589 2002-08-28  André Pönitz <poenitz@gmx.net>
7590
7591         * commandtags.h: new LFUN_MOUSE_DOUBLE, LFUN_MOUSE_TRIPLE
7592
7593         * BufferView.h:
7594         * BufferView_pimpl.[Ch] move work area mouse event to LFUNs
7595
7596 2002-08-28  Rob Lahaye  <lahaye@snu.ac.kr>
7597
7598         * buffer.C: increment LYX_FORMAT to 221
7599
7600         * lyxrc.[Ch]: declare display_graphics as grfx::DisplayType and use
7601         grfx::displayTranslator.find(foo); include graphics/GraphicsTypes.h.
7602
7603         * lyxrc.C: use more "if (...) { } else { }" style (John's advice).
7604
7605         * lyx_main.C: call once the setDisplayTranslator(); is that okay here?
7606
7607 2002-08-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7608
7609         * factory.C (createInset): use LyXTextClass::floats
7610
7611         * MenuBackend.C (expandFloatListInsert):
7612         (expandFloatInsert):
7613         (expandToc):
7614
7615         * text2.C (setCounter):
7616
7617         * LaTeXFeatures.C (useFloat):
7618         (getFloatDefinitions):
7619
7620         * BufferView_pimpl.C (dispatch): use LyXTextClass::floats()
7621
7622         * lyxtextclass.[Ch]: rename layoutlist to layoutlist_; add
7623         floatlist_, with accessor floats().
7624
7625         * FloatList.h: remove global FloatList
7626
7627 2002-08-26  André Pönitz <poenitz@gmx.net>
7628
7629         * paragraph.[Ch]: Martin's patch for the \end_deeper bug
7630
7631         * BufferView.h:
7632         * BufferView2.C:
7633         * BufferView_pimpl.C:
7634         * text3.C: mun hanfling of LFUN_CUT/COPY/PASTE to LyXText
7635
7636 2002-08-25  John Levon  <levon@movementarian.org>
7637
7638         * LyXAction.C: fix margin note description
7639
7640 2002-08-24  John Levon  <levon@movementarian.org>
7641
7642         * buffer.C:
7643         * bufferlist.C:
7644         * bufferview_funcs.C:
7645         * lyxfont.C:
7646         * undo_funcs.C: cleanups
7647
7648         * lyxfunc.C: disable CUT/COPY when no selection
7649
7650 2002-08-23  Rob Lahaye  <lahaye@snu.ac.kr>
7651
7652         * lyxlength.[Ch]: use better (three letters) mnemonics for percentage units
7653         in "enum UNIT"; e.g. PTW for Percent of TextWidth
7654
7655         * lyxrc.C: graphics display is now monochrome|grayscale|color|none.
7656         Add backward compatibility to "mono", "gray" and "no".
7657
7658 2002-08-24  Dekel Tsur  <dekelts@tau.ac.il>
7659
7660         * buffer.C (readFile): Always run lyx2lyx if file_format < LYX_FORMAT
7661         (and file_format >= 200).
7662
7663 2002-08-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7664
7665         * lyxlayout.C (Read): treat LT_OPTARGS as an integer, not a bool
7666
7667 2002-08-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7668
7669         * lyxfunc.C (getStatus): handle LFUN_INSET_OPTARG
7670
7671 2002-08-20  Martin Vermeer  <martin.vermeer@hut.fi>
7672
7673         * BufferView_pimpl.C:
7674         * LyXAction.C:
7675         * buffer.C:
7676         * commandtags.h:
7677         * lyxfunc.C:
7678         * paragraph.[Ch]:
7679         * text2.C:
7680         * insets/insetoptarg.[Ch]: Added "optional argument" collapsible
7681         inset and code to make it  work with the paragraph code. The inset
7682         can be anywhere in the paragraph, but will only do the expected
7683         thing in LaTeX if the layout file contains the parameter line
7684                         OptionalArgs    1
7685         (or more generally, a nonzero value) for that layout.
7686
7687 2002-08-22  Lars Gullik Bjønnes  <larsbj@gullik.net>
7688
7689         * paragraph.h: remove the declaration of undefined counters class
7690         function.
7691
7692 2002-08-22  Martin Vermeer <martin.vermeer@hut.fi>
7693
7694         * text2.C (setCounter):  fixed enumeration mis-count as reported by
7695         Dr. Richard Hawkins.
7696
7697 2002-08-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
7698
7699         * paragraph_funcs.h: remove some unneeded includes
7700
7701         * text.C (backspace): pasteParagraph now in global scipe
7702
7703         * CutAndPaste.C (cutSelection): pasteParagraph now in global scope
7704         (pasteSelection): ditto
7705
7706         * paragraph.[Ch] (pasteParagraph): move function to global scope ...
7707         * paragraph_funcs.C (pasteParagraph): ... here
7708
7709 2002-08-20  André Pönitz <poenitz@gmx.net>
7710
7711         * commandtags.h: new LFUNs for swapping/copying table row/colums
7712
7713         * LyXAction.C:
7714         * lyxfunc.C: support for new lfuns
7715
7716 2002-08-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
7717
7718         * tabular.C:
7719         * buffer.[Ch]: remove NO_COMPABILITY stuff
7720
7721 2002-08-20  Lars Gullik Bjønnes  <larsbj@gullik.net>
7722
7723         * boost.C (throw_exception): new file, with helper function for
7724         boost compiled without exceptions.
7725
7726         * paragraph.h:
7727         * lyxlength.C:
7728         * buffer.C:
7729         * ParameterStruct.h:
7730         * ParagraphParameters.[Ch]: remove NO_PEXTRA_REALLY stuff
7731
7732         * bufferlist.C (emergencyWriteAll): use boost bind
7733
7734         * BufferView_pimpl.C (moveCursorUpdate): remove inline
7735
7736         * text.C: include paragraph_funcs.h
7737         (breakParagraph): breakParagraph is now in global scope
7738
7739         * paragraph_funcs.[Ch]: new files
7740
7741         * paragraph.C (breakParagraph,breakParagraphConservative): move to
7742         global scope
7743
7744         * buffer.C: include paragraph_funcs.h
7745         (insertStringAsLines): breakParagraph is now in global scope
7746
7747         * Makefile.am (lyx_SOURCES): add paragraph_funcs.h and
7748         paragraph_funcs.C
7749
7750         * CutAndPaste.C: include paragraph_funcs.h
7751         (cutSelection): breakParagraphConservative is now in global scope
7752         (pasteSelection): ditto
7753
7754         * buffer.h: declare oprator== and operator!= for
7755         Buffer::inset_iterator
7756
7757         * bufferlist.C (emergencyWrite): don't use fmt(...)
7758
7759         * text3.C: add using std::endl
7760
7761         * BufferView.C (moveCursorUpdate): remove default arg
7762
7763 2002-08-20  André Pönitz <poenitz@gmx.net>
7764
7765         * buffer.[Ch]: move inline functions to .C
7766
7767         * BufferView2.C:
7768         * BufferView_pimpl.C:
7769         * text.C:
7770         * buffer.[Ch]: use improved inset_iterator
7771
7772         * buffer.C:
7773         * paragraph.[Ch]: write one paragraph at a time
7774
7775 2002-08-20  Dekel Tsur  <dekelts@tau.ac.il>
7776
7777         * BufferView_pimpl.C (dispatch): Insert insetbibtex with "plain"
7778         style if style is not specified.
7779
7780 2002-08-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7781
7782         * text2.C (setCounter): when searching for right label for a
7783         caption, make sure to recurse to parent insets (so that a caption
7784         in a minipage in a figure float works) (bug #568)
7785
7786 2002-08-20  André Pönitz <poenitz@gmx.net>
7787
7788         * text3.C: new file for LyXText::dispatch() and helpers
7789
7790         * BufferView.[Ch]: move text related stuff to LyXText::dispatch()
7791
7792         * funcrequest.[Ch]: add message() do avoid direct access to LyXFunc
7793
7794 2002-08-19  André Pönitz <poenitz@gmx.net>
7795
7796         * lyxtext.h:
7797         * text.C: new LyXText::dispatch()
7798
7799         * BufferView_pimpl.C: move handling of LFUN_APPENDIX to LyXText
7800
7801 2002-08-18  Dekel Tsur  <dekelts@tau.ac.il>
7802
7803         * text.C (paintRowSelection): Fix code for rows with both RTL & LTR text.
7804
7805         * BufferView_pimpl.C (smartQuote): Insert typewriter quotes in
7806         Hebrew text.
7807
7808 2002-08-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7809
7810         * Makefile.am: use $(variables) instead of @substitutions@
7811
7812 2002-08-15  André Pönitz <poenitz@gmx.net>
7813
7814         * lyxfunc.C:
7815         * BufferView_pimpl.C: streamlining mathed <-> outer world
7816         interaction
7817
7818         * commandtags.h:
7819         * LyXAction.C: remove unused LFUN_MATH
7820
7821 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
7822
7823         * paragraph.[Ch]: add some NO_NEXT ifdefs.
7824
7825 2002-08-15  Lars Gullik Bjønnes  <larsbj@gullik.net>
7826
7827         * paragraph.C (Paragraph): reformat a bit
7828         (cutIntoMinibuffer): use builtin InsetList function instad of
7829         doing it manually.
7830         (getInset): ditto
7831
7832         * buffer.C: include boost/bind.hpp, add using std::for_each
7833         (writeFileAscii): use ParagraphList iterators
7834         (validate): use for_each for validate traversal of paragraphs
7835         (getBibkeyList): use ParagraphList iterators
7836         (resizeInsets): use for_each to resizeInsetsLyXText for all
7837         paragraphs.
7838         (getParFromID): use ParagraphList iterators
7839
7840         * BufferView2.C (lockInset): use paragraph list and iterators
7841
7842 2002-08-14  John Levon  <levon@movementarian.org>
7843
7844         * lyxserver.C: remove spurious xforms include
7845
7846 2002-08-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
7847
7848         * lyxfunc.C (getStatus): disable math-extern outside of math mode
7849
7850 2002-08-13  André Pönitz <poenitz@gmx.net>
7851
7852         * LyXAction.[Ch]:
7853         * lyxfunc.C: further cleaning
7854
7855 2002-08-13  André Pönitz <poenitz@gmx.net>
7856
7857         * funcrequest.h: new constructor
7858
7859         * funcrequest.C: move stuff here from .h
7860
7861         * Makefile.am:
7862         * BufferView_pimpl.C:
7863         * LyXAction.C:
7864         * toc.C:
7865         * lyxfunc.C: subsequent changes
7866
7867         * lyxfunc.h: new view() member function
7868
7869         * lyxfunc.C: subsequent changes
7870
7871 2002-08-13  Angus Leeming  <leeming@lyx.org>
7872
7873         * BufferView2.C:
7874         * BufferView_pimpl.C:
7875         * buffer.C:
7876         * converter.C:
7877         * importer.C:
7878         * lyxfunc.C:
7879         * lyxvc.C:
7880         * toc.C:
7881         * vc-backend.C:
7882         changes due to the changed LyXView interface that now returns references
7883         to member variables not pointers.
7884
7885 2002-08-13  Angus Leeming  <leeming@lyx.org>
7886
7887         * WordLangTuple (word, lang_code): return references to strings,
7888         not strings.
7889
7890         * BufferView.h:
7891         * SpellBase.h:
7892         * lyxtext.h: forward-declare WordLangTuple.
7893
7894         * BufferView2.C:
7895         * ispell.C:
7896         * pspell.C:
7897         * text.C: #include "WordLangTuple.h".
7898
7899         * lyxtext.h:
7900         * text.C: (selectNextWordToSpellcheck): constify return type.
7901
7902 2002-08-12  Martin Vermeer <martin.vermeer@hut.fi>
7903
7904         * buffer.C:
7905         * buffer.h:
7906         * lyxtext.h:
7907         * paragraph.C:
7908         * paragraph_pimpl.h:
7909         * text.C:
7910         * text2.C:
7911         * undo_funcs.C: replaced per-paragraph counter logic by per-buffer, as
7912         suggested by Angus.
7913         Made updateCounter always count from start of buffer, and removed
7914         second argument (par).
7915         Reverted floats number display to '#'. Perhaps I'll try again when the
7916         code base is sanitized a bit.
7917
7918 2002-08-12  Angus Leeming  <leeming@lyx.org>
7919
7920         * buffer.[Ch] (getLabelList): constify.
7921
7922 2002-08-07  André Pönitz <poenitz@gmx.net>
7923
7924         * commandtags.h: new LFUN_MOUSE_(PRESS|MOTION|RELEASE)
7925
7926         * funcrequest.h: extension to keep mouse (x,y) position
7927
7928 2002-08-12  Juergen Vigna  <jug@sad.it>
7929
7930         * BufferView2.C (insertErrors): forbid undo when inserting error
7931         insets.
7932
7933         * CutAndPaste.C (SwitchLayoutsBetweenClasses): ditto
7934
7935 2002-08-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
7936
7937         * ParagraphList.[Ch]: new files
7938
7939         * Makefile.am (lyx_SOURCES): add ParagraphList.[Ch]
7940
7941         * BufferView2.C (lockInset): ParagraphList changes
7942         * toc.C: ditto
7943         * text2.C: ditto
7944         * bufferlist.C: ditto
7945         * buffer.h: ditto
7946         * buffer.C: ditto
7947
7948 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
7949
7950         * paragraph_pimpl.h: remove inclusion of boost/array.hpp, remove
7951         unused class variable counter_,
7952
7953         * paragraph.[Ch] (getFirstCounter): delete unused function
7954
7955         * counters.C: include LAssert.h
7956         (reset): add a new function with no arg, change other version to
7957         not have def. arg and to not allow empty arg.
7958
7959         * text2.C (setCounter): remove empty arg from call to Counters::reset
7960
7961 2002-08-11  John Levon  <levon@movementarian.org>
7962
7963         * Makefile.am: add WordLangTuple.h
7964
7965 2002-08-11  Lars Gullik Bjønnes  <larsbj@gullik.net>
7966
7967         * paragraph.C, ToolbarDefaults.h, kbsequence.h, lyx_main.C,
7968         lyxfunc.C lyxlex_pimpl.C: ws changes only.
7969
7970         * insets/insettext.C: InsetList changes
7971
7972         * graphics/GraphicsSupport.C (operator()): InsetList changes
7973
7974         * toc.C (getTocList): InsetList changes
7975
7976         * paragraph_pimpl.[Ch]: InsetList changes
7977
7978         * paragraph.[Ch]: InsetList changes
7979
7980         * buffer.C (inset_iterator): InsetList changes
7981         (setParagraph): ditto
7982         * buffer.h (inset_iterator): ditto
7983         * iterators.C (operator++): ditto
7984         * iterators.h: ditto
7985
7986         * Makefile.am (lyx_SOURCES): add InsetList.C and InsetList.h
7987
7988         * InsetList.[Ch]: new files, most InsetList handling moved out of
7989         paragraph.C.
7990
7991         * BufferView2.C (removeAutoInsets): InsetList changes
7992         (lockInset): ditto
7993         (ChangeInsets): ditto
7994
7995 2002-08-10  Lars Gullik Bjønnes  <larsbj@gullik.net>
7996
7997         * paragraph_pimpl.h (empty): new function
7998
7999         * paragraph.[Ch] (empty): new function
8000
8001         * other files: use the new Paragraph::empty function
8002
8003 2002-08-09  John Levon  <levon@movementarian.org>
8004
8005         * lyxtext.h: remove unused refresh_height
8006
8007 2002-08-09  John Levon  <levon@movementarian.org>
8008
8009         * Makefile.am:
8010         * sgml.h:
8011         * sgml.C:
8012         * buffer.C:
8013         * paragraph.h:
8014         * paragraph.C: move sgml char escaping out of paragraph
8015
8016         * paragraph.h:
8017         * paragraph.C: remove id setter
8018
8019         * buffer.C:
8020         * paragraph.C:
8021         * paragraph_pimpl.C: remove dead tex_code_break_column
8022
8023         * bufferview_funcs.C: small cleanup
8024
8025         * lyxfunc.C: remove dead proto
8026
8027         * lyxtext.h: make some stuff private. Remove some dead stuff.
8028
8029         * lyxgluelength.C: make as[LyX]String() readable
8030
8031 2002-08-08  John Levon  <levon@movementarian.org>
8032
8033         * LyXAction.h:
8034         * LyXAction.C:
8035         * MenuBackend.C:
8036         * ToolbarDefaults.C:
8037         * lyxfunc.C:
8038         * lyxrc.C:
8039         * toc.C: lyxaction cleanup
8040
8041 2002-08-08  John Levon  <levon@movementarian.org>
8042
8043         * BufferView2.C: small cleanup
8044
8045         * lyxfind.h:
8046         * lyxfind.C: move unnecessary header into the .C
8047
8048 2002-08-08  John Levon  <levon@movementarian.org>
8049
8050         * funcrequest.h: just tedious nonsense
8051
8052         * lyx_main.h:
8053         * lyx_main.C: cleanups
8054
8055         * buffer.C:
8056         * vspace.C: remove dead header lyx_main.h
8057
8058 2002-08-07  Angus Leeming  <leeming@lyx.org>
8059
8060         * Paragraph.[Ch]:
8061         * paragraph_pimpl.h:
8062         Forward declare class Counters in paragraph.h by moving the ctrs member
8063         variable into Paragraph::Pimpl.
8064         (counters): new method, returning a reference to pimpl_->ctrs.
8065
8066         * text2.C: ensuing changes.
8067
8068 2002-08-07  John Levon  <levon@movementarian.org>
8069
8070         * BufferView_pimpl.C (resizeCurrentBuffer): update scrollbar
8071
8072         * BufferView_pimpl.C: announce X selection on double/triple
8073           click
8074
8075         * lyx_main.C: use correct bool in batch dispatch
8076
8077         * counters.h: srcdocs (from Martin Vermeer and Angus Leeming)
8078
8079 2002-08-07  André Pönitz <poenitz@gmx.net>
8080
8081         * funcrequest.h: new class to wrap a kb_action and its argument
8082
8083         * BufferView.[Ch]:
8084         * BufferView_pimpl[Ch]:
8085         * LaTeX.C:
8086         * LyXAction.[Ch]:
8087         * lyxfunc.[Ch]:
8088         * lyxrc.C: subsequent changes
8089
8090
8091 2002-08-07  John Levon  <levon@movementarian.org>
8092
8093         * BufferView_pimpl.C (redoCurrentBuffer): fix screen update when
8094           document options change.
8095
8096 2002-08-06  Martin Vermeer  <martin.vermeer@hut.fi>
8097
8098         * counters.[Ch]
8099         * text2.C
8100         * paragraph.[Ch]
8101         * makefile.am: move counters functionality over from
8102         text2.C/paragraph.[Ch] to counters.[Ch], and make proper C++.
8103
8104 2002-08-06  John Levon  <levon@movementarian.org>
8105
8106         * WordLangTuple.h: new file for word + language code tuple
8107
8108         * SpellBase.h:
8109         * pspell.h:
8110         * pspell.C:
8111         * ispell.h:
8112         * ispell.C:
8113         * lyxtext.h:
8114         * text.C:
8115         * text2.C:
8116         * BufferView.h:
8117         * BufferView2.C: use WordLangTuple
8118
8119         * layout.h:
8120         * buffer.C: remove very dead LYX_LAYOUT_DEFAULT
8121
8122 2002-08-06  John Levon  <levon@movementarian.org>
8123
8124         * lyx_main.C: fix cmdline batch handling
8125
8126 2002-08-06  André Pönitz <poenitz@gmx.net>
8127
8128         * lyxrc.C: set default for show_banner to true
8129
8130 2002-08-06  John Levon  <levon@movementarian.org>
8131
8132         * pspell.C: fix a crash, and allow new aspell to work
8133
8134 2002-08-06  John Levon  <levon@movementarian.org>
8135
8136         * lyxfunc.C:
8137         * kbmap.C: small cleanup
8138
8139         * vspace.h:
8140         * vspace.C: add const
8141
8142 2002-08-05  John Levon  <levon@movementarian.org>
8143
8144         * LyXAction.C: back to tabular-insert
8145
8146 2002-08-04  John Levon  <levon@movementarian.org>
8147
8148         * BufferView.h:
8149         * BufferView.C: cosmetic change
8150
8151         * BufferView_pimpl.C: s/IGNORE_CODE/NOTE_CODE/
8152
8153         * bufferlist.C:
8154         * buffer.h:
8155         * buffer.C:
8156         * lyxcb.h:
8157         * lyxcb.C:
8158         * lyxserver.C:
8159         * lyxvc.C:
8160         * vc-backend.C:
8161         * BufferView2.C: purge all "Lyx" not "LyX" strings
8162
8163         * lyxcursor.h:
8164         * lyxcursor.C: attempt to add some documentation
8165
8166         * lyxfunc.C:
8167         * commandtags.h:
8168         * LyXAction.C:
8169         * ToolbarDefaults.C:
8170         * BufferView_pimpl.C: remove LFUN_DIALOG_TABULAR_INSERT and
8171           merge with LFUN_TABULAR_INSERT
8172
8173         * Makefile.am:
8174         * SpellBase.h:
8175         * ispell.h:
8176         * ispell.C:
8177         * pspell.h:
8178         * pspell.C: split up i/pspell implementations into separate
8179           files, many cleanups
8180
8181         * lyxlex.C: unrevert, with a proper fix for prefix.length() == 0
8182
8183         * text2.C: some cleanup
8184
8185         * lyxfunc.C: don't check for isp_command == "none" any more, it
8186           didn't make any sense
8187
8188 2002-08-06      Martin Vermeer <martin.vermeer@hut.fi>
8189
8190         * counters.[Ch]
8191         * text2.C
8192         * paragraph.[Ch]
8193         * makefile.am: move counters functionality over
8194         from text2.C/paragraph.[Ch] to counters.[Ch], and
8195         make proper C++.
8196 2002-08-02  John Levon  <levon@movementarian.org>
8197
8198         * buffer.C: s/lyxconvert/lyx2lyx/
8199
8200 2002-08-02  Angus Leeming  <leeming@lyx.org>
8201
8202         * lyxlex.C: revert John's change as it breaks reading of the user
8203         preamble.
8204
8205 2002-08-02  Angus Leeming  <leeming@lyx.org>
8206
8207         * importer.C (Import):
8208         * lyxfunc.C (moveCursorUpdate, dispatch, view_status_message):
8209         changes due to LyXView::view() now returning a boost::shared_ptr.
8210
8211 2002-08-02  John Levon  <levon@movementarian.org>
8212
8213         * lyxlex.C: small cleanup
8214
8215 2002-08-02  John Levon  <levon@movementarian.org>
8216
8217         * text2.C (status): small cleanup, no logic change
8218
8219 2002-08-01  John Levon  <levon@movementarian.org>
8220
8221         * buffer.h:
8222         * buffer.C (writeFile): don't output alerts, caller
8223           handles this
8224
8225         * bufferlist.C:
8226         * lyx_cb.C: from above
8227
8228         * lyxfunc.C: allow to open non-existent files
8229
8230 2002-07-31  John Levon  <levon@movementarian.org>
8231
8232         * lyxserver.C: don't let incidental errors get
8233           in the way (errno)
8234
8235 2002-07-30  John Levon  <levon@movementarian.org>
8236
8237         * lyxfunc.C: disable character dialog in ERT inset (partial fix)
8238
8239 2002-07-30  John Levon  <levon@movementarian.org>
8240
8241         * lyxserver.h:
8242         * lyxserver.C: remove I/O callback too
8243
8244 2002-07-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8245
8246         * lyxfunc.C (getStatus): disable LFUN_LATEX_LOG when there is no
8247         log.
8248
8249 2002-07-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
8250
8251         * many files: strip,frontStrip -> trim,ltrim,rtrim
8252
8253 2002-07-28  Lars Gullik Bjønnes  <larsbj@gullik.net>
8254
8255         * PrinterParams.h: remove extern containsOnly, and include
8256         support/lstrings.h instead.
8257
8258         * LaTeX.C (scanAuxFile): modify because of strip changes
8259         (deplog): ditto
8260         * buffer.C (makeLaTeXFile): ditto
8261         * bufferparams.C (writeFile): ditt
8262         * lyxfont.C (stateText): ditto
8263         * lyxserver.C (read_ready): ditto
8264         * vc-backend.C (scanMaster): ditto
8265
8266         * BufferView_pimpl.h: ws changes
8267
8268         * BufferView_pimpl.C: inlude boost/signals/connection.hpp
8269
8270 2002-07-26  André Pönitz <poenitz@gmx.net>
8271
8272         * kb_sequence.C: remove unnedred usings
8273
8274 2002-07-26  Juergen Vigna  <jug@sad.it>
8275
8276         * lyxfind.C (LyXReplace): we have to check better if the returned
8277         text is not of theLockingInset()->getLockingInset().
8278
8279 2002-07-25  Juergen Vigna  <jug@sad.it>
8280
8281         * lyxfind.C (LyXReplace): don't replace if we don't get the
8282         right LyXText.
8283
8284         * undo_funcs.C (createUndo): remove debugging code.
8285
8286 2002-07-25  Dekel Tsur  <dekelts@tau.ac.il>
8287
8288         * buffer.C (parseSingleLyXformat2Token): Use default placement
8289         when reading old floats.
8290
8291         * FloatList.C (FloatList): Change the default placement of figure
8292         and tables to "tbp".
8293
8294 2002-07-25  John Levon  <moz@compsoc.man.ac.uk>
8295
8296         * MenuBackend.C: using std::max
8297
8298 2002-07-25  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8299
8300         * MenuBackend.C (expandToc):
8301         (expandToc2): code moved from xforms menu frontend. It is now
8302         generic and TOCs are transparent to menu frontends.
8303
8304 2002-07-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8305
8306         * toc.C (getTocList): protect against buf=0
8307
8308         * MenuBackend.C (expand): move from Menu to MenuBackend; pass a
8309         Menu as first parameter. Now, this calls itself recursively to
8310         expand a whole tree (this will be useful for TOC handling)
8311         (expandFloatInsert): remove 'wide' version of floats
8312
8313         * MenuBackend.h (submenuname): returns the name of the submenu.
8314         (submenu): returns the submenu itself, provided it has been
8315         created by MenuBackend::expand
8316
8317 2002-07-23  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8318
8319         * paragraph_pimpl.C (simpleTeXSpecialChars): close fonts before
8320         insets which have noFontChange == true. (bug #172)
8321
8322 2002-07-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8323
8324         * BufferView_pimpl.C: add connection objects and use them...
8325         (Pimpl): here.
8326
8327 2002-07-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8328
8329         * MenuBackend.C (expandLastfiles):
8330         (expandDocuments):
8331         (expandFormats):
8332         (expandFloatListInsert):
8333         (expandFloatInsert):
8334         (expand): split expand in parts
8335
8336 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
8337
8338         * lyx_gui.C: use lyx_gui::exit()
8339
8340 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
8341
8342         * LyXAction.C: show the failing pseudo action
8343
8344 2002-07-22  Dekel Tsur  <dekelts@tau.ac.il>
8345
8346         * buffer.C (readFile): Run the lyxconvert script in order to read
8347         old files.
8348
8349 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
8350
8351         * LyXAction.C:
8352         * commandtags.h:
8353         * lyxfunc.C: remove LFUN_ADD_TO_TOOLBAR
8354
8355 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
8356
8357         * LyXAction.C:
8358         * commandtags.h:
8359         * lyxfunc.C: remove LFUN_TOOLBAR_PUSH
8360
8361 2002-07-22  Herbert Voss  <voss@lyx.org>
8362
8363         * lengthcommon.C:
8364         * lyxlength.[Ch]: add support for the vertical lengths
8365
8366 2002-07-21  John Levon  <moz@compsoc.man.ac.uk>
8367
8368         * toc.[Ch]: std:: fixes
8369
8370 2002-07-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8371
8372         * lyxrc.C: do not include lyx_main.h
8373
8374         * LaTeXFeatures.h: use a list<string> instead of a vector<string>
8375         for layouts
8376
8377         * lyxrc.C:
8378         * encoding.C:
8379         * bufferlist.C:
8380         * BufferView2.C: include "lyxlex.h"
8381
8382         * tabular.h:
8383         * bufferparams.h: do not #include "lyxlex.h"
8384
8385         * lyxtextclasslist.C (Add): remove method
8386         (classlist): renamed to classlist_
8387
8388         * paragraph_pimpl.C:
8389         * paragraph.C:
8390         * text2.C:
8391         * CutAndPaste.C:
8392         * bufferview_funcs.C:
8393         * bufferlist.C:
8394         * text.C:
8395         * LaTeXFeatures.C:
8396         * buffer.C:
8397         * toc.C (getTocList): use BufferParams::getLyXTextClass
8398
8399         * toc.C (getTocList): use InsetFloat::addToToc
8400
8401         * toc.[Ch]: new files, containing helper functions to handle table
8402         of contents
8403
8404         * lyxfunc.C (dispatch): no need to remove spaces around command
8405         given as a string
8406         (getStatus): handle LFUN_SEQUENCE by returning the status of the
8407         first command of the sequence; it is not very clever, but I do not
8408         have a better idea, actually
8409
8410         * LyXAction.C (LookupFunc): make sure to remove space at the
8411         beginning and end of the command
8412
8413 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8414
8415         * MenuBackend.C (getMenubar): new method: return the menubar of
8416         this menu set
8417         (read): treat differently reading of menu and menubar (in
8418         particular, the menubar has no name now)
8419         (Menu::menubar): remove
8420
8421         * lyxfunc.C (dispatch): add 'done' message to minibuffer when
8422         saving is finished
8423
8424 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
8425
8426         * BufferView_pimpl.C (workAreaButtonRelease): Fix opening of
8427         a bibitem inset in a RTL paragraph.
8428
8429 2002-07-20  John Levon  <moz@compsoc.man.ac.uk>
8430
8431         * paragraph_pimpl.C: constify
8432
8433         * BufferView_pimpl.C:
8434         * LaTeX.C:
8435         * lyxfunc.C: fix dispatch in a nicer way
8436
8437 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8438
8439         * lyxfunc.C (dispatch):
8440         * BufferView_pimpl.C:
8441         * BufferView_pimpl.h:
8442         * BufferView.C:
8443         * BufferView.h: rename Dispatch() to dispatch()
8444
8445         * LaTeXFeatures.C (useLayout): honor LyXLayout::depends_on()
8446
8447         * lyxlayout.C (Read): honor DependsOn tag
8448
8449         * lyxlayout.[Ch] (depends_on): new method
8450
8451         * version.C.in: update lyx_docversion
8452
8453         * LaTeXFeatures.C (getMacros): only define \LyX when needed
8454
8455         * paragraph.C (validate): remove from here...
8456         * paragraph_pimpl.C (validate): ... and move here
8457         (isTextAt): make it const
8458
8459         * buffer.C (getLists): ws cleanup
8460
8461 2002-07-20  Dekel Tsur  <dekelts@tau.ac.il>
8462
8463         * language.C (read): Use iso8859-1 encoding in latex_lang
8464         (this prevents LyX from crashing when using iso10646-1 encoding).
8465
8466 2002-07-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8467
8468         * text2.C (toggleInset): if cursor is inside an inset, close the
8469         inset and leave cursor _after_ it
8470
8471 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
8472
8473         * lyxfunc.C: move minibuffer completion handling out of here
8474
8475 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
8476
8477         * BufferView_pimpl.C:
8478         * LaTeX.C: fix dispatch calls
8479
8480 2002-07-19  Dekel Tsur  <dekelts@tau.ac.il>
8481
8482         * text.C (drawChars): Fix Arabic text rendering.
8483
8484 2002-07-18  John Levon  <moz@compsoc.man.ac.uk>
8485
8486         * LyXAction.C:
8487         * commandtags.h:
8488         * lyxfunc.C: remove message-push/pop
8489
8490         * lyxserver.C:
8491         * lyxfunc.h:
8492         * lyxfunc.C: rationalise some code by removing verboseDispatch
8493           in favour of a bool argument to dispatch()
8494
8495 2002-07-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8496
8497         * lyx_main.C (init): make sure to read symlinks as absolute paths
8498
8499 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
8500
8501         * lyxfunc.h:
8502         * lyxfunc.C: no need for commandshortcut to be a member
8503
8504 2002-07-15  André Pönitz <poenitz@gmx.net>
8505
8506         * converter.C: add support for $$s (scripts from lib/scripts dir)
8507         * lyx_main.C: white space
8508
8509 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
8510
8511         * bufferlist.C:
8512         * lyxrc.h:
8513         * lyxrc.C: remove second exit confirmation
8514
8515 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
8516
8517         * BufferView.h:
8518         * BufferView.C:
8519         * BufferView2.C:
8520         * BufferView_pimpl.h:
8521         * BufferView_pimpl.C:
8522         * lyxfunc.C: s/setState/switchKeyMap/, s/showState/view_state_changed/
8523
8524 2002-07-16  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8525
8526         * MenuBackend.C (expand): add numeric shortcuts to document menu
8527
8528         * lyxrc.C (getDescription): remove RC_NEW_ASK_FILENAME
8529
8530 2002-07-15  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8531
8532         * lyxfont.C (setLyXFamily):
8533         (setLyXSeries):
8534         (setLyXShape):
8535         (setLyXSize):
8536         (setLyXMisc):
8537         (lyxRead):
8538         * debug.C (value):
8539         * buffer.C (asciiParagraph): use ascii_lowercase
8540
8541 2002-07-15  Mike Fabian  <mfabian@suse.de>
8542
8543         * lyxlex_pimpl.C (search_kw):
8544         * lyxlex.C (getLongString):
8545         * converter.h (operator<):
8546         * converter.C (operator<):
8547         * buffer.C (parseSingleLyXformat2Token):
8548         (asciiParagraph):
8549         * ToolbarDefaults.C (read):
8550         * MenuBackend.C (checkShortcuts):
8551         (read):
8552         * LColor.C (getFromGUIName):
8553         (getFromLyXName): use the compare_ascii_no_case instead of
8554         compare_no_case, because in turkish, 'i' is not the lowercase
8555         version of 'I', and thus turkish locale breaks parsing of tags.
8556
8557 2002-07-16  Angus Leeming  <leeming@lyx.org>
8558
8559         * BufferView_pimpl.C (buffer): Previews::generateBufferPreviews
8560         now takes a Buffer const & argument.
8561
8562 2002-07-15  John Levon  <moz@compsoc.man.ac.uk>
8563
8564         * BufferView.C (resize): check there's a buffer to resize
8565
8566 2002-07-14  John Levon  <moz@compsoc.man.ac.uk>
8567
8568         * lyxfunc.C: remove dead code
8569
8570         * lyxserver.h:
8571         * lyxserver.C: use lyx_guii::set_read_callback
8572
8573 2002-07-13  Dekel Tsur  <dekelts@tau.ac.il>
8574
8575         * lyxfunc.C (dispatch): Correct cursor behaviour when exiting
8576         an inset in a RTL paragraph.
8577
8578 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
8579
8580         * lyxfunc.C: repaint after a font size update
8581
8582 2002-07-15  André Pönitz <poenitz@gmx.net>
8583
8584         * lyxlength.C: inBP should be able to return negative values
8585
8586 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
8587
8588         * lyxfunc.C: use lyx_gui::update_fonts()
8589
8590 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
8591
8592         * lyxfunc.C: use lyx_gui::update_color()
8593
8594 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
8595
8596         * bufferlist.C:
8597         * lyxfunc.h:
8598         * lyxfunc.C:
8599         * lyxrc.h:
8600         * lyxrc.C: remove file->new asks for name option, and let
8601           buffer-new take an argument
8602
8603 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
8604
8605         * BufferView_pimpl.C: remove unneeded extra repaint()
8606
8607 2002-07-10  John Levon  <moz@compsoc.man.ac.uk>
8608
8609         * LyXAction.C: allow command-sequence with NoBuffer
8610
8611         * lyxfunc.C: don't insist on trailing ';' for command-sequence
8612
8613 2002-07-10  Angus Leeming  <leeming@lyx.org>
8614
8615         * lyxrc.[Ch]: preview_scale_factor should be a float not an int.
8616
8617 2002-07-09  Angus Leeming  <leeming@lyx.org>
8618
8619         * lyxrc.[Ch]: added preview_hashed_labels and preview_scale_factor.
8620
8621 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
8622
8623         * lengthcommon.h: whitespace
8624
8625         * lyxfunc.C: update scrollbar after goto paragraph
8626
8627         * lyxtext.h: factor out page break drawing, and fix it so
8628           page break/added space paints as selected nicely
8629
8630 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
8631
8632         * BufferView_pimpl.C: add FIXMEs, clean up a little
8633
8634 2002-07-09  André Pönitz <poenitz@gmx.net>
8635
8636         * lyxfont.[Ch]: support for wasy symbols
8637
8638 2002-07-08  André Pönitz <poenitz@gmx.net>
8639
8640         * BufferView_pimpl.C: apply John's patch for #93.
8641
8642 2002-07-05  Angus Leeming  <leeming@lyx.org>
8643
8644         * BufferView_pimpl.C (buffer): generate previews if desired.
8645
8646         * LColor.h: add "preview" to the color enum.
8647
8648         * LColor.C (LColor): add a corresponding entry to the items array.
8649
8650         * buffer.C (~Buffer): remove any previewed LaTeX snippets associated
8651         with this buffer.
8652
8653 2002-07-05  Angus Leeming  <leeming@lyx.org>
8654
8655         * buffer.[Ch] (makeLaTeXFile): create two methods where there was one.
8656         The body of the code is now in the method that is passed an ostream &
8657         rather than a file name.
8658         Pass an additional only_preamble parameter, useful for the forthcoming
8659         preview stuff.
8660
8661 2002-07-03  André Pönitz <poenitz@gmx.net>
8662
8663         * lyxfunc.C: simplify getStatus() a bit for math stuff
8664
8665 2002-07-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8666
8667         * BufferView_pimpl.C (workAreaResize): add an unconditional repaint.
8668
8669 2002-06-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8670
8671         * text.C (changeRegionCase): do not change case of all the
8672         document when region ends at paragraph end (bug #461)
8673
8674 2002-07-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8675
8676         * paragraph.C (startTeXParParams):
8677         (endTeXParParams): add \protect when necessary
8678
8679 2002-06-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
8680
8681         * BufferView_pimpl.C (workAreaExpose): remove warning
8682
8683 2002-06-27  Angus Leeming  <leeming@lyx.org>
8684
8685         * Makefile.am: add lyxlayout_ptr_fwd.h.
8686
8687 2002-06-26  André Pönitz <poenitz@gmx.net>
8688
8689         * lyxrc.[Ch]: introduce \preview, revive half-dead \show_banner
8690
8691 2002-06-25  Angus Leeming  <leeming@lyx.org>
8692
8693         * lyxfunc.C (dispatch): Comment out the call to
8694         grfx::GCache::changeDisplay. The method no longer exists now that the
8695         pixmap generation part of the graphics loader has been moved into
8696         InsetGraphics.
8697
8698 2002-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8699
8700         * text2.C: layout as layout
8701
8702         * text.C: layout as layout
8703
8704         * tabular.C (OldFormatRead): layout as layout
8705
8706         * paragraph_pimpl.C (TeXDeeper): layout as layout
8707         (realizeFont): layout as layout
8708
8709         * paragraph.C (writeFile): layout as layout
8710         (validate): layout as layout
8711         (getFont): layout as layout
8712         (getLabelFont): layout as layout
8713         (getLayoutFont): layout as layout
8714         (breakParagraph): layout as layout
8715         (stripLeadingSpaces): layout as layout
8716         (getEndLabel): layout as layout
8717         (getMaxDepthAfter): layout as layout
8718         (applyLayout): layout as layout
8719         (TeXOnePar): layout as layout
8720         (simpleTeXOnePar): layout as layout
8721         (TeXEnvironment): layout as layout
8722         (layout): layout as layout
8723         (layout): layout as layout
8724
8725         * lyxtextclass.C (compare_name): new functor to work with
8726         shared_ptr, layout as layout
8727         (Read): layout as layout
8728         (hasLayout): layout as layout
8729         (operator): layout as layout
8730         (delete_layout): layout as layout
8731         (defaultLayout): layout as layout
8732
8733         * lyxlayout_ptr_fwd.h: new file
8734
8735         * lyxlayout.C (Read): layout as layout
8736
8737         * lyx_cb.C (MenuInsertLabel): layout as layout
8738
8739         * bufferlist.C (newFile): layout as layout
8740
8741         * buffer.C (readLyXformat2): layout as layout
8742         (parseSingleLyXformat2Token): layout as layout
8743         (insertStringAsLines): layout as layout
8744         (asciiParagraph): layout as layout
8745         (latexParagraphs): layout as layout
8746         (makeLinuxDocFile): layout as layout
8747         (simpleLinuxDocOnePar): layout as layout
8748         (makeDocBookFile): layout as layout
8749         (simpleDocBookOnePar): layout as layout
8750         (getLists): layout as layout
8751
8752         * LaTeXFeatures.C (getTClassPreamble): layout as layout
8753
8754         * CutAndPaste.C (cutSelection): layout as layout
8755         (pasteSelection): layout as layout
8756         (SwitchLayoutsBetweenClasses): layout as layout
8757
8758         * BufferView_pimpl.C (Dispatch): layout as layout
8759         (smartQuote): layout as layout
8760
8761         * BufferView2.C (unlockInset): layout as layout
8762
8763 2002-06-24  André Pönitz <poenitz@gmx.net>
8764
8765         * lyxfunc.C: fix #487
8766
8767 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
8768
8769         * lyxrc.h:
8770         * lyxrc.C:
8771         * lyxfunc.C: remove display_shortcuts, show_banner
8772
8773 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
8774
8775         * Buffer_pimpl.C: oops, update on resize
8776
8777 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
8778
8779         * buffer.C:
8780         * converter.C:
8781         * exporter.C:
8782         * lyxfunc.C:
8783         * BufferView.h:
8784         * BufferView.C: use repaint()
8785
8786         * BufferView_pimpl.h:
8787         * BufferView_pimpl.C: s/updateScreen()/repaint()/
8788           as it's a clearer description. Remove superfluous
8789           redraws.
8790
8791 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
8792
8793         * text.C: fix bug 488. Not ideal, but getting
8794           getWord() to work properly for the insets that
8795           matter is more difficult ...
8796
8797 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
8798
8799         * BufferView_pimpl.C:
8800         * LyXAction.C:
8801         * commandtags.h:
8802         * lyxfunc.C: remove the six million index lyxfuncs to just
8803           one, and DTRT (bug 458)
8804
8805 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
8806
8807         * BufferView.h:
8808         * BufferView.C:
8809         * BufferView_pimpl.h:
8810         * BufferView_pimpl.C: clean up resize() stuff,
8811           and unnecessary updateScreen()s
8812
8813 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
8814
8815         * BufferView.h:
8816         * BufferView.C:
8817         * BufferView_pimpl.h:
8818         * BufferView_pimpl.C:
8819         * lyxfind.h:
8820         * lyxfind.C:
8821         * minibuffer.C: remove focus management of workarea,
8822           not needed. Use screen's greyOut()
8823
8824 2002-06-17  Herbert Voss  <voss@lyx.org>
8825
8826         * converter.C: (convert) do not post a message, when converting
8827         fails, let the calling function decide what to do in this case
8828
8829 2002-06-18  John Levon  <moz@compsoc.man.ac.uk>
8830
8831         * lyxfunc.C: tidy up a little
8832
8833 2002-06-16    <alstrup@diku.dk>
8834
8835         * BufferView_pimpl.C (Pimpl): Use WorkAreaFactory.
8836         Got rid of FORMS_H_LOCATION include. Now we are
8837         GUII.
8838
8839 2002-06-15  LyX Development team  <lyx@rilke>
8840
8841         * buffer.[Ch] (sgmlOpenTag):
8842         (sgmlCloseTag): Added support for avoiding pernicious mixed
8843         content. Return number of lines written.
8844
8845         (makeLinuxDocFile):
8846         (makeDocBookFile): Fixed calls to sgml*Tag.
8847         Simple white space clean.
8848
8849         (simpleDocBookOnePar): Simple white space clean.
8850
8851         * tabular.[Ch] (docBook): Renamed to docbook and got another
8852         argument to related with the pernicious mixed content.
8853
8854         (docbookRow): Fixed calls for docbook inset method.
8855
8856 2002-06-15  Lyx Development team  <larsbj@birdstep.com>
8857
8858         * lyxfunc.[Ch]: Use LyXKeySym instead of KeySym,
8859         so it's X11 independent.
8860
8861         * kb*.[Ch]: ditto.
8862
8863         * BufferView_pimpl.[Ch] (workAreaKeyPress): ditto.
8864
8865 2002-06-15  Lyx Development team  <lyx@electronia>
8866
8867         * intl.h: Renamed getTrans to getTransManager.
8868
8869 2002-06-14  Angus Leeming  <leeming@lyx.org>
8870
8871         * Makefile.am: nuke forgotten stl_string_fwd.h.
8872
8873 2002-06-12  Angus Leeming  <leeming@lyx.org>
8874
8875         * stl_string_fwd.h: unused and non-compliant anyway. Nuked.
8876
8877 2002-06-13  Angus Leeming  <leeming@lyx.org>
8878
8879         * LaTeX.C:
8880         * vspace.C: wrap using std::sscanf inside a CXX_GLOBAL_CSTD block.
8881
8882 2002-06-12  Andrew Zabolotny  <zap@cobra.ru>
8883
8884         * kbmap.C (getiso): add support for cyrillic and greek
8885
8886 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
8887
8888         * BufferView.h:
8889         * BufferView.C:
8890         * BufferView_pimpl.h:
8891         * BufferView_pimpl.C: move bogus scrolling logic
8892           to xforms
8893
8894 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
8895
8896         * lyxfunc.C:
8897         * BufferView_pimpl.C: view->resize() change
8898
8899 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
8900
8901         * BufferView_pimpl.C: topCursorVisible
8902           prototype change
8903
8904 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
8905
8906         * Makefile.am:
8907         * lyx_gui.h:
8908         * lyx_gui.C: move to frontends/
8909
8910         * main.C:
8911         * lyx_main.h:
8912         * lyx_main.C: changes from above
8913
8914 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
8915
8916         * intl.C:
8917         * intl.h:
8918         * kbmap.C:
8919         * kbsequence.C:
8920         * lyx_cb.C:
8921         * lyx_main.C: minor tidy
8922
8923 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
8924
8925         * BufferView_pimpl.h:
8926         * BufferView_pimpl.C:
8927         * BufferView.h:
8928         * BufferView.C: make painter() const,
8929           remove dead code
8930
8931         * BufferView2.C: use screen() accessor
8932
8933         * lyx_main.h:
8934         * lyx_main.C: some minor cleanup
8935
8936 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
8937
8938         * BufferView_pimpl.h:
8939         * BufferView_pimpl.C: remove enter/leaveView,
8940           use workHeight()
8941
8942 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
8943
8944         * BufferView.h:
8945         * BufferView.C:
8946         * BufferView2.C:
8947         * BufferView_pimpl.h:
8948         * BufferView_pimpl.C: only construct screen once,
8949           rename
8950
8951         * lyxrc.C: remove pointless comment
8952
8953 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
8954
8955         * BufferView.h:
8956         * BufferView.C: remove active() and belowMouse()
8957
8958         * BufferView_pimpl.h:
8959         * BufferView_pimpl.C: use workarea() not workarea_,
8960           and make it use a scoped_ptr instead
8961
8962 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
8963
8964         * lyx_gui.C: add debug message on BadWindow
8965
8966 2002-06-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
8967
8968         * sp_spell.C: fdopen is not part of the C++ standard.
8969
8970         * paragraph.C (InsetIterator): use >= instead of ==
8971
8972 2002-06-07  Angus Leeming  <leeming@lyx.org>
8973
8974         Fixes needed to compile with Compaq cxx 6.5.
8975         * BufferView_pimpl.C:
8976         * DepTable.C:
8977         * buffer.C:
8978         * converter.C:
8979         * encoding.C:
8980         * lyx_gui.C:
8981         * lyx_main.C:
8982         * lyxtextclasslist.C:
8983         * minibuffer.C:
8984         * sp_spell.C:
8985         * tabular_funcs.C:
8986         * vc-backend.C:
8987         all c-library variables have been moved into namespace std. Wrap
8988         using std::xyz declarations inside a #ifndef CXX_GLOBAL_CSTD block.
8989
8990         * lyxlength.C:
8991         * tabular-old.C:
8992         * tabular.C:
8993         Add a using std::abs declaration.
8994
8995         * kbmap.h (modifier_pair):
8996         * paragraph.h (InsetTable, InsetList):
8997         * lyxfont.h (FontBits):
8998         type definition made public.
8999
9000         * bufferlist.C (emergencyWriteAll): the compiler complains that
9001         there is more than one possible lyx::class_fun template to choose from.
9002         I re-named the void specialisation as lyx::void_class_fun.
9003
9004         * lyxfont.C (FontBits' operator==, operator!=): taken out of class.
9005
9006         * tabular_funcs.C: lstrings.h must come before tabular_funcs.h or
9007         the compiler is is unable to find tostr in write_attribute.
9008
9009 2002-06-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9010
9011         * buffer.C (sgmlError): hide #warning
9012
9013 2002-06-05  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9014
9015         * xtl/*: get rid of xtl, which is not in use anyway
9016
9017         * LyXAction.C (init):
9018         * commandtags.h: remove BUFFER_PRINT and BUFFER_PARAMS_GET, which
9019         were unimplemented xtl experimentation
9020
9021 2002-06-04  André Pönitz <poenitz@gmx.net>
9022
9023         * lyxfunc.C: disable array operation on simple formulae
9024
9025 2002-06-03  John Levon  <moz@compsoc.man.ac.uk>
9026
9027         * converter.C: constify a bit
9028
9029 2002-06-02  John Levon  <moz@compsoc.man.ac.uk>
9030
9031         * lyx_gui.C: check xforms version correctly
9032
9033 2002-04-30  Herbert Voss  <voss@lyx.org>
9034
9035         * buffer.C (parseSingleLyXformat2Token): fix bug with ignored
9036         "keep" option
9037
9038 2002-05-31  John Levon  <moz@compsoc.man.ac.uk>
9039
9040         * lyxvc.C: fix bug 416 (make sure buffer is saved before
9041           attempt to register it with a VCS)
9042
9043 2002-05-30  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9044
9045         * lyx_main.C (init): honor variables LYX_DIR_13x and
9046         LYX_USERDIR_13x
9047
9048 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
9049
9050         * buffer.h:
9051         * buffer.C:
9052         * lyx_main.C: fix a crash on bad command line,
9053           and give a useful exit status on error
9054
9055         * lyxfunc.C (doImport): allow -i lyx to work
9056
9057 2002-03-30  André Pönitz <poenitz@gmx.net>
9058
9059         * lyxfunc.C: mathed font changes
9060
9061 2002-05-30  John Levon  <moz@compsoc.man.ac.uk>
9062
9063         * LaTeX.C:
9064         * importer.h:
9065         * importer.C:
9066         * lyx_sty.h:
9067         * lyx_sty.C:
9068         * lyxlex.C:
9069         * lyxrow.h:
9070         * lyxtext.h:
9071         * paragraph.h:
9072         * paragraph.C:
9073         * texrow.h:
9074         * texrow.C:
9075         * text.C:
9076         * trans_mgr.h: srcdocs, and some minor cleanups
9077
9078 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9079
9080         * paragraph_pimpl.C (isTextAt): rewrite to be much faster (do not
9081         call getFont all the time)
9082
9083 2002-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9084
9085         * switch from SigC signals to boost::signals
9086
9087 2002-05-29  André Pönitz <poenitz@gmx.net>
9088
9089         * paragraph_pimpl.C (getChar): don't call size() too often...
9090
9091 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9092
9093         * paragraph_pimpl.C (insertChar): do not try to update tables when
9094         appending (pos == size())
9095
9096         * buffer.C (parseSingleLyXformat2Token): reorder a bit the tests
9097         in order to reduce drastically the number of comparisons needed to
9098         parse a large document
9099
9100 2002-05-29  André Pönitz <poenitz@gmx.net>
9101
9102         * text.C:
9103         * text2.C:
9104         * lyxtextclass.C:
9105         * sp_pspell.h:
9106         * textclasslist.[Ch]:
9107         * sp_ispell.h: whitespace change
9108
9109 2002-05-29  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9110
9111         * lyxserver.C (callback): tentative fix of lyxserver. Does not use
9112         lyxaction directly now.
9113
9114 2002-05-27  John Levon  <moz@compsoc.man.ac.uk>
9115
9116         * trans.C:
9117         * lyxfont.C:
9118         * lyxvc.C: remove unused headers
9119
9120 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
9121
9122         * Makefile.am:
9123         * buffer.h:
9124         * undostack.h:
9125         * undostack.C:
9126         * undo_funcs.h:
9127         * undo_funcs.C: some cleanups. Use shared_ptr
9128           and a template for the undo stacks.
9129
9130 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
9131
9132         * BufferView_pimpl.h:
9133         * BufferView_pimpl.C:
9134         * kbmap.h:
9135         * kbmap.C:
9136         * kbsequence.h:
9137         * kbsequence.C:
9138         * lyxfunc.h:
9139         * lyxfunc.C:
9140         * text2.C: use key_state/mouse_state
9141
9142 2002-05-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9143
9144         * vc-backend.C (scanMaster): use boost regex and get rid of LRegex
9145         and LSubstring
9146
9147         * chset.C: change include order
9148         (loadFile): use boost regex and get rid of LRegex and LSubstring
9149
9150         * Makefile.am (BOOST_LIBS): new variable
9151         (lyx_LDADD): use it
9152
9153         * LaTeX.C: change include order.
9154         (scanAuxFile): use boost regex and get rid of LRegex and
9155         LSubstring
9156         (deplog): ditto
9157
9158 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
9159
9160         * ColorHandler.h:
9161         * ColorHandler.C:
9162         * FontInfo.h:
9163         * FontInfo.C: moved to frontends/xforms/
9164
9165         * FontLoader.h:
9166         * FontLoader.C: moved into frontends for GUIIzation
9167
9168         * Makefile.am:
9169         * lyx_gui.C:
9170         * lyxfont.C:
9171         * lyxfunc.C: changes from above
9172
9173 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
9174
9175         * LColor.C: remove spurious X include
9176
9177         * BufferView_pimpl.C:
9178         * Makefile.am:
9179         * font.h:
9180         * font.C:
9181         * text.C:
9182         * text2.C: move font metrics to frontends/
9183
9184 2002-05-24  Juergen Vigna  <jug@sad.it>
9185
9186         * undo_funcs.C (textHandleUndo): fix the cursor selection after
9187         setting the undo_cursor.
9188
9189         * ParagraphParameters.h: include local includes first.
9190
9191 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
9192
9193         * BufferView_pimpl.C:
9194         * BufferView_pimpl.h:
9195         * Makefile.am:
9196         * WorkArea.h:
9197         * WorkArea.C:
9198         * screen.C: move WorkArea into frontends/
9199
9200         * lyxscreen.h:
9201         * screen.C:
9202         * text.C:
9203         * BufferView.C:
9204         * BufferView2.C: move LyXScreen into frontends/
9205
9206         * lyxlookup.h:
9207         * lyxlookup.C:
9208         * lyx_gui.C: move lyxlookup into frontends/xforms/
9209
9210 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
9211
9212         * BufferView2.C:
9213         * BufferView_pimpl.C:
9214         * FontLoader.C:
9215         * LyXView.h:
9216         * LyXView.C:
9217         * Makefile.am:
9218         * WorkArea.C:
9219         * XFormsView.h:
9220         * XFormsView.C:
9221         * buffer.C:
9222         * bufferlist.C:
9223         * bufferview_funcs.C:
9224         * converter.C:
9225         * importer.C:
9226         * lyx_cb.C:
9227         * lyx_gui.C:
9228         * lyx_main.C:
9229         * lyx_find.C:
9230         * lyxfunc.C:
9231         * lyxvc.C:
9232         * minibuffer.C:
9233         * text.C:
9234         * text2.C:
9235         * trans.C:
9236         * vc-backend.C: move LyX/XFormsView into frontends/
9237
9238 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
9239
9240         * Makefile.am:
9241         * PainterBase.C:
9242         * PainterBase.h:
9243         * Painter.C:
9244         * Painter.h:
9245         * WorkArea.C:
9246         * WorkArea.h:
9247         * screen.C:
9248         * tabular.C:
9249         * text.C:
9250         * text2.C: move Painter to frontends/
9251
9252 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9253
9254         * buffer.C: comment out some some code that depend upon lyx_format
9255         < 220
9256
9257         * paragraph.h (NO_PEXTRA_REALLY): turn off all pextra
9258         * ParagraphParameters.h (NO_PEXTRA_REALLY): ditto
9259
9260         * buffer.h (NO_COMPABILITY): turn off compability
9261
9262         * ColorHandler.C: include scoped_array.hpp
9263
9264         * font.C: Use more specific smart_ptr header.
9265         * Painter.C: ditto
9266         * gettext.C: ditto
9267         * ShareContainer.h: ditto
9268         * lyx_main.h: ditto
9269         * kbmap.h: ditto
9270         * FontInfo.h: ditto
9271         * BufferView_pimpl.h: ditto
9272         * ColorHandler.h: ditto
9273
9274         * kbmap.C (defkey): change call to shared_ptr::reset
9275
9276 2002-05-21  Juergen Vigna  <jug@sad.it>
9277
9278         * buffer.C (insertErtContents): fix to insert ert asis if it is
9279         non empty. Skip it completely if it contains only whitespaces.
9280
9281 2002-05-15  John Levon  <moz@compsoc.man.ac.uk>
9282
9283         * BufferView_pimpl.C:
9284         * BufferView2.C: clear selection on paste (bug 393)
9285
9286 2002-05-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9287
9288         * DepTable.C: include ctime
9289
9290 2002-05-11  Dekel Tsur  <dekelts@tau.ac.il>
9291
9292         * buffer.C (latexParagraphs): Add new argument (moving_arg).
9293
9294 2002-05-14  Juergen Vigna  <jug@sad.it>
9295
9296         * text.C (breakParagraph): fixed function to honor the keepempty
9297         layout in the right maner and also to permit the right breaking
9298         algorithm on empty or non empyt keepempty paragraphs.
9299
9300         * paragraph.C (breakParagraph): we have to check also if the par
9301         is really empty (!size()) for isempty otherwise we do the wrong
9302         paragraph break.
9303
9304 2002-05-10  Juergen Vigna  <jug@sad.it>
9305
9306         * buffer.[Ch] : The following are only changes to the ert
9307         compatibility read reading old LaTeX layout and font stuff and
9308         convert it to ERTInsets.
9309
9310         * buffer.h: added isErtInset().
9311
9312         * buffer.C (struct ErtComp): add a fromlayout bool to check
9313         if we're inside a LaTeX layout.
9314         (isErtInset): new helper function.
9315         (insertErtContents): look for other ert insets before this one
9316         and insert the contents there, so that we don't have subsequent
9317         ERT insets with nothing between them. This way we create only one
9318         inset with multiple paragraphs. Also check if we don't insert only
9319         spaces ' ' as they are ignored anyway afterwards in the .tex file
9320         so if we have only spaces we will ignore this latex part in the
9321         new file.
9322         (parseSingleLyXformat2Token \\layout): better compatibility when
9323         reading layout-latex stuff.
9324         (parseSingleLyXformat2Token \\lang): put the insetERT in the right
9325         language tag.
9326         (parseSingleLyXformat2Token \\begin_inset): don't reset ert_comp
9327         stuff after reading the inset only get the information back from
9328         the stack.
9329
9330 2002-05-10  Dekel Tsur  <dekelts@tau.ac.il>
9331
9332         * buffer.C (makeLaTeXFile): Put language options after loading babel.
9333
9334         * LaTeXFeatures.C (getBabelOptions): New method.
9335
9336 2002-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9337
9338         * BufferView_pimpl.C (Dispatch): work around missing argument for
9339         'layout'
9340
9341 2002-05-08  Juergen Vigna  <jug@sad.it>
9342
9343         * text.C (leftMargin): handle paragraph leftindent.
9344
9345         * paragraph.C (writeFile): write the new \\leftindent tag.
9346         (validate): handle leftindent code.
9347         (TeXEnvironment): handle paragraphleftindent code again.
9348
9349         * lyx_sty.h: changed ParagraphIndent to ParagraphLeftIndent.
9350
9351         * buffer.C (parseSingleLyXformat2Token): added compatibility code
9352         for paragrap_extra indent code and new token \\leftindent.
9353         (latexParagraphs): handle the leftindent as environment.
9354
9355         * ParameterStruct.h: added leftindent support.
9356
9357         * ParagraphParameters.C (leftIndent): added support functions for
9358         the paragraph left indent.
9359
9360         * LaTeXFeatures.C: change paragraphindent to paragraphleftindent seems
9361         more appropriate.
9362
9363 2002-05-05  Dekel Tsur  <dekelts@tau.ac.il>
9364
9365         * paragraph.C (isRightToLeftPar): Return false for a paragraph
9366         inside insetERT.
9367
9368         * text.C (computeBidiTables): No bidi in insetERT.
9369
9370         * BufferView_pimpl.C (setState): Fix keymap handling inside insetERT
9371         in RTL documents.
9372
9373 2002-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9374
9375         * version.C.in: pre 5
9376
9377 2002-05-02  José Matos  <jamatos@fep.up.pt>
9378         * buffer.C (makeDocBookFile): white space changes, add newline to
9379         command styles.
9380         (simpleDocBookOnePar): protect <emphasis> inside a CDATA section.
9381
9382         * tabular.C (docBook): fix typo.
9383
9384 2002-05-03  Juergen Vigna  <jug@sad.it>
9385
9386         * screen.C (drawFromTo): recalculate the rowpointer if we had a
9387         change in LyXText as we can not be sure it was not freed.
9388         (drawOneRow): remove unused code.
9389
9390         * text.C (drawInset): redo the calculation of the need_break_row as
9391         it could have a row which was already freed.
9392         (draw): look at the return value of drawInset and return false if
9393         it also returned false.
9394         (paintRowText): look at the return value of draw and return false if
9395         it also returned false.
9396
9397         * lyxtext.h: added bool return type to drawInset() and draw() so that
9398         if we have a change in the row so that the rowbreak has to be redone
9399         we abort drawing as it will be called again.
9400
9401 2002-05-02  Juergen Vigna  <jug@sad.it>
9402
9403         * BufferView_pimpl.C (moveCursorUpdate): make repaint if we had
9404         a change in the maintext also if we're inside an inset.
9405         (Dispatch): set the cursor again after a break line and after the
9406         screen has been updated as it could be we're in a different row.
9407
9408         * text2.C (fixCursorAfterDelete): check to make sure we don't request
9409         to set the cursor behind the pargraph with > size().
9410         (setCursor): check also for the same paragraph when checking where
9411         to put the cursor if we have a NFR inset.
9412
9413         * buffer.C (parseSingleLyXformat2Token): move the compatibility
9414         parts of layout read further up as it still was in the wrong
9415         position.
9416
9417 2002-05-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9418
9419         * screen.C (drawFromTo): change sine fullRebreak always return
9420         true.
9421
9422         * buffer.C (parseSingleLyXformat2Token): reindent some
9423
9424         * BufferView_pimpl.C (update): change since fullRebreak always
9425         return true.
9426         (Dispatch): git rid of the last hardcoded "Standard"s.
9427
9428 2002-05-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9429
9430         * text2.[Ch] (fullRebreak): make it return void now that we always
9431         returned true.
9432
9433 2002-04-30  Juergen Vigna  <jug@sad.it>
9434
9435         * buffer.C (parseSingleLyXformat2Token): reset the font before the
9436         ert compatibility check for "latex" layout.
9437
9438 2002-04-29  Dekel Tsur  <dekelts@tau.ac.il>
9439
9440         * buffer.C (parseSingleLyXformat2Token): Fix reading of old format
9441         minipages: use col% instead of p%, and also use the current font.
9442         (makeLaTeXFile): Fix use babel condition.
9443         (parseSingleLyXformat2Token): Correct font when reading old floats.
9444
9445 2002-04-28  Dekel Tsur  <dekelts@tau.ac.il>
9446
9447         * BufferView_pimpl.C (Dispatch): Check that float type exists when
9448         inserting list of floats.
9449
9450 2002-04-25  Herbert Voss  <voss@lyx.org>
9451
9452         * MenuBackend.C (expand): don't add the graphics extensions to the
9453         export menu
9454
9455 2002-04-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9456
9457         * CutAndPaste.C (SwitchLayoutsBetweenClasses): when converting a
9458         non-existing layout, do not complain if it was the default layout
9459         of the original class (bug #342)
9460
9461 2002-04-24  Juergen Vigna  <jug@sad.it>
9462
9463         * BufferView_pimpl.C (workAreaButtonPress): fix handling of mouse-wheel
9464         (workAreaButtonRelease): don't do anything if it was a mouse-wheel
9465
9466 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
9467
9468         * buffer.C (getBibkeyList): If using \bibliography, return the
9469         option field with the reference itself. Enables us to provide natbib
9470         support when using \bibliography.
9471
9472 2002-04-23  Mike Ressler  <mike.ressler@alum.mit.edu>
9473
9474         * lyxtextclass.[Ch]: add layout keyword ProvidesNatbib.
9475
9476         * LaTeXFeatures.C: do not add \usepackage{natbib} to tex file if
9477         natbib is provided by the LaTeX class.
9478
9479 2002-04-23  Juergen Vigna  <jug@sad.it>
9480
9481         * BufferView_pimpl.[Ch]: remove use of wrong and unneeded insetSleep/
9482         Wakeup functions.
9483
9484         * BufferView.[Ch]: remove not needed insetSleep/Wakeup functions.
9485
9486 2002-04-22  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9487
9488         * lyxfunc.C (getStatus): LFUN_PROTECTED_SPACE is allowed in maths
9489
9490         * paragraph_pimpl.C (simpleTeXSpecialChars): remove bogus
9491         ensuremath around textordmasculine, textordfeminine and
9492         textdegree.
9493
9494 2002-04-19  Juergen Vigna  <jug@sad.it>
9495
9496         * BufferView_pimpl.C (resizeCurrentBuffer): resize the insets before
9497         reinitializing the buffer otherwise row-dimensions may be wrong.
9498         (update): reset also the selection cursors if they do exits otherwise
9499         their x/y positions may be wrong.
9500
9501         * text2.C (cursorDown): don't enter the inset if we came from a row
9502         above and are one row over the inset.
9503
9504         * lyxfunc.C (dispatch): update paragraph layout after LFUN_ESCAPE when
9505         really leaving an inset.
9506
9507 2002-04-18  Juergen Vigna  <jug@sad.it>
9508
9509         * BufferView_pimpl.C (Dispatch): fixed to change layout also if one
9510         of the selected paragraph does not have the selected layout also if
9511         the last one had!
9512
9513         * text2.C (setLayout): fixed bug which did not change last selected
9514         paragraph.
9515
9516         * tabular.C (OldFormatRead): check also for \\end_inset as Lars
9517         changed the read and substituted \\end_float with \\end_inset!
9518
9519         * BufferView_pimpl.C (cursorPrevious):
9520         (cursorNext): fixed to make it work with rows heigher than the work
9521         area without moving the cursor only the draw of the row.
9522         (workAreaMotionNotify): fix jumping over high rows.
9523
9524 2002-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9525
9526         * lyxtextclass.C (Read): fix bit adding, bug discovered by Mike
9527         Ressler.
9528
9529 2002-04-16  Juergen Vigna  <jug@sad.it>
9530
9531         * text2.C (setCursor): set also the irow().
9532         (setCursorFromCoordinates): fixed to set the (i) cursor values right!
9533         (cursorUp):
9534         (cursorDown): support for locking an inset if the x_fix value goes
9535         inside it. That way I can transverse insets too with cursor up/down.
9536
9537         * lyxrow.h: added irow helper function same as other (i) functions.
9538
9539         * BufferView_pimpl.C (cursorPrevious):
9540         (cursorNext): fixed for insets!
9541
9542 2002-04-15  Juergen Vigna  <jug@sad.it>
9543
9544         * BufferView_pimpl.C (insetDimensions): use ix/iy values for inset
9545         position otherwise it is wrong in some cases.
9546
9547         * lyxfunc.C (dispatch): fix FINISHED UP/DOWN to handle x position
9548         inside the inset before the call.
9549
9550 2002-04-16  Angus Leeming  <a.leeming@ic.ac.uk>
9551
9552         * buffer.[Ch] (getBibkeyList): make it const.
9553
9554 2002-04-12  Juergen Vigna  <jug@sad.it>
9555
9556         * BufferView_pimpl.C (workAreaMotionNotify): use new ix() cursor pos.
9557
9558         * text2.C (getCursorX): new helper function
9559         (setCursor): compute also ix_
9560         (setCursorFromCoordinates): set also ix.
9561
9562         * lyxcursor.h: added ix_ and helper functions.
9563
9564         * BufferView_pimpl.C (workAreaMotionNotify): forgot to use iy().
9565
9566         * buffer.C (insertStringAsLines): dont break paragraph if the this
9567         paragraph is inside an inset which does not permit it!
9568
9569         * text.C (breakParagraph): honor keepempty flag and break the paragraph
9570         also with no chars on this paragraph.
9571         (paintRowText): only paint stuff if it's inside the workarea!
9572
9573         * paragraph.C (breakParagraph): honor keepempty flag and break the
9574         paragraph always below not above.
9575
9576         * BufferView2.C (unlockInset): update the paragraph layout on inset
9577         unlock as we changed paragraph in such a case.
9578
9579         * lyxfind.C (LyXFind): clear the former selection if not found!
9580
9581         * text2.C (insertInset): freeze Undo after setUndo so that it is not
9582         again called in insertChar().
9583
9584         * text.C (leftMargin): return LYX_PAPER_MARGIN if this row contains
9585         an inset which uses the whole row!
9586         (rightMargin): ditto.
9587         (insertChar): force a rebreak if we inserted an inset!
9588
9589 2002-03-28  Herbert Voss  <voss@lyx.org>
9590
9591         * lyxlength.[Ch]: add inBP() to get the right PS-point
9592         units (BigPoint). With inPixels we have rounding errors
9593
9594 2002-04-11  Juergen Vigna  <jug@sad.it>
9595
9596         * text2.C (setCursorFromCoordinates): set iy to the right value.
9597         (setCursor): add check if row->previous exists!
9598
9599         * buffer.C (parseSingleLyXformat2Token): reset font after read of
9600         an old float_type as this was the case in the old code!
9601
9602         * paragraph.C (simpleTeXOnePar): fix closing of foreignlanguage tags.
9603
9604         * BufferView2.C (showLockedInsetCursor): use iy
9605         (fitLockedInsetCursor): ditto
9606
9607         * BufferView_pimpl.C (checkInset): use LyXCursor::iy for baseline of
9608         locked insets as there we have the right value now.
9609
9610         * lyxcursor.C: added iy_ variable and iy functions to set to the
9611         baseline of cursor-y of the locked inset.
9612
9613         * text2.C (setCursorFromCoordinates): set LyXCursor::iy.
9614         (setCursor): fixed for insets which need a full row.
9615
9616         * text.C (rowLastPrintable): don't ignore the last space when before
9617         an inset which needs a full row.
9618         (numberOfSeparators): use rowLastPrintable and <= last to honor a space
9619         as last character of a row when before a inset which needs a full row.
9620
9621 2002-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9622
9623         * version.C.in: update date
9624
9625         * text2.C (fullRebreak): try to always return true and see what
9626         happens...
9627
9628 2002-04-04  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9629
9630         * MenuBackend.C (expand): use Floating::listName
9631
9632         * FloatList.C (FloatList): add listName argument to the built-in
9633         floats
9634
9635         * Floating.[Ch]: add listName member, which is the 'List of XXX'
9636         text associated with the float.
9637
9638 2002-04-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9639
9640         * MenuBackend.C (expand): change label "Wide xxx" to "xxx (wide)".
9641
9642 2002-04-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9643
9644         * ShareContainer.h: add a couple of missing typenames.
9645
9646 2002-04-02  Angus Leeming  <a.leeming@ic.ac.uk>
9647
9648         * lyxrc.C (getDescription): use _() correctly rather than N_().
9649
9650 2002-03-28  Herbert Voss  <voss@lyx.org>
9651
9652         * lyxlength.C: compatibility stuff for < 1.1.6fix4 and
9653         "old" 1.2.0 files which use c%, l%, p% t% instead of text%, ...
9654
9655 2002-04-02  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9656
9657         * lyx_main.C (init): use environment variable LYX_DIR_12x instead
9658         of LYX_DIR_11x. Same for LYX_USERDIR_12x.
9659
9660 2002-03-29  Juergen Vigna  <jug@sad.it>
9661
9662         * lyxfunc.C (dispatch): add a missing fitCursor call.
9663
9664         * BufferView2.C (fitLockedInsetCursor): the inset needs to know if
9665         it was scrolled by a cursor move, so return the bool status.
9666
9667         * BufferView.C (fitCursor): return the bool flag also to the outside
9668         world as this is needed.
9669
9670         * screen.C (toggleToggle): don't subtract the offset if it's positive.
9671
9672         * BufferView_pimpl.C (workAreaButtonPress): just lock the inset don't
9673         call the edit() as it is not needed (and wrong) IMO.
9674         (workAreaButtonPress): set the screen_first variable before evt.
9675         unlock the inset as this may change screen_first and then we have
9676         a wrong y position for the click!
9677
9678 2002-03-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9679
9680         * MenuBackend.C (expand): another translation that I missed
9681
9682 2002-03-28  Juergen Vigna  <jug@sad.it>
9683
9684         * screen.C (toggleToggle): fix for insettexts y_offset on drawing.
9685
9686         * tabular.C (OldFormatRead): fix ert compatibility read inside cells.
9687
9688 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9689
9690         * lyxfunc.C (getStatus): return 'disabled' early for LFUN_NOACTION
9691
9692         * MenuBackend.C (expand): fix export/view/update when there is no
9693         document open.
9694
9695 2002-03-27  Herbert Voss  <voss@lyx.org>
9696
9697         * lengthcommon.C: change c%, l%, p% t% to col%, line%, page%
9698         and text%
9699
9700 2002-03-27  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9701
9702         * bufferview_funcs.C (currentState): only show paragraph number
9703         for is DEVEL_VERSION is set.
9704
9705         * lyxfunc.C (dispatch): put warning in INFO channel
9706
9707         * MenuBackend.C (expand): translate the name of floats
9708
9709         * FloatList.C (FloatList): mark the float names for translation
9710
9711         * converter.C (convert): use LibScriptSearch
9712
9713 2002-03-26  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9714
9715         * MenuBackend.C (defaults): fix default menu (we might as well get
9716         rid of it...)
9717
9718 2002-03-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9719
9720         * lyxvc.C (registrer): register the file with CVS if it's in a CVS
9721         directory.
9722
9723 2002-03-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9724
9725         * lyxvc.C: reorder includes.
9726
9727 2002-03-25  John Levon  <moz@compsoc.man.ac.uk>
9728
9729         * BufferView_pimpl.C (updateScrollbar): update on buffer switch
9730           properly
9731
9732 2002-03-19  John Levon  <moz@compsoc.man.ac.uk>
9733
9734         * CutAndPaste.C: change layouts earlier on paste
9735           to avoid crashing when calling getFont()
9736
9737 2002-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
9738
9739         * PrinterParams.h: #include "lyxrc.h" and remove that bloody
9740         irritating #error.
9741
9742 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9743
9744         * WorkArea.C: remove 'Pending' debug message.
9745
9746         * most files: ws cleanup
9747
9748         * buffer.[Ch]: ws changes
9749
9750         * Makefile.am (LYX_CONV_LIBS): remove ld -r stuff.
9751
9752 2002-03-21  Juergen Vigna  <jug@sad.it>
9753
9754         * tabular.C (SetMultiColumn): collapse also the contents of the
9755         cells and set the last border right. Added a Buffer const * param.
9756
9757 2002-03-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9758
9759         * Makefile.am (LYX_CONV_LIBS): select libs depending on partial
9760         linking or not.
9761
9762 2002-03-19  Juergen Vigna  <jug@sad.it>
9763
9764         * text2.C (clearSelection): reset also xsel_cache.
9765
9766         * BufferView_pimpl.C (Dispatch): call WorkArea::haveSelection(false)
9767         where it needs to be called (John tells us to do so too :)
9768         (selectionLost): reset sel_cache.
9769
9770         * WorkArea.C (event_cb): leave ret to 0 (John tells us to do so :)
9771
9772 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9773
9774         * text2.C (setCursorIntern): put debuging code in INSETS channel
9775
9776 2002-03-19  André Pönitz <poenitz@gmx.net>
9777
9778         * lyxfunc.C: tiny whitespace change
9779
9780 2002-03-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9781
9782         * ToolbarDefaults.C (init):
9783         * LyXAction.C (init):
9784         * commandtags.h:
9785         * BufferView_pimpl.C (Dispatch):
9786         * lyxfunc.C (dispatch): remove LFUN_DEPTH
9787
9788 2002-03-19  Allan Rae  <rae@lyx.org>
9789
9790         * exporter.C (Export): removeAutoInsets before doing anything else.
9791         While I've just introduced a dependency on BufferView this really is
9792         the best place to clean the buffer otherwise you need to cleanup in
9793         a dozen places before calling export or cleanup in a dozen functions
9794         that export calls.
9795
9796         * converter.C (runLaTeX):
9797         (scanLog): Better handling of removeAutoInsets and screen updates.
9798
9799         * lyxfunc.C (dispatch): small whitespace changes
9800
9801 2002-03-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9802
9803         * WorkArea.C (C_WorkAreaEvent): return a value.
9804         (event_cb): return 1 if we handled the event, 0 otherwise.
9805
9806         * lyx_gui.C (LyX_XErrHandler): don't abort on BadWindow
9807
9808 2002-03-18  Juergen Vigna  <jug@sad.it>
9809
9810         * tabular.C (LeftAlreadyDrawed): fixed for multicolumn borders.
9811         (GetAdditionalWidth): ditto.
9812         (RightLine): ditto.
9813         (LeftLine): ditto.
9814
9815         * BufferView2.C (copy): use getLyXText() so that we do it inside an
9816         inset if we're there actually (probably not used right now but this
9817         is the direction to go for unifying code).
9818         (paste): disable code to clear the selection.
9819
9820         * BufferView_pimpl.C (workAreaButtonPress): check also for a selection
9821         inside an InsetText and move the check further up as it is in the
9822         wrong place.
9823
9824         * text2.C (pasteSelection): set a selection over the pasted text.
9825
9826 2002-03-14  Kayvan A. Sylvan  <kayvan@sylvan.com>
9827
9828         * Makefile.am (lyx_DEPENDENCIES): Swap the order of libfrontend
9829         and libgraphics to build on Cygwin.
9830
9831 2002-03-15  Juergen Vigna  <jug@sad.it>
9832
9833         * CutAndPaste.C (SwitchLayoutsBetweenClasses): fix the wrong use of
9834         inserting an Inset into the paragraph. I know this is not the best
9835         fix but we already use current_view in CutAndPaste so we will remove
9836         all of it's using at the same time.
9837
9838         * buffer.C (sgmlError): deactivated function till it is rewritten in
9839         the right mode, now it can create problems.
9840
9841         * paragraph.C (isLineSeparator): check if getInset returns != 0,
9842         before accessing it.
9843
9844 2002-03-14  Juergen Vigna  <jug@sad.it>
9845
9846         * undo_funcs.C (textHandleUndo): do the right thing when updating
9847         the inset after the undo/redo.
9848
9849         * text2.C (setCursor): just some testcode for #44 not ready yet.
9850
9851         * undo_funcs.C (textHandleUndo): set the next() and previous()
9852         pointers of the paragraph to 0 before deleting otherwise we have
9853         problems with the Paragraph::[destructor].
9854
9855         * text.C (breakParagraph): IMO we should ALWAYS force a real undo
9856         on a paragraph insertion.
9857
9858 2002-03-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9859
9860         * buffer.C (asciiParagraph): use += operator for char append to
9861         string.
9862
9863         * paragraph.C (getFontSettings): compare >= not just >
9864         (highestFontInRange): ditto
9865         (setFont): ditto
9866
9867 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9868
9869         * paragraph.C: change several algorithm to be more appripriate for
9870         the problem domain. This is lookip in FontList and in the InsetList.
9871
9872 2002-03-13  André Pönitz <poenitz@gmx.net>
9873
9874         * commandtags.h:
9875         * LyXAction.C: remove unused LFUN_MATH_MACROARG
9876
9877 2002-03-06  John Levon  <moz@compsoc.man.ac.uk>
9878
9879         * commandtags.h:
9880         * LyXAction.C:
9881         * lyxfunc.C:
9882         * BufferView_pimpl.C: remove unused LFUN_CORE, LFUN_TEXT_INSET
9883
9884 2002-03-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9885
9886         * Painter.C (display): anon helper function, adjust code for this
9887         change.
9888         (pixmap): remove function.
9889
9890         * Painter.h: remove private display variable.
9891
9892         * PainterBase.[Ch]: remove dummy[123] cruft, ws changes
9893
9894 2002-03-13  Angus Leeming  <a.leeming@ic.ac.uk>
9895
9896         * WorkArea.[Ch]: remove figinset_canvas cruft.
9897
9898 2002-03-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9899
9900         * lyxtextclass.C (operator): add one item cache optimization.
9901
9902         * bufferlist.h: doxy changes
9903
9904         * bufferlist.C: ws changes
9905
9906         * DepTable.[Ch] (ext_exist): place const in the right spot.
9907
9908         * BufferView_pimpl.C (resizeCurrentBuffer): further refine when to
9909         call resizeInsets.
9910         (workAreaExpose): call resizeInsets when the with BufferView changes.
9911         (Dispatch): adjust for protectedBlank removal
9912         (specialChar): call updateInset if the insert went ok.
9913
9914         * BufferView_pimpl.[Ch] (protectedBlank): remove func, use
9915         specialChar instead.
9916
9917         * BufferView2.C (ChangeInsets): remove warning add FIXME comment
9918
9919         * BufferView.h: doxy change
9920
9921         * Makefile.am (INCLUDES): remove @FRONTEND_INCLUDES@
9922
9923         * lyxtextclass.C (operator[]): remove non-const version
9924         (defaultLayout): remove non-const version
9925
9926 2002-03-12  Juergen Vigna  <jug@sad.it>
9927
9928         * BufferView_pimpl.C (resizeCurrentBuffer): only resize insets if we
9929         did resize the LyXText too.
9930
9931         * buffer.C (readLyXformat2): set layout information on newly allocated
9932         paragraphs.
9933
9934         * tabular.C (OldFormatRead): set layout information on the paragraph.
9935
9936 2002-03-12  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
9937
9938         * buffer.C (simpleDocBookOnePar): fix empty definition case for now.
9939
9940 2002-03-11  Juergen Vigna  <jug@sad.it>
9941
9942         * BufferView_pimpl.C (cursorPrevious): remove old cruft which is
9943         plainly wrong.
9944         (resizeCurrentBuffer): force also the insets to resize themselfes.
9945         (moveCursorUpdate): fixed up for InsetText.
9946
9947 2002-03-08  Angus Leeming  <a.leeming@ic.ac.uk>
9948
9949         * commandtags.h:
9950         * LyXAction.C: add LFUN_TOOLTIPS_TOGGLE, "toggle-tooltips"
9951         * lyxfunc.C (getStatus(LFUN_TOOLTIPS_TOGGLE)): set flag based on
9952         value of Dialogs::tooltipsEnabled().
9953         (dispatch(LFUN_TOOLTIPS_TOGGLE)): emit signal Dialogs::toggleTooltips.
9954
9955 2002-03-08  Juergen Vigna  <jug@sad.it>
9956
9957         * BufferView_pimpl.C (updateInset): update inset inside inset also
9958         if it isn't inside theLockingInset().
9959
9960 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9961
9962         * buffer.C (asciiParagraph): redo some of the word and line length
9963         handling.
9964         (getLists): look for Caption instead of caption.
9965
9966 2002-03-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9967
9968         * buffer.C (Buffer): initialize niceFile to true
9969         (makeLaTeXFile):
9970         (makeLinuxDocFile):
9971         (makeDocBookFile): make sure niceFile is true on exit
9972
9973 2002-03-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
9974
9975         * buffer.C (makeLaTeXFile): escape ~ in \input@path
9976
9977 2002-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
9978
9979         * LyXSendto.C: remove.
9980         * LyXView.C (c-tor): clean-up Jürgen's #if 0 correctly.
9981         * lyx_gui.C: remove now-redundant comment.
9982         * ColorHandler.h: remove forward declaration of class WorkArea.
9983         * lyxfunc.C: remove #include "WorkArea.h".
9984
9985 2002-03-07  Juergen Vigna  <jug@sad.it>
9986
9987         * undo_funcs.C (textHandleUndo): fix problems when the paragraph
9988         got moved away with the DEPM and also set the inset_owner always
9989         right which before could have been omitted.
9990
9991 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
9992
9993         * buffer.C (parseSingleLyXformat2Token): use default layout is the
9994         wanted layout is not found.
9995
9996 2002-03-07  Juergen Vigna  <jug@sad.it>
9997
9998         * CutAndPaste.C (cutSelection): another layout settings forgotten.
9999
10000 2002-03-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10001
10002         * paragraph.C (breakParagraph): use default layout not layout of
10003         prev paragraph.
10004         (Paragraph): clear ParagraphParameters.
10005
10006 2002-03-06  Juergen Vigna  <jug@sad.it>
10007
10008         * buffer.C (parseSingleLyXformat2Token): changed "%" to "p%" as
10009         otherwise it would not be a valid lenght. Fixed a special case in
10010         the minipage compatibility read where we end the document with a
10011         minipage.
10012
10013         * text2.C (deleteEmptyParagraphMechanism): check if old_cursor.par()
10014         was set as it could be 0 for InsetTexts first entry.
10015
10016 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10017
10018         * paragraph.C (writeFile): if layout is empty write out
10019         defaultLayoutName().
10020
10021         * buffer.C (parseSingleLyXformat2Token): if we have a buggy .lyx
10022         file without named layout we set layout to defaultLayoutName().
10023
10024 2002-03-06  Juergen Vigna  <jug@sad.it>
10025
10026         * CutAndPaste.C (copySelection): set layout for new paragraph.
10027
10028         * text.C (prepareToPrint): leave ERT inset left aligned
10029         (leftMargin): don't indent paragraphs inside ERT insets
10030
10031 2002-03-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10032
10033         * paragraph.C (breakParagraph): dont call clear do the work manually
10034
10035         * paragraph.[Ch] (clear): remove function
10036
10037 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10038
10039         * paragraph.C (Paragraph): dont call clear, the work has already
10040         been done.
10041
10042         * lyxtextclass.C (operator): assert if n is empty
10043
10044         * CutAndPaste.C (cutSelection): dont call Paragraph::clear, do the
10045         work manually instead.
10046
10047 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
10048
10049         * BufferView_pimpl.C: protect selectionLost against text == 0
10050
10051 2002-03-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10052
10053         * text.C (breakParagraph): fix a setting layout to '0' problem.
10054
10055 2002-03-05  José Abílio Oliveira Matos  <jamatos@novalis.fc.up.pt>
10056
10057         * buffer.C (makeLinuxDocFile, makeDocBookFile): take in account the
10058         final location of file, for the included files, and graphics.
10059
10060 2002-03-05  Juergen Vigna  <jug@sad.it>
10061
10062         * CutAndPaste.C (pasteSelection): fix the depth level on paste.
10063
10064 2002-03-04  Juergen Vigna  <jug@sad.it>
10065
10066         * lyx_cb.C (getContentsOfAsciiFile): new helper function.
10067
10068         * tabular.C (calculate_width_of_column_NMC): fixed to use also the
10069         last column of multicolumn cells.
10070         (SetWidthOfMulticolCell): recalculate NMC and real columns.
10071
10072 2002-03-04  Jose Abilio Oliveira Matos  <jamatos@novalis.fc.up.pt>
10073
10074         * exporter.C (Export): for linuxdoc and docbook the buffer is a nice
10075         file if it doesn't go to a temporary file.
10076
10077         * buffer.C (sgmlOpenTag):
10078         (sgmlCloseTag):  remove extra newline insertion.
10079
10080 2002-03-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10081
10082         * text.C (getRowNearY): comment out debug msg
10083
10084 2002-03-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10085
10086         * text2.C: first -> first_y
10087
10088         * text.C (getRowNearY): add some attemts at a possible
10089         optimization, not working.
10090
10091         * tabular.[Ch]: add BufferParams to several function so that newly
10092         created paragraph can be initialized to he default layotu for the
10093         buffers textclass.
10094
10095         * tabular-old.C (ReadOld): add buf->params to call of Init
10096
10097         * screen.C: rename text->first to text->first_y
10098
10099         * paragraph.C (breakParagraph): always set layout in the broken
10100         paragraph
10101
10102         * lyxtextclass.C (Read): remove lowercase
10103         (hasLayout): ditto
10104         (operator): ditto
10105         (delete_layout): ditto
10106
10107         * lyxtext.h: rename first -> first_y
10108
10109         * lyxlayout.C (Read): remove lowercase
10110         (name): ditto
10111         (setName): ditto
10112         (obsoleted_by): ditto
10113
10114         * bufferlist.C (newFile): set layout on first paragrpah of new buffers.
10115
10116         * buffer.C (insertErtContents): add params are to InsetERT
10117         (parseSingleLyXformat2Token): add code to check if a paragraphs
10118         layout really exist.
10119         (parseSingleLyXformat2Token): add params to several inset
10120         constructors
10121         (asciiParagraph): remove lowercase, do the layout comparisons with
10122         no_case
10123
10124         * BufferView_pimpl.C (cursorNext): first -> first_y
10125         (resizeCurrentBuffer): first -> first_y
10126         (updateScrollbar): first -> first_y
10127         (scrollCB): first -> first_y
10128         (workAreaMotionNotify): first -> first_y
10129         (workAreaButtonPress): first -> first_y
10130         (checkInsetHit): first -> first_y
10131         (cursorPrevious): first -> first_y
10132         (cursorNext): first -> first_y
10133         (Dispatch): add buffer_->params to severl inset contructors
10134
10135 2002-03-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10136
10137         * lyxlayout.C (Read): remove some debug info that I forgot.
10138
10139         * buffer.C (makeLaTeXFile): fix calling of LaTeXFeatures, and
10140         clean up the code slightly.
10141         (makeLinuxDocFile): ditto
10142         (makeDocBookFile): ditto
10143
10144         * text2.C: layout as string
10145
10146         * text.C: layout as string
10147
10148         * paragraph_pimpl.C: layout as string
10149
10150         * paragraph.[Ch]: layout as string
10151
10152         * lyxtextclasslist.[Ch]: layout as string
10153
10154         * lyxtextclass.[Ch]: layout as string
10155
10156         * lyxtext.h: layout as string
10157
10158         * lyxlayout.[Ch]: layout as string
10159
10160         * lyx_cb.C: layout as string
10161
10162         * bufferview_funcs.C: layout as string
10163
10164         * bufferparams.C: layout as string
10165
10166         * buffer.C: layout as string
10167
10168         * LyXView.[Ch]: layout as string
10169
10170         * LaTeXFeatures.[Ch]: layout as string
10171
10172         * CutAndPaste.C (SwitchLayoutsBetweenClasses): layout as string
10173
10174         * BufferView_pimpl.C: change current_layout to string, remove
10175         lyx::layout_type.
10176         (Dispatch):
10177         (smartQuote):
10178         (insertInset):
10179         (workAreaButtonRelease): layout as string
10180
10181         * BufferView2.C (unlockInset): adjust
10182
10183         * vspace.C (asLatexCommand): use an explict temp variable.
10184
10185 2002-03-01  John Levon  <moz@compsoc.man.ac.uk>
10186
10187         * Makefile.am: use FRONTEND_*
10188
10189 2002-03-01  Juergen Vigna  <jug@sad.it>
10190
10191         * tabular.C (SetWidthOfMulticolCell): changed to something better
10192         I hope but still work in progress.
10193         (recalculateMulticolumnsOfColumn): renamed function from
10194         recalculateMulticolCells as it is more appropriate now.
10195         (SetWidthOfCell): calculate multicols better.
10196
10197 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10198
10199         * minibuffer.C (MiniBuffer): reset timout to 6000, as it was before.
10200
10201         * lyxfunc.C (processKeySym): print sequence also if it is
10202         `deleted' (complete)
10203
10204         * kbsequence.C (print): print sequence even if it is deleted
10205         (complete would be a better word, actually).
10206
10207         * lyxfunc.C (dispatch): print complete options after a prefix key
10208
10209         * vspace.C (asLatexCommand): rewrite in a slightly different form.
10210
10211 2002-03-01  Martin Vermeer  <martin.vermeer@hut.fi>
10212
10213         * text2.C (setCharFont): eliminate setCharFont code duplication.
10214
10215 2002-03-01  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10216
10217         * BufferView_pimpl.C (Dispatch): remove bogus handling of
10218         LFUN_TABULAR_FEATURE (bug #177)
10219
10220 2002-02-29 ;-)  Angus Leeming  <a.leeming@ic.ac.uk>
10221
10222         * Makefile.am: remove figure.h
10223
10224 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
10225
10226         * Bufferview_pimpl.C:
10227         * CutAndPasteC:
10228         * LaTeX.C:
10229         * LyXSendto.C:
10230         * buffer.C:
10231         * bufferlist.C:
10232         * converter.C:
10233         * language.C:
10234         * lyxfunc.C:
10235         * lyxvc.C:
10236         * paragraph.C:
10237         * text.C:
10238         * text2.C: remove #include "lyx_gui_misc.h".
10239
10240         * LaTeX.C: added #include <cstdio>
10241
10242 2002-02-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10243
10244         * paragraph.C (getMaxDepthAfter): new method. The maximal depth
10245         that the paragraph following this one can have.
10246
10247         * text2.C (incDepth): use Paragraph::getMaxDepthAfter
10248
10249         * vspace.C (asLatexCommand): fix bogus gcc warning
10250
10251         * Makefile.am (lyx_SOURCES): remove vms_defines.h
10252
10253 2002-02-27  Martin Vermeer  <martin.vermeer@hut.fi>
10254
10255         * text2.C (setLayout): get rid of redundant code
10256
10257 2002-02-26  Martin Vermeer  <martin.vermeer@hut.fi>
10258
10259         * text2.C (incDepth): make sure depth cannot be increased beyond
10260         reasonable values.
10261
10262 2002-02-20  Angus Leeming  <a.leeming@ic.ac.uk>
10263
10264         * lyxfunc.C (dispatch): act on LFUN_FORKS_SHOW and LFUN_FORKS_KILL.
10265         also call grfx::GCache::changeDisplay if the graphicsbg color changes.
10266
10267         * PainterBase.h (image):
10268         * Painter.[Ch] (image): now accepts a grfx::GImage const & rather than
10269         a LyXImage const *.
10270
10271 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
10272
10273         * BufferView.C:
10274         * BufferView.h:
10275         * BufferView_pimpl.C:
10276         * BufferView_pimpl.h:
10277         * LaTeXFeatures.C:
10278         * LyXAction.C:
10279         * LyXView.C:
10280         * Makefile.am:
10281         * UpdateList.h:
10282         * UpdateList.C:
10283         * buffer.C:
10284         * figure.h:
10285         * figureForm.C:
10286         * figureForm.h:
10287         * figure_form.C:
10288         * figure_form.h:
10289         * lyx_cb.C:
10290         * lyx_gui.C:
10291         * lyx_gui_misc.C:
10292         * lyxfunc.C:
10293         * sp_base.h:
10294         * sp_ispell.h:
10295         * sp_pspell.h:
10296         * sp_spell.C: remove fig inset, and the crap house of
10297           cards that follows it
10298
10299 2002-02-26  John Levon  <moz@compsoc.man.ac.uk>
10300
10301         * Makefile.am:
10302         * lyxserver.C:
10303         * os2_defines.h:
10304         * os2_errortable.h:
10305         * nt_defines.h: move .h into support/
10306
10307         * vms_defines.h: remove
10308
10309         * WorkArea.C: add space in debug output
10310
10311         * text2.C:
10312         * paragraph.C:
10313         * buffer.C: add WITH_WARNINGS
10314
10315         * vc-backend.h:
10316         * vc-backend.C:
10317         * bufferlist.C: s/retrive/retrieve/, add docs
10318
10319         * vspace.h:
10320         * vspace.C:
10321         * kbmap.h:
10322         * lyxlength.h:
10323         * lyxgluelength.h:
10324         * length_common.h:
10325         * chset.h:
10326         * chset.C: add docs
10327
10328         * lyxgui.C: add ID to X error handler
10329
10330         * lyxtestclass.c: fix typo
10331
10332 2002-02-26  Juergen Vigna  <jug@sad.it>
10333
10334         * tabular_funcs.C (write_attribute): changed so that some default
10335         attributes are not written at all.
10336         (getTokenValue): set default values before trying to read the
10337         value so we have the return value always set as default if we don't
10338         find the token we search for.
10339
10340         * tabular.C (Write): write bools as bools not as strings!
10341
10342 2002-02-22  Juergen Vigna  <jug@sad.it>
10343
10344         * BufferView_pimpl.C (workAreaButtonPress): call edit() before calling
10345         insetButtonPress for HIGHLY_EDITABLE_INSETS seems saner (fix #250).
10346
10347         * text.C (leftMargin): don't add an indent for paragraphs inside
10348         tabular cells (fix #208).
10349
10350 2002-02-21  José Matos  <jamatos@fep.up.pt>
10351
10352         * tabular.C (docBook): fixed support for long tables.
10353
10354 2002-02-20  Juergen Vigna  <jug@sad.it>
10355
10356         * text2.C (getFont): get the drawing font of the Inset if this
10357         paragraph is inside an inset (only important for InsetERT for now).
10358
10359         * buffer.C (insertErtContents): use new lanugage params in ERT
10360         constructor.
10361
10362         * CutAndPaste.C: commenting out seemingly uneeded code.
10363
10364 2002-02-19  Allan Rae  <rae@lyx.org>
10365
10366         * BufferView2.C (removeAutoInsets): fix remaining freed memory read.
10367         Iterators might be simple to use but they also get invalidated.
10368         (removeAutoInsets): renamed saved cursor tracking variables and added
10369         some comments to clarify what everything does.
10370
10371 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
10372
10373         * Chktex.C:
10374         * LaTeX.C:
10375         * LyXSendto.C:
10376         * converter.C:
10377         * lyx_cb.C:
10378         * vc-backend.C: Changes due to the renaming of support/syscall.[Ch] as
10379         support/systemcall.[Ch] and of class Systemcalls as class SystemCall.
10380
10381         * lyxfunc.C:
10382         * vc-backend.h: remove #include "support/syscall.h"
10383
10384         * LaTeX.C:
10385         * LyXSendto.C:
10386         * converter.C: rearrange #includes in Lars' approved fashion.
10387
10388         * LyXView.[Ch]: make autosave_timeout a pointer to Timeout. Can thus
10389         forward declare class Timeout in the header file.
10390
10391         * XFormsView.C: changes due to the above.
10392
10393         * minibuffer.[Ch]: make timer and stored_timer pointers to Timeout,
10394         similar to LyXView.
10395
10396         * commandtags.h: add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to the enum.
10397         * LyXAction.C (init): add LFUN_FORKS_SHOW and LFUN_FORKS_KILL to items[]
10398
10399 2002-02-18  José Matos  <jamatos@fep.up.pt>
10400
10401         * buffer.C (simpleDocBookOnePar): if paragraph style is CDATA escapes
10402         insets contents.
10403
10404 2002-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
10405
10406         * a lot of small ws changes
10407         * add a lot of using std::XXX
10408         * use std construcs some places where approp.
10409         * use some exisint stuff from lyxfunctional where approp.
10410         * Make file changes to use partial linking (lets test this now...)
10411
10412 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
10413
10414         * Chktex.C:
10415         * buffer.C:
10416         remove #include "support/syscontr.h" as it's redundant. Always has been.
10417
10418         * Chktex.C:
10419         * LaTeX.C:
10420         * LyXSendto.C:
10421         * converter.C:
10422         * lyx_cb.C:
10423         * vc-backend.C:
10424         change Systemcalls::System to Systemcalls::Wait and
10425         change Systemcalls::SystemDontWait to Systemcalls::DontWait.
10426         No change of functionality, just reflects the stripped down Systemcalls
10427         class.
10428
10429 2002-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
10430
10431         * debug.[Ch]: add a GRAPHICS type to the enum.
10432
10433 2002-02-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10434
10435         * text.C (nextBreakPoint): use Paragraph::isLineSeparator
10436
10437         * paragraph.C (isLineSeparator): call Inset::isLineSeparator if
10438         there is an inset.
10439
10440 2002-02-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10441
10442         * lyxfunc.C (getStatus): change the rules for LFUN_INSET_TOGGLE to
10443         match the changes below.
10444
10445         * text2.C (toggleInset): if there is not editable inset at cursor
10446         position, try to see if cursor is _inside_ a collapsable inset
10447         and close it.
10448
10449 2002-02-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10450
10451         * lyxfunc.C (getStatus): handle LFUN_SWITCHBUFFER so that the
10452         document menu has a nice checkbox
10453
10454 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10455
10456         * lyxlength.C (asLatexString): change PW to output as percent of
10457         \textwidth.
10458
10459         * lengthcommon.C: change '%' to 't%'
10460
10461         * lyxfunc.C (dispatch): a few comments from Martin
10462
10463 2002-02-06  John Levon  <moz@compsoc.man.ac.uk>
10464
10465         * WorkArea.h:
10466         * WorkArea.C:
10467         * BufferView_pimpl.h:
10468         * BufferView_pimpl.C: clear our selection when X tells us we've lost
10469           the X selection.
10470
10471 2002-02-07  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10472
10473         * vspace.C (inPixels): fix compiler warning
10474
10475 2002-02-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10476
10477         * lyxfunc.C (getStatus): fix status message for disabled commands.
10478
10479 2002-02-01  John Levon  <moz@compsoc.man.ac.uk>
10480
10481         * BufferView_pimpl.C: fix crash on close buffer
10482         during selection (#227)
10483
10484 2002-01-27  Herbert Voss  <voss@lyx.org>
10485
10486         * buffer.C: link old Figure to new graphic inset
10487
10488 2002-01-26  Dekel Tsur  <dekelts@tau.ac.il>
10489
10490         * FontLoader.C (getFontinfo): Change the latex font names in order
10491         to match the names of type1inst.
10492
10493 2002-01-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10494
10495         * WorkArea.C (WorkArea): initialize the scrollbar bounds.
10496
10497         * DepTable.C (sumchange): do not evaluate end() on every iteratrion.
10498         (extchanged): ditto
10499         (ext_exist): ditto
10500         (remove_files_with_extension): ditto
10501         (remove_file): ditto
10502         (write): ditto
10503
10504         * BufferView_pimpl.C (updateScrollbar): do the right thing if the
10505         document is smaller than the work area height. Do not initialize
10506         static variables to 0.
10507
10508 2002-01-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10509
10510         * lyx_gui.C (init): give the toolbar tooltips a normal font.
10511
10512         * lyxfunc.C (getStatus): handle LFUN_LAYOUT like
10513         LFUN_LAYOUT_PARAGRAPHS.
10514
10515         * tabular.C (GetCellFromInset): new method. Finds an inset in a
10516         tabular. It is possible to provide a possible cell, which will
10517         typically be the actcell from the corresponding insettabular
10518
10519         * lyxfunc.C (getStatus): small cleanup; disable
10520         LFUN_LAYOUT_PARAGRAPHS in insets where forceDefaultParagraphs is
10521         true
10522
10523 2002-01-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10524
10525         * tabular.C (Validate): remove broken optimization (fixes bug #201)
10526
10527         * paragraph.C (startTeXParParams):
10528         (endTeXParParams): new methods. The LaTeX code to
10529         start/end paragraph formatting
10530         (simpleTeXOnePar): call startTeXParParams also when paragraph is
10531         empty (fixes bug #200)
10532
10533         * vspace.C (inPixels): adapt to the change below
10534         (inPixels): [later] more cleanups (remove unused variables)
10535
10536         * lyxlength.C (inPixels): change to use a width and a height as
10537         parameter.
10538
10539 2002-01-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10540
10541         * lyxlength.C (asLatexString): \pagewidth is not a LaTeX macro.
10542         Replaced with \paperwidth
10543
10544         * DepTable.C (insert): add std:: qualifier
10545
10546 2002-01-18  Allan Rae  <rae@lyx.org>
10547
10548         * text2.C (removeRow): add comment.  Should other refresh_?? vars be
10549         updated also?
10550
10551         * text.C (drawInset): Turned out I didn't know enough about how
10552         rebreaking worked.  This fixes most of the redraw problems.  I see
10553         an occasional cursor trail when a line is broken now and the cursor
10554         placement can seem out by a few pixels also after a rebreak.
10555
10556 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10557
10558         * buffer.C (parseSingleLyXformat2Token): update because minipage
10559         width is now a LyXLength
10560
10561         * lyxlength.C (inPixels): new method, extracted from VSpace::inPixels
10562
10563         * BufferView_pimpl.C (smartQuote): fix insertion of quote inset in
10564         math insets
10565
10566 2002-01-17  Juergen Vigna  <jug@sad.it>
10567
10568         * lyxfunc.C (dispatch): fixed PARAGRAPH_GOTO
10569
10570         * BufferView2.C (lockInset): call edit() so that theLockingInset()
10571         is set correctly and the inset is updated correctly.
10572
10573 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10574
10575         * CutAndPaste.C (pasteSelection): move the setInsetOwner call at
10576         the beginning of the loop.
10577
10578 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
10579
10580         * lyxrc.C: improve help for use_scalable_fonts
10581
10582 2002-01-17  Allan Rae  <rae@lyx.org>
10583
10584         * lyx_cb.C (ShowMessage): make sure we have a user and an owner.
10585
10586 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10587
10588         * CutAndPaste.C (pasteSelection): when pasting multiple paragraph,
10589         make sure to set their inset_owner to the right value (bug #171)
10590
10591 2001-12-12  Ben Stanley  <bds02@uow.edu.au>
10592
10593         * DepTable.h
10594         * DepTable.C: Implement mtime checking to reduce time spent doing
10595         CRCs.
10596
10597 2002-01-16  Juergen Vigna  <jug@sad.it>
10598
10599         * tabular.C (GetAdditionalHeight): one of error fixed.
10600
10601         * lyxrc.C (output): small fix in writing use_pspell.
10602
10603 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
10604
10605         * sp_base.h: #include LString.h
10606
10607 2002-01-16  Allan Rae  <rae@lyx.org>
10608
10609         * text2.C (removeRow): refresh_row needs a valid row.  Or does it?
10610         Can someone check this please?
10611
10612         * text.C (drawInset): It was possible that p.row would be removed by
10613         breakAgainOneRow upsetting a few other settings.  There may be another
10614         small tweak possible by setting need_break_row = 0 when p.row has been
10615         removed but I don't know enough about the logic here.
10616
10617 2002-01-15  Allan Rae  <rae@lyx.org>
10618
10619         * text.C (insertChar): removed conditional truism.
10620
10621         * BufferView2.C (removeAutoInsets): More tweaks.
10622         cur_par_prev could be a stray pointer.  Check for trailing empty line
10623         in case last line was cur_par and only had an error inset on it.
10624
10625 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10626
10627         * lyx_cb.C (MenuWrite): buffer->fileName is guaranteed to be
10628         absolute
10629
10630         * vc-backend.C (most methods):
10631         * exporter.C (Export):
10632         * converter.C (convert):
10633         (runLaTeX):
10634         * LyXSendto.C (SendtoApplyCB):
10635         * lyxfunc.C (dispatch):
10636         (menuNew):
10637         (open):
10638         (doImport):
10639         * lyx_cb.C (AutoSave):
10640         (InsertAsciiFile):
10641         * BufferView_pimpl.C (MenuInsertLyXFile):
10642         * buffer.C (runChktex): use Buffer::filePath().
10643
10644         * buffer.h: rename filename to filename_; rename filepath to
10645         filepath_ and make it private
10646         (filePath): new method
10647
10648         * buffer.C (writeFile): use fileName()
10649         (getLatexName):
10650
10651         * lyx_main.C (init): fix starting  of LyX when the binary is a
10652         link from so,ewhere else.
10653
10654         * minibuffer.C: include <cctype> for isprint
10655
10656 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
10657
10658         * buffer.C (parseSingleLyXformat2Token): changes associated with the
10659         change of InsetMinipage::width to InsetMinipage::pageWidth to avoid the
10660         name clash with InsetCollapsable's width function.
10661
10662 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10663
10664         * lastfiles.C: include <iterator>
10665
10666 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
10667
10668         * BufferView2.C (ChangeRefsIfUnique): use lyx::count rather than
10669         std::count.
10670
10671         * buffer.C (makeLaTeXFile): ditto.
10672         Also make loop operation more transparent.
10673
10674 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
10675
10676         * ToolbarDefaults.C: remove trailing comma closing namespace.
10677
10678         * WorkArea.h: remove WorkArea:: from declaration of event_cb.
10679
10680         * lyxfunc.[Ch]: clean-up declaration of verboseDispatch functions
10681         as in WorkArea.
10682
10683         * trans.C (Load): comment out unused variable, allowed.
10684
10685 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
10686
10687         * minibuffer.[Ch] (append_char): new method to recieve input from the
10688         drop-down completion browser. If a key was pressed, then recieve this
10689         char and append it to the existing string.
10690         (peek_event): modify the positioning data passed to the completion
10691         browser so that it can be placed above the minibuffer rather than below.
10692 2002-01-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10693
10694         * LyXAction.C (init): alloe error-next for readonly documents.
10695
10696         * BufferView2.C (ChangeRefsIfUnique): use standard version of
10697         count.
10698
10699 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10700
10701         * bufferlist.C (readFile): create the buffer _after_ checking that
10702         the file exists.
10703
10704         * lyxfunc.C (verboseDispatch): fix handling of arguments
10705
10706         * lyxrc.C (setDefaults): do not initialize document_path to $HOME.
10707
10708         * lyxrc.C: use string::erase() instead of initializing to "".
10709
10710
10711 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
10712
10713         * BufferView_pimpl.h:
10714         * BufferView_pimpl.C:
10715         * WorkArea.h:
10716         * WorkArea.C:
10717         * text2.C: tell X when we have made a selection for copying
10718
10719 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10720
10721         * BufferView_pimpl.C (MenuInsertLyXFile):
10722         * lyxfunc.C (menuNew):
10723         (open):
10724         (doImport): add shortcuts to directory buttons
10725
10726         * BufferView_pimpl.C (workAreaButtonRelease): remove dead code (to
10727         open a float)
10728
10729         * lyxfunc.C (setStatusMessage):
10730         (getStatusMessage): new methods
10731         (getStatus):use setStatusMessage instead of setErrorMessage
10732         (dispatch): when function is disabled, set error message here
10733         [instead of in getStatus previously]
10734
10735         * BufferView_pimpl.C (workAreaButtonRelease): update
10736         toolbar/menubar here too.
10737
10738 2002-01-13  Allan Rae  <rae@lyx.org>
10739
10740         * BufferView2.C (removeAutoInsets): finished off earlier fix.
10741         Now seems indestructible.  Remaining task is to audit all other
10742         code affected by deleteEmptyParagraphMechanism.  One small quirk
10743         left is that an empty document with an error in the preamble can
10744         be made to report an error but no error box appears.  I don't know
10745         where it goes.
10746         (removeAutoInsets): Improved comments.
10747
10748 2002-01-13  John Levon  <moz@compsoc.man.ac.uk>
10749
10750         * Thesaurus.h:
10751         * Thesaurus.C: update for Aiksaurus 0.14
10752
10753 2002-01-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10754
10755         * text2.C (firstParagraph): removed member function, all uses
10756         replaces with ownerParagraph
10757         (redoParagraphs): here
10758         (updateInset): here
10759         (toggleAppendix): here
10760         * BufferView2.C (insertErrors): here
10761         (setCursorFromRow): here
10762
10763 2002-01-13  Allan Rae  <rae@lyx.org>
10764
10765         * BufferView2.C (removeAutoInsets): ensure we have a valid cursor if
10766         the old cursor is now invalid due to deleteEmptyParagraphMechanism.
10767         There is still a way to segfault this although you may have to do this
10768         multiple times: Have an InsetERT with an unknown command in it.
10769         View->DVI, move cursor between Error box and InsetERT and hit <Enter>,
10770         <down-arrow>, <Enter> again, View->DVI, BANG!
10771
10772         * text2.C (setCursor):
10773         (deleteEmptyParagraphMechanism):
10774         * lyxtext.h (setCursor):
10775         (deleteEmptyParagraphMechanism): return true if the paragraph was deleted.
10776         Making use of the return value may help fix other bugs.
10777
10778 2002-01-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10779
10780         * lyxfunc.C (dispatch): update toolbar/menubar after dispatching.
10781
10782         * LyXView.C (updateMenubar): call MenuBar::update here
10783         (updateToolbar): but not here
10784         (showState): do not update toolbar/menubar
10785
10786         * LyXAction.[Ch]: move isPseudoAction to the C file, since nobody
10787         should need to care about that.
10788
10789         * lyxfunc.C (verboseDispatch): simplify a bit
10790         (getStatus): have a version which takes a pseudoaction, and
10791         another which requires a (kb_action,string).
10792
10793         * LyXAction.C (retrieveActionArg): make it work also when action
10794         is not a pseudo-action.
10795         (getActionName): simplify a bit
10796         (helpText):
10797
10798 2002-01-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10799
10800         * lyxfunc.C (verboseDispatch): new families of methods with
10801         several ways to specify a command and a bool to indicate whether
10802         the command name and shortcut should be displayed in minibuffer
10803         (eventually, we could extend that to a finer bitmask like
10804         SHORTCUT|CMDNAME|CMDRESULT, or whatever).
10805         (dispatch): the pristine dispatch command which just, well,
10806         dispatchs! Note it still sets its result to minibuffer; I'm not
10807         sure we want that.
10808
10809         * lyxfunc.h: remove setHintMessage
10810
10811         * vc-backend.C: use LFUN_MENURELOAD instead of "buffer-reload"
10812
10813 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10814
10815         * BufferView_pimpl.C (specialChar): delete new inset if we have
10816         not been able to insert it.
10817
10818         * kbmap.C: revert to using int instead of kb_action, since all we
10819         are dealing with is pseudo-actions.
10820
10821         * LyXAction.C (searchActionArg): change to return int instead of
10822         kb_action, since the result is a pseudoaction.
10823
10824 2002-01-12  Dekel Tsur  <dekelts@tau.ac.il>
10825
10826         * buffer.C (insertErtContents): Fix (partially) the font bug.
10827
10828 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
10829
10830         * BufferView2.C (ChangeRefsIfUnique): use the HP version of std::count
10831         as the other one is broken on my machine!
10832
10833 2002-01-10  Martin Vermeer  <martin.vermeer@hut.fi>
10834
10835         * commandtags.h:
10836         * LyXAction.C: two new LFUNS, LFUN_FRAK and LFUN_ITAL.
10837
10838 2002-01-10  Angus Leeming  <a.leeming@ic.ac.uk>
10839
10840         * lyxrc.[Ch]: change names and descriptions of popup font variables to
10841         reflect their actual use. Provide compatibility code for older lyxrc
10842         files.
10843
10844         * lyx_gui.C (init): revoke change of 2002-01-07 of popup font style to
10845         FL_NORMAL_STYLE.
10846         change names of popup font variables in line with the changes to lyxrc.C
10847
10848 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10849
10850         * buffer.C (asciiParagraph): avoid outputing a word twice after
10851         an inset.
10852
10853         * lyxrc.C (getDescription): document that document_path and
10854         template_path can be empty.
10855
10856 2002-01-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10857
10858         * LaTeXFeatures.C (getMacros):
10859         * buffer.C (validate): rename feature "amsstyle" to "amsmath"
10860
10861         * buffer.C (makeLaTeXFile): remove test for "amsstyle" from here.
10862
10863         * LaTeXFeatures.C (useFloat): require "float" here instead of in
10864         getPackages.
10865         (getPackages): rename feature "floats" to "float". Use an array to
10866         iterate over 'simple' features (i.e. just a \usepackage). Add
10867         handling of "amsmath" (renamed from "amsstyle").
10868
10869 2001-12-29  Michael A. Koziarski  <michael@koziarski.org>
10870
10871         * LaTeXFeatures.C (require): Prevent duplicate entries in the
10872         features list.
10873
10874 2002-01-08  Angus Leeming  <a.leeming@ic.ac.uk>
10875
10876         * FuncStatus.C: small compile fix for DEC cxx. Doesn't like
10877         FuncStaus::FuncStatus & FuncStaus::some_method().
10878
10879 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
10880
10881         * FuncStatus.[Ch]: new files. This is a rewrite as a proper class
10882         of the func_satus stuff. Edited and massaged in various ways by
10883         JMarc.
10884
10885         * lyxfunc.C (getStatus): use FuncStatus
10886
10887 2002-01-08  Juergen Vigna  <jug@sad.it>
10888
10889         * text.C (nextBreakPoint): use function Inset::isChar().
10890
10891         * paragraph.C (TeXOnePar): use function
10892         Inset::forceDefaultParagraphs.
10893
10894         * buffer.C (latexParagraphs): use function
10895         Inset::forceDefaultParagraphs.
10896
10897 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
10898
10899         * lyx_gui.C (init): set the style of the menu popups to
10900         FL_BOLD_STYLE, thereby fixing bugzilla bug #32.
10901
10902 2002-01-07  Juergen Vigna  <jug@sad.it>
10903
10904         * text.C (setHeightOfRow): small fix
10905         (prepareToPrint): don't look at alignment if we don't have the place
10906         for doing it.
10907
10908 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
10909
10910         * box.C: New file. Move the Box methods and functions out of box.h,
10911         following Lars' suggestion.
10912
10913 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
10914
10915         * box.h: #include "support/LOstream.h", needed for inlined function.
10916
10917         * lyxtextclass.C:
10918         * lyxtextclasslist.C: added some using std declarations.
10919
10920 2002-01-06  John Levon  <moz@compsoc.man.ac.uk>
10921
10922         * box.h: make signed dimensions to allow insets wider than
10923           the screen (bug #162)
10924
10925         * BufferView_pimpl.C: add some insetHit debug
10926
10927 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
10928
10929         * vc-backend.C: add FIXME
10930
10931 2002-01-03  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
10932
10933         * lyxfunc.C (getStatus): enable code for showing math font status
10934         in toolbar/menu.
10935
10936 2002-01-07  Juergen Vigna  <jug@sad.it>
10937
10938         * text.C (nextBreakPoint): removed debug output not needed anymore.
10939
10940 2002-01-06  Juergen Vigna  <jug@sad.it>
10941
10942         * text.C (nextBreakPoint): fixed up this function we had this bug
10943         since ever but now hopefully we break row better.
10944         (insertChar): we have to check if an inset is the next char as it
10945         could now happen that a large inset is causing a break.
10946
10947 2002-01-05  Juergen Vigna  <jug@sad.it>
10948
10949         * BufferView2.C (showLockedInsetCursor): don't draw the inset cursor
10950         if it doesn't like to be drawed.
10951
10952 2002-01-04  Juergen Vigna  <jug@sad.it>
10953
10954         * BufferView2.C (lockInset): forgot to set a cursor.
10955
10956         * lyxfunc.C (dispatch): add a finishUndo() in LFUN_ESCAPE.
10957
10958 2002-01-03  Martin Vermeer  <martin.vermeer@hut.fi>
10959
10960         * FormMathsPanel.C:
10961         * FormMathsPanel.h
10962         * MathsSymbols.C:
10963         * form_maths_panel.C:
10964         * form_maths_panel.h:
10965         * form_maths_panel.fd: implemented sub- and super- buttons in math
10966         panel.
10967
10968         * lyx_main.C: Revised hardwired bindings to allow original _ and ^
10969         (or ^ space) to be used as in TeX (req'd by André).
10970
10971         * lyxfunc.C: Allow ^ and _ again to be used both as
10972         super/subscript (mathed) and as themselves (in text).
10973
10974 2002-01-03  Allan Rae  <rae@lyx.org>
10975
10976         * LyXView.C (updateWindowTitle): Setup a short icon title of either
10977         "LyX" or the filename of the current buffer if it has one.  This is a
10978         modified form of John Levon's patch.
10979
10980         * XFormsView.C (setWindowTitle): also set icon title.
10981
10982         * LyXView.h (setWindowTitle): signature changed.
10983         * XFormsView.h (setWindowTitle): ditto.
10984
10985 2002-01-02  Juergen Vigna  <jug@sad.it>
10986
10987         * tabular.C (AppendColumn): hopefully fixed this memory access problem.
10988
10989 2001-12-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
10990
10991         * screen.C (topCursorVisible): introduce a temp var for
10992         text->cursor.row(), handle the case where this row is null. (kindo
10993         hachish)
10994
10995         * text2.C (setCursor): add a couple of asserts.
10996
10997         * paragraph.h (inset_iterator): add -> operator
10998
10999         * paragraph.[Ch] (autoDeleteInsets): remove member function
11000
11001         * BufferView2.C (removeAutoInsets): rewrite to handle the old
11002         cursor pos correctly and handle inset deletion by itself.
11003         (insertErrors): move iterator declaration out of for expression
11004
11005         * lyxtextclass.C: add <algorithm>
11006
11007         * Makefile.am: added the new files to sources, removed layout.C
11008
11009         * layout.C: removed file
11010
11011         * layout.h: remove LYX_DUMMY_LAYOUT
11012
11013         * lyxtextclasslist.C (NumberOfLayout): do not special case dummy
11014         layout.
11015
11016         * lyxlayout.[Ch]:
11017         * lyxtextclass.[Ch]:
11018         * lyxtextclasslist.[Ch]: new files
11019
11020         * include order changes to a lot of files, also changes because of
11021         the six new files.
11022
11023 2001-12-27  Juergen Vigna  <jug@sad.it>
11024
11025         * buffer.C (asciiParagraph): more fixes.
11026
11027         * tabular.C (ascii): make ascii export support export of only the
11028         data separated by a column-delimiter.
11029         (ascii): better support for ascii export.
11030
11031         * buffer.C (asciiParagraph): rewrote to hopefully work as expected!
11032
11033 2001-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11034
11035         * tabular_funcs.C: use a "using std::getline" instead of the
11036         previous fix from Angus (necessary for cxx + lyxstring)
11037
11038 2001-12-24  Juergen Vigna  <jug@sad.it>
11039
11040         * BufferView_pimpl.C (tripleClick): fixed for InsetText.
11041
11042         * buffer.C (parseSingleLyXformat2Token): fixed 2 compatibility read
11043         problems. First check a minipage also if we have some ert-contents
11044         (not only on par->size(), second set the right depth of the paragraph
11045         on the relink to the root-paragraph-list!
11046
11047         * undo_funcs.C (textHandleUndo): fixed a stupid earlier wrong fix
11048         which then did not anymore update the main paragraphs on undo/redo!
11049
11050 2001-12-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11051
11052         * lyxfunc.C (getStatus): use func_status::toggle to simplify the
11053         code. Support all font-changing funcs (even those which are not in
11054         menu currently). Support for reporting font settings in
11055         mathed (disabled until Andre provides a function on mathed's side).
11056
11057         * func_status.h (toggle): small helper function to set toggle
11058         state on a flag.
11059
11060 2001-12-21  Angus Leeming  <a.leeming@ic.ac.uk>
11061
11062         * tabular_funcs.C: getline -> std::getline
11063
11064 2001-12-21  Juergen Vigna  <jug@sad.it>
11065
11066         * undo_funcs.C (textHandleUndo): fixed a case where tmppar3 is
11067         accessed and could be 0 (I couldn't generate this but it seems
11068         Michael could!).
11069
11070 2001-12-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11071
11072         * tabular_funcs.C: add LIstream.h, move write_attribute to..
11073         * tabular_funcs.h: here and include iosfwd
11074
11075 2001-12-20  Juergen Vigna  <jug@sad.it>
11076
11077         * undo_funcs.C (textHandleUndo): fixed crash when undo_cursor not
11078         inside inset but undo_par was.
11079
11080 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11081
11082         * Thesaurus.C: always include <config.h> in sources.
11083
11084         * Painter.h:
11085         * lyxlookup.h:
11086         * box.h: do not include <config.h> in header files
11087
11088         * text.C (paintLastRow): remove unused variable
11089
11090         * text.C (transformChar):
11091         (insertChar):
11092         * tabular-old.C (getTokenValue): use IsDigit instead of isdigit.
11093
11094         * Painter.C (text):
11095         * font.C (width): rewrite to use uppercase() instead of
11096         islower/toupper.
11097
11098         * lyxfind.C (IsStringInText): use uppercase instead of toupper.
11099
11100 2001-12-12  John Levon  <moz@compsoc.man.ac.uk>
11101
11102         * lyxfind.C: clean up of find failure position change
11103
11104 2001-12-20  Juergen Vigna  <jug@sad.it>
11105
11106         * Makefile.am (lyx_SOURCES): added tabular_funcs.[hC].
11107
11108         * tabular.C (isValidRow): added to check if we're in a LT-h/f row.
11109         (TeXRow): added to LaTeX a single tabular row.
11110         (TeXLongtableHeaderFooter): added to output LT-h/f data.
11111         (Latex): simplified and finally good LT-h/f support.
11112         (various_functions): just small adaptions for LT-h/f support.
11113
11114         * tabular_funcs.[hC]: added and moved here all not classfunctions
11115         of LyXTabular.
11116
11117 2001-12-19  Juergen Vigna  <jug@sad.it>
11118
11119         * tabular.[Ch]: better support for longtabular options (not finished
11120         yet!)
11121
11122 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11123
11124         * text.C (paintLastRow): use the label font instead of the font of
11125         the last character to compute the size of *_BOX. This makes more
11126         sense and avoids a crash with empty paragraphs.
11127         Use Painter::rectangle to draw EMPTY_BOX.
11128
11129 2001-12-19  Juergen Vigna  <jug@sad.it>
11130
11131         * undo_funcs.C (textHandleUndo): fixed setting of inset_owner of
11132         the paragraphs if the replaced paragraph is not the first one!
11133         Tried to delete not used paragraphs but does not work yet so for
11134         now it's inside #ifdef's and by default off!
11135
11136 2001-12-18  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11137
11138         * MenuBackend.C: include "lyx_main.h" instead of declaring
11139         lastfiles (actually was declared as LastFiles* instead of a
11140         scoped_ptr).
11141
11142 2001-12-17  Juergen Vigna  <jug@sad.it>
11143
11144         * tabular.C (AppendColumn): applied John's fix
11145
11146 2001-12-15  John Levon  <moz@compsoc.man.ac.uk>
11147
11148         * BufferView.h:
11149         * BufferView.C:
11150         * BufferView_pimpl.h:
11151         * BufferView_pimpl.C: cleanup and fix of checkInsetHit().
11152
11153         * Makefile.am:
11154         * box.h: new start of class for above
11155
11156         * lyxfunc.C: ignore space-only minibuffer dispatches.
11157           Show the command name when it doesn't exist
11158
11159         * minibuffer.C: don't add empty lines to the history
11160
11161         * minibuffer.C: add a space on dropdown completion
11162
11163 2001-12-14  John Levon  <moz@compsoc.man.ac.uk>
11164
11165         * text.C: fix line above/below drawing in insets
11166
11167 2001-12-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11168
11169         * lyxlength.C (LyXLength): Initialize private variables.
11170
11171 2001-12-15  Dekel Tsur  <dekelts@tau.ac.il>
11172
11173         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Use buffer language
11174         when inserting error insets.
11175
11176 2001-12-13  Juergen Vigna  <jug@sad.it>
11177
11178         * undo_funcs.C (textRedo/Undo): fixed as the first paragraph was
11179         actually sometimes the before-paragraph.
11180         (setUndo): don't clear the redostack if we're not actually undoing!
11181
11182 2001-12-06  Juergen Vigna  <jug@sad.it>
11183
11184         * undo_funcs.C (textHandleUndo): well after John's hint I got here
11185         and fixed redoing of main paragraph, so we can use it now ;)
11186
11187         * text2.C (redoParagraphs): fixed a crash when having only 1 row!
11188
11189 2001-12-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11190
11191         * undo_funcs.C (textHandleUndo): undo undo leak fix below, as per
11192         Juergen's request
11193
11194 2001-12-13  André Pönitz <poenitz@gmx.net>
11195
11196         * undostack.[Ch]:
11197         * undo_func.C: minor cleanup
11198
11199 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11200
11201         * FontLoader.C (getFontinfo): only use symbol fonts with encoding
11202         -adobe-fontspecific. At least Mandrake and Redhat have a symbol
11203         font in urw-fonts package which is marked as -urw-fontspecific and
11204         does not work (incidentally, changing the encoding in the
11205         fonts.dir of this package to -adobe-fontspecific fixes the
11206         problem).
11207
11208         * undo_funcs.C (textHandleUndo): fix leak in undo, but now there
11209         is a crash when undoing first paragraph (Juergen, please take a
11210         look). THis does not mean the undo fix is wrong, just that it
11211         uncovers problems.
11212
11213         * text2.C (ownerParagraph): let the (int,Paragraph*) version call
11214         the (Paragraph*) version when needed instead of duplicating the
11215         code.
11216
11217         * text.C (workWidth): use Inset::parOwner to find out where the
11218         inset has been inserted. This is a huge performance gain for large
11219         documents with lots of insets. If Inset::parOwner is not set, fall
11220         back on the brute force method
11221
11222         * paragraph_pimpl.C (insertInset):
11223         * paragraph.C (Paragraph):
11224         (cutIntoMinibuffer): set parOwner of insets when
11225         inserting/removing them
11226
11227         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
11228
11229 2001-12-12  Martin Vermeer  <martin.vermeer@hut.fi>
11230
11231         * commandtags.h:
11232         * LyXAction.C:
11233         * lyx_main.C:
11234         * lyxfunc.C:
11235         * mathed/formulabase.C:
11236         * mathed/math_cursor.[Ch]:
11237         make sub/superscript into functions LFUN_SUB/SUPERSCRIPT.
11238
11239
11240 2001-12-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11241
11242         * lyxlength.[Ch] (operator!=): new function
11243
11244 2001-12-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11245
11246         * text.C (workWidth): use Inset::parOwner to find out where the
11247         inset has been inserted. This is a huge performance gain for large
11248         documents with lots of insets. If Inset::parOwner is not set, fall
11249         back on the brute force method
11250
11251         * paragraph_pimpl.C (insertInset):
11252         * paragraph.C (Paragraph):
11253         (cutIntoMinibuffer): set parOwner of insets when
11254         inserting/removing them
11255
11256         * lyxtext.h: add short comment on deleteEmptyParagraphMechanism
11257
11258 2001-12-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11259
11260         * tabular-old.C (getTokenValue):
11261         * tabular.C (getTokenValue):
11262         (write_attribute): new versions for LyXLength
11263         (everywhere): adjust the use of widths
11264
11265         * tabular.h: change the type of widths from string to LyXLength
11266
11267 2001-12-11  Ben Stanley <bds02@uow.edu.au>
11268
11269         * paragraph.C: fixed missing line number count when exporting
11270         Environments to LaTeX file
11271
11272         * buffer.C: added informational message for checking line numbers.
11273
11274 2001-12-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11275
11276         * text2.C (deleteEmptyParagraphMechanism): if there is only one
11277         paragraph, do the 'double space' part, but not the 'empty
11278         paragraph' one.
11279
11280         * text.C (workWidth): small optimization
11281         (getLengthMarkerHeight): use minimal size for negative lengths.
11282
11283 2001-12-11  Dekel Tsur  <dekelts@tau.ac.il>
11284
11285         * lyxfont.C (GUIFamilyNames): Fix GUIFamilyNames array
11286
11287         * FontLoader.C (getFontinfo): Use "*-eufrak-medium"
11288
11289 2001-12-11  André Pönitz <poenitz@gmx.net>
11290
11291         * FontLoader.C:
11292         * lyxfont.[Ch]: support for fraktur font used by \mathfrak
11293
11294 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
11295
11296         * text2.C: keep selection on a setFont()
11297
11298 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
11299
11300         * lyx_cb.C: another bv->text misuse, from insert label
11301
11302 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
11303
11304         * kbsequence.h:
11305         * kbsequence.C: re-instate nmodifier mask
11306
11307 2001-12-12  Angus Leeming  <a.leeming@ic.ac.uk>
11308
11309         * lyx_main.h: make lyxGUI private.
11310
11311 2001-12-06  John Levon  <moz@compsoc.man.ac.uk>
11312
11313         * lyxfind.C: place the cursor correctly on failed search
11314
11315 2001-12-09  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
11316
11317         * text.C (getLengthMarkerHeight): for small heights, the arrows
11318         are not always on top/bottom of the text
11319         (drawLengthMarker): smaller arrows; take the left margin in
11320         account; draw also vfills.
11321         (paintFirstRow):
11322         (paintLastRow): remove special code for vfill and standard spaces,
11323         since everything is handled in drawLengthMarker now.
11324
11325 2001-12-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11326
11327         * buffer.C (insertErtContents): try to handle font and language
11328         interaction a bit better.g
11329
11330         * ColorHandler.C (updateColor): change the hash to cover the whole
11331         LColor enum, ws cleanup
11332         (getGCLinepars): ditto
11333         (getGCLinepars): only lookup in the linecache once.
11334
11335 2001-12-07  Dekel Tsur  <dekelts@tau.ac.il>
11336
11337         * iterators.C (operator++): Make the iterator more robust
11338
11339         * BufferView2.C (removeAutoInsets): Use paragraph iterators
11340         (John's patch)
11341         * CutAndPaste.C (SwitchLayoutsBetweenClasses): Ditto
11342
11343 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
11344
11345         * lyxtext.h:
11346         * text.C: better added space drawing
11347
11348 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
11349
11350         * LyXView.C:
11351         * BufferView2.C: fix layout combo update on inset unlock
11352
11353 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
11354
11355         * Makefile.am: don't compile unused files
11356
11357 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
11358
11359         * lyxfunc.C:
11360         * commandtags.h:
11361         * LyXAction.C: remove old LFUN_LAYOUTNO
11362
11363 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
11364
11365         * paragraph_pimpl.h:
11366         * paragraph_pimpl.C: isTextAt() doesn't need font param
11367
11368 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
11369
11370         * lyxlex.h:
11371         * lyxlex.C: little cleanup
11372
11373 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
11374
11375         * BufferView_pimpl.C: fix insertAscii for insets
11376
11377 2001-12-05  Juergen Vigna  <jug@sad.it>
11378
11379         * CutAndPaste.C (pasteSelection): remove not allowed insets/chars and
11380         set the right font on the "multi" paragraph paste!
11381
11382 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11383
11384         * trans_decl.h:
11385         * trans_mgr.[Ch]:
11386         * trans.[Ch]:
11387         * lyxgluelength.C:
11388         * lyxlength.C: remove out-commented code.
11389
11390         * BufferView_pimpl:
11391         * CutAndPaste.C:
11392         * DepTable.C:
11393         * buffer.C:
11394         * chset.C:
11395         * lastfiles.C:
11396         * lyxlex.C:
11397         * lyxlex_pimpl.C:
11398         * lyxserver.C:
11399         * screen.C:
11400         * tabular-old.C:
11401         * tabular.C:
11402         * text.C:
11403         * trans_mgr.C:
11404         * vc-backend.C: change "while(" to "while ("
11405
11406         * lyxlength.[Ch]: add zero function to check if length is zero or
11407         not
11408         * lyxgluelength.C: use it
11409
11410 2001-12-05  Allan Rae  <rae@lyx.org>
11411
11412         * lyxlength.C: Attempted a fix for the abs(int) header selection.
11413         Works for 2.95.3, from what I understand of Garst's reports this should
11414         work for other g++ versions.  We're screwed if the abs(int) definition
11415         changed between bugfix releases of gcc.
11416
11417 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
11418
11419         * text.C: fix chapter label offset !
11420
11421 2001-12-04  John Levon  <moz@compsoc.man.ac.uk>
11422
11423         * lyxtext.h:
11424         * text.C: fix hfill at end of line, clean up
11425
11426 2001-12-04  Juergen Vigna  <jug@sad.it>
11427
11428         * undo_funcs.C (textHandleUndo): added a call to inset->update() so
11429         that we force an update of the inset and it's owners if neccessary.
11430
11431 2001-12-03  Juergen Vigna  <jug@sad.it>
11432
11433         * text.C (rowLast): simplified code
11434
11435 2001-12-03  John Levon  <moz@compsoc.man.ac.uk>
11436
11437         * lyxfunc.C: fix show options on timeout
11438
11439 2001-12-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11440
11441         * screen.C (topCursorVisible): scroll half a page when the cursor
11442         reached top of bottom of screen
11443
11444 2001-12-02  John Levon  <moz@compsoc.man.ac.uk>
11445
11446         * minibuffer.C: deactivate on loss of focus
11447
11448 2001-12-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11449
11450         * vspace.[Ch] (operator!=): add operator.
11451
11452 2001-12-01  John Levon  <moz@compsoc.man.ac.uk>
11453
11454         * BufferView_pimpl.C: refuse to open an inset when
11455         there's a selection.
11456
11457 2001-11-30  John Levon  <moz@compsoc.man.ac.uk>
11458
11459         * BufferView_pimpl.C: allow to click on RHS of full row insets
11460
11461 2001-11-30  Juergen Vigna  <jug@sad.it>
11462
11463         * tabular.C (LyXTabular): add a same_id to set the same id's in the
11464         insets for undo reasons.
11465
11466 2001-11-28  André Pönitz <poenitz@gmx.net>
11467
11468         * vspace.[Ch]: cosmetical changes
11469
11470 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
11471
11472         * LyXAction.h:
11473         * LyXAction.C:
11474         * lyxfunc.h:
11475         * lyxfunc.C:
11476         * kbmap.h:
11477         * kbmap.C:
11478         * lyxrc.C:
11479         * kbsequence.h:
11480         * kbsequence.C: part re-write of old kb code
11481
11482         * Painter.C:
11483         * WorkArea.C: remove Lgb_bug_find_hack
11484
11485 2001-11-30  José Matos <jamatos@fep.up.pt>
11486
11487         * buffer.C (makeDocBookFile): add a comment to point a hack.
11488         (simpleDocBookOnePar): changed a PAR::META_INSET to isInset().
11489         Fixed a double write of labels.
11490
11491 2001-11-29 Ben Stanley <bds02@uow.edu.au>
11492
11493         * LaTeX.C:
11494         * LaTeX.h Fixed bug in LaTeX class where it would not
11495         re-run latex if no depfiles were changed, but the .dvi was removed.
11496
11497 2001-11-28  André Pönitz <poenitz@gmx.net>
11498
11499         * all the files from the change on 2001/11/26:
11500         use lyx::layout_type instead of LyXTextClass::size_type
11501         use lyx::textclass_type instead of LyXTextClassList::size_type
11502
11503 2001-11-29  Juergen Vigna  <jug@sad.it>
11504
11505         * text.C: added support for paragraph::isFreeSpacing()
11506
11507         * buffer.C: same as above
11508
11509         * paragraph.h: inserted isFreeSpacing() function to enable
11510         FreeSpacing inside InsetERT.
11511
11512         * CutAndPaste.C (cutSelection/copySelection): set the inset_owner
11513         of the paragraph's in the cut/copy buffer to 0!
11514
11515         * text2.C (removeRow): remove the assert as it can!
11516
11517         * lyxtext.h: added helper function firstRow returning firstrow and
11518         made firstrow private again.
11519
11520         * BufferView2.C (lockInset): don't relock if we're already locked!
11521
11522         * text2.C (deleteEmptyParagraphMechanism): don't do anything if it's
11523         the only paragraph.
11524         (removeRow): added Assert::(firstrow)
11525
11526         * debug.C: forgot to add INSETTEXT here.
11527
11528 2001-11-28  Juergen Vigna  <jug@sad.it>
11529
11530         * sp_spell.C (initialize): changed error text to more general
11531         spellchecker command use (not only ispell!)
11532
11533         * bufferlist.C (qwriteAll): fixed "Cancel" button handling!
11534
11535         * debug.h: inserted one for debugging INSETTEXT (and InsetTabular)!
11536
11537 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
11538
11539         * vspace.C: initialise lyxgluelength on failure
11540
11541 2001-11-28  Allan Rae  <rae@lyx.org>
11542
11543         * text.C (paintLastRow): g++-2.95.3 and others don't like variable
11544         declaration & definition that looks like a function declaration.
11545
11546 2001-11-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11547
11548         * BufferView2.C (copy):
11549         (copyEnvironment): do not clear the selection when doing a copy.
11550
11551         * text.C (paintFirstRow): compilation fix
11552
11553 2001-11-27  Ben Stanley  <bds02@uow.edu.au>
11554
11555         * tabular.C (Latex): correct line count when writing latex.
11556
11557 2001-11-27  John Levon  <moz@compsoc.man.ac.uk>
11558
11559         * paragraph_pimpl.h:
11560         * paragraph_pimpl.C: tidy, and fix font-change in "LaTeX"
11561           bug a bit
11562
11563 2001-11-26  John Levon  <moz@compsoc.man.ac.uk>
11564
11565         * text.C:
11566         * LColor.h:
11567         * LColor.C: change vfillline->added_space
11568
11569         * text.C: add markers and text for added space
11570
11571         * vspace.C: fix comment
11572
11573 2001-11-28  André Pönitz <poenitz@gmx.net>
11574
11575         * paragraph.C: whitespace changes
11576         * all the other files from the change on 2001/11/26:
11577         change *::pos_type into lyx::pos_type
11578
11579 2001-11-27  Dekel Tsur  <dekelts@tau.ac.il>
11580
11581         * buffer.C (parseSingleLyXformat2Token): Set the language to the
11582         language of the document when inserting error insets.
11583
11584 2001-11-26  André Pönitz <poenitz@gmx.net>
11585
11586         * BufferView_pimpl.[Ch]:
11587         *       CutAndPaste.C:
11588         * buffer.[Ch]:
11589         * lyxcursor.[Ch]:
11590         * lyxfind.C:
11591         * lyxfunc.C:
11592         * lyxrow.[Ch]:
11593         * paragraph.[Ch]:
11594         * paragraph_pimpl.[Ch]:
11595         * sp_spell.C:
11596         * text.C:
11597         * text2.C: reduce header dependencies, introduce type for positions
11598
11599 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
11600
11601         * <various>: change to use Alert.h
11602
11603 2001-11-25  Dekel Tsur  <dekelts@tau.ac.il>
11604
11605         * buffer.C (parseSingleLyXformat2Token): Insert an error inset
11606         when encountering an unknown token.
11607         (readLyXformat2): Show an error message if there were unknown tokens.
11608
11609 2001-11-22  John Levon  <moz@compsoc.man.ac.uk>
11610
11611         * BufferView2.C:
11612         * BufferView_pimpl.C:
11613         * buffer.C:
11614         * paragraph.h:
11615         * text.C:
11616         * text2.C: use par->isInset()
11617
11618 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
11619
11620         * paragraph_pimpl.h:
11621         * paragraph_pimpl.C: cleanup
11622
11623 2001-11-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11624
11625         * text2.C (removeRow):
11626         * text.C (setHeightOfRow): remove useless (and costly) call to
11627         getRow.
11628
11629 2001-11-20  Allan Rae  <rae@lyx.org>
11630
11631         * paragraph.C (insertFromMinibuffer): Fix for inset related crashes.
11632         Now need Inset*::checkInsertChar() to return true for appropriate
11633         cases so that the characters in the minibuffer will actually be
11634         inserted.
11635
11636 2001-11-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
11637
11638         * text.C: change the order of the includes.
11639         (workWidth): initialize it at once.
11640         (workWidth): make maxw unsigned
11641         (setHeightOfRow): remove unused variable (inset)
11642         (selectSelectedWord): remove unused variable (inset)
11643         (paintRowText): fix drawing of hfill characters, and clean up a bit.
11644
11645 2001-11-14  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11646
11647         * lyxserver.C (emergencyCleanup): do not try to close pipes if
11648         server is not running.
11649         (openConnection):
11650         (closeConnection): add debug info when server is disabled.
11651
11652         * ColorHandler.C (getGCForeground): send debug message to GUI
11653         channel.
11654
11655         * lyxrc.C: do not include lyxserver.h and tex-strings.h.
11656
11657         * kbmap.C (bind): modify because return conventions of
11658         kb_sequence::parse have changed.
11659
11660         * kbsequence.C (parse): only ignore spaces and not any stupid
11661         control character. This avoids tests like s[i] <= ' ', which are
11662         guaranteed to fail with 8bit characters and signed chars.
11663         Change return code to string::npos when there have been no error
11664         (0 was a bad idea when error is at first character)
11665
11666 2001-11-14  José Matos  <jamatos@fep.up.pt>
11667
11668         * buffer.h:
11669         * buffer.C (simpleDocBookOnePar): removed unused argument.
11670
11671 2001-11-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11672
11673         * text.C (selectNextWordToSpellcheck): do not test explicitely for
11674         insets which are part of a word. Paragraph::isLetter takes care of
11675         that now. Use Paragraph::isInset to identify insets.
11676         (selectSelectedWord): do not test for hyphenation break.
11677
11678         * BufferView_pimpl.C (smartQuote): use Inset::isSpace, so
11679         that protected spaces are considered as spaces.
11680
11681         * paragraph.C (isLetter): cleanup the code for ispell extras; use
11682         Inset::isLetter.
11683
11684 2001-11-12  John Levon  <moz@compsoc.man.ac.uk>
11685
11686         * lyxserver.h:
11687         * lyxserver.C: fix it. and small cleanup.
11688
11689 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
11690
11691         * BufferView_pimpl.C: use inline helpers
11692
11693         * LaTeXFeatures.h:
11694         * LaTeXFeatures.C: fix typos
11695
11696         * Spacing.h:
11697         * Spacing.C: move spacing_string into class
11698
11699         * ToolbarDefaults.C: move stuff into namespace anon
11700
11701         * layout.h: update enum
11702
11703         * lyxfunc.C: use better debug
11704
11705         * minibuffer.h: fix typo
11706
11707         * debug.h:
11708         * debug.C:
11709         * WorkArea.C: add and use Debug::WORKAREA
11710
11711         * lyxtext.h:
11712         * text.C:
11713         * text2.C: code re-organisation, inline helpers
11714
11715 2001-11-09  Michael A. Koziarski <michael@koziarski.org>
11716
11717         * Layout.C: replaced a few cases of std::vector.size() == 0 with
11718         std::vector.empty().
11719
11720 2001-11-09  Allan Rae  <rae@lyx.org>
11721
11722         * paragraph.C (TeXOnePar): remove old, now-irrelevent comments about
11723         '\n's after tables.  Tabular and ERT inset work now makes this no
11724         longer necessary.
11725
11726 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
11727
11728         * minibuffer.h:
11729         * minibuffer.C: fix crash, improve drop-down completion
11730
11731 2001-11-06  John Levon  <moz@compsoc.man.ac.uk>
11732
11733         * lyxserver.h:
11734         * lyxserver.C: invalidate fd's when doing endPipe()
11735
11736 2001-11-08  José Matos  <jamatos@fep.up.pt>
11737
11738         * buffer.C (sgmlLineBreak): renamed from linux_doc_line_break.
11739         (simpleDocBookOnePar): removed code made obsolete by the new inset code.
11740
11741         * paragraph.h:
11742         * paragraph.C (sgmlConvertChar): renamed from linuxDocConvertChar.
11743
11744 2001-11-07  José Matos  <jamatos@fep.up.pt>
11745
11746         * buffer.h:
11747         * buffer.C (sgmlError): linuxDocError renamed, and made public, added
11748         const qualifier.
11749
11750         * buffer.C (sgmlOpenTag):
11751         * buffer.C (sgmlCloseTag): removed debug info.
11752
11753         * buffer.h (sgmlOpenTag):
11754         * buffer.h (sgmlCloseTag): made public.
11755
11756 2001-11-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11757
11758         * buffer.C (saveParamsAsDefaults):
11759         * lyx_cb.C (MenuLayoutSave): remove
11760
11761         * LyXAction.C (init):
11762         * commandtags.h:
11763         * lyxfunc.C (dispatch): remove LFUN_LAYOUT_SAVE_DEFAULT.
11764
11765 2001-11-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11766
11767         * buffer.C (setPaperStuff): removed from here...
11768
11769         * bufferparams.C (setPaperStuff): ... and moved there.
11770
11771 2001-11-03  John Levon  <moz@compsoc.man.ac.uk>
11772
11773         * minibuffer.h:
11774         * minibuffer.C:
11775         * XFormsView.C: add support for drop-down completion
11776
11777 2001-11-03  Dekel Tsur  <dekelts@tau.ac.il>
11778
11779         * paragraph.C (TeXOnePar): Correct placement of \selectlanguage
11780         commands.
11781
11782 2001-10-31  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11783
11784         * gettext.C (locale_init): set LC_NUMERIC to "C" even if nls is
11785         disabled.
11786
11787 2001-10-30  John Levon  <moz@compsoc.man.ac.uk>
11788
11789         * lyx_main.C: change ref to known bugs
11790
11791 2001-10-30  Kayvan A. Sylvan  <kayvan@sylvan.com>
11792
11793         * LaTeXFeatures.C (getPackages): Use lyxskak.sty now instead
11794         to work around older babel problems.
11795
11796 2001-10-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
11797
11798         * LaTeXFeatures.[hC]: Now uses skak.sty for chess material.
11799
11800 2001-10-24  Juergen Vigna  <jug@sad.it>
11801
11802         * tabular-old.C (ReadOld): below variable changes reflected.
11803
11804         * tabular.[Ch]: added ltType struct for longtable header/footer
11805         defines and changed all instances where they are used. Added
11806         future support for double top/bottom rows.
11807
11808 2001-10-24  José Matos  <jamatos@fep.up.pt>
11809
11810         * buffer.h (docbookHandleCaption):
11811         * buffer.C (docbookHandleCaption): removed unused function.
11812         (makeDocBookFile): moved docbook supported version to v4.1.
11813
11814 2001-10-24  José Matos  <jamatos@fep.up.pt>
11815
11816         * tabular.h:
11817         * tabular.C (docbookRow): new function to export docbook code of a row.
11818         (DocBook): now honors the longtable flags.
11819
11820 2001-10-23  José Matos  <jamatos@fep.up.pt>
11821
11822         * LaTeXFeatures.h:
11823         * LaTeXFeatures.C (getLyXSGMLEntities): new function to get the name
11824         of the lyx defined sgml entities used in a docbook/linuxdoc document.
11825
11826         * buffer.C (makeLinuxDocFile):
11827         (makeDocBookFile): reworked the preamble, more clean, and with
11828         support for lyx defined entities. Changed the document declaration
11829         to be more XML friendly.
11830
11831         * tabular.C (DocBook): removed / terminator to be more SGML friendly,
11832         if we need to output XML that should be done with a filter.
11833
11834 2001-10-22  Juergen Vigna  <jug@sad.it>
11835
11836         * sp_pspell.h (class PSpell): add alive function needed in the
11837         controller to see if the spellchecker could be started.
11838
11839 2001-10-22  Juergen Vigna  <jug@sad.it>
11840
11841         * buffer.C (insertStringAsLines): modify the font for inserting
11842         chars in certain conditions by calling checkInsertChar(font).
11843
11844 2001-10-19  Juergen Vigna  <jug@sad.it>
11845
11846         * text.C (workWidth): use getRow instead of wrong algorithm.
11847         (setHeightOfRow): fix for MARGIN_RIGHT_ADDRESS_BOX
11848
11849 2001-10-19  John Levon  <moz@compsoc.man.ac.uk>
11850
11851         * lyxserver.h:
11852         * lyxserver.C:
11853         * lyx_main.h:
11854         * lyx_main.C: add emergencyCleanup (remove pipes on crash)
11855
11856 2001-10-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11857
11858         * text.C (workWidth): do not search for the exact row when
11859         margintype is not MARGIN_RIGHT_ADDRESS_BOX. This is an
11860         optimization for big documents.
11861
11862 2001-10-18  Juergen Vigna  <jug@sad.it>
11863
11864         * text.C (workWidth): new function with added Inset * parameter.
11865
11866 2001-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11867
11868         * text2.C (setCursorFromCoordinates): use Paragraph::size_type
11869
11870         * lyxtext.h: change type of refresh_pos to Paragraph::size_type;
11871         change return type of getColumnNearX.
11872
11873
11874         * text.C (changeRegionCase): use uppercase/lowercase instead of
11875         toupper/tolower.
11876         (leftMargin):
11877         (rightMargin): simplify code by factoring out the uses of
11878         textclasslist.
11879         (labelFill):
11880         (numberOfHfills):
11881         (setHeightOfRow):
11882         (appendParagraph): use Paragraph::size_type
11883
11884 2001-10-15  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11885
11886         * vspace.C (asLatexString): add a missing break
11887
11888 2001-10-15  Herbert Voss  <voss@perce.de>
11889
11890         * vspace.C (asLatexString): fix bug in output of string for l% and p%.
11891
11892 2001-10-11  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11893
11894         * lyxfunc.C (getStatus): disable thesaurus when aiksaurus library
11895         is not available.
11896
11897 2001-10-10  André Pönitz <poenitz@gmx.net>
11898
11899         * lyxfunc.C: removed greek_kb_flag.
11900
11901 2001-10-10  Herbert Voss  <voss@perce.de>
11902
11903         * lyx_main.C: delete global string help_lyxdir.
11904
11905 2001-10-09  Herbert Voss  <voss@perce.de>
11906
11907         * commandtags.h (kb_action): added LFUN_HELP_TEXINFO.
11908
11909         * LyXAction.C (init): added LFUN_HELP_TEXINFO to items array.
11910
11911         * lyx_main.C: added global string help_lyxdir.
11912
11913         * lyxfunc.C (dispatch): added LFUN_HELP_TEXINFO to switch.
11914
11915 2001-10-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
11916
11917         * lyxrc.C (set_font_norm_type): support iso8859-4
11918
11919 2001-07-02  Claus Hentschel  <claus.hentschel@mbau.fh-hannover.de>
11920
11921         * LaTeX.C (deplog): add another regex for MikTeX
11922
11923 2001-10-05  Adrien Rebollo  <adrien.rebollo@gmx.fr>
11924
11925         * lyxrc.C (set_font_norm_type): support iso8859-3
11926
11927 2001-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11928
11929         * BufferView_pimpl.C (tripleClick): fix stupid logic error.
11930
11931         * LaTeXFeatures.C: remove special case of french and index
11932
11933         * buffer.C (makeLaTeXFile): _really_ load babel late (i.e. just
11934         before \begin{document}). This solves several incompatibilities.
11935
11936 2001-10-03  Garst Reese  <reese@isn.net>
11937
11938         * lyx_cb.C: change CheckTex error msg.
11939
11940 2001-10-03  José Matos  <jamatos@fep.up.pt>
11941
11942         * buffer.C (simpleDocBookOnePar): add support for pass_thru.
11943
11944 2001-10-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11945
11946         * .cvsignore: update
11947
11948         * lyx_main.C (commandLineVersionInfo): use new style version info.
11949
11950         * buffer.C (writeFile):
11951         (makeLaTeXFile):
11952         (makeLinuxDocFile):
11953         (makeDocBookFile): use lyx_docversion instead of LYX_DOCVERSION.
11954
11955         * WorkArea.C (WorkArea): use lyx_version instead of LYX_VERSION.
11956
11957         * version.h: update to use stuff in version.C
11958
11959         * version.C.in: new file. Contains version information determined
11960         at compile time. This is a merging of version.h and
11961         version_info.h.in.
11962
11963 2001-10-03  Juergen Vigna  <jug@sad.it>
11964
11965         * BufferView_pimpl.C (update): don't change "dirty" status in
11966         updateInset call.
11967
11968 2001-10-03  Angus Leeming  <a.leeming@ic.ac.uk>
11969
11970         * WorkArea.C (c-tor): re-position version string slightly.
11971
11972 2001-10-02  Angus Leeming  <a.leeming@ic.ac.uk>
11973
11974         * BufferView_pimpl.C (buffer): remove call to WorkArea::show() and
11975         revert to previous code.
11976
11977         WorkArea.[Ch]: (show, destroySplash): methods removed.
11978
11979         WorkArea.C: rework code so that it's an amalgam of the codes before and
11980         after the splash screen was moved to WorkArea.
11981
11982 2001-10-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
11983
11984         * lyxrc.C (read):
11985         * vspace.C (inPixels):
11986         (lyx_advance):
11987         * kbmap.C (bind):
11988         * buffer.C (insertStringAsLines):
11989         (asciiParagraph): fix types to be large enough
11990
11991         * lyxlex_pimpl.h: change member status from short to int
11992
11993         * layout.h: fix type of endlabeltype
11994
11995         * kbmap.C (bind):
11996         * kbsequence.C (parse): change return type to string::size_type
11997
11998         * LaTeX.C (updateBibtexDependencies): comment out unneeded
11999         variable
12000
12001         * Bullet.C (bulletSize):
12002         (bulletEntry): do not use short ints as parameters
12003
12004         * BufferView2.C (insertLyXFile): change a char to an int.
12005
12006         * WorkArea.C (WorkArea): remove unneeded floats in computation
12007
12008 2001-10-01  Dekel Tsur  <dekelts@tau.ac.il>
12009
12010         * buffer.C (asciiParagraph): Treat '\\' as other chars.
12011
12012         * paragraph.C (asString): Do not ignore newline/hfill chars when
12013         copying to the clipboard.
12014
12015 2001-09-29  Dekel Tsur  <dekelts@tau.ac.il>
12016
12017         * paragraph_pimpl.C (simpleTeXSpecialChars): Call to textrow.start
12018         after a multi-line inset.
12019
12020 2001-09-28  Dekel Tsur  <dekelts@tau.ac.il>
12021
12022         * paragraph.C (validate): Set NeedLyXFootnoteCode
12023
12024 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
12025
12026         * lyxfont.C (LyXSizeNames): changed increase-error to increase
12027         and decrease-error to decrease.
12028
12029 2001-09-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12030
12031         * text2.C (deleteEmptyParagraphMechanism): reformat a bit to make
12032         it more readable (should be equivalent)
12033
12034 2001-09-27  Adrien Rebollo  <adrien.rebollo@gmx.fr>
12035
12036         * paragraph_pimpl.C (simpleTeXSpecialChars): handle latin9 too.
12037
12038 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12039
12040         * text2.C (fixCursorAfterDelete): new method. Fixes the parameters
12041         of a cursor (row, etc.) after a character has been deleted
12042         (deleteEmptyParagraphMechanism): call the method above on _all_
12043         cursors held by the LyXText when a double space has been
12044         detected/deleted.
12045
12046 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
12047
12048         * BufferView_pimpl.C (buffer): call WorkArea::show to pop-up the
12049         pixmap.
12050         (resizeCurrentBuff): remove code to destroy the old splash dialog.
12051
12052         * WorkArea.[Ch]: add the "LyX" pixmap and version string to the
12053         background. Use greyOut() and the new show() methods to toggle between
12054         the foreground and background. Add code to remove the splash after
12055         its initial showing.
12056
12057         * lyx_gui.C: Remove dependency on frontends/Dialogs.h.
12058         (create_forms): no longer call Dialogs::showSplash.
12059
12060 2001-09-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12061
12062         * .cvsignore: add version_info.h
12063
12064 2001-09-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12065
12066         * version_info.h.in: new file
12067
12068         * Makefile.am: add version_info.h.in
12069
12070         * lyx_main.C (commandLineVersionInfo): use version_info defined in
12071         version_info.h instead of VERSION_INFO
12072
12073 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
12074
12075         * text.C (selectNextWordToSpellcheck): reverted change to if-block.
12076         The ERT inset now returns string().
12077
12078 2001-09-21  Angus Leeming  <a.leeming@ic.ac.uk>
12079
12080         * lyxtext.h, text.C (selectNextWord): renamed as
12081         selectNextWordToSpellcheck.
12082
12083         * text.C (selectNextWordToSpellcheck): Modified to not select
12084         words inside an ERT inset.
12085
12086 2001-09-21  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12087
12088         * lyx_cb.C (MenuLayoutSave): change a bit the question
12089
12090         * sp_base.h: include <sys/types.h>
12091
12092 2001-09-18  Angus Leeming  <a.leeming@ic.ac.uk>
12093
12094         * LColor.[Ch]: added graphicsbg to color enum and to ColorEntry.
12095
12096 2001-09-20  Michael Schmitt  <Michael.Schmitt@teststep.org>
12097
12098         * several files: fix typos in user-visible strings
12099
12100 2001-09-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12101
12102         * text2.C (pasteSelection): do not set the selection, since it
12103         will be cleared later. Actually, the intent was to fix the way the
12104         selection was set, but I figured rmoving the code was just as good.
12105
12106 2001-09-19  Dekel Tsur  <dekelts@tau.ac.il>
12107
12108         * FontLoader.C (available): Check if font is available without
12109         loading the font.
12110
12111 2001-09-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
12112
12113         * lyxrc.[Ch]: added auto_reset_options variable and associated code.
12114
12115 2001-09-13  Angus Leeming  <a.leeming@ic.ac.uk>
12116
12117         * lyxrc.[Ch]: added display_graphics variable and associated code.
12118
12119 2001-09-17  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12120
12121         * bufferparams.C (hasClassDefaults): new method. Returns true if
12122         the buffer parameters correspond to known class defaults
12123
12124 2001-09-17  Angus Leeming  <a.leeming@ic.ac.uk>
12125
12126         * XFormsView.C (show): set minimum size to the main window.
12127
12128 2001-09-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12129
12130         * text2.C (copySelection):
12131         (cutSelection):
12132         * lyxfind.C (LyXReplace):
12133         * BufferView_pimpl.C (Dispatch): pass the correct flag to
12134         LyXText::selectionAsString.
12135
12136         * paragraph.C (asString): add "label" argument to the second form
12137
12138         * text2.C (selectionAsString): add "label" argument and pass it to
12139         Paragraph::asString.
12140
12141 2001-09-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12142
12143         * lyx_main.C (commandLineHelp): remove version information
12144
12145 2001-09-08  Rob Lahaye  <lahaye@users.sourceforge.net>
12146
12147         * lyx_main.C: add -version commandline option
12148
12149 2001-09-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12150
12151         * paragraph.h: make the optional constructor arg required instead.
12152         some modifications to other files because of this.
12153
12154         * minibuffer.C (C_MiniBuffer_peek_event): make it static
12155
12156         * lyxserver.C (C_LyXComm_callback): make it static
12157
12158         * lyx_main.C (error_handler): make it static
12159
12160         * lyx_gui.C (LyX_XErrHandler): make it static
12161
12162         * XFormsView.C (C_XFormsView_atCloseMainFormCB): make it static
12163
12164         * WorkArea.C: make the extern "C" methods static.
12165
12166         * Makefile.am (lyx_LDADD): simplify
12167
12168 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
12169
12170         * commandtags.h: removed redundant LFUNs, LFUN_HELP_COPYRIGHT,
12171         LFUN_HELP_CREDITS, LFUN_HELP_VERSION.
12172
12173         * LyXAction.C (init):
12174         * lyxfunc.C (dispatch): associated code removal.
12175
12176 2001-09-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12177
12178         * lyxfont.h (isSymbolFont): shut off warning
12179
12180         * text.C (setHeightOfRow):
12181         (getVisibleRow): fix crash with empty paragraphs which have a
12182         bottom line
12183
12184 2001-09-07  Rob Lahaye  <lahaye@users.sourceforge.net>
12185
12186         * lyxrc.[Ch]: added dialogs_iconify_with_main variable and associated
12187         code.
12188
12189 2001-09-04  José Matos  <jamatos@fep.up.pt>
12190         * buffer.C
12191         * buffer.h
12192         * tabular.C (docbook): rename docBook method to docbook.
12193
12194 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
12195
12196         * Makefile.am: add dependencies to main.o.
12197
12198 2001-09-03  Dekel Tsur  <dekelts@tau.ac.il>
12199
12200         * FontLoader.C (available): Return false if !lyxrc.use_gui
12201
12202 2001-09-03  Michael Schmitt <schmitt@itm.mu-luebeck.de>
12203
12204         * FontInfo.C (query):
12205         * converter.C (view):
12206         * importer.C (Import):
12207         * exporter.C (Export): Can not -> cannot.
12208
12209 2001-09-02  John Levon  <moz@compsoc.man.ac.uk>
12210
12211         * BufferView_pimpl.C: allow to create index inset even if
12212           string is empty
12213
12214 2001-09-02  Angus Leeming  <a.leeming@ic.ac.uk>
12215
12216         * buffer.C (getLists): replace boost::tie code with an explicit pair
12217         as boost::tie can break some compilers.
12218
12219         * iterators.h: Added a std:: declaration to the return type of
12220         ParIterator::size.
12221
12222 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
12223
12224         * lyxrc.C: add help for view_dvi_paper_option, default to safe
12225           case.
12226
12227 2001-09-02  Dekel Tsur  <dekelts@tau.ac.il>
12228
12229         * iterators.[Ch]: New files. Provide paragraph iterators.
12230
12231         * buffer.C (changeLanguage): Use paragraph iterators.
12232         (isMultiLingual): ditto
12233
12234         * BufferView2.C (ChangeInsets): Use paragraph iterators.
12235
12236 2001-09-01  Dekel Tsur  <dekelts@tau.ac.il>
12237
12238         * FontLoader.C: Support for cmr font.
12239
12240 2001-08-31  Dekel Tsur  <dekelts@tau.ac.il>
12241
12242         * FontLoader.C (getFontinfo): Handle latex symbol fonts.
12243         (available): New method.
12244
12245         * FontInfo.C (getFontname): Use scalable fonts even when
12246         lyxrc.use_scalable_fonts is false, if no non-scalable fonts was
12247         found.
12248
12249 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
12250
12251         * converter.C (Formats::view): reverted! Incorrect fix.
12252
12253 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
12254
12255         * converter.C (Formats::view): only output the -paper option
12256         if the dvi viewer is xdvi, thereby fixing bug #233429.
12257
12258 2001-08-23  Herbert Voss  <voss@perce>
12259
12260         * BufferView_pimpl.C: small fix for LFUN_INSERT_BIBTEX
12261
12262 2001-08-20  Dekel Tsur  <dekelts@tau.ac.il>
12263
12264         * Spacing.h (Spacing): Set space to Default on in the default
12265         constructor.
12266
12267 2001-08-19  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12268
12269         * vc-backend.h (RCS::versionString): add RCS to version
12270         (CVS::versionString): add CVS to version
12271
12272         * vc-backend.C (scanMaster): do not add CVS to version.
12273         (scanMaster): do not add RCS to version
12274
12275         * lyxvc.C (versionString): new method
12276
12277         * lyxfunc.C (initMiniBuffer): use LyXVC::versionString
12278
12279 2001-08-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12280
12281         * Spacing.C (set): initialize fval
12282
12283 2001-08-15  Dekel Tsur  <dekelts@tau.ac.il>
12284
12285         * lyxlex_pimpl.C (next): Treat \ as normal char if not followed by
12286         " or \.
12287
12288 2001-08-16  Juergen Vigna  <jug@sad.it>
12289
12290         * lyxfunc.C (dispatch): implemented the new FINISHED states.
12291
12292 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
12293
12294         * BufferView_pimpl.C:
12295         * figureForm.C:
12296         * lyxtext.h:
12297         * text2.C: setParagraph takes linespacing now
12298
12299 2001-08-15  John Levon  <moz@compsoc.man.ac.uk>
12300
12301         * LyxAction.C: add internal LFUN_CITATION_INSERT
12302
12303         * LyXView.C: actually apply fix
12304
12305         * bufferlist.C: fix open non-existent file
12306
12307         * lyxfind.C: fix indentation
12308
12309         * lyxfunc.C: remove unneeded assert, fix typo
12310
12311 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
12312
12313         * MenuBackend.C: use "Floatname List"
12314
12315 2001-08-14  Dekel Tsur  <dekelts@tau.ac.il>
12316
12317         * buffer.C (parseSingleLyXformat2Token): Do not generate errors
12318         when converting LaTeX layout to insetERT.
12319         Generate a non-collapsed float when reading old float
12320
12321 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
12322
12323         * BufferView2.C (showLockedInsetCursor): Use normal cursor shape in
12324         ERT insets.
12325
12326 2001-08-13  Juergen Vigna  <jug@sad.it>
12327
12328         * text.C (fill): return 0 instead of 20 as this seems to be the more
12329         correct value.
12330
12331 2001-08-13  Dekel Tsur  <dekelts@tau.ac.il>
12332
12333         * encoding.C (TransformChar): Use lyxrc.font_norm_type instead of
12334         lyxrc.font_norm.
12335
12336 2001-08-13  Juergen Vigna  <jug@sad.it>
12337
12338         * lyxfind.C (LyXReplace): fixed not single-replacing characters with
12339         casesensitive off.
12340         (SearchBackward): comment out the unlocking of the inset_owner this
12341         should not be needed!
12342
12343 2001-08-11  Dekel Tsur  <dekelts@tau.ac.il>
12344
12345         * Many files: Remove inherit_language, and add latex_language
12346
12347         * BufferView2.C (showLockedInsetCursor): Fix cursor shape in
12348         collapsible insets.
12349
12350 2001-08-10  Juergen Vigna  <jug@sad.it>
12351
12352         * text.C (prepareToPrint): fixed hfill-width in draw!
12353
12354         * BufferView2.C (selectLastWord): save the selection cursor as this
12355         now is cleared in the function LyXText::clearSelection!
12356
12357 2001-08-08  Juergen Vigna  <jug@sad.it>
12358
12359         * BufferView_pimpl.C (Dispatch): use a non-cut-buffer cut on DELTE
12360         BACKSPACE type functions.
12361
12362         * CutAndPaste.C (cutSelection): added a bool so that the stuff actually
12363         is only cutted from the document but not put in the cut-buffer, where
12364         still the old stuff should be.
12365
12366         * text2.C (cutSelection): added bool to pass to CutAndPaste::cutSelection.
12367
12368         * BufferView2.C (cut): added a bool to pass to LyXText::cutSelection.
12369
12370         * tabular.C (SetWidthOfCell): fixed special case where the width
12371         was not updated!
12372         (LeftLine): handle '|' in align_special.
12373         (RightLine): ditto
12374         (LeftAlreadyDrawed): ditto
12375         (SetWidthOfCell): ditto
12376
12377 2001-08-07  Juergen Vigna  <jug@sad.it>
12378
12379         * lyx_main.C (readUIFile): fixed some forgotten lowercase!
12380
12381 2001-08-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12382
12383         * lyxlex_pimpl.[Ch]: converto to lowercase funcs
12384         * lyxlex.[hC]: ditto
12385
12386 2001-08-06  Juergen Vigna  <jug@sad.it>
12387
12388         * text.C (getVisibleRow): fix up row clearing a bit.
12389
12390 2001-08-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12391
12392         * minibuffer.C: make sure the X server sees the changes in the input.
12393
12394 2001-08-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12395
12396         * paragraph.C (getFont): split into...
12397         (getLabelFont): this
12398         (getLayoutFont): and this
12399         * paragraph_pimpl.C (realizeFont): calling this
12400
12401         * text2.C (getFont): split into...
12402         (getLayoutFont): this
12403         (getLabelFont): and this
12404         (realizeFont): all three calling this
12405
12406         * lyxfont.h: remove all NO_LATEX macros and code... adjust all
12407         files where used.
12408
12409 2001-08-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12410
12411         * lyxfunc.C (getStatus): add checkbox support for LFUN_APPENDIX
12412
12413 2001-08-02  Kayvan A. Sylvan  <kayvan@sylvan.com>
12414
12415         * BufferView_pimpl.C (smartQuote): Added code to exempt pass_thru
12416         layouts from the Quote inset insertion.
12417
12418 2001-08-03  Juergen Vigna  <jug@sad.it>
12419
12420         * BufferView_pimpl.C (update): do the fitCursor only at the end!
12421
12422         * screen.C (drawFromTo): don't call fitcursor here and do the loop
12423         only if status not is already CHANGED_IN_DRAW (second level).
12424
12425         * text.C (draw): don't set the need_break_row when inside an
12426         InsetText LyXText.
12427
12428 2001-08-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12429
12430         * buffer.C (parseSingleLyXformat2Token): handle more latex
12431         conversion cases.
12432
12433         * bufferview_funcs.[hC]: change function names to
12434         begin with small char, adjust other files.
12435
12436 2001-08-02  André Pönitz <poenitz@gmx.net>
12437
12438         * lyxfunc.C:
12439         BufferView_pimpl.C: remove broken special code for math-greek
12440
12441 2001-08-02  Juergen Vigna  <jug@sad.it>
12442
12443         * BufferView_pimpl.C (update): redone this function so that we
12444         update the text again if there was a CHANGE_IN_DRAW.
12445
12446         * screen.C (cursorToggle): removed LyXText parameter and recoded.
12447         (drawFromTo): added a new internal bool which is used by draw() and
12448         redraw() function.
12449         (general): some cursor drawing problems fixed.
12450
12451 2001-08-01  Juergen Vigna  <jug@sad.it>
12452
12453         * lyxfind.C (LyXFind): fixed
12454         (SearchForward): ditto
12455         (SearchBackward): ditto
12456
12457         * BufferView_pimpl.C (workAreaMotionNotify): hopefully fixed the
12458         spurius drawing of the cursor in the main area.
12459
12460         * text2.C (status): small fix which could lead to a segfault!
12461         (clearSelection): remove unneeded BufferView param.
12462
12463 2001-08-01  André Pönitz <poenitz@gmx.net>
12464
12465         * lyxfunc.C: small change due to changed mathed interface
12466
12467 2001-08-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12468
12469         * bufferlist.C (loadLyXFile): add .lyx to file name if necessary
12470
12471 2001-08-01  John Levon  <moz@compsoc.man.ac.uk>
12472
12473         * lyxfunc.c: fail gracefully if file doesn't exist
12474
12475         * LyXSendto.C:
12476         * buffer.C:
12477         * lyxfunc.C:
12478         * BufferView_pimpl.C: IsDirWriteable() proto changed
12479
12480         * LyXView.C: fix updateWindowTitle() to store the last title
12481
12482 2001-07-31  Juergen Vigna  <jug@sad.it>
12483
12484         * text.C (setHeightOfRow): fixed setting of ascent/descent based on
12485         the font (wrong since using of Paragraph::highestFontInRange).
12486
12487         * paragraph.C (highestFontInRange): added a default_size parameter.
12488
12489         * text.C (getVisibleRow): minor clear row changes (still not perfect).
12490         (setHeightOfRow): reformat
12491
12492 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12493
12494         * converter.[hC] + affected files: move to (inital-char)lowercase
12495         function names.
12496
12497         * ParagraphParameters.C (ParagraphParameters): remove commented code
12498
12499         * PainterBase.[Ch]: remove commented code
12500
12501         * LaTeXFeatures.h: add "bool floats" for float.sty
12502
12503         * LaTeXFeatures.C (LaTeXFeatures): init floats
12504         (require): handle float
12505         (getPackages): do it with floats
12506
12507 2001-07-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12508
12509         * BufferView_pimpl.C (Dispatch): improve handling of
12510         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE
12511
12512         * commandtags.h: #include lyxfont.h here temporarily to avoid
12513         keybinding bug.
12514
12515         * bufferlist.h: include LString.h here.
12516
12517 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12518
12519         * text2.C (getStringToIndex): new method.
12520
12521 2001-07-29  Asger Alstrup Nielsen  <alstrup@alstrup>
12522
12523         * *: Reduced header file dependencies all over.
12524
12525 2001-07-30  Baruch Even  <baruch@lyx.org>
12526
12527         * buffer.C (readInset): Stop auto-converting InsetFig to InsetGraphics.
12528
12529 2001-07-29  Baruch Even  <baruch@lyx.org>
12530
12531         * buffer.C (readInset): Changed GRAPHICS to Graphics.
12532
12533 2001-07-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12534
12535         * ParameterStruct.h (endif): add a default constructor to make
12536         sure that all variables is initialized.
12537
12538         * ParagraphParameters.C (ParagraphParameters): adjust
12539
12540 2001-07-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12541
12542         * BufferView_pimpl.C (Dispatch): use WHOLE_WORD selection for
12543         index; also, check that there is something to index, and that it
12544         does not span over several paragraphs.
12545         (doubleClick): use WHOLE_WORD_STRICT for double click.
12546
12547         * text.C (getWord): handle new WHOLE_WORD_STRICT word_location value.
12548
12549         * text2.C (toggleFree): do selection with WHOLE_WORD_STRICT
12550         scheme.
12551
12552 2001-07-26  Baruch Even  <baruch@lyx.org>
12553
12554         * buffer.C (readInset): Changed to call up InsetGraphics when reading
12555         an InsetFig figure, backwards compatible reading of old figure code.
12556
12557 2001-07-27  Juergen Vigna  <jug@sad.it>
12558
12559         * text2.C: font.realize function adaption.
12560
12561         * text.C (draw): add a warnings lyxerr text if needed.
12562
12563         * layout.C: font.realize function adaption.
12564
12565         * language.C: add inherit_language and implement it's handlings
12566
12567         * bufferview_funcs.C (StyleReset): remove language parameter from
12568         font creation (should be language_inherit now).
12569
12570         * bufferparams.C (writeFile): handle ignore_language.
12571
12572         * paragraph.C (getFontSettings): the language has to be resolved
12573         otherwise we have problems in LyXFont!
12574
12575         * lyxfont.C (lyxWriteChanges): added document_language parameter
12576         (update): removed unneeded language parameter
12577
12578         * paragraph.C (validate): fixed wrong output of color-package when
12579         using interface colors for certain fonts in certain environments,
12580         which should not seen as that on the final output.
12581
12582 2001-07-26  John Levon  <moz@compsoc.man.ac.uk>
12583
12584         * BufferView_pimpl.C:
12585         * Thesaurus.h:
12586         * Thesaurus.C:
12587         * Makefile.am:
12588         * commandtags.h:
12589         * LyXAction.C: add thesaurus support
12590
12591         * lyxfind.h:
12592         * lyxfind.C: add "once" parameter, for thesaurus, to not
12593           move to the next match
12594
12595 2001-07-26  Juergen Vigna  <jug@sad.it>
12596
12597         * lyxfont.C (realize): honor ignore_language too!
12598         (resolved): ditto.
12599
12600         * paragraph.C (TeXOnePar): handle ignore language right (hopefully).
12601
12602         * text.C (draw): one place more for ignore_language to not draw
12603         itself!
12604
12605 2001-07-25  Angus Leeming  <a.leeming@ic.ac.uk>
12606
12607         * LaTeXFeatures.C (getPackages): clean-up a little of the natbib code.
12608
12609 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12610
12611         * buffer.C (parseSingleLyXformat2Token): a more general fix for
12612         the minipage conversion problem.
12613
12614 2001-07-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12615
12616         * buffer.C (parseSingleLyXformat2Token): check minipage if we
12617         insert an inset.
12618
12619 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12620
12621         * BufferView.h: don't forward declare WorkArea
12622
12623         * BufferView.C: don't include WorkArea.h
12624
12625 2001-07-25  André Pönitz <poenitz@gmx.net>
12626
12627         * commandtags.h:
12628         * LyXAction.C:
12629         * lyxfunc.C:  new LFUN 'math-space'
12630
12631         * BufferView.[Ch]: remove unneeded reference to 'WorkArea'
12632
12633 2001-07-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12634
12635         * text2.C (toggleInset): call open/close
12636
12637 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12638
12639         * lyxfunc.C (dispatch): add debug for the disabled case
12640
12641         * font.C (buttonText): make similar to rectText
12642
12643         * buffer.C (readInset): comment out parsing of insetlist and
12644         insttheorem
12645
12646         * PainterBase.C (rectText): small correction
12647
12648         * BufferView_pimpl.C: comment out insettheorem and insetlist
12649         * LyXAction.C: ditto
12650         * commandtags.h: ditto
12651
12652 2001-07-24  Juergen Vigna  <jug@sad.it>
12653
12654         * text.C (draw): honor the ignore_language.
12655
12656         * lyxfont.C (LyXFont): set language to ignore_language in FONT_INIT1.
12657
12658 2001-07-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12659
12660         * lyxfunc.C (getStatus): BREAKLINE does _not_ insert a special
12661         char inset.
12662
12663 2001-07-24  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
12664
12665         * lyxtext.h: remove unused (and unimplemented) methods
12666
12667 2001-07-23  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
12668
12669         * text.C (getVisibleRow): honor background color
12670
12671         * PainterBase.h:
12672         * Painter.h: remove default color argument for fillRectangle
12673
12674         * text.C (backgroundColor): new method
12675
12676 2001-07-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12677
12678         * text.C (getVisibleRow): adjust
12679
12680         * font.[Ch] (rectText): new method, metrics
12681         (buttonText): new method, metrics
12682
12683         * PainterBase.[hC]: make rectText and buttonText always draw and take
12684         fewer paramteres.
12685
12686 2001-07-22  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
12687
12688         * ToolbarDefaults.C (read):
12689         * MenuBackend.C (read): allow escaping in all strings
12690
12691         * BufferView_pimpl.C (insertAndEditInset): new method.
12692         (Dispatch): use insertAndEditInset whenever appropriate.
12693
12694         * BufferView_pimpl.C (insertNote): removed
12695
12696         * BufferView_pimpl.C (smartQuote): new method, moved from
12697         BufferView; if an insetquote cannot be inserted, insert a '"'
12698         character instead.
12699
12700         * BufferView2.C: remove insertCorrectQuote();
12701
12702         * lyxfunc.C (getStatus): Add support for all remaingin
12703         inset-insert lfuns.
12704
12705         * trans_mgr.C (insertVerbatim): do not treat '"' specially.
12706
12707         * lyxrc.C (read): in RC_BIND, allow escaped sequences in the
12708         command (necessary to pass " as parameter of self-insert.
12709
12710         * text.C (selectWordWhenUnderCursor):
12711         (selectWord): add word_location parameter
12712         (selectWordWhenUnderCursor): same + remove special code for word
12713         boundary.
12714         (selectNextWord): use kind() to guess type of insetspecialchar,
12715         not latex().
12716
12717         * buffer.C (insertStringAsLines): new method, extracted from LyXText.
12718         (insertErtContents): create ert insets as collapsed.
12719         (readInset): better compatibility code for Info inset.
12720
12721 2001-07-20  Juergen Vigna  <jug@sad.it>
12722
12723         * lyxfunc.C (dispatch): use always LyXFind now!
12724
12725         * text2.C (init): add a reinit flag so that the LyXText can be
12726         reinited instead of deleted and reallocated (used in InsetText).
12727
12728         * BufferView_pimpl.C: use the new Inset::edit(BV, bool) where needed.
12729
12730         * text.C: ditto
12731
12732         * text2.C: ditto
12733
12734 2001-07-18  Juergen Vigna  <jug@sad.it>
12735
12736         * text.C (selectNextWord): handle insets inside inset by calling
12737         always the bv->text functions so that we can go up the_locking_inset!
12738
12739         * BufferView_pimpl.C (show/hideCursor): fixed cursor showing up
12740         in strange locations when inside an inset!
12741
12742         * lyxfind.[Ch]: give all functions a LyXText * parameter and implement
12743         handling to include insets.
12744
12745         * lyxfunc.C (dispatch): changes to calls SearchBackward/Forward.
12746
12747 2001-07-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12748
12749         * LyXAction.C (init):
12750         * commandtags.h:
12751         * BufferView_pimpl.C (Dispatch): change HYPHENATION_BREAK to
12752         LIGATURE_BREAK, since the name is so stupid.
12753
12754 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
12755
12756         * buffer.C (readInset): enable reading of new InsetNotes as well as old
12757         InsetInfos.
12758
12759         * FontLoader.C: remove FORMS_H_LOCATION cruft.
12760
12761         * sp_form.[Ch]: remove.
12762
12763         * src/LColor.[Ch]: remove noteframe. Change note to "yellow".
12764
12765         * src/BufferView_pimpl.C (insertNote): use InsetNote in place of
12766         InsetInfo.
12767
12768         * src/buffer.C (readInset): ditto.
12769
12770 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
12771
12772         * BufferView_pimpl.C (specialChar): new method. Obsoletes
12773         menuSeparator(), endOfSentenceDot(), ldots() and
12774         hyphenationPoint(), which are therefore removed.
12775         (Dispatch): handle LFUN_HYPHENATION_BREAK.
12776
12777         * LyXAction.C (init):
12778         * commandtags.h: add LFUN_HYPHENATION_BREAK.
12779
12780         * paragraph.C (getWord): removed.
12781
12782         * BufferView_pimpl.C (Dispatch): use last word or selection for
12783         LFUN_INDEX_INSERT_LAST and LFUN_INDEX_CREATE.
12784
12785         * lyx_main.C (queryUserLyXDir): do not ask before creating
12786         user_dir, except if it has been named explicitely.
12787
12788 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
12789
12790         * BufferView_pimpl.C (updateScrollbar): Fix crash when reading in
12791         a document of zero size.
12792
12793 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
12794
12795         * LaTeXFeatures.[Ch]: add variable "bool natbib" and set it
12796         approriately in the c-tor and in require().
12797         (getPackages): output the appropriate LaTeX for natbib support.
12798
12799         * buffer.C (parseSingleLyXformat2Token): set the new bufferparams
12800         variables "use_natbib" and "use_numerical_citations" when reading the
12801         LyX file.
12802         (readInset): read the various natbib cite commands.
12803         (validate): white-space change.
12804
12805         * bufferparams.[Ch]: new variables "bool use_natbib" and
12806         "bool use_numerical_citations".
12807         (writeFile): output them in the LyX file.
12808
12809 2001-07-19  Jean-Marc Lasgouttes  <lasgouttes@lyx.org>
12810
12811         * lyxfunc.C (getStatus): add support for all the inset insertion
12812         commands.
12813
12814         * text2.C (insertInset):
12815         * paragraph.C (insetAllowed):
12816         * BufferView_pimpl.C (insertInset): update to take in account the
12817         renaming of insertInsetAllowed
12818
12819         * lyxfunc.C (getStatus): add support for LFUN_INSET_TOGGLE.
12820
12821         * text2.C (getInset): new method. returns inset at cursor position.
12822
12823         * BufferView_pimpl.C (Dispatch): changes because of this.
12824
12825         * LyXAction.C (init): rename open-stuff to inset-toggle.
12826
12827         * commandtags.h: rename LFUN_OPENSTUFF to LFUN_INSET_TOGGLE.
12828
12829         * text2.C (toggleInset): renamed from openStuff; use
12830         Inset::open().
12831
12832 2001-07-13  Yves Bastide  <stid@libd-pc11.univ-bpclermont.fr>
12833
12834         * lyxrc.C (set_font_norm_type): recognise ISO_8859_15.
12835
12836         * lyxrc.h: added ISO_8859_15 to enum FontEncoding.
12837
12838 2001-07-18  Dekel Tsur  <dekelts@tau.ac.il>
12839
12840         * buffer.C (readLyXformat2): Add filename to the error dialog
12841
12842 2001-07-18  Juergen Vigna  <jug@sad.it>
12843
12844         * tabular.C (GetCellNumber): put an assert here instead of the check!
12845
12846 2001-07-17  Juergen Vigna  <jug@sad.it>
12847
12848         * BufferView_pimpl.C (toggleSelection): adapted too.
12849
12850         * text.C (selectNextWord): adapted for use with insets.
12851         (selectSelectedWord): ditto
12852
12853 2001-07-17  Juergen Vigna  <jug@sad.it>
12854
12855         * sp_spell.C (PSpell): fix initialitation order.
12856
12857 2001-07-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12858
12859         * paragraph.C: spacing
12860
12861 2001-07-17  Edwin Leuven  <leuven@fee.uva.nl>
12862
12863         * sp_spell.C: repair language selection for pspell
12864
12865 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12866
12867         * lyxfunc.h: change more methods to begin with lower char.
12868
12869 2001-07-16  Dekel Tsur  <dekelts@tau.ac.il>
12870
12871         * buffer.C (parseSingleLyXformat2Token): Generate error insets
12872         for unknown layouts.
12873
12874 2001-07-13  Dekel Tsur  <dekelts@tau.ac.il>
12875
12876         * buffer.C (readLyXformat2): Generate an error dialog if there are
12877         unknown layouts.
12878
12879 2001-07-16  Juergen Vigna  <jug@sad.it>
12880
12881         * sp_spell.C: always compile ISpell part.
12882
12883         * lyxrc.C: added use_pspell entry and it's handling.
12884
12885 2001-07-13  Juergen Vigna  <jug@sad.it>
12886
12887         * sp_spell.C: removed double includes.
12888
12889 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
12890
12891         Consistent use of Lsstream.h:
12892         * Lsstream.h: added using std::stringstream for consistencies sake.
12893
12894         * buffer.C: removed using std::stringstream
12895
12896         * lyxfont.C (stateText):
12897         * paragraph.C (asString):
12898         * text.C (selectNextWord, selectSelectedWord):
12899         * text2.C (setCounter):
12900         * vspace.C (asString, asLatexString):
12901         std::ostringstream -> ostringstream.
12902
12903 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
12904
12905         * LyXAction.C: add LFUN_HELP_ABOUTLYX
12906         * commandtags.h: add LFUN_HELP_ABOUTLYX
12907         * lyxfunc.C: add about lyx remove credits/copyright/version stuff
12908
12909 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
12910
12911         * BufferView_pimpl.C: sigchldchecker instead of sigchldhandeler in
12912         cursorToggle()
12913         * lyx_gui_misc.C: remove spellchecker
12914         * lyxfunc.C: showSpellchecker
12915         * sp_base.h: added
12916         * sp_ispell.h: added
12917         * sp_pspell.h: added
12918         * sp_spell.C: added
12919         * sp_form.[Ch]: removed
12920         * spellchecker.[Ch]: removed
12921
12922 2001-07-12  Kayvan A. Sylvan  <kayvan@sylvan.com>
12923
12924         * paragraph_pimpl.C (simpleTeXBlanks): Simply return if pass_thru
12925         is set.
12926         (simpleTeXSpecialChars): Simply print the input character without
12927         any special translation if pass_thru is set.
12928
12929         * layout.h: Added bool pass_thru to layout class for being able to
12930         implement pass through of a paragraph for Literate Programming.
12931
12932         * layout.C: add LT_PASS_THRU to LayoutTags enum.
12933         * layout.C (LyXLayout): set pass_thru to flase in constructor.
12934         * layout.C (Read): add "passthru" to list of layout tags and add
12935         code to set the pass_thru boolean when it is read.
12936
12937 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12938
12939         * trans_decl.h: remove allowed from KmodInfo
12940
12941         * trans.[Ch] (AddDeakkey): change prototype to not have allowd.
12942         remove allowed code
12943         (Load): adjust
12944
12945         * paragraph_pimpl.C (erase): use boost::prior
12946
12947         * Painter.C (text): use data() instead of c_str() when length is
12948         also provided.
12949         * WorkArea.C (putClipboard): ditto
12950         * font.h (width): ditto
12951
12952         * BufferView2.C: use it-> instead of (*it). for iterators
12953         * texrow.C: ditto
12954         * paragraph_pimpl.C: ditto
12955         * paragraph.C: ditto
12956         * minibuffer.C: ditto
12957         * language.C: ditto
12958         * kbmap.C: ditto
12959         * encoding.C: ditto
12960         * counters.C: ditto
12961         * converter.C: ditto
12962         * chset.C: ditto
12963         * Variables.C: ditto
12964         * TextCache.C: ditto
12965         * MenuBackend.C: ditto
12966         * LyXAction.C: ditto
12967         * LColor.C: ditto
12968         * FloatList.C: ditto
12969         * DepTable.C: ditto
12970         * ColorHandler.C (LyXColorHandler): ditto
12971
12972 2001-07-10  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12973
12974         * BufferView_pimpl.C (Dispatch): handle LFUN_OPENSTUFF.
12975
12976         * text2.C (openStuff): reintroduce this method (which had been
12977         nuked in NEW_INSETS frenzy).
12978
12979         * lyxfunc.C (Dispatch): when an action has not been handled, use
12980         its name in the error message, not its number.
12981
12982         * paragraph.C (inInset): change method name to begin with lowercase.
12983
12984         * undo_funcs.C:
12985         * text2.C: updates because of this.
12986
12987 2001-07-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
12988
12989         * ToolbarDefaults.C (add): add spaces in error message
12990
12991 2001-07-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
12992
12993         * buffer.C (readLyXformat2): initialize the ert comp. variables.
12994         (readLyXformat2): rename return_par to first_par, use lyxlex's
12995         pushToken and remove the manual push handling.
12996         (parseSingleLyXformat2Token): add another ert comp. variable:
12997         in_tabular, rename return_par to first_par. handle newlines better
12998
12999 2001-07-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13000
13001         * kbsequence.C (getiso): redirect debug info to Debug::KBMAP.
13002
13003 2001-07-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13004
13005         * text2.C (getParFromID): removed
13006
13007         * buffer.C (getParFromID): new method moved form lyxtext.
13008         * BufferView2.C (insertErrors): adjust
13009         (setCursorFromRow): adjust
13010         * BufferView_pimpl.C (restorePosition): adjust
13011         * lyxfunc.C (Dispatch): adjust
13012         * undo_funcs.C (textUndo): adjust
13013         (textRedo): adjust
13014         (textHandleUndo): adjust
13015         (textHandleUndo): adjust
13016
13017 2001-07-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13018
13019         * buffer.C: up' the LYX_FORMAT
13020
13021         * lyxfont.h: turn NO_LATEX on as default
13022
13023         * buffer.C (insertErtContents): new methods of tex style compability.
13024         (parseSingleLyXformat2Token): use it several places.
13025         * tabular.C (OldFormatRead): and here
13026
13027 2001-07-07  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13028
13029         * text2.C: remove some commented code.
13030         reindent file.
13031
13032         * trans_mgr.[Ch]: simplify normalkey to only take a char as arg.
13033         * trans.C: changes because of the above.
13034
13035 2001-07-07  Dekel Tsur  <dekelts@tau.ac.il>
13036
13037         * text2.C (setCounter): Fix counters bug with bibliography layout.
13038
13039 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13040
13041         * paragraph_pimpl.C (simpleTeXBlanks): don't go through owner_ for
13042         own member functions
13043         (simpleTeXSpecialChars): ditto
13044
13045 2001-07-06  Juergen Vigna  <jug@sad.it>
13046
13047         * a lot of files: changed the access to LyXText::status and the
13048         call of undo-functions.
13049
13050         * undo.[Ch]: added a inset_id to the undo informations.
13051
13052         * undo_funcs.[Ch]: added and moved here all undo functions.
13053
13054         * lyxtext.h: give the status enum a weight, made status_ a private
13055         variable and made accessor functions for it, removed the whole bunch
13056         of undo-functions as they are now in their own file, make some
13057         functions publically available. Added function ownerParagraph with
13058         int parameter.
13059
13060         * paragraph.[Ch]: added "bool same_ids" to the constructor,
13061         made InInset() a const function, added getParFromID() function.
13062
13063         * buffer.[Ch]: added const version for inset_iterator functions,
13064         added getInsetFromID() function.
13065
13066         * BufferView2.C, BufferView_pimpl.C, text.C, text2.C, lyxfunc.C:
13067         changed undo functions for new version.
13068
13069 2001-07-05  Juergen Vigna  <jug@sad.it>
13070
13071         * paragraph_pimpl.C (Pimpl): set id_ also here (this is because some
13072         unknow mechanism does not call the proper constructor but only this
13073         one also if I request the other!?
13074
13075 2001-07-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13076
13077         * BufferView_pimpl.C (resizeCurrentBuffer): init the new LyXText
13078
13079         * text2.C (LyXText): use initialization lists.
13080
13081         * lyxtext.h (Selection): initialize set_ and mark_
13082         (init): remove method
13083
13084 2001-07-05  Dekel Tsur  <dekelts@tau.ac.il>
13085
13086         * LaTeX.C (scanLogFile): Parse rerun messages from latex packages.
13087
13088 2001-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13089
13090         * screen.[Ch]: change method names to begin with lowercase
13091
13092         * BufferView_pimpl.C (updateScrollbar): simplify further and
13093         hopefully make it a bit faster.
13094
13095 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13096
13097         * ColorHandler.C (LyXColorHandler): use GUIRunTime instead of
13098         calling directly xforms functions.
13099
13100         * Painter.C (Painter):
13101         * lyx_cb.C (MenuWrite):
13102         * FontInfo.C (query): use GUIRunTime::x11Display() instead of
13103         fl_display.
13104
13105         * lyx_gui.C: remove bogus guiruntime extern declaration.
13106
13107 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13108
13109         * text2.C (redoHeightOfParagraph): comment out stuff we don't need
13110         in NEW_INSETS
13111         (redoDrawingOfParagraph): ditto
13112         (redoParagraphs): ditto
13113         (cutSelection): don't create a object for CutAndPaste use the
13114         static method directly
13115         (pasteSelection): ditto
13116
13117         * bufferview_funcs.[Ch]: move ProhibitInput and AllowInput to
13118         LyXview (+ rename)
13119
13120 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13121
13122         * modifications to some other files because of this.
13123
13124         * Makefile.am (lyx_SOURCES): add XFormsView
13125
13126         * XFormsView.[Ch]: new files
13127
13128         * LyXView.[Ch]: make LyXView a base class for the gui handling for
13129         the main window. Move the gui dependent stuff to XFormsView
13130
13131 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13132
13133         * tabular.C (GetCellInset): update cur_cell also in the row/col
13134         version of this function.
13135
13136         * lyxfunc.C: no need to include figure_form.h here.
13137
13138         * FontLoader.h:
13139         * lyxfunc.h:
13140         * lyxscreen.h:
13141         * text2.C:
13142         * lyxvc.C: no need to include forms.h here.
13143
13144 2001-06-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13145
13146         * lyxrc.C (read): change debugging channel for RC_BIND to lyxrc.
13147
13148         * lyxfunc.C (Dispatch):
13149         * Spacing.C (set):
13150         * BufferView_pimpl.C (Dispatch): use .c_str() on istringstream
13151         constructor argument.
13152
13153 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13154
13155         * paragraph.C (Paragraph): dont't clear, and just set layout.
13156         (makeSameLayout): use params's copy contructor.
13157
13158         * ParagraphParameters.[Ch] (makeSame): delete method
13159
13160 2001-06-29  John Levon  <moz@compsoc.man.ac.uk>
13161
13162         * Variables.[Ch]: fix indentation, rename set to isSet
13163
13164 2001-06-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13165
13166         * lyxfunc.C (Dispatch): fix typo
13167
13168 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13169
13170         * paragraph_pimpl.C: add std:: qualifier to lower_bound and
13171         upper_bound.
13172
13173         * bufferlist.C: include assert.h for emergencyWrite().
13174
13175 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
13176
13177         * lyx_main.C: if we can't even find a readable LYX_DIR directory,
13178           give up at last (bug #425202) !
13179
13180 2001-06-27  John Levon  <moz@compsoc.man.ac.uk>
13181
13182         * lyx_gui_misc.C:
13183         * sp_form.h:
13184         * sp_form.C:
13185         * spellchecker.h:
13186         * spellchecker.C: strip spellchecker options and bring up
13187           preferences tab instead
13188
13189 2001-06-28  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13190
13191         * BufferView_pimpl.C (Dispatch): add .c_str() to the argument of
13192         the istringstream constructor
13193
13194 2001-06-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13195
13196         * paragraph.C (getLayout): fix return value
13197
13198         * paragraph.h: do not declare getLayout as inline.
13199
13200         * lyxtext.h: remove LyXText:: qualifier to changeRegionCase
13201
13202 2001-06-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13203
13204         * lyxcursor.h (operator<): new func
13205         (operator>): new func
13206         (operator>=): new func
13207         (operator<=): new func
13208
13209         * text.C (changeCase): use selection.start and selection.end
13210         (changeRegionCase): require from to be <= to. Require par to be a
13211         valid paragraph.
13212
13213         * LaTeXFeatures.C (getFloatDefinitions): std:: qualify ostream
13214
13215 2001-06-27  Juergen Vigna  <jug@sad.it>
13216
13217         * text.C (cursorLeftOneWord): changed to return the cursor and added
13218         overlay with BufferView * parameter which calls this one.
13219         (getWord): added
13220         (selectWord): use new getWord function.
13221         (changeCase): renamed from changeWordCase as and extended to work
13222         also on selections.
13223
13224         * lyxtext.h: added enum word_location
13225
13226         * BufferView_pimpl.C (Dispatch): change function changeWordCase to
13227         changeCase as this operates now also on selections.
13228
13229 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
13230
13231         * lyxfunc.C (getStatus): support LFUN_MATH_MUTATE
13232
13233         * many files: send debug output to Debug::INFO instead of
13234         Debug::ANY.
13235
13236         * converter.C (View):
13237         (Convert):
13238         (Move): send debug output to Debug::FILES instead of console.
13239
13240 2001-06-26  The LyX Project  <lyx@rose.home.sad.it>
13241
13242         * lyxfunc.C (getStatus): use func_status
13243
13244         * func_status.h: new header, describing the results of
13245         LyXFunc::getStatus;
13246
13247         * lyxfunc.C (getStatus): add support for LFUN_MATH_VALIGN and
13248         LFUN_MATH_HALIGN.
13249
13250 2001-06-25  The LyX Project  <jug@sad.it>
13251
13252         * buffer.C (sgmlOpenTag):
13253         (sgmlCloseTag):
13254         (SimpleDocBookOnePar):  disable the depth spaces, for the moment.
13255
13256 2001-06-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13257
13258         * text2.C: remove some dead code
13259
13260         * tabular.C (GetCellInset): store the last cell checked (gotten)
13261
13262         * tabular.h: add the helper for the speedup
13263
13264         * lyxtext.h: remove some dead code
13265
13266 2001-06-26  The LyX Project  <Asger>
13267
13268         * paragraph.C: Change export to LaTeX of alignment to
13269         \begin{center} and family for better roundtrip work with reLyX.
13270
13271         * Tune the math drawing a bit.
13272
13273 2001-06-25  The LyX Project  <Asger>
13274
13275         * LColor.C (LColor): New color for math background. New color
13276         for buttons.
13277
13278 2001-06-25  The LyX Project  <jug@sad.it>
13279
13280         * lyxfunc.C (MenuNew): remove extra check for .lyx file
13281
13282         * lyxfunc.C (Open):
13283         * bufferlist.C (newFile): do not restrict to files ending with
13284         .lyx
13285
13286         * BufferView_pimpl.C (MenuInsertLyXFile):
13287
13288 2001-06-24  The LyX Project  <jug@sad.it>
13289
13290         * lyxlex_pimpl.C (compare_tags): use compare_ascii_no_case instead
13291         of compare_no_case
13292
13293 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13294
13295         * lyxtext.h: rename most methods to begin with a small char.
13296         Lots of changes because of this.
13297
13298         * paragraph.C (Paragraph): do not call fitToSize
13299         (erase): call Pimpl::erase
13300         (insertChar): call Pimpl::insertChar
13301         (insertInset): call Pipl::insertInset
13302         (breakParagraph): do not call fitToSize
13303         (breakParagraphConservative): do not call fitToSize
13304         (fitToSize): remove method
13305
13306         * buffer.C (parseSingleLyXformat2Token): do not call fitToSize
13307
13308 2001-06-24  The LyX Project  <Asger>
13309
13310         * Fix Qt compilation^2
13311
13312 2001-06-24  The LyX Project  <jug@sad.it>
13313
13314         * paragraph.[Ch] (outerHook): new method. mostly equivalent to
13315         depthHook(getDepth()-1).
13316
13317         * paragraph.h:
13318         * ParagraphParameters.h:
13319         * ParameterStruct.h: change type of depth to unsigned int ==
13320         depth_type. Many adaptations to other files before of that.
13321
13322 2001-06-24  The LyX Project  <Asger>
13323
13324         * Fix Qt compilation.
13325
13326 2001-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13327
13328         * paragraph.h: renamed several methods to begin with small letter.
13329         several changes to many parts of the code because of this.
13330
13331 2001-06-23  The LyX Project  <jug@sad.it>
13332
13333         * text2.C (InsertStringAsLines): renamed from InsertStringA;
13334         rewritten to discard all double spaces when KeepEmpty is off
13335         (InsertStringAsParagraphs): renamed from InsertStringB; rewritten
13336         to only handle newlines but not fiddle with spaces and friends.
13337
13338         * lyxfunc.C (MenuNew): when doing 'new from template', use
13339         template_path as default directory
13340
13341 2001-06-23  The LyX Project  <Asger>
13342
13343         * Clean-up of header file includes all over
13344         * paragraph.h: Move some of the stuff into paragraph_pimpl.h
13345
13346 2001-06-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13347
13348         * paragraph.h: renamed from lyxparagraph.h
13349
13350 2001-06-23  Asger  <lyx@violet.home.sad.it>
13351
13352         * Buffer.h: Removed Buffer::resize
13353         * BufferList.h: Removed BufferList::resize
13354         * LyXView.h: Added LyXView::resize. This way, we will only reflow
13355         the document lazily when we change the width, or the font settings.
13356
13357 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
13358
13359         * lyxfunc.C: silently ignore empty dispatches from the minibuffer
13360
13361 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
13362
13363         * buffer.h: remove out of date comment
13364
13365 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
13366
13367         * lyxscreen.h:
13368         * screen.C: fix "theoretical" GC leak
13369
13370 2001-06-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13371
13372         * LaTeX.C (scanAuxFile):
13373         (deplog): remove trailing \r when reading stream (useful under
13374         win32)
13375
13376 2001-06-15  Angus Leeming  <a.leeming@ic.ac.uk>
13377
13378         * BufferView_pimpl.C (fitCursor): emit a signal updateParagraph.
13379         (resizeCurrentBuffer): have functions BufferView::theLockingInset()
13380         and BufferView::theLockingInset(Inset*), so should use them and not
13381         access bv_->text->the_locking_inset directly.
13382
13383         * lyxfunc.C (Dispatch): cosmetic name change of three signals.
13384
13385 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
13386
13387         * Makefile.am:
13388         * tex-defs.h: remove old unused file
13389
13390 2001-06-15  John Levon  <moz@compsoc.man.ac.uk>
13391
13392         * BufferView_pimpl.C: fix typo, remove minibuffer message
13393           when buffer has loaded
13394
13395 2001-06-14  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13396
13397         * lyxfunc.C (Dispatch): use stringstream
13398         (MenuNew): use stringstream
13399         (Open): use stringstream
13400
13401         * importer.C (Import): use stringstream
13402
13403         * bufferview_funcs.C (CurrentState): use stringstream
13404
13405         * LaTeX.C (run): use stringstream
13406
13407         * BufferView_pimpl.C (savePosition): use stringstream
13408         (restorePosition): use stringstream
13409         (MenuInsertLyXFile): use stringstream
13410
13411 2001-06-14  Angus Leeming  <a.leeming@ic.ac.uk>
13412
13413         * BufferView.C:
13414         * Bullet.C:
13415         * ColorHandler.C:
13416         * FontInfo.C:
13417         * FontLoader.C:
13418         * LColor.C:
13419         * LaTeXFeatures.C:
13420         * Painter.C:
13421         * gettext.C:
13422         * lyx_gui_misc.C:
13423         * lyxserver.C:
13424         * vspace.C: removed // -*- C++ -*- as first line.
13425
13426         * lyxfind.h:
13427         * version.h: added // -*- C++ -*- as first line.
13428
13429 2001-06-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13430
13431         * lyxfunc.C (getStatus): support LFUN_READ_ONLY_TOGGLE
13432
13433         * text2.C (SetSelectionOverString): do not test str[i]==0 for end
13434         of string
13435
13436 2001-06-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13437
13438         * buffer.C (parseSingleLyXformat2Token): fix compatability reading
13439         of floats.
13440
13441 2001-06-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13442
13443         * gettext.C: include LString.h even when --disable-nls is on.
13444
13445 2001-06-12  Angus Leeming  <a.leeming@ic.ac.uk>
13446
13447         * converter.h (Get): changed argument type from int to
13448         FormatList::size_type to avoid unnecessary conversion.
13449
13450         * bufferview_funcs.C (ToggleAndShow): check state of LyXText pointer
13451         before using it.
13452
13453 2001-06-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13454
13455         * gettext.h: include LString.h even when --disable-nls is on.
13456
13457 2001-06-07  Juergen Vigna  <jug@sad.it>
13458
13459         * text.C (BreakAgain): subst spaces with tabs.
13460
13461         * paragraph.C (deleteInsetsLyXText): set recursive on deleteLyXText.
13462         (resizeInsetsLyXText): set force on resizeLyXText.
13463
13464 2001-06-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13465
13466         * gettext.h (gettext_init):
13467         (locale_init): use a real definition instead of a macro
13468
13469 2001-06-02  John Levon  <moz@compsoc.man.ac.uk>
13470
13471         * Bufferview_pimpl.C:
13472         * LColor.h:
13473         * LColor.C: further lcolor tidies
13474
13475 2001-06-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13476
13477         * BufferView_pimpl.C (updateScrollbar): simplify.
13478
13479         * BufferView2.C: don't include insets/insetinfo.h, change
13480         prototype for insertInset and call the Pimpl version. let
13481         updateInset call Pimpl version.
13482
13483         * BufferView.h: move inset_slept to BufferView::Pimpl, move
13484         gotoInset to BufferView::Pimpl
13485
13486 2001-06-01  Juergen Vigna  <jug@sad.it>
13487
13488         * lyxfunc.C (Dispatch): LFUN_PREFIX don't call the update if we're
13489         inside a LockingInset (is the update needed at all?).
13490
13491 2001-05-31  Juergen Vigna  <jug@sad.it>
13492
13493         * BufferView_pimpl.C (Dispatch): we need a new instanze of cursor
13494         here not the old one otherwise how should we compare it afterwards
13495         if it's the same!
13496
13497 2001-06-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13498
13499         * lyxfont.C:
13500         * tabular.C:
13501         * tabular-old.C:
13502         * FontInfo.C: bring C functions into global namespace when
13503         necessary
13504
13505 2001-05-30  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13506
13507         * LString.h: make sure config.h has been loaded before LString.h.
13508
13509         * lyxlex_pimpl.C (EatLine): comment out annoying debug messages
13510         (one for each char read by EatLine!).
13511
13512         * lyx_main.C (init): constify lyxdir. Lowercase the name of some
13513         variables.
13514
13515 2001-06-01  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13516
13517         * paragraph.C (BreakParagraph): set the inset_owner in the new par
13518         to the same as the par we break from
13519
13520 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13521
13522         * commandtags.h: add LFUN_INSET_WIDE_FLOAT
13523
13524         * MenuBackend.C (expand): also create menu entries for wide
13525         versions of the floats.
13526
13527         * LyXAction.C (init): add entry for LFUN_INSET_WIDE_FLOAT
13528
13529         * BufferView_pimpl.C (Dispatch): implement LFUN_INSET_WIDE_FLOAT
13530
13531         * Makefile.am (lyx_DEPENDENCIES): adjust for change in
13532         frontends/Makefile.am
13533
13534         * text2.C: adjust
13535         * text.C: adjust
13536
13537
13538         * tabular.C (getTokenValue): add std::
13539
13540         * tabular-old.C (getTokenValue): add std::
13541         (getTokenValue): ditto
13542         (getTokenValue): ditto
13543
13544         * screen.C (ToggleSelection): adjust
13545
13546         * lyxtext.h: put selection cursors inside a Selection struct.
13547
13548         * lyxfunc.C (moveCursorUpdate): adjust
13549
13550         * lyxfont.C (latexWriteStartChanges): add std::
13551
13552         * lyxfind.C: adjust
13553
13554         * font.h: delete with(char const *, LyXFont const &)
13555
13556         * buffer.C (parseSingleLyXformat2Token): use contains instead of strstr
13557
13558         * FontInfo.C (getFontname): add std::
13559
13560         * BufferView_pimpl.C (resizeCurrentBuffer): adjust
13561         (workAreaButtonPress): adjust
13562         (tripleClick): adjust
13563         (update): adjust
13564         (moveCursorUpdate): adjust
13565         (Dispatch): adjust
13566
13567         * BufferView2.C (gotoInset): adjust
13568
13569 2001-05-30  Juergen Vigna  <jug@sad.it>
13570
13571         * spellchecker.C (USE_ORIGINAL_MANAGER_FUNCS): as it seems only I use
13572         to check pspell I add this as default as I now have new pspell
13573         libraries and they seem to use this.
13574
13575 2001-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13576
13577         * text2.C (CutSelection): make the cursor valid before the call to
13578         ClearSelection.
13579
13580 2001-05-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13581
13582         * kbsequence.C (parse): de-uglify a bit the parsing code, which
13583         relied on 0 terminated strings and other horrors. Bug found due to
13584         the new assert in lyxstring!
13585
13586         * lyx_main.C (defaultKeyBindings): add bindings the cursor-related
13587         KP_ keys.
13588
13589 2001-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13590
13591         * lyx_main.C (defaultKeyBindings): move self-insert KP_ bindings
13592         to latinkeys.bind.
13593
13594         * lyxfunc.C (processKeySym): change method of getting to the
13595         self-insert char.
13596
13597         * BufferView(2).[Ch]: move hfill, protectedBlank, newline,
13598         menuSeparator, endOfSentenceDot, ldots, hypenationPoint and menuUndo
13599         * BufferView_pimpl.[Ch]: here as private methods.
13600
13601 2001-05-28  Juergen Vigna  <jug@sad.it>
13602
13603         * text.C (SetHeightOfRow): added the update() call again as it is
13604         needed to initialize inset dimensions!
13605
13606 2001-05-16  Juergen Vigna  <jug@sad.it>
13607
13608         * text2.C (SetCharFont): Add new function with BufferView * and
13609         bool toggleall parameters for setting insets internal fonts.
13610         (SetFont): Freeze the undo as we may change fonts in Insets and
13611         all this change should be inside only one Undo!
13612
13613         * bufferview_funcs.C (ToggleAndShow): fixed this functions for
13614         setting font's in insets as for them we have the SetFont function!
13615
13616 2001-05-15  Juergen Vigna  <jug@sad.it>
13617
13618         * text2.C (ClearSelection): to be sure we REALLY don't have any
13619         selection anymore!
13620
13621         * tabular.C (TeXCellPreamble): fixed the left border problem for
13622         multicolumn cells.
13623
13624 2001-05-27  Dekel Tsur  <dekelts@tau.ac.il>
13625
13626         * LaTeX.C (deplog): Make sure that the main .tex file is in the
13627         dependancy file
13628
13629 2001-05-23  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13630
13631         * lyx_main.C (defaultKeyBindings): set KP_enter to point at
13632         LFUN_BREAKPARAGRAPH.
13633
13634         * LyXAction.C (init): remove external name for LFUN_LAYOUTNO, set
13635         help test to "internal only", similar for LFUN_INSERT_URL
13636
13637         * BufferView_pimpl.C (Dispatch::LFUN_QUOTE): change it to to the insertcorrectQuote.
13638         (Dispatch::LFUN_SELFINSERT): fix to handle math greek,
13639         auto_region_delete and deadkeys.
13640
13641 2001-05-22  John Levon  <moz@compsoc.man.ac.uk>
13642
13643         * LColor.h:
13644         * LColor.C: remove some dead entries, tidy a little
13645
13646 2001-05-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13647
13648         * lyxfunc.C (processKeySym): comment the Escape handling, remove
13649         commented code.
13650         (Dispatch): implement LFUN_ESCAPE
13651
13652         * commandtags.h: add LFUN_ESCAPE
13653
13654         * LyXAction.C (init): add entry for LFUN_ESCAPE
13655
13656         * BufferView_pimpl.C (Dispatch): adjust for open_new_inset move.
13657         Remove commented code.
13658         (insertNote): moved here
13659         (open_new_inset): moved here
13660
13661         * BufferView[2].[Ch]: move insertNote and open_new_inset to
13662         BufferView_pimpl
13663
13664 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13665
13666         * kbmap.C (findbinding): clean it up and make it work correctly.
13667
13668         * lyx_main.C (init): do not pass argc and argv as parameters
13669
13670 2001-05-16  Ruurd Reitsma  <r.a.reitsma@wbmt.tudelft.nl>
13671
13672         * buffer.C: fix path for OS/2 & Win32
13673
13674         * lyx_gui.C:
13675         * lyx_main:
13676         * lyx_main.C: Added os:: class.
13677
13678         * os2_defines.h: update
13679
13680 2001-05-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13681
13682         * lyxfunc.[Ch] (processKeySym): return void. Handle unknown actions
13683         better by trying again with reduced state.
13684
13685 2001-05-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13686
13687         * lyxrc.C (read): print error about invalid key sequence only when
13688         debugging (because not all latinX keysyms are known to some X
13689         servers)
13690
13691         * kbsequence.C (getiso): add a few std:: qualifiers
13692         (getiso): comment out extra return statement.
13693
13694 2001-05-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13695
13696         * BufferView_pimpl.C (Dispatch): comment out the old "default" key
13697         handling.
13698         (Dispatch): enhance the accent inset a bit. (not perfect)
13699
13700 2001-05-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13701
13702         * buffer.C (makeLaTeXFile): use stringstream on language_optons.
13703
13704 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13705
13706         * bufferlist.C (emergencyWrite): fix assert() call
13707
13708 2001-05-04  Kayvan A. Sylvan  <kayvan@sylvan.com>
13709
13710         * text.C (InsertChar): Added trivial patch to only send the "you
13711         can not do multiple spaces this way" message once during a
13712         session.
13713
13714 2001-05-08  Baruch Even  <baruch@lyx.org>
13715
13716         * Makefile.am: Changed order of libraries to get LyX to link properly
13717         with the gnome frontend.
13718
13719 2001-05-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13720
13721         * LaTeXFeatures.h: add a std:: qualifier
13722
13723 2001-05-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13724
13725         * paragraph.C (String): use stringstream
13726
13727 2001-05-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13728
13729         * paragraph.C (writeFile): remove footflag arg
13730
13731         * buffer.C (makeLaTeXFile): use stringstream
13732         (latexParagraphs): remove footnot gurba
13733
13734         * LaTeXFeatures.C (getPackages): use stringstream
13735         (getMacros): likewise
13736         (getTClassPreamble): likewise
13737         (getFloatDefinitions): new method
13738
13739         * paragraph.C (writeFile): reindent
13740         (Erase): reindent
13741
13742         * WorkArea.h: revert the xpos + etc changes.
13743
13744         * CutAndPaste.C (SwitchLayoutsBetweenClasses): constify name and s
13745
13746         * lyxparagraph.[Ch]: add copy constructor, remove Clone
13747
13748         * CutAndPaste.C (copySelection): use LyXParagraph copy constructor
13749         (pasteSelection): likewise
13750         * text2.C (CreateUndo): likewise
13751
13752 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13753
13754         * minibuffer.C (peek_event): temporarily reduce the functionality
13755         of the minibuffer (to allow args on lfuns)
13756
13757         * commandtags.h: remove LFUN_LOA_INSERT, LFUN_LOF_INSERT,
13758         LFUN_LOT_INSERT. add LFUN_FLOAT_LIST
13759
13760         * buffer.C (readInset): add compability reading of old float
13761         lists, add reading of new style float list.
13762         (readInset): avoid reevaluation of inscmd.getCmdName()
13763         (getLists): reindent
13764
13765         * MenuBackend.C (MenuItem): implement parsing of
13766         md_floatlistinsert and md_floatinsert.
13767         (expand::LastFiles): move initalizaton of iterators out of loop,
13768         avoid reevaluation.
13769         (expand::Documents): introduce typdedef vector<string> Strings,
13770         and use it.
13771         (expand::ExportFormats): introduce typedef vector<Format const *>
13772         Formats, and use it.
13773         (expand): implement FloatListInsert and FloatInsert.
13774
13775         * LyXAction.C (init): remove entries for LFUN_LOA_INSERT,
13776         LFUN_LOA_VIEW, LFUN_LOF_INSERT, LFUN_LOFVIEW, LFUN_LOT_INSERT,
13777         LFUN_LOTVIEW. Add entry for LFUN_FLOAT_LIST
13778
13779         * BufferView_pimpl.C (Dispatch::LFUN_TOC_INSERT): remvoe the float
13780         handling.
13781         (Dispatch::LFUN_FLOAT_LIST): implement
13782
13783 2001-04-28  Kayvan A. Sylvan  <kayvan@sylvan.com>
13784
13785         * LaTeX.C (run): Fix problem with --export code.
13786
13787 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
13788
13789         * BufferView.[Ch] (workarea): removed.
13790         (getClipboard) new method; wrapper for workarea()->getClipboard()
13791
13792         * ToolbarDefaults.C (read): removed final lex.next() command; it's a
13793         bug.
13794
13795         * WorkArea.h (width, height, xpos, ypos): These methods all
13796         returned the dimensions of the work_area sub-area of WorkArea,
13797         resulting in a position error if the WorkArea were resized. Now
13798         return the dimensions of the entire WorkArea.
13799
13800         * lyx_main.C (ReadUIFile): don't print out spurious warnings.
13801
13802 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13803
13804         * LaTeX.C (deplog): correct the syntax of regex reg1
13805
13806 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13807
13808         * undo.C: remove !NEW_INSETS cruft
13809
13810 2001-04-28  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13811
13812         * text2.C: remove !NEW_INSETS cruft
13813
13814         * text.C: remove !NEW_INSETS cruft
13815
13816         * tabular.C: remove !NEW_INSETS cruft
13817
13818         * spellchecker.C: remove !NEW_INSETS cruft
13819
13820         * lyxtext.h: remove !NEW_INSETS cruft
13821
13822         * lyxlex_pimpl.C: remove !NEW_INSETS cruft
13823
13824         * lyxfunc.C: remove !NEW_INSETS cruft
13825
13826         * lyxfind.C: remove !NEW_INSETS cruft
13827
13828         * lyx_cb.C: remove !NEW_INSETS cruft
13829
13830         * figureForm.C: remove  !NEW_INSETS cruft
13831
13832         * bufferview_funcs.[Ch]: remove !NEW_INSETS cruft
13833
13834         * buffer.[Ch]: remove !NEW_INSETS cruft
13835
13836         * ToolbarDefaults.C: remove !NEW_INSETS cruft
13837
13838         * CutAndPaste.C: remove !NEW_INSETS cruft
13839
13840         * BufferView_pimpl.C: remove !NEW_INSETS cruft
13841
13842         * BufferView2.C: remove !NEW_INSETS cruft
13843
13844         * BufferView.h: remove !NEW_INSETS cruft
13845
13846 2001-05-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13847
13848         * Lsstream.h: include LString.h before the sstream headers to
13849         fix problem with gcc 2.95.3 and lyxstring
13850
13851 2001-05-02  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13852
13853         * lyx_main.C: add using directives when needed for C functions
13854         declared in std:: namespace.
13855
13856 2001-04-27  Juergen Vigna  <jug@sad.it>
13857
13858         * text.C (Fill): return 20 instead of 0 if paper_width < 0 (endless)
13859         (SetHeightOfRow): comment out the update call should not be needed!
13860
13861 2001-04-13  Juergen Vigna  <jug@sad.it>
13862
13863         * tabular.C (GetAdditionalHeight): changed parameter from cell to row.
13864         (LyXTabular): tried to minimize operator= operations (and realized
13865         hopfully Lars wish).
13866
13867 2001-04-27  Juergen Vigna  <jug@sad.it>
13868
13869         * spellchecker.C (sc_check_word): fixed Assert to lyx::Assert.
13870
13871 2001-04-27  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13872
13873         * lyxfunc.C (Dispatch): hack to make listof algorithm work
13874
13875         * buffer.C (readInset): hack to make listof algorithm work
13876
13877         * BufferView_pimpl.C: hack to make listof algorithm work
13878
13879 2001-04-26  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13880
13881         * LyXAction.C: removed all !NEW_INSETS cruft
13882         (init): moved lfun_item in method
13883
13884         * lyxparagraph.[Ch]: removed all !NEW_INSETS cruft
13885
13886 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
13887
13888         * BufferView2.C (theLockingInset): white space.
13889
13890 2001-04-25  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13891
13892         * minibuffer.C: include <iostream>
13893
13894         * BufferView_pimpl.C: implement LFUN_TRANSPOSE_CHARS
13895
13896         * LyXAction.C (init): add LFUN_TRANSPOSE_CHARS
13897
13898         * commandtags.h: add LFUN_TRANSPOSE_CHARS
13899
13900         * text.[Ch] (TransposeChars): new method
13901
13902 2001-04-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13903
13904         * call message directly through LyXView instead of through LyXFunc
13905         * BufferView2.C: adjust
13906         * BufferView_pimpl.C: adjust
13907         * FontLoader.C: adjust
13908         * buffer.C: adjust
13909         * bufferview_funcs.C: adjust
13910         * converter.C: adjust
13911         * figureForm.C: adjust
13912         * importer.C: adjust
13913         * lyx_cb.C: adjust
13914         * lyx_gui_misc.C: adjust
13915         * lyxfunc.C: adjust
13916         * lyxvc.C: adjust
13917         * text2.C: adjust
13918         + more files in subdirs
13919
13920         * lyxparagraph.h (size): move up int file
13921         (GetLayout): ditto
13922
13923         * adjust all uses of Assert to lyx::Assert.
13924
13925         * BufferView2.C (ChangeCitationsIfUnique): adjust for
13926         lyxfunctional in namespace lyx
13927         * layout.C (hasLayout): ditto
13928         (GetLayout): ditto
13929         (GetLayout): ditto
13930         (delete_layout): ditto
13931         (NumberOfClass): ditto
13932         * converter.C (GetFormat): ditto
13933         (GetNumber): ditto
13934         (Add): ditto
13935         (Delete): ditto
13936         (SetViewer): ditto
13937         * bufferlist.C (getFileNames): ditto
13938         (emergencyWriteAll): ditto
13939         (exists): ditto
13940         (getBuffer): ditto
13941         * MenuBackend.C (hasSubmenu): ditto
13942         (hasMenu): ditto
13943         (getMenu): ditto
13944         * BufferView_pimpl.C (getInsetByCode): ditto
13945
13946 2001-04-18  Juergen Vigna  <jug@sad.it>
13947
13948         * vspace.C (asLatexString): fixed the 100% problem.
13949
13950 2001-04-18  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
13951
13952         * lyxfunc.C (Dispatch):
13953         * minibuffer.C:
13954         * minibuffer.h: add a few std:: qualifiers
13955
13956 2001-04-17  Lars Gullik Bjønnes  <larsbj@birdstep.com>
13957
13958         * minibuffer.[Ch]: reimplement so that commands is initiated and
13959         run from lyxfunc, simplified som handling, and made the completion
13960         and history code for complete. wip.
13961
13962         * lyxfunc.C (processKeySym): call message
13963         (miniDispatch): new temporary method
13964         (LFUN_EXEC_COMMAND): reimplement for new minibuffer
13965         (LFUN_MESSAGE): implement
13966         (LFUN_MESSAGE_PUSH): implement
13967         (LFUN_MESSAGE_POP): implement
13968         (initMiniBuffer): the initial/defualt minibuffer message.
13969
13970         * lyxfont.[Ch]: inline some more getters
13971
13972         * lyx_gui_misc.C (WriteAlert): use LFUN_MESSAGE
13973
13974         * lyx_gui_misc.[Ch] (WriteStatus): remove method
13975
13976         * lyx_cb.[Ch] (ShowMessage): remove delay arg, use LFUN_MESSAGE
13977         (AutoSave): use LFUN_MESSAGE
13978         (Reconfigure): ditto
13979
13980         * importer.C (Import): constify som local vars, use LFUN_MESSAGE
13981
13982         * figureForm.C: use LFUN_MESSAGE
13983
13984         * converter.C (runLaTeX): use LFUN_MESSAGE
13985
13986         * bufferview_funcs.C: use LFUN_MESSAGE
13987         (Melt): ditto
13988         (changeDepth): ditto
13989
13990         * bufferparams.h: use boost::
13991
13992         * bufferlist.h: inherit privately from noncopyable
13993
13994         * bufferlist.C (loadLyXFile): remove some commented code.
13995
13996         * buffer.C (runChktex): use LFUN_MESSAGE
13997
13998         * ShareContainer.h: inherit privately from noncopyable
13999
14000         * ParagraphParameters.[hC] (depth): inline it.
14001
14002         * LyXView.[Ch] (LyXView): connect the minibuffer signals to lyxfunc
14003         methods.
14004         (message): new method
14005         (messagePush): ditto
14006         (messagePop): ditto
14007         (show): init minibuffer
14008         (showState): direct call
14009
14010         * LaTeX.[Ch]: inherit privately from noncopyable
14011         (run): change second arg to LyXFunc*, use LFUN_MESSAGE
14012         instead of WriteStatus.
14013
14014         * FontLoader.C (doLoad): use LFUN_MESSAGE_PUSH and LFUN_MESSAGE_POP
14015
14016         * BufferView_pimpl.C (buffer): don't init minibuffer
14017         (workAreaButtonPress): use LFUN_MESSAGE
14018         (workAreaButtonRelease): ditto
14019         (savePosition): ditto
14020         (restorePosition): ditto
14021         (MenuInsertLyXFile): ditto
14022         (workAreaExpose): don't init minibuffer
14023         (update): remove commented code, simplify
14024
14025         * BufferView2.C (openStuff): use LFUN_MESSAGE
14026         (toggleFloat): ditto
14027         (menuUndo): ditto
14028         (menuRedo): ditto
14029         (copyEnvironment): ditto
14030         (pasteEnvironment): ditto
14031         (copy): ditto
14032         (cut): ditto
14033         (paste): ditto
14034         (gotoInset): ditto
14035         (updateInset): remove some commented code
14036
14037         * lastfiles.h: inherit privately from noncopyable
14038         * layout.h: ditto
14039         * lyx_gui.h: ditto
14040         * lyx_main.h: ditto
14041         * lyxlex.h: ditto
14042         * lyxlex_pimpl.h: ditto
14043
14044         * commandtags.h: comment out LFUN_FOOTMELT, LFUN_MARGINMELT,
14045         LFUN_FLOATSOPERATE, LFUN_MELT, add LFUN_MESSAGE,
14046         LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
14047
14048         * LyXAction.h: inherit privately from noncopyable, add methods
14049         func_begin, func_end, returning iterators to the func map.
14050
14051         * LyXAction.C (init): comment out LFUN_FLOATSOPERATE, LFUN_MELT,
14052         add entries for LFUN_MESSAGE, LFUN_MESSAGE_PUSH, LFUN_MESSAGE_POP
14053         (func_begin): new method
14054         (func_end): new method
14055
14056         * CutAndPaste.C (cutSelection): split into two versons (NEW_INSETS
14057         and not)
14058         (copySelection): ditto
14059         (pasteSelection): ditto
14060
14061         * BufferView.C: whitespace change
14062         * BufferView.h: inherit privately from noncopyable
14063
14064 2001-04-16  Allan Rae  <rae@lyx.org>
14065
14066         * tabular-old.C (l_getline):
14067         * spellchecker.C (sc_check_word):
14068         * lyxfunc.C (Dispatch): #warning triggers an error on Sun CC 6.0 as
14069         an unrecognised preprocessor directive.  So ensure they're wrapped.
14070
14071 2001-04-14  Dekel Tsur  <dekelts@tau.ac.il>
14072
14073         * src/exporter.C (Export): Give an error message when path to file
14074         contains spaces.
14075
14076 2001-04-12  Dekel Tsur  <dekelts@tau.ac.il>
14077
14078         * LaTeX.C (deplog): Always check that foundfile exists.
14079
14080 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14081
14082         * lyx_main.h:
14083         * lyx_main.C (ReadLanguagesFile): fix weird typo in method name
14084
14085 2001-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14086
14087         * tabular.[Ch] (getLabelList): implement new method
14088
14089         * minibuffer.h: comment ouf setTiimer
14090
14091         * minibuffer.C (ExecutingCB): constify res
14092         (peek_event): constify s
14093         (Set): constify ntext
14094         (Init): constify nicename
14095
14096         * BufferView2.C (updateInset): comment out Minibuffer::setTimer
14097
14098         * BufferView_pimpl.C (update): comment out Minibuffer::setTimer
14099         (savePosition): use two params to Minibuffer::Set
14100         (restorePosition): ditto
14101
14102 2001-04-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14103
14104         * lyx_main.C: include language.h
14105
14106         * Makefile.am (lyx_main.o): add language.h
14107
14108 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14109
14110         * exporter.C:
14111         * paragraph.C:
14112         * screen.C:
14113         * tabular.C:
14114         * CutAndPaste.C: include gettext.h
14115
14116         * lyxfont.h: remove old hack with ON and OFF.
14117
14118         * lyxparagraph.h:
14119         * lyxfont.h: do not include language.h...
14120
14121         * BufferView2.C:
14122         * LaTeXFeatures.C:
14123         * Painter.C:
14124         * bufferview_funcs.C:
14125         * font.C:
14126         * lyxfont.C:
14127         * text.C:
14128         * text2.C:
14129         * trans_mgr.C:
14130         * paragraph.C: ... but do it here instead
14131
14132 2001-04-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
14133
14134         * text2.C (SetLayout): split in NEW_INSETS and non NEW_INSETS version
14135
14136         * tabular.C: small reformat
14137
14138         * paragraph.C (GetFontSettings): split in NEW_INSETS and non
14139         NEW_INSETS version
14140         (GetChar): ditto
14141         (BreakParagraph): ditto
14142         (SetOnlyLayout): ditto
14143         (SetLayout): ditto
14144
14145         * lyxparagraph.h: add definitions for SetLayout and SetOnlyLayout
14146         with one arg less.
14147
14148         * lastfiles.C: removed most using decl, add std:: where needed
14149
14150         * buffer.C: ws changes
14151
14152         * MenuBackend.C (class compare_format): put into anon namespace
14153         (expand): constify label, names, action, action2
14154         (expand):
14155
14156         * text.C (SingleWidth): constify font
14157         (IsBoundary): constify rtl2
14158         (GetVisibleRow): constify ww
14159
14160         * LaTeX.C (deplog): constify logfile
14161
14162         * BufferView_pimpl.C (checkInsetHit): constify width, inset_x,
14163         start_x, end_x
14164         (workAreaExpose): constify widthChange, heightChange
14165
14166         * lyxrow.C (par): moved
14167         (height): moved
14168         (next): moved
14169         * lyxrow.h: as inlines here
14170
14171         * lyxfont.h (shape): moved from lyxfont.C
14172         (emph): moved from lyxfont.C
14173
14174         * lyxfont.C (LyXFont): use initialization list for all
14175         constructors
14176         (shape): move to lyxfont.h as inline
14177         (emph): move to lyxfont.h as inline
14178
14179
14180 2001-04-04  Juergen Vigna  <jug@sad.it>
14181
14182         * vspace.C: had to include stdio.h for use of sscanf
14183
14184 2001-04-03  Angus Leeming  <a.leeming@ic.ac.uk>
14185
14186         * BufferView.h:
14187         * BufferView_pimpl.h: remove xforms cruft. Both classes are
14188         independent of xforms.
14189
14190 2001-04-02  Juergen Vigna  <jug@sad.it>
14191
14192         * spellchecker.C: fixed namespace placing!
14193
14194 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
14195
14196         * lyxfunc.C (Dispatch): prevent crash in LFUN_GOTO_PARAGRAPH when
14197         the LyXParagraph * is 0.
14198
14199 2001-03-29  Juergen Vigna  <jug@sad.it>
14200
14201         * vspace.C: added support for %, c%, p%, l%.
14202         (stringFromUnit): added helper function.
14203         (asLatexString): changed to give right results for the %-values.
14204
14205         * buffer.C: convert the widthp in a width%.
14206
14207 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
14208
14209         * Makefile.am: removed form1.[Ch], lyx.[Ch] and added figure_form.[Ch],
14210         figureForm.[Ch].
14211
14212         * figureForm.[Ch]: stripped the FD_from_figure manipulation
14213         code out of lux_cb.[Ch], ready for its (imminent?) removal.
14214
14215         * lyx_cb.[Ch]: see above.
14216
14217         * figure_form.[Ch]: fdesign generated code, combining lyx.[Ch] and
14218         form1.[Ch].
14219
14220         * form1.[Ch]:
14221         * lyx.[Ch]: replaced by figure_form.[Ch].
14222
14223         * lyx_gui.C:
14224         * lyx_gui_misc.C:
14225         * lyxfunc.C: changed headers associated with above changes.
14226
14227 2001-03-27  Juergen Vigna  <jug@sad.it>
14228
14229         * BufferView_pimpl.C: set the temporary cursor right!
14230
14231 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
14232
14233         * BufferView_pimpl.C (Dispatch): corrected spelling givven -> given.
14234
14235 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
14236
14237         * LString.h: removed "using std::getline"!
14238
14239         * BufferView_pimpl.C (Dispatch): changes due to changes in
14240         InsetInclude::Params.
14241
14242         * buffer.C (tag_name): removed redundant break statements as they were
14243         producing lots of warnings with my compiler.
14244
14245 2001-03-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14246
14247         * LString.h: add "using std::getline" when using the real <string>.
14248
14249 2001-03-23  José Abílio Matos  <jamatos@fep.up.pt>
14250
14251         * buffer.C: removed bitset usage.
14252         PAR_TAG moved to an anonymous name space.
14253         (tag_name): new funtion, also in the anonymous namespace.
14254         (SimpleLinuxDocOnePar): replaced all the references to bitset by PAR_TAG.
14255         (makeDocBookFile): clean code. Completed transition from string arrays
14256         to string vectors.
14257         (SimpleDocBookOnePar): code clean.
14258
14259 2001-03-23  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14260
14261         * tabular.C: add some comments.
14262
14263 2001-03-22  Juergen Vigna  <jug@sad.it>
14264
14265         * buffer.C (parseSingleLyXformat2Token): redone the minipage
14266         compatibility read a bit and fixed bug with minipage in different
14267         depth.
14268
14269 2001-03-21  José Abílio Matos  <jamatos@fep.up.pt>
14270
14271         * buffer.C (pop_tag): removed.
14272         (push_tag): removed.
14273         (makeLinuxDocFile): cleaner C++ code, declarations near usage point,
14274         array replaced with vector. Added support for CDATA sections.
14275         (SimpleLinuxDocOnePar): ditto. Paragraph tags are correctly handled,
14276         at any nest level.
14277         (makeDocBookFile): XML conformant declaration of CDATA section,
14278         fixed bug related to <emphasis> in the first paragraph char.
14279         (sgmlOpenTag): exclude empty tags.
14280         (sgmlCloseTag): ditto.
14281
14282         * buffer.h (pop_tag): removed.
14283         (push_tag): removed.
14284
14285 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
14286
14287         * language.h (Languages): added size_type and size().
14288
14289 2001-03-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14290
14291         * buffer.C (parseSingleLyXformat2Token): Try to give a bit better
14292         response on compability reading of minipages. One probliem is that
14293         the old usage of minipages was «flertydig»
14294
14295         * several files here and in subdirs: don't use static at file
14296         scope use anon namespaces instead.
14297
14298 2001-03-19  Kayvan A. Sylvan <kayvan@sylvan.com>
14299
14300         * paragraph.C (TeXEnvironment): Added \n to \end{environment}
14301         LaTeX output. This is necessary for Literate document
14302         processing.
14303
14304 2001-03-17  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14305
14306         * buffer.C: insert hfill when needed.
14307
14308         * tabular.C (l_getline): use string::erase, small whitespace change.
14309
14310         * BufferView_pimpl.C: try the anon namespace.
14311         * WorkArea.C: ditto
14312
14313 2001-03-16  Juergen Vigna  <jug@sad.it>
14314
14315         * BufferView_pimpl.C (workAreaButtonRelease): return only on button==2
14316         otherwise it won't open options-dialogs.
14317
14318         * buffer.C: honor pextraWidth(p) on converting minipages.
14319
14320         * tabular.C (l_getline): changed the functions to strip trailing \r.
14321
14322 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
14323
14324         * BufferView_pimpl.C:
14325         * minibuffer..C: added "using SigC::slot" declaration.
14326
14327 2001-03-16  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14328
14329         * lyxlex_pimpl.h: noncopyable is in namespace boost.
14330
14331         * text2.C: ditto
14332
14333         * text.C: ditto
14334
14335         * paragraph.C: ditto
14336
14337         * lyxtext.h: NO_PEXTRA
14338
14339         * buffer.C: NO_PEXTRA_REALLY, NO_PEXTRA
14340
14341         * ParagraphParameters.C (clear): NO_PEXTRA_REALLY
14342         * ParameterStruct.h: ditto
14343         * ParagraphParameters.h: ditto
14344         * lyxparagraph.h: ditto
14345
14346 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14347
14348         * buffer.C: add compability for minipage alignment.
14349         (latexParagraphs): remove unwanted pextra check.
14350
14351         * several files: remove CXX_WORKING_NAMESPACES
14352
14353         * buffer.C (pop_tag): tie is in namespace boost
14354
14355         * BufferView.h: noncopyable is in namespace boost
14356         * lyxlex.h: ditto
14357         * lyx_main.h: ditto
14358         * lyx_gui.h: ditto
14359         * layout.h: ditto
14360         * lastfiles.h: ditto
14361         * bufferlist.h: ditto
14362         * ShareContainer.h: ditto
14363         * LyXView.h: ditto
14364         * LyXAction.h: ditto
14365         * LaTeX.h: ditto
14366
14367 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
14368
14369         * Merging changes from BRANCH_MVC back into HEAD.
14370
14371         * Makefile.am: added controllers/libcontrollers.la to lyx_DEPENDENCIES
14372
14373 2001-03-15  John Levon  <moz@compsoc.man.ac.uk>
14374
14375         * BufferView_pimpl.C: change from intl.C
14376
14377         * combox.h:
14378         * combox.C:
14379         * Makefile.am: move combox.*
14380
14381         * form1.h:
14382         * form1.C:
14383         * lyx_gui.C:
14384         * intl.h:
14385         * intl.C: remove dialog (covered by prefs)
14386
14387 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
14388
14389         * lyxfunc.C (Dispatch): removed redundant break statement.
14390
14391 2001-03-14  Juergen Vigna  <jug@sad.it>
14392
14393         * tabular.C (l_getline): pay attention on \r\n (from Windows-files)
14394
14395 2001-03-14  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14396
14397         * buffer.C: add hack to fix compability reading of minipages.
14398
14399 2001-03-13  Dekel Tsur  <dekelts@tau.ac.il>
14400
14401         * buffer.C (getLists): Cleanup.
14402
14403 2001-03-13  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14404
14405         * lyxfont.C (update): don't honor toggleall on font size.
14406
14407 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
14408
14409         * bmtable.c:
14410         * bmtable.h:
14411         * Makefile.am: moved to frontends/xforms/
14412
14413         * lyx_gui_misc.C:
14414         * lyxfunc.C:
14415         * BufferView_pimpl.C: changes for moved mathpanel
14416
14417 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
14418
14419         * gettext.h: fix gettext_init() in --disable-nls
14420
14421 2001-03-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14422
14423         * LaTeXFeatures.C (getMacros): add a .c_str() when using sstream.
14424
14425 2001-03-09  John Levon  <moz@compsoc.man.ac.uk>
14426
14427         * lyx.C:
14428         * lyx.h: strip external form
14429
14430 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
14431
14432         * BufferView_pimpl.C: add comment, destroySplash()
14433
14434 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
14435
14436         * BufferView_pimpl.C:
14437         * LyXAction.C:
14438         * buffer.C:
14439         * commandtags.h:
14440         * lyxfunc.C: use re-worked insetinclude
14441
14442 2001-03-12  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14443
14444         * buffer.C: add using std::stringstream.
14445
14446         * lyx_cb.C: readd using std::ios.
14447
14448         * buffer.C: add using std::map.
14449
14450         * BufferView_pimpl.C: add using std::vector.
14451
14452         * ShareContainer.h: add std:: to swap.
14453
14454         * buffer.h: add some typedefs
14455         * buffer.C (getLists): use them
14456         (getLists): renamed from getTocList.
14457         add a counter for the different float types and use it in the
14458         generated string.
14459         (getLists): use the same counter for the NEW_INSETS and the "non"
14460         NEW_INSETS
14461
14462         * lyx_cb.h: remove unused items, includes, using etc.
14463
14464         * ShareContainer.h: remove some commented code, add more comments
14465         and "documentation".
14466
14467 2001-03-11  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14468
14469         * buffer.C (getTocList): make the list also when NEW_INSETS is
14470         defined.
14471
14472         * buffer.h: remove TocType
14473
14474         * buffer.C (getTocList): change to return a map<string,
14475         vector<TocItem> >, implement for dynamic number of list.
14476
14477         * CutAndPaste.[Ch] (checkPastePossible): remove unused arg
14478         * text2.C (PasteSelection): adjust
14479         * CutAndPaste.C (pasteSelection): adjust
14480
14481         * FloatList.C (FloatList): update from the new_insets branch.
14482         * Floating.[Ch]: ditto
14483         * LaTeXFeatures.C: ditto
14484         * buffer.C: ditto
14485         * lyxlex_pimpl.C: ditto
14486
14487         * paragraph.C (Last): remove when NEW_INSETS is defined.
14488
14489         * other file: changes because of the above.
14490
14491 2001-03-09  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14492
14493         * lyxparagraph.h: rename next to next_, previous to previous_,
14494         make them private for NEW_INSETS. Rename Next() to next(),
14495         Previous() to previous().
14496
14497         * other files: changes because of the above.
14498
14499 2001-03-08  Dekel Tsur  <dekelts@tau.ac.il>
14500
14501         * BufferView.h:
14502         * lyxparagraph.h: Add '#include "LString.h"' to fix compilation
14503         problem.
14504
14505 2001-03-08  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14506
14507         * main.C (main): pass lyx_localedir to gettext_init().
14508
14509         * gettext.h: remove locale_init and gettext_init macros
14510
14511         * gettext.C (locale_init): new function
14512         (gettext_init): new function
14513
14514         * lyx_gui.C (LyXGUI): use locale_init() instead of explicit
14515         setlocale().
14516
14517 2001-03-07  Edwin Leuven  <leuven@fee.uva.nl>
14518
14519         * Moved credits to frontends:
14520         * credits.[Ch]: removed
14521         * credits_form.[Ch]: removed
14522         * lyx_gui_misc.C: remove credits stuff
14523         * Makefile.am:
14524
14525 2001-03-07  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14526
14527         * lyx_main.C: make toplevel_keymap a boost::scoped_ptr.
14528
14529         * kbmap.[Ch]: make kb_key::table a boost::shared_ptr, remove
14530         unneeded destructor.
14531
14532         * intl.[Ch] (Intl): free the fd_form_keymap, make the fd_form_keymap
14533         a standalone pointer again.
14534
14535         * ColorHandler.[Ch]: make lyxColorHandler a boost::scoped_ptr
14536
14537 2001-03-06  John Levon  <moz@compsoc.man.ac.uk>
14538
14539         * Makefile.am:
14540         * filedlg.h:
14541         * filedlg.C:
14542         * LyXAction.C:
14543         * ToolbarDefaults.C:
14544         * bufferlist.C:
14545         * commandtags.h:
14546         * form1.C:
14547         * form1.h:
14548         * lyx_cb.C:
14549         * lyx_cb.h:
14550         * lyxfunc.h:
14551         * lyxfunc.C:
14552         * BufferView_pimpl.C: use new file dialog in GUII
14553
14554         * lyx_cb.h:
14555         * lyx_cb.C: remove LayoutsCB to Toolbar
14556
14557 2001-03-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14558
14559         * ShareContainer.h (get): add std:: qualifier
14560
14561 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14562
14563         * ShareContainer.h: define a proper ShareContainer::value_type
14564         type (and use typename to please compaq cxx)
14565
14566 2001-03-06  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14567
14568         * lyxparagraph.h: move serveral local vars to
14569         ParameterStruct/ParagraphParameters., use ShareContainer in
14570         FontTable., make vars in FontTable private and add getter and
14571         setter.
14572
14573         * paragraph.C: changes because of the above.
14574
14575         * lyxfont.h: remove copy constructor and copy assignment. (the
14576         default ones is ok), move number inside FontBits. move inlines to
14577         lyxfont.C
14578
14579         * lyxfont.C: add number to initializaton of statics, move several
14580         inlines here. constify several local vars. some whitespace
14581         cleanup. Dont hide outerscope variables.
14582
14583         * Spacing.h: add two new constructors to match the set methods.
14584
14585         * ShareContainer.h: new file, will perhaps be moved to support
14586
14587         * ParameterStruct.h: new file
14588
14589         * ParagraphParameters.h: new file
14590
14591         * ParagraphParameters.C: new file
14592
14593         * Makefile.am (lyx_SOURCES): add ParagraphParameters.C,
14594         ParagraphParameters.h, ParameterStruct.h and ShareContainer.h
14595
14596         * BufferView_pimpl.C: ParagraphParameter changes.
14597         * buffer.C: Likewise.
14598         * bufferview_funcs.C: Likewise.
14599         * text.C: Likewise.
14600         * text2.C: Likewise.
14601
14602 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14603
14604         * lyxfind.C (LyXReplace): do not redefine default argument in
14605         implementation.
14606         (IsStringInText): ditto
14607         (SearchForward): ditto
14608         (SearchBackward): ditto
14609
14610 2001-03-06  Juergen Vigna  <jug@sad.it>
14611
14612         * lyxfind.C (IsStringInText): put parentes around expressions.
14613
14614 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
14615
14616         * lyxfind.[Ch]: find stuff moved out of text2.C/lyxtext.h
14617
14618 2001-02-23  John Levon  <moz@compsoc.man.ac.uk>
14619
14620         * lyx_main.C: add ISO_Left_Tab as bind synonym for Tab
14621
14622         * stl_string_fwd.h: add comment
14623
14624         * lyx_gui_misc.C: killed ALWAYS_CLOSE_MATH_PANELS
14625
14626         * tabular.h:
14627         * tabular.C: remove unused DocBook methods
14628
14629         * intl.C:
14630         * language.C:
14631         * paragraph.C:
14632         * buffer.C:
14633         killed DO_USE_DEFAULT_LANGUAGE
14634
14635 2001-03-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14636
14637         * lyx_gui.C: do not include language.h.
14638
14639         * bufferview_funcs.C (ToggleAndShow): do not provide optional
14640         arguments in function implementation.
14641
14642 2001-02-28  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14643
14644         * BufferView_pimpl.C: add <ctime>
14645
14646 2001-02-27  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14647
14648         * BufferView_pimpl.C: add using std::find_if
14649
14650 2001-02-27  José Matos  <jamatos@fep.up.pt>
14651
14652         * LaTeXFeatures.C (getIncludedFiles): call to BasePath replaced
14653         by OnlyPath.
14654
14655 2001-02-11  José Matos  <jamatos@fep.up.pt>
14656
14657         * buffer.C (makeDocBookFile): command styles now have a parameter as
14658         "title" by default.
14659
14660 2001-02-23  Edwin Leuven <leuven@fee.uva.nl>
14661
14662         * layout_forms.[Ch]: removed
14663         * lyx_cb.[Ch]: out character
14664         * lyx_gui.C: out character
14665         * lyx_gui_misc.C: out character
14666         * bufferview_funcs.C: : out character,
14667         added toggleall as parameter in ToggleAndShow
14668
14669 2001-02-26  Dekel Tsur  <dekelts@tau.ac.il>
14670
14671         * lyxfunc.C (getStatus): Fix the LFUN_EXPORT case.
14672
14673         * text2.C (SetCurrentFont): Disable number property at boundary.
14674
14675 2001-02-26  Juergen Vigna  <jug@sad.it>
14676
14677         * lyxfunc.C (getStatus): added a string argument override function so
14678         that this is correctly called from LyXFunc::Dispatch if it contains a
14679         do_not_use_argument which is used!
14680         (Dispatch): added check for "custom" export and call appropriate func.
14681
14682 2001-02-23  Dekel Tsur  <dekelts@tau.ac.il>
14683
14684         * lyxrc.C: Add language_command_local, language_use_babel and
14685         language_global_options.
14686
14687         * lyxfont.C (latexWriteStartChanges): Use language_command_local.
14688
14689         * buffer.C (makeLaTeXFile): Use language_use_babel and
14690         language_global_options.
14691
14692 2001-02-23  Juergen Vigna  <jug@sad.it>
14693
14694         * lyxfunc.C (Dispatch): removed the whole part of the switch statement
14695         which works with LyXText and putted it inside BufferView. Here now we
14696         only call for that part the BufferView::Dispatch() function.
14697
14698         * BufferView.C (Dispatch): added.
14699
14700         * BufferView_pimpl.C (Dispatch): added! Here are now all dispatch
14701         functions which needs to use a LyXText over from LyXFunc.
14702         (MenuInsertLyXFile): added
14703         (getInsetByCode): added
14704         (moveCursorUpdate): added
14705         (static TEXT): added
14706
14707 2001-02-22  Juergen Vigna  <jug@sad.it>
14708
14709         * BufferView_pimpl.C (update): call a status update to see if LyXText
14710         needs it.
14711
14712 2001-02-20  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
14713
14714         * vc-backend.C (revert): implement for CVS
14715         (getLog): implement for CVS
14716
14717 2001-02-20  Juergen Vigna  <jug@sad.it>
14718
14719         * text2.C (ClearSelection): added BufferView param for inset_owner call
14720
14721         * lyxfunc.C (TEXT): added this function and use it instead of
14722         directly owner->view()-text of getLyXText().
14723
14724 2001-02-20  Edwin Leuven <leuven@fee.uva.nl>
14725
14726         * src/layout_forms.C: out preamble
14727         * src/layout_forms.h: out preamble
14728         * src/lyx_cb.C: out preamble
14729         * src/lyx_cb.h: out preamble
14730         * src/lyx_gui.C: out preamble
14731         * src/lyx_gui_misc.C: out preamble
14732         * src/lyxfunc.C: connect with guii preamble
14733
14734 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
14735
14736         * src/buffer.h: tiny clean-ups to allow compilation with DEC cxx.
14737
14738 2001-02-17  Dekel Tsur  <dekelts@tau.ac.il>
14739
14740         * LaTeX.C (run): Do not use 'scanres & RERUN' when deciding
14741         whether to run bibtex.
14742
14743 2001-02-16  Dekel Tsur  <dekelts@tau.ac.il>
14744
14745         * Makefile.am (lyx_SOURCES): Remove BackStack.h
14746
14747 2001-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
14748
14749         * Makefile.am (lyx_SOURCES): removed bibforms.h
14750
14751         * vspace.h: doxygen
14752
14753         * text.C (GetVisibleRow): make several local vars const
14754
14755         * tabular.C: small cleanup.
14756
14757         * lyxserver.C (callback): use compare instead of strncmp
14758
14759         * lyxparagraph.h: remove all code dep. on HAVE_ROPE, move inclass
14760         inlines to after class or to paragraph.C
14761
14762         * lyxfont.h: remove friend operator!=
14763
14764         * converter.h: move friend bool operator< to non friend and after
14765         class def.
14766
14767         * combox.h: small cleanup
14768
14769         * buffer.h: doxygen, remove unused constructor, move inclas inlies
14770         to inlines after class def.
14771
14772         * buffer.C (pop_tag): use string operations instead of strcmp
14773
14774         * bmtable.c: doxygen, small cleanup
14775
14776         * LaTeX.h: remove friend operator==
14777
14778 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
14779
14780         * screen.C:
14781         * lyxrc.[Ch]:
14782         * lyxfunc.C:
14783         * lyxfont.[Ch]:
14784         * lyx_cb.C:
14785         * intl.[Ch]:
14786         * commandtags.h:
14787         * buffer.C:
14788         * WorkArea.[Ch]:
14789         * LyXAction.C:
14790         * BufferView_pimpl.C:
14791         * BufferView.[Ch]: remove cruft
14792
14793 2001-02-14  Juergen Vigna  <jug@sad.it>
14794
14795         * lyxfunc.C: removed #if 0 unused code
14796
14797         * lyxfunc.C (Dispatch): make LFUN_QUOTE work for InsetText.
14798
14799         * BufferView_pimpl.C (update): set updatestatus of inset if needed.
14800
14801         * text2.C (SetSelection): added a BufferView * parameter
14802
14803 2001-02-13  Juergen Vigna  <jug@sad.it>
14804
14805         * lyxfunc.C (Dispatch): fixed protected blank problem.
14806         * BufferView2.C (protectedBlank): added LyxText * parameter.
14807
14808         * tabular.C (AppendRow): forgot to set row_info of newly added row.
14809         (AppendColumn): same as above for column_info.
14810
14811         * lyxfunc.C (Dispatch): supported some more functions in InsetText.
14812         (moveCursorUpdate): use a LyXText param for support of InsetText.
14813
14814         * BufferView_pimpl.C (doubleClick): added support for InsetText.
14815         (tripleClick): ditto
14816
14817         * lyxfunc.C (LFUN_APPENDIX): changed to use "text" pointer.
14818
14819         * BufferView_pimpl.C (update): added LyXText param to honor insets.
14820
14821         * bufferview_funcs.C (ToggleAndShow): fixed for text in insets.
14822
14823         * text2.C (SetSelection): set correct update status if inset_owner
14824         (ToggleFree): ditto
14825
14826 2001-02-12  Lars Gullik Bjønnes  <larsbj@lyx.org>
14827
14828         * tabular.C: remove some commented code.
14829
14830 2001-02-12  John Levon  <moz@compsoc.man.ac.uk>
14831
14832         * BufferView_pimpl.C: call hideSplash()
14833
14834         * LyXAction.C: make buffer-child-insert use LFUN_CHILD_CREATE
14835
14836         * include_form.h:
14837         * bibforms.h: remove
14838
14839         * lyxfunc.C:
14840         * src/commandtags.h: LFUN_CHILDINSERT -> LFUN_CHILD_INSERT,
14841           add LFUN_CHILD_CREATE
14842
14843         * counters.h: fix tiny typo
14844
14845         * lyx_cb.C:
14846         * lyx.h:
14847         * lyx_gui.C:
14848         * lyx.C: move splash to frontends/xforms/
14849
14850         * lyx_gui_misc.C: move Include and Bibform to frontends
14851
14852         * lyxvc.h: clarify comment
14853
14854         * vspace.C: tiny housekeeping
14855
14856 2001-02-10  Dekel Tsur  <dekelts@tau.ac.il>
14857
14858         * text.C (PrepareToPrint): RTL Fix.
14859
14860         * paragraph.C (GetUChar): New method.
14861         (String):  Use GetUChar.
14862
14863         * buffer.C (asciiParagraph): Use GetUChar.
14864
14865 2001-02-09  Dekel Tsur  <dekelts@tau.ac.il>
14866
14867         * text.C (GetVisibleRow): Fix selection drawing for RTL text in tables.
14868
14869 2001-02-09  John Levon  <moz@compsoc.man.ac.uk>
14870
14871         * buffer.h:
14872         * buffer.C: rename to getLogName(), handle
14873           build log / latex log nicely
14874
14875 2001-02-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14876
14877         * MenuBackend.C:
14878         * MenuBackend.h: remove support for reference menuitem type.
14879
14880 2001-02-07  John Levon  <moz@compsoc.man.ac.uk>
14881
14882         * BufferView_pimpl.C: housekeeping
14883         * BufferView_pimpl.h:
14884         * LyXView.h:
14885         * Makefile.am:
14886         * Timeout.C:
14887         * Timeout.h:
14888         * minibuffer.h: move Timeout GUI-I
14889
14890 2001-02-07  Dekel Tsur  <dekelts@tau.ac.il>
14891
14892         * lyxrc.C (read): Update converters data-structures.
14893
14894 2001-02-07  Lars Gullik Bjønnes  <larsbj@lyx.org>
14895
14896         * LaTeX.h (operator!=): add operator != for Aux_Info
14897
14898 2001-02-06  John Levon  <moz@compsoc.man.ac.uk>
14899
14900         * Makefile.am: remove LaTeXLog.C, log_form.[Ch]
14901
14902         * LaTeXLog.C: deleted, useful code moved to Buffer
14903
14904         * buffer.h:
14905         * buffer.C: new function getLatexLogName()
14906
14907         * lyx_gui_misc.C:
14908         * lyx_gui.C:
14909         * lyxvc.C:
14910         * lyxvc.h:
14911         * lyxfunc.C: use frontends for LaTeX and VC logs
14912
14913 2001-02-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14914
14915         * LaTeX.h: yet another std:: that Allan forgot.
14916
14917         * Variables.C (set): renamed from isset(), because this clashes
14918         with some HP-UX macros (grr).
14919
14920 2001-02-06  Allan Rae  <rae@lyx.org>
14921
14922         * LaTeX.h: Another bug fix.  Missing std:: this time.
14923
14924 2001-02-04  Allan Rae  <rae@lyx.org>
14925
14926         * paragraph.C (TeXOnePar): Partial fix for the '\n' generation in
14927         floats problem. I've left it commented out because it's not quite
14928         correct.  It should also test that the current object is a table or
14929         figure inset.  But I haven't gotten around to figuring out how to do
14930         that.  I *think* it'll be something like: "table" == inset.type()
14931
14932         * LaTeX.h (operator==): Aux_Info should have a friend that returns a
14933         bool.
14934
14935 2001-02-02  Dekel Tsur  <dekelts@tau.ac.il>
14936
14937         * LaTeX.C (scanAuxFile): A rewrite of this method. It now returns
14938         all the citation/databases/styles in the auxilary file.
14939         (run): Rerun latex if there was a babel language error.
14940
14941 2001-02-01  Dekel Tsur  <dekelts@tau.ac.il>
14942
14943         * text.C (Backspace): Preserve the font when changing newline char
14944         with a space.
14945         (BreakParagraph): If the cursor is before a space, delete the space.
14946
14947         * lyx_cb.C (QuitLyX): Do not save files when running with no gui.
14948
14949 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
14950
14951         * BufferView2.C (ChangeInsets): Renamed from ChangeRefs. Accept a
14952         new argument (code).
14953         (ChangeCitationsIfUnique): New method.
14954
14955         * paragraph.C (GetPositionOfInset): Handle bibkey.
14956
14957 2001-01-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14958
14959         * BufferView_pimpl.h: change type of Position::par_pos to
14960         LyXParagraph::size_type.
14961
14962 2001-01-29  Dekel Tsur  <dekelts@tau.ac.il>
14963
14964         * BufferView_pimpl.C (savePosition, restorePosition): Write
14965         messages to minibuffer.
14966
14967 2001-01-28  José Matos  <jamatos@fep.up.pt>
14968
14969         * buffer.C (makeDocBookFile): adds support for document language.
14970         A silly restriction on the name of LatexCommand types where removed.
14971         Added support for CDATA sections, allows to chars unescaped, used
14972         among others in code, to avoid escape < and >.
14973
14974 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
14975
14976         * BufferView_pimpl.C (savePosition, restorePosition): Use a vector of
14977         saved positions instrad of a stack. Furthermore, a position is
14978         stored using paragraph id/paragraph position.
14979
14980         * commandtags.h: Add LFUN_BOOKMARK_SAVE and LFUN_BOOKMARK_GOTO.
14981         Remove LFUN_REF_BACK.
14982
14983 2001-01-27  Dekel Tsur  <dekelts@tau.ac.il>
14984
14985         * converter.C (dvipdfm_options): New method.
14986
14987 2001-01-26  Dekel Tsur  <dekelts@tau.ac.il>
14988
14989         * vspace.C (isValidLength): Fix for empty input string.
14990
14991 2001-01-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14992
14993         * LyXAction.C (init): change description of LFUN_FIGURE to
14994         "Insert Graphics"
14995
14996 2001-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
14997
14998         * LaTeX.C: add using directive
14999
15000 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
15001
15002         * MenuBackend.C (expand): Fix the sorting of the formats.
15003
15004 2001-01-24  John Levon  <moz@compsoc.man.ac.uk>
15005
15006         * lyx_main.C: tiny error message fix
15007
15008 2001-01-24  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15009
15010         * lyx_gui.C (LyXGUI): force the LC_NUMERIC locale to "C" after
15011         calling fl_initialize(). This fixes the problem with ',' as
15012         decimal separator in text files.
15013
15014 2001-01-24  Dekel Tsur  <dekelts@tau.ac.il>
15015
15016         * trans.C (process): Fix the keymap bug.
15017
15018 2001-01-23  Dekel Tsur  <dekelts@tau.ac.il>
15019
15020         * LaTeX.C (scanAuxFiles): New method. Provides support for
15021         multiple bibliographies (when using the bibtopic/bibunits pacakges).
15022         (scanLogFile) Scan for "run BibTeX" messages.
15023
15024         * buffer.C (makeLaTeXFile): Do not load the ae package when using
15025         OT1 font encoding. Also, load the aecompl package if the ae
15026         package is loaded.
15027
15028         * tex-strings.C: Add "ae" to tex_fonts[] (from Matej Cepl).
15029
15030 2001-01-22  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15031
15032         * texrow.C (increasePos): turn two error messages into debug
15033         messages.
15034
15035 2001-01-20  Dekel Tsur  <dekelts@tau.ac.il>
15036
15037         * LaTeX.C (scanAux): Handle the \@input macro.
15038         (runBibTeX): Use scanAux().
15039
15040         * language.C (latex_options_): New field.
15041
15042         * LaTeXFeatures.C (getMacros): Add language macros.
15043
15044         * buffer.C (makeLaTeXFile): Small fix.
15045
15046 2001-01-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
15047
15048         * lyxfunc.C: fix the name of the inset for LFUN_CHILDINSERT
15049
15050         * text2.C: add a using directive.
15051
15052 2000-01-17  John Levon  <moz@compsoc.man.ac.uk>
15053
15054         * BufferView2.C:
15055         * lyx_gui_misc.h:
15056         * lyxfr1.C:
15057         * lyxfunc.C: kill LyXBell.
15058
15059 2001-01-17  Dekel Tsur  <dekelts@tau.ac.il>
15060
15061         * text.C (IsBoundary): Remove the error message
15062
15063         * WorkArea.C (work_area_handler): Decrease keyboard purge threshold.
15064
15065         * lyxrc.C (setDefaults): Correct initialization value for
15066         font_norm_type.
15067
15068 2001-01-15  Dekel Tsur  <dekelts@tau.ac.il>
15069
15070         * BufferView2.C (gotoInset): New method. Replaces gotoNote() and
15071         gotoError().
15072
15073         * text2.C (GotoNextInset): New method. Replaces GotoNextError()
15074         and GotoNextNote().
15075
15076         * src/LyXAction.C: Added reference-next.
15077
15078         * text.C (InsertChar): Use contains instead of strchr.
15079
15080         * lyx_cb.C (MenuInsertLabel): Enable default value code.
15081
15082 2001-01-13  Dekel Tsur  <dekelts@tau.ac.il>
15083
15084         * paragraph.C (SimpleTeXOnePar) Put \protect before paragraph
15085         alignment commands (when needed).
15086
15087         * text.C (InsertChar): Add ':' to number separator chars.