]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/ChangeLog
Auto-scan for texinfo and bibtex dialogs
[lyx.git] / src / frontends / xforms / ChangeLog
1 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
2
3         * forms/form_texinfo.fd: "Update List" not "Rescan"
4  
5 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
6
7         * guiapi.C: createIndex() changed
8  
9 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
10
11         * FormBibtex.C: use new lyx::eliminate_duplicates
12
13 2002-06-20 Herbert Voss  <voss@perce.de>
14  
15         * FormBibtex.C:
16         * forms/form_bibtex.fd: give better support for choosing the
17         bibstyle (new browserfield with the available bibstyles). 
18         move some code of ControlTexinfo into a helper
19         file support/tex-helpers to use some of the functions
20  
21 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
22
23         * XWorkArea.h:
24         * XWorkArea.C: remove unused code, name change
25  
26 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
27
28         * XLyXKeySym.h:
29         * XLyXKeySym.C: whitespace
30  
31 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
32
33         * XWorkArea.h: remove focus stuff, greyOut()
34  
35 2002-06-19  John Levon  <moz@compsoc.man.ac.uk>
36
37         * XWorkArea.C: remove focus/unfocus events
38  
39 2002-06-19  John Levon  <moz@compsoc.man.ac.uk>
40
41         * XWorkArea.h: remove unused methods
42  
43 2002-06-15  Martin Vermeer  <martin.vermeer@hut.fi>
44
45         * FormMathsDelim.C: Redesign of Delimiters dialogue in mathed.
46           Cleaner, smaller.
47
48 2002-06-19  John Levon  <moz@compsoc.man.ac.uk>
49
50         * XWorkArea.h: remove unused width()
51  
52 2002-06-18  John Levon  <moz@compsoc.man.ac.uk>
53
54         * guiapi.C: fix compile with libAiksaurus
55  
56 2002-06-17  Herbert Voss  <voss@perce.de>
57  
58         * forms/.cvsignore: ignore the *.lo files
59
60 2002-06-18  John Levon  <moz@compsoc.man.ac.uk>
61  
62         * FormSearch.h:
63         * FormSearch.C: focus and select search string on open (bug #77)
64
65 2002-06-16  Lars Gullik Bjønnes  <larsbj@birdstep.com>
66  
67         * changes to let the function setup happen in frontends
68
69         * guiapi.C: new file
70  
71 2002-06-16    <alstrup@diku.dk>
72
73         * xscreen.C (draw): After drawing, we wait for X with XSync..
74
75         * XWorkArea.[Ch]: Xforms implementation of GUII WorkArea.
76
77         * XPainter.[Ch]: Use XWorkArea instead of WorkArea.
78
79         * xscreen.[Ch]: Use XWorkArea instead of WorkArea.
80
81         * WorkAreaFactory.C: New file for GUII WorkArea.
82
83         * LyXScreenFactory.C: WorkArea GUIIized.
84
85 2002-06-15  Lyx Development team  <larsbj@birdstep.com>
86
87         * LyXKeySymFactory.C: Added XForms implementation.
88
89         * XLyXKeySym.[Ch]: Added XForms implementation of the LyXKeySym
90         stuff.
91
92         * XWorkArea.[Ch]: Use LyXKeySym in signal interface for keypress.
93
94 2002-06-14  Lyx Development team  <lyx@electronia>
95
96         * LyXScreenFactory.C: Implementation for XForms.
97
98         * xscreen.[Ch]: Added implementation of LyXScreen for XForms,
99         called XScreen (surprise!).
100
101 2002-06-14  Angus Leeming  <leeming@lyx.org>
102
103         * forms/Makefile.am: make the .Ch files dependent on the fdfix files.
104
105         * fdfix.sh: test whether "fdesign -convert file.fd" succeeds and
106         if not, exit gracefully.
107         Test whether the newly generated .h file is different from the existing
108         one and if not discard it to prevent unnecessary recompilation in the
109         xforms directory.
110
111 2002-06-14  Angus Leeming  <leeming@lyx.org>
112
113         * FormPreferences (XYZ::build): pass "&parent_" to build_xyz, not
114         "this", ro we'll get a crash following FormBaseDeprecated's
115         C_PrehandlerCB cast of ob->form->u_vdata to FormBaseDeprecated *.
116
117         This is the only form in which all the folders are not built in the
118         parent class direct, so this is the only one that should suffer from
119         this bug.
120
121 2002-06-12  Angus Leeming  <leeming@lyx.org>
122
123         * form_*.[Ch]: removed from the repository.
124         * forms/Makefile.am:
125         * forms/fdfix.sh: changes to generate form_*.[Ch] automatically.
126
127         * forms/form_*.fd: use a consistent naming convention for the fdesign
128         generated FD_xyz structs. For example, form_aboutlyx.h now contains:
129         struct FD_aboutlyx;
130         struct FD_aboutlyx_version;
131         struct FD_aboutlyx_credits;
132         struct FD_aboutlyx_license;
133
134         * forms/fdfix[ch].sed: no longer write the build routines for the
135         fdesign generated FD_xyz structs as member methods of the controlling
136         FormXyz class. It's unnecessary and needs patch files in addition to
137         the sed magic to work properly. Thus, the structs above are now
138         generated by routines
139         FD_aboutlyx * build_aboutlyx(void *);
140         FD_aboutlyx_version * build_aboutlyx_version(void *);
141         FD_aboutlyx_credits * build_aboutlyx_credits(void *);
142         FD_aboutlyx_license * build_aboutlyx_license(void *);
143
144         * forms/README: document all the above.
145
146         * forms_fwd.h: new file to forward declare FL_OBJECT, FL_FORM.
147
148         * forms_gettext.[Ch]: new files containing only the scex, idex functions
149         stored previously in xforms_helpers.[Ch].
150
151         * xforms_helpers.[Ch]: removed scex, idex functions.
152
153         * Most other files: minor changes associated with the above.
154
155 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
156
157         * XWorkArea.h:
158         * XWorkArea.C: move scrolling logic into here
159
160         * ColorHandler.h:
161         * ColorHandler.C:
162         * XPainter.h:
163         * XPainter.C: remove unused stuff, s/PainterBase/Painter/,
164         s/Painter/XPainter/
165
166 2002-06-12  Angus Leeming  <leeming@lyx.org>
167
168         * lyx_gui.C (parse_init): exit isn't in namespace lyx_gui!
169
170 2002-06-12  Angus Leeming  <leeming@lyx.org>
171
172         * FormParagraph.C: include ParagraphParameters.h now that
173         ParagraphParameters is forward declared in ControlParagraph.h.
174
175 2002-05-24  Martin Vermeer  <martin.vermeer@hut.fi>
176
177         * FormMathsDelim.C: fix delimiter pre-display rendering
178           mess-up bug (354)
179
180 2002-06-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
181
182         * xformsGImage.h: do not rely on FLIMAGE_H_LOCATION anymore
183
184 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
185
186         * XFormsView.h:
187         * XFormsView.C: move init() back to LyXView
188
189 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
190
191         * GUIRunTime.C: remove in favour of ...
192
193         * Makefile.am:
194         * lyx_gui.C: ... GUI startup namespace
195
196         * XFormsView.h:
197         * XFormsView.C: change show() prototype
198
199         * XPainter.C:
200         * xfont_loader.C: don't use GUIRunTime any more
201
202 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
203
204         * ColorHandler.C:
205         * FontInfo.h:
206         * FormBase.C:
207         * FormBaseDeprecated.C:
208         * MathsSymbols.C:
209         * Menubar_pimpl.C: minor cleanups
210
211 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
212
213         * xformsGImage.C:
214         * FontInfo.h:
215         * FontInfo.C: some cleanup
216
217         * XWorkArea.C:
218         * XFormsView.h:
219         * XFormsView.C: some minor cleanup, use of
220           scoped_ptr
221
222         * xfont_loader.h:
223         * xfont_loader.C: rename
224
225 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
226
227         * XWorkArea.h:
228         * XWorkArea.C: use workHeight(), remove enter/leaveView
229
230 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
231
232         * XWorkArea.h:
233         * XWorkArea.C: remove belowMouse() and active()
234
235 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
236
237         * xfont_metrics.h:
238         * xfont_metrics.C:
239         * XPainter.C: X-specific metrics stuff moved into xforms/ only
240
241 2002-06-11  Edwin Leuven  <leuven@fee.uva.nl>
242
243         * FormParagraph.[Ch]: moved to mvc
244         * form_paragraph.[Ch]: idem
245         * forms/form_paragraph.fd: idem
246         * Dialogs.C: idem
247
248 2002-06-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
249
250         * GUIRunTime.C (initialiseGraphics): condition the choice of
251         loader on USE_XFORMS_IMAGE_LOADER
252
253         * xformsGImage.C (init_graphics): do not initialize jpeg support
254         if not available
255
256 2002-06-05  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
257
258         * xformsGImage.h: use FLIMAGE_H_LOCATION to include flimage.h.
259
260 2002-06-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
261
262         * FormMathsPanel.C: do not include ButtonController.tmpl
263         * FormPreferences.C: ditto
264         * xformsBC.C: ditto
265
266         * FormBase.h (controller): remove ViewBase:: prefix
267
268 2002-06-07  Angus Leeming  <leeming@lyx.org>
269
270         Fixes needed to compile with Compaq cxx 6.5.
271         * ColorHandler.C:
272         * DropDown.C:
273         * FormThesaurus.C:
274         all c-library variables have been moved into namespace std.
275         Wrap using std::xyz declarations inside a #ifndef CXX_GLOBAL_CSTD block.
276
277         * XFormsView.C: add a using std::abs directive.
278
279         * FormBase.h (FormCB::controller): I have had to prefix base class
280         methods with Base:: Wierd!
281
282 2002-06-04  John Levon  <moz@compsoc.man.ac.uk>
283
284         * xformsGImage.h: an xforms build fix
285
286 2002-06-02  Michael A. Koziarski  <michael@koziarski.com>
287
288         * Tooltips.C: fix some sigc++ -> boost errors.
289
290 2002-06-02  John Levon  <moz@compsoc.man.ac.uk>
291
292         * GUIRunTime.C:
293         * XFormsView.C:
294         * XWorkArea.C:
295         * xforms_resize.C:
296         * xformsGImage.h: fixes for xforms 1.0 version
297           checking
298
299 2002-05-10  Herbert Voss  <voss@perce.de>
300
301         * FormInclude.C (input, update): disable load-button when
302         "use verbatim" is enabled
303
304 2002-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
305
306         * FileDialog.C (FileDialog): fix () bug when using new
307         * xformsGImage.C (newImage): ditto
308         * Toolbar_pimpl.C (Pimpl): ditto
309         * xfont_loader.C (getFontinfo): ditto
310
311 2002-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
312
313         * switch from SigC signals to boost::signals.
314
315         * Dialogs.C (Dialogs): simplify creation of dialog objects a bit.
316
317 2002-05-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
318
319         * FormDocument.C (input): set preamble too when saving default
320         template.
321
322 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
323
324         * Makefile.am:
325         * XWorkArea.h:
326         * XWorkArea.C: moved here
327
328 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
329
330         * ColorHandler.h:
331         * ColorHandler.C:
332         * FontInfo.h:
333         * FontInfo.C: moved here
334
335         * xfont_loader.h:
336         * xfont_loader.C: moved here
337
338         * Makefile.am:
339         * xfont_metrics.C: changes from above
340
341 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
342
343         * Makefile.am:
344         * XPainter.C:
345         * xfont_metrics.h:
346         * xfont_metrics.C: moved font metrics code
347
348 2002-05-24  Juergen Vigna  <jug@sad.it>
349
350         * FormMathsBitmap.C: include local includes first (selfcontainment)
351         * FormMathsBitmap.h: include LString.h first.
352
353 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
354
355         * XFormsView.C:
356         * lyxlookup.h:
357         * lyxlookup.C:
358         * Makefile.am: move here
359
360 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
361
362         * DropDown.h:
363         * FileDialog.C:
364         * FormBaseDeprecated.C:
365         * FormDocument.C:
366         * FormIndex.C:
367         * FormInset.C:
368         * FormMathsBitmap.C:
369         * FormMathsDelim.C:
370         * FormMathsMatrix.C:
371         * FormMathsPanel.C:
372         * FormParagraph.C:
373         * FormPreferences.C:
374         * FormPrint.C:
375         * FormTabular.C:
376         * Makefile.am:
377         * XFormsView.h:
378         * XFormsView.C: LyXView is now in frontends/,
379         XFormsView moved to here
380
381 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
382
383         * Makefile.am:
384         * XPainter.h:
385         * XPainter.C: move Painter here
386
387 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
388
389         * Menubar_pimpl.C: add scoped_ptr.hpp
390
391         * FormPrint.h: remove smart_ptr.hpp
392
393         * FormBase.h: use more specific smart_ptr header
394         * FormCharacter.h: ditto
395         * FormMathsStyle.h: ditto
396         * FormAboutlyx.h: ditto
397         * Menubar_pimpl.h: ditto
398         * FormTabular.h: ditto
399         * FormPreferences.h: ditto
400         * FormParagraph.h: ditto
401         * FormMathsSpace.h: ditto
402         * FormMathsPanel.h: ditto
403         * FormMathsMatrix.h: ditto
404         * FormMathsDelim.h: ditto
405         * FormMathsDeco.h: ditto
406         * FormGraphics.h: ditto
407         * FormDocument.h: ditto
408
409 2002-05-15  John Levon  <moz@compsoc.man.ac.uk>
410
411         * FormCharacter.C: avoid mis-treating Combox as FL_OBJECT
412           (bug 406) (from Angus)
413
414 2002-05-10  Dekel Tsur  <dekelts@tau.ac.il>
415
416         * FormDocument.C (language_apply): Fix language changing.
417
418 2002-05-09  Angus Leeming  <a.leeming@ic.ac.uk>
419
420         * Tooltips.C: enable tooltips by default.
421
422 2002-05-09  Angus Leeming  <a.leeming@ic.ac.uk>
423
424         * xforms_resize.h: improve the doc++ comments.
425
426         * xforms_resize.C (get_tabfolder_numfolders): new helper function,
427         wrapping fl_get_tabfolder_numfolders if it exists and otherwise
428         providing this info "somehow".
429         Constify a few variables.
430         whitespace changes.
431
432 2002-05-06  Angus Leeming  <a.leeming@ic.ac.uk>
433
434         * FormBase.C (show):
435         * FormBaseDeprecated.C (show): having built the dialog, ensure that it
436         is widened sufficiently to display wholely the tabs of any
437         tabbed-folders. This is more than just cosmetic as it will prevent
438         crashes when selecting a partly displayed tab. (The problem occurs
439         with a "long" locale like German and xforms < 0.9999.)
440
441         * xforms_resize.[Ch]: new files doing the grunt work of ascertaining
442         by how much a dialog should be scaled to show its tabs fully (should
443         it have a tabfolder).
444
445 2002-05-08  Garst Reese  <reese@isn.net>
446
447         * FormMathsDeco.C: fix offset to normal size decos.
448
449 2002-05-03  Angus Leeming  <a.leeming@ic.ac.uk>
450
451         * xformsGImage.C (rotate): work-around xforms bug when rotating by
452         270 degs.
453
454 2002-05-02  Herbert Voss  <voss@perce.de>
455
456         * FormBibtex.C (apply): a change from a style to an empty one
457         (which is valid) wasn't saved
458
459 2002-05-02  Herbert Voss  <voss@perce.de>
460
461         * FormGraphics.C (input): do not read bb new when it was changed
462
463 2002-04-30  Rob Lahaye <lahaye@users.sourceforge.net>
464
465         * FormDocument.C: "USletter" -> "US letter" etc., "Other" -> "Custom".
466         * FormParagraph.C: "Other" -> "Custom"
467         * FormPreferences.C: "USletter" -> "US letter" etc.
468         * forms/form_document.fd: 'Papersize" -> "Paper size" style consistency
469         * forms/form_preferences.fd: style consistency
470
471 2002-04-30  Angus Leeming  <a.leeming@ic.ac.uk>
472
473         * FormCharacter.C:
474         * FormDocument.C:
475         * FormPreferences.C (findPos): remove this template to xforms_helpers.h.
476
477         * xforms_helpers.h (findPos): new template.
478
479         * FormGraphics.h: store a vector<string> origins_ of the LaTeX names
480         for the rotation origins.
481
482         * FormGraphics.C: internationalise the rotation origin strings in the
483         choice using the same approach as used for the language names in the
484         Character, Document, Preferences dialogs.
485
486 2002-04-30  Angus Leeming  <a.leeming@ic.ac.uk>
487
488         * FormCharacter.C:
489         * FormDocument.C:
490         * FormPreferences.C: use the bool flag to getLanguageData as
491         appropriate. No longer translate the strings as this is done in
492         getLanguageData.
493
494 2002-04-29  John Levon  <moz@compsoc.man.ac.uk>
495
496         * FormBibtex.C:
497         * FormCitation.C: fix two typos
498
499 2002-04-29  Angus Leeming  <a.leeming@ic.ac.uk>
500
501         * FormCharacter.h:
502         * FormDocument.h:
503         * FormPreferences.h: store a vector<string> lang_ of language
504         identifiers.
505
506         * FormCharacter.C: changes associated with frnt::getLanguageData
507         returning a vector<LanguagePair> rather than a vector<string>.
508
509         * FormDocument.C:
510         * FormPreferences.C: internationalise the languages on display, similar
511         to the changes in FormCharacter.C.
512
513 2002-04-26  John Levon  <moz@compsoc.man.ac.uk>
514
515         * FormMathsPanel.C: translate Close
516         * FormGraphics.C: a little more translation
517
518 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
519
520         * FormCitation.C (apply, input): ensure that the choice is always valid.
521
522         * forms/fdfixc.sed: use "_shortcut" rather than "shortcut" as an
523         identifier when performing one of the substitutions. "shortcut" can
524         reasonably appear in the label.
525
526 2002-04-25  Rob Lahaye <lahaye@users.sourceforge.net>
527
528         * Makefile.am: fix typo "shoul go to" -> "should go to".
529
530         * forms/form_preferences.fd: Modify naming for Converter flags
531         ("Extra flags") and remove a couple of shortcut-clashes.
532
533         * FormPreferences.C: Modify 'tooltip' info for Converter flags.
534
535 2002-04-23  Juergen Spitzmueller <j.spitzmueller@gmx.de>
536
537         * FormBibtex.C: Do not use a blank after the comma for multiple
538         bib-files (which is not read in correctly).
539
540 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
541
542         * FormCitation.C (fillChoice): If the getCiteStrings vec is empty,
543         disable the choice.
544
545 2002-04-19  Juergen Vigna  <jug@sad.it>
546
547         * FormParagraph.C (changedParagraph): don't check for p == par_ as
548         we don't set par_ on a changedParagraph call so we don't resete the
549         buttons and message when we return to the original paragraph!
550
551 2002-04-17  Rob Lahaye <lahaye@users.sourceforge.net>
552
553         * forms/cvsignore: add Makefile.
554
555 2002-04-16  Lars Gullik Bjønnes  <larsbj@birdstep.com>
556
557         * forms/Makefile.am: make it a dummy make file + extra dist
558
559 2002-04-14  Herbert Voss  <voss@perce.de>
560
561         * FormCharacter.C
562         * FormExternal.C: adding #include "support/lstrings.h"
563         for the getStringFromVector and vice versa
564
565 2002-04-12  Angus Leeming  <a.leeming@ic.ac.uk>
566
567         * FormParagraph.C (changedParagraph): ensure that the warning message
568         is removed if the underlying paragraph will accept our changes.
569
570 2002-04-09  Herbert Voss  <voss@perce.de>
571
572         * FormGraphics.C: allow rotate-values like 270.1
573         * xformsGImage.C (rotate): get the right rotate-angle from
574         GraphicParams
575
576 2002-04-08  Angus Leeming  <a.leeming@ic.ac.uk>
577
578         * xformsGImage.C (clip): no need to check if the width, height are > 0
579         because the BoundingBox would be empty() in this weren't the case.
580
581 2002-04-08  Juergen Spitzmueller <j.spitzmueller@gmx.de>
582
583         * FormDocument.[Ch]: Add a new method UpdateClassParams
584         which is used in CheckChoiceClass to update the fontsizes
585         and other necessary stuff (pagestyle) on class change
586         (hopefully finally fix bug #306)
587
588 2002-04-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
589
590         * forms/Makefile.am (SUFFIXES): instead of .SUFFIXES
591         (updatesrc): delete wrong version
592
593 2002-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
594
595         * forms/.cvsignore: add Makefile.in
596
597         * forms/Makefile.am: make distcheck work, new file
598
599         * Makefile.am: make distcheck work
600
601 2002-04-05  Herbert Voss  <voss@perce.de>
602
603         * FormGraphics.C: use correct unit bp (big point - PostScript point)
604         for the bounding box values
605
606 2002-04-05  Angus Leeming  <a.leeming@ic.ac.uk>
607
608         * FormGraphics.C (updateBB, input): Don't set the path of the file
609         passed to readBB. Let the controller do that because it knows about
610         the buffer (and therefore the path) whereas the view has no idea.
611
612 2002-04-04  Angus Leeming  <a.leeming@ic.ac.uk>
613
614         * xformsGImage.C (clip): ensure that the clipped image has sensible
615         dimensions.
616
617 2002-04-04  Herbert Voss  <voss@lyx.org>
618
619         * FormGraphics.C (updateBB):  new method to read the BBox when reading
620         a new file or changing an existing one.
621
622 2002-04-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
623
624         * FormCharacter.C (findPos): add a missing typename
625
626 2002-04-02  Angus Leeming  <a.leeming@ic.ac.uk>
627
628         * FeedbackController.C:
629         * FormBibtex.C:
630         * FormCitation.C:
631         * FormForks.C:
632         * FormMathsBitmap.C:
633         * FormPreferences.C:
634         * FormSendto.C:
635         * FormTexinfo.C:
636         * Tooltips.C:
637         * xforms_helpers.C: use _() correctly rather than N_().
638
639 2002-03-28  Juergen Spitzmueller <j.spitzmueller@gmx.de>
640
641         * FormDocument.C (CheckChoiceClass): update the necessary class
642         settings on class change (fix bug #306)
643
644 2002-03-27  Herbert Voss  <voss@lyx.org>
645
646         * xforms_helpers.h:
647         * FormGraphics.C:  change c%, l%, p% t% to col%, line%, page%
648         and text%
649
650 2002-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
651
652         * MathsSymbols.[Ch]: remove #include "bmtable.h" & "FormMathsPanel.h".
653         Move enum MathsCallbackValues from FormMathsPanel.h to MathsSymbols.h.
654         The MathsSymbols are now xforms-independent.
655
656         * FormMathsPanel.h: #include MathsSymbols.h for the enum.
657
658 2002-03-26  Angus Leeming  <a.leeming@ic.ac.uk>
659
660         * FormPreferences.C (browse): don't use BrowseRelPath here you noodle!
661
662         * FormGraphics.C (input): don't disallow the input of a file that's
663         not there.
664
665 2002-03-25  Angus Leeming  <a.leeming@ic.ac.uk>
666
667         * FormParagraph.C (changedParagraph): whitespace.
668
669         * xforms_helpers.C: rearrange #includes.
670
671         * RadioButtonGroup.[Ch]: rename some of the methods. Remove #if 0 code.
672
673         * FormPrint.C: changes associated with changes to RadioButtonGroup.
674
675         * FormGraphics.C:
676         * forms/form_graphics.fd: rename some of the widgets.
677
678 2002-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
679
680         * FormGraphics.C (input): don't activate the Ok, Apply buttons if the
681         file can't be found.
682
683         * FormParagraph.C (changedParagraph): activate the Ok, Apply buttons
684         only if the underlying paragraph will accept changes.
685
686         * FormPreferences.C (browse): use Jean-Marc's browseRelFile.
687
688         * xforms_helper.C (updateWidgetsFromLength): fix crash when trying to
689         set the choice to a unit that isn't present in the choice!
690         Also remove #if 0 sections of code.
691
692 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
693
694         * several files: ws cleanup
695
696 2002-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
697
698         * lots: whitespace changes.
699
700 2002-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
701
702         * FormParagraph.C: a little more factorisation.
703
704 2002-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
705
706         * xforms_helpers.C (setCursorColor):
707         * Tooltips.C (set): remove XC_question_arrow code.
708
709         * FeedbackController.[Ch] (clearMessage): new method.
710
711         * FeedbackController.C (postMessage): the warning message is now
712         displayed in red!
713
714         * FormParagraph.C: define some helper functions to minimise the amount
715         of repeated code.
716
717         * FormDocument.C:
718         * FormGraphics.C:
719         * FormMinipage.C:
720         * FormTabular.C: use the FeedbackController to post the warning
721         messages.
722
723 2002-03-19  André Pönitz <poenitz@gmx.net>
724
725         * FormParagraph.C: whitespace changes
726
727 2002-03-18  Angus Leeming  <a.leeming@ic.ac.uk>
728
729         * Tooltips.[Ch] (initTooltip): renamed init. In the 0.89 version, no
730         longer call fl_set_object_helper as this routine respects line breaks
731         only if the dialog is visible.
732         (getTooltip): renamed as get.
733         (toggleTooltips): renamed as set and made public.
734
735         * FormBase.C (show):
736         * FormBaseDeprecated.C (show): move tooltip-inards into Tooltip.
737
738         * FormBibtex.C (build):
739         * FormCitation.C (build):
740         * FormForks.C (build):
741         * FormSendto.C (build):
742         * FormTexinfo.C (build):
743         * Toolbar_pimpl.C (set): Tooltip::initTooltip -> Tooltip::init.
744
745         * xforms_helper.C (formatted): rewritten as a one-pass algorithm.
746
747 2002-03-18  Juergen Vigna  <jug@sad.it>
748
749         * FormTabular.C (update): deactivate left/right border settings for
750         multicolumns if not an outer cell or no parent multicolumn cell.
751
752 2002-03-14  John Levon  <moz@compsoc.man.ac.uk>
753
754         * GUIRunTime.C: add spaces to error messages
755
756 2002-03-13  Angus Leeming  <a.leeming@ic.ac.uk>
757
758         * FormBase.C (show):
759         * FormBaseDeprecated.C (show): set the initial state of the cursor.
760
761         * FormPreferences.C (Colors::apply()): use the helper function
762         setCursorColor.
763
764         * Tooltips.C (toggleTooltips): proper fix for those Bad Window messages.
765         Can only set the cursor if the dialog is visible.
766
767         * xforms_helpers.[Ch] (setCursorColor): new helper function to set the
768         color of all cursors used by LyX.
769         (XformsColor::read): use it.
770
771 2002-03-12  Angus Leeming  <a.leeming@ic.ac.uk>
772
773         * forms/*.fd (except form_filedialog.fd which is v. scary :-():
774         housekeeping changes.
775         1. Ensure that all radio buttons are wrapped up within a group.
776         2. Rename all button_cancel as button_close.
777         3. Ensure that all objects follow the naming scheme outlined in
778            forms/README
779
780         class             | prefix
781         ------------------+-------
782         FL_BROWSER        | browser
783         FL_BUTTON         | button
784         FL_PIXMAPBUTTON   | button
785         FL_CHECKBUTTON    | check
786         FL_CHOICE         | choice
787         FL_COUNTER        | counter
788         FL_DIAL           | dial
789         FL_INPUT          | input
790         FL_FRAME          | frame
791         FL_LABELFRAME     | frame
792         FL_ROUND3DBUTTON,
793         RADIO_BUTTON      | radio
794         FL_SLIDER         | slider
795         FL_VALSLIDER      | slider
796         FL_TABFOLDER      | tabfolder
797         FL_TEXT           | text
798
799         The only exceptions to this are objects that are to be converted
800         in the sed scripts. At the moment this applies only to bmtable:
801
802         Convert an FL_BUTTON to a FL_BMTABLE by using prefix "bmtable".
803
804 2002-03-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
805
806         * doxygen fixes.
807
808 2002-03-09  Angus Leeming  <a.leeming@ic.ac.uk>
809
810         * FeedbackController.C: improve a comment.
811
812         * FormFiledialog.C: whitespace change.
813
814         * FormBibitem.C (build):
815         * FormBibtex.C (build):
816         * FormCitation.C (build):
817         * FormDocument.C (build):
818         * FormExternal.C (build):
819         * FormGraphics.C (build):
820         * FormInclude.C (build):
821         * FormIndex.C (build):
822         * FormMathsMatrix.C (build):
823         * FormMinipage.C (build):
824         * FormParagraph.C (build):
825         * FormPrint.C (build):
826         * FormRef.C (build):
827         * FormSendto.C (build):
828         * FormSpellchecker.C (build):
829         * FormTabular.C (build):
830         * FormThesaurus.C (build):
831         * FormUrl.C (build): invoke setPrehandler for all FL_INPUT objects.
832         Means that pasting with the middle mouse button will activate the
833         Ok, Apply buttons.
834
835         * FeedbackController.C (MessageCB): fix crash by removing
836         Assert(message_widget_) and returning silently in this case.
837         Can happen quite justifiably.
838
839         * Most files: consistent comments at the top of the file, usable by
840         sourcedoc.
841
842 2002-03-09  Herbert Voss  <voss@lyx.org>
843
844         * FormGraphics.C: test if file exists, simplify an if command
845
846 2002-03-10  John Levon  <moz@compsoc.man.ac.uk>
847
848         * FormToc.C: make goto not reset the dialog
849
850 2002-03-08  Angus Leeming  <a.leeming@ic.ac.uk>
851
852         * FeedbackController.[Ch]: new files, providing a standard interface to
853         the feedback and warning messages. Created by stripping code out of
854         FormBase.
855
856         * FormBase.[Ch]: strip out all the feedback code and simplify yet
857         further the tooltips code.
858
859         * FormBase.[Ch]:
860         * FormBaseDeprecated.[Ch]: Add a Tooltips pointer.
861         Derive both classes from FeedbackController so daughter classes each
862         have a common interface for same.
863
864         * Toolbar_pimpl.[Ch]: strip out all the tooltip code and use the
865         Tooltips wrapper class.
866
867         * Tooltips.[Ch]: work out how to update tooltips when using
868         xforms 0.89's fl_set_object_helper. Can now toggle tooltips with both
869         xforms 0.88 and 0.89. Change the cursor to a "?" when in query mode
870         and when the dialog has some tooltips.
871
872         * FormPreferences.[Ch]: strip out all the feedback code and use
873         the FeedbackController.
874
875         * xforms_helpers.C: save the color of the gui pointer.
876
877         * FormBibtex.[Ch]:
878         * forms/form_bibtex.fd:
879         * FormCitation.[Ch]:
880         * forms/form_citation.fd:
881         * FormForks.[Ch]:
882         * forms/form_forks.fd:
883         * FormSendto.[Ch]:
884         * forms/form_sendto.fd:
885         * FormTexinfo.[Ch]:
886         * forms/form_texinfo.fd: remove "Help" button and rejig for much
887         simplified tooltips code.
888
889         * Makefile.am: add FeedbackController.[Ch].
890
891 2002-03-08  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
892
893         * FormGraphics.C: Tiny stylistic correction.
894
895 2002-03-07  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
896
897         * FormGraphics.C:
898                 - Make radiobuttons change too when using Latex size in
899                   lyxview and vice versa.
900                 - Fix a typo where the value for height (lyxview) was
901                   taken from width (size).
902                 - Remove *%-values from lyxview.
903                 - Add an Alert when using "Get Latex size" and that contains
904                   *%-values.
905         * FormTabular.C: Remove obsolete comment.
906
907 2002-03-07  Martin Vermeer <martin.vermeer@hut.fi>
908
909         * FormMathsDeco.C: add leftrightarrows to the bitmap.
910
911         * forms/form_maths_style.fd: reflect the changes in the bitmaps.
912
913 2002-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
914
915         * xformsGImage.C (statusCB, errorCB): close the file streams once the
916         image is loaded or if an error occurs.
917         (init_graphics): FLIMAGE_SETUP setup must be static as xforms stores
918         it permanently (and does not make a copy!).
919
920 2002-03-05  Angus Leeming  <a.leeming@ic.ac.uk>
921
922         * xformsGImage.[Ch]: new files. An image loader based on xforms library
923         routines.
924
925         * GUIRunTime.C (initialiseGraphics): use the xforms image loader if
926         your version of the xforms libraries is up to the task.
927
928         * Makefile.am: compile the xforms image loader if so configured.
929
930 2002-03-04   Angus Leeming  <a.leeming@ic.ac.uk>
931
932         * Dialogs.C (redrawGUI): removed to frontends/Dialogs.C
933
934         * Dialogs.C:
935         * GUIRunTime.C (initialiseGraphics): moved to GUIRunTime.
936
937 2002-03-04   Angus Leeming  <a.leeming@ic.ac.uk>
938
939         * FormDocument.C (build): add a std:: qualifier to remove_if.
940
941 2002-03-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
942
943         * Toolbar_pimpl.[Ch]: layout as string
944
945         * FormParagraph.C: layout as string
946
947         * FormDocument.C (build): use remove_if and contains_functor
948         layout as string
949
950 2002-03-01  Martin Vermeer <martin.vermeer@hut.fi>
951
952         * FormMathsBitmap.[Ch]:
953         * FormMathsPanel.C: Give window titles to bit map sub-panels.
954
955 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
956
957         * Dialogs.C (initialiseGraphics): a new static method.
958         Remove Allan's venerable description as I think it's past its sell-by
959         date.
960
961 2002-02-28  John Levon  <moz@compsoc.man.ac.uk>
962
963         * FormBase.C:
964         * FormBaseDeprecated.C:
965         * FormFiledialog.C: possible fix to the Bad Window problems that some
966         people have been experiencing.
967
968 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
969
970         * FormForks.C (input_button_all): resolve comparison between signed
971         and unsigned.
972
973 2002-02-26  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
974
975         * Menubar_pimpl.C (makeMenubar): ignore entries which are not
976         submenus in menubar.
977
978 2002-02-20  Angus Leeming  <a.leeming@ic.ac.uk>
979
980         * FormForks.[Ch]:
981         * forms/form_forks.fd: new files. A view for the Forked Child
982         processes dialog, enabling the user to see what forked processes
983         are running, and, if he so desires, to kill them.
984
985         * Dialogs.C: add the class Forked Child dialog.
986
987         * Makefile.am: add FormForks.[Ch], form_forks.[Ch].
988
989         * forms/makefile: add form_forks.fd.
990
991         * FormPreferences.C (LnFmisc::apply): rather ugly: call
992         grfx::GCache::changeDisplay if the lyxrc.display_graphics changes.
993
994 2002-02-24  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
995
996         * forms/form_graphics.fd: Enlarge Restore button.
997         * FormGraphics.C: Set filter to bounding box input fields.
998
999 2002-02-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1000
1001         * Makefile.am: simpler obj. file compiling
1002
1003 2002-02-20  Juergen Vigna  <jug@sad.it>
1004
1005         * FormTabular.C (input): don't call the autoapply on exit input calls
1006         if we don't really have a change!
1007
1008 2002-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
1009
1010         * FormBase.h (FormCB): tiny bugfix.
1011
1012         * xforms_helpers.h: remove incorrect comment.
1013
1014 2002-02-18  Herbert Voss  <voss@lyx.org>
1015
1016         * FormGraphics.C: same units for LyX and Latex view, cosmetics
1017
1018 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
1019
1020         * Timeout_pimpl.[Ch] (running): new method.
1021
1022 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
1023
1024         * FormParagraph.C:
1025         * FormTabular.C: added a using std::remove_if directive.
1026
1027 2002-02-14  Herbert Voss  <voss@lyx.org>
1028
1029         * xforms_helpers.h: fix bug with "?%" units
1030
1031 2002-02-14  Rob Lahaye  <lahaye@users.sourceforge.net>
1032         * forms/form_graphics.fd:
1033         * form_graphics.C: minor layout changes, such as stretching all
1034         tab-windows to equal sizes and better keyboard-shortcuts.
1035
1036 2002-02-14  Rob Lahaye  <lahaye@users.sourceforge.net>
1037         * forms/form_graphics.fd:
1038         * form_graphics.C: minor layout changes, such as stretching all
1039         tab-windows to equal sizes and better keyboard-shortcuts.
1040
1041 2002-02-12  Herbert Voss  <voss@lyx.org>
1042
1043         * forms/form_graphics.fd:
1044         * form_graphics.[Ch]: small changes to the layout, mentioned
1045         by Rob
1046
1047         * FormGraphics.C: fix bug with use of updateWidget... when
1048         no unit is given.
1049
1050 2002-02-11  John Levon  <moz@compsoc.man.ac.uk>
1051
1052         * FormMinipage.C: return SMI_VALID on other form changes
1053
1054 2002-02-11  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
1055
1056         * FormParagraph.C (update): [VSpace:] Delete the special method
1057         for gluelengths...
1058         * xforms_helpers.C: ...and move it here.
1059         Activate JMarcs new (shorter) code for updateWidgetsFromLengthString
1060         and updateWidgetsFromLength.
1061
1062 2002-02-10  Rob Lahaye  <lahaye@users.sourceforge.net>
1063
1064         * forms/form_external.fd:
1065         * form_external.C: change color2 of a few buttons into the
1066         proper grey color.
1067
1068 2002-02-08  Herbert Voss  <voss@lyx.org>
1069
1070         * forms/form_graphics.fd:
1071         * FormGraphics.C:
1072         * form_graphics.[Ch]: Adding buttons for unzip-Option,
1073         getValues from LyX/LaTeXfolder
1074
1075 2002-02-08  Rob Lahaye  <lahaye@users.sourceforge.net>
1076
1077         * forms/form_graphics.fd:
1078         * FormGraphics.C:
1079         * form_graphics.[Ch]: simplify the bounding box folder
1080         of the Graphic GUI
1081
1082 2002-02-08  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1083
1084         * Menubar_pimpl.C (create_submenu): work around an xforms bug (?)
1085         where one could not have both toggleon and disabled.
1086
1087 2002-02-08  Herbert Voss  <voss@lyx.org>
1088
1089         * xforms_helpers.h: change unit "%" to t%
1090
1091         * FormGraphics.C: fiy bug when BB is read from file and the
1092         unit is always "pt"
1093
1094 2002-02-08  Martin Vermeer <martin.vermeer@hut.fi>
1095
1096         * FormMathsDeco.C: \underleftarrow and \underrightarrow
1097
1098 2002-02-06  Angus Leeming  <a.leeming@ic.ac.uk>
1099
1100         Stabilise the tooltip interface and get Jürgen's patch to work ;-)
1101
1102         * Tooltips.[Ch]: new files. A wrapper to the tooltip code with a nice
1103         clean interface. Means that FormBase, FormBaseDeprecated and
1104         Tollbar_pimpl can all use the same code to have tooltips. No bloat.
1105
1106         * FormBase.C: add a Tooltips instance and interface with it.
1107         (setTooltipLevel): removed. Replaced by fillTooltipChoice and
1108         setTooltipLevel(ob).
1109         (getVerboseTooltip, getMinimalTooltip) now passed a const FL_OBJECT.
1110
1111         * FormBibtex.[Ch]:
1112         * FormCitation.[Ch]:
1113         * FormTexinfo.[Ch]:
1114         * Makefile.am: altered appropriately.
1115
1116 2002-02-06  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
1117
1118         * forms/form_texinfo.fd:
1119         * forms/form_bibtex.fd:
1120         * forms/form_citation.fd: delete text_info field again, add help choice
1121
1122         * FormBibtex.[Ch]:
1123         * FormCitation.[Ch]:
1124         * FormTexinfo.[Ch]: Implement new Tooltip behaviour.
1125
1126 2002-02-06  Angus Leeming  <a.leeming@ic.ac.uk>
1127
1128         * FormBase.[Ch]: can now chose the verbosity of the tooltip through
1129         a new method setTooltipLevel(). In turn this determines which of the
1130         new virtual methods, getVerboseTooltip() or getMinimalTooltip() gets
1131         called from getTooltip.
1132         No need for a "message" widget at the bottom of every dialog, therefore.
1133         If retained, this "message" widget can be used to display "warnings",
1134         pure and simple.
1135
1136         * FormBibtex.[Ch]:
1137         * FormCitation.[Ch]:
1138         * FormTexinfo.[Ch]: altered appropriately. Still need to be reshaped,
1139         to lose the "message" widget and to gain a "tooltip level" choice.
1140
1141 2002-02-05  Angus Leeming  <a.leeming@ic.ac.uk>
1142
1143         * forms/form_graphics.fd: Tiny tweek to make the Restore, Ok, Apply,
1144         Cancel buttons' positions consistent with the other dialogs.
1145
1146 2002-02-05  Herbert Voss  <voss@lyx.org>
1147
1148         * forms/form_graphics.fd: Noew the same view of the
1149         buttons as in preferences (LyXView). Make some things clear
1150         with better names.
1151         * FormGraphic.C: cosmetic changes to the layout. Delete
1152         the help button
1153
1154 2002-02-05  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
1155
1156         * forms/form.texinfo.fd: delete help button, add text_info
1157         * forms/form.citation.fd,form.bibtex.fd: add text_info
1158         * FormTexinfo.[Ch]: Delete Help mechanism, add tooltips and help messages.
1159         * FormCitation.[Ch],FormBibtex.[Ch]: add tooltips and help messages (actually
1160         no tooltips in Bibtex).
1161
1162 2002-02-05  Angus Leeming  <a.leeming@ic.ac.uk>
1163
1164         * FormBase.[Ch]: You want tooltips too? You got 'em. Verified as
1165         working with both xforms 0.88 and 0.89. Use by invoking
1166         setTooltipHandler(ob) and by providing a method getTooltip(ob) in this
1167         derived class to provide the required string.
1168
1169 2002-02-05  Angus Leeming  <a.leeming@ic.ac.uk>
1170
1171         * FormBase.[Ch]: make it really easy to set up and use a prehandler
1172         for feedback messages and to invoke an input event on paste from
1173         the middle mouse button. The derived class needs invoke only
1174         setPrehandler(ob) and for the feedback to override the virtual methods
1175         feedback(ob) and clear_feedback(). If the message posted is a warning
1176         rather than mere feedback, first setWarningPosted(true) to ensure
1177         that the message remains visible.
1178
1179         * FormBaseDeprecated.C: a physical rearrangement of the file,
1180         nothing more.
1181
1182         * FormPreamble.C: use setPrehandler to invoke an input event on paste.
1183
1184 2002-02-04  Herbert Voss  <voss@lyx.org>
1185
1186         * forms/form_graphics.fd: small changes to the layout
1187         * FormGraphic.C: Apply-button, keepaspectratio enabling
1188         depends to case of LaTeXView. Other small changes and
1189         fixes. Add LyXView scale.
1190
1191 2002-02-01  Angus Leeming  <a.leeming@ic.ac.uk>
1192
1193         * FormGraphics.C (c-tor): prevent resizing of the dialog.
1194
1195 2002-02-03  Herbert Voss  <voss@lyx.org>
1196
1197         * xforms_helpers.C: fix bug with unit "%" in
1198         updateWidgetsFromLengthString(...)
1199
1200 2002-02-02  Herbert Voss  <voss@lyx.org>
1201
1202         * FormGraphic.C: fix bug with filename, rearrange the code,
1203         delete choice "referencePoint" which is only possible for
1204         rotatebox
1205         * forms/form_graphics.fd: position options in a logical way,
1206         add folder and scale for LyXView
1207
1208 2002-02-01  Angus Leeming  <a.leeming@ic.ac.uk>
1209
1210         * FormGraphics.C (apply, update): respect the new DEFAULT state of
1211         InsetGraphicsParams::DisplayType.
1212
1213 2002-01-31  Martin Vermeer <martin.vermeer@hut.fi>
1214
1215         * forms/form_graphics.fd: tweeks.
1216
1217 2002-01-30  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1218
1219         * FormGraphics.C: Fix MAXDIGIT values for height and width.
1220
1221 2002-01-30  Angus Leeming  <a.leeming@ic.ac.uk>
1222
1223         * forms/form_citation: a few tweaks of my own.
1224
1225 2002-01-30  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1226
1227         * forms/form_citation: De-Monsterization (make it smaller).
1228
1229 2002-01-30  Angus Leeming  <a.leeming@ic.ac.uk>
1230
1231         * forms/form_graphics.fd:
1232         * FormGraphics.C: a few tweaks of my own.
1233
1234 2002-01-30  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1235
1236         * forms/form_graphics.fd: Very small tweaks.
1237
1238 2002-01-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1239
1240         * forms/form_graphics.fd: Change the dialog to look similar as
1241         the nice QT2-Version (added tabfolder "Bounding Box", rearrangements);
1242         added text_warning field..
1243
1244         * FormGraphics.[Ch]: Handle the Rearrangements.
1245         Add input filters and warnings concerning invalid inputs.
1246         Recognize the lyxrc-settings of display_graphics.
1247
1248 2002-01-29  Angus Leeming  <a.leeming@ic.ac.uk>
1249
1250         * FormMathsSpace.h (space_):
1251         * FormMathsStyle.h (style_): change from a short to an int to fix
1252         type conversion warnings.
1253
1254 2002-01-28  Martin Vermeer <martin.vermeer@hut.fi>
1255
1256         * FormMathsSpace.[Ch]:
1257         * forms/form_maths_space.fd:
1258         Changed the "Space" subpanel of the math panel into one of
1259         ordinary buttons rather than radio buttons. They are now
1260         self-applying so OK and Apply could go.
1261
1262 2002-01-28  Martin Vermeer <martin.vermeer@hut.fi>
1263
1264         * FormMathsStyle.[Ch]:
1265         * forms/form_maths_style.fd:
1266         Patched to use button arrays. Buttons are self-applying, saving
1267         one keystroke and the OK and Apply buttons.
1268
1269 2002-01-27  Herbert Voss  <voss@lyx.org>
1270
1271         * FormGraphic.[Ch]:
1272         * form_graphic.[Ch]:
1273         * forms/form_graphic.fd: rewritten to support graphicx with
1274         all options and to be sure that the old figinsets are correct
1275         converted.
1276         * xforms-helpers.h: added two choice const for the LyXLength
1277         one with all and one only with length which have a unit.
1278
1279 2002-01-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1280
1281         * forms/form_minipage.fd: add text_warning field.
1282
1283         * FormMinipage.[Ch]: added input filters and warnings
1284         (ButtonPolicy::SMInput FormMinipage::input)
1285
1286 2002-01-28  Angus Leeming  <a.leeming@ic.ac.uk>
1287
1288         * FormAboutlyx.[Ch]: Removed redundant form() method and
1289         dialog_ variable. They replicate that in the parent FormDB.
1290
1291 2002-01-28  Martin Vermeer <martin.vermeer@hut.fi>
1292
1293         * FormMathsDeco[hC]:
1294         * forms/form_maths_deco.fd: added math accents as a separate bitmap to
1295         the Decorations sub-panel of mathed. See Lamport Table 3.11.
1296
1297         * FormMathsPanel.C:
1298         * MathsSymbols.C: reorganization of the two AMS panels "relations" and
1299         "negated relations". Lower and broader.
1300
1301 2002-01-25  Angus Leeming  <a.leeming@ic.ac.uk>
1302
1303         * FormTabular.C (update): Remove redundant code.
1304
1305 2002-01-24  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1306
1307         * forms/form_tabular.fd: checkbox2radiobutton changes.
1308
1309 2002-01-20  Herbert Voss  <voss@perce.de>
1310
1311         * FormInclude.[C]: better control of unexistings files
1312         when entered without the browser
1313
1314 2002-01-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1315
1316         * Toolbar_pimpl.C (update): disable layout combox when LFUN_LAYOUT
1317         is disabled
1318
1319         * combox.C (activate):
1320         (deactivate): change color of labels to reflect the state of the
1321         combox
1322
1323 2002-01-16  Herbert Voss  <voss@lyx.org>
1324
1325         * FormExternal.C (build): activate  apply/ok-button when something
1326         is entered in the filename-field
1327
1328 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
1329
1330         * FormMathsBitmap.C (apply): fix bug caused by using 'unsigned int'
1331         rather than 'string::size_type'
1332
1333 2002-01-17 Martin Vermeer <martin.vermeer@hut.fi>
1334
1335         * FormMathPanel.[hC]:
1336         * MathsSymbols.[hC]:
1337         * form_math_panel.[hC]:
1338         * form_math_panel.fd: Modified. Added five symbol sub-panels
1339         to the math panel containing AMS math symbols: arrows, relations,
1340         negated relation, operators and miscellaneous (also containing some
1341         hebrew and corner symbols).
1342
1343 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1344
1345         * FormMinipage.C (apply): change because MinipageParams::pageWidth
1346         is now a real LyXLength
1347
1348 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
1349
1350         * FormDocument.C: enable line spacing input properly
1351
1352 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
1353
1354         * forms/form_preferences.fd:
1355         * form_preferences.h:
1356         * form_preferences.C:
1357         * FormPreferences.h:
1358         * FormPreferences.C: use better variable name
1359
1360 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
1361
1362         * forms/form_preferences.fd: change "Use Scalable Fonts"
1363           to "Rescale bitmap fonts"
1364
1365 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
1366
1367         * FormMathsPanel.C:
1368         * FormPreferences.C: #include "ButtonController.tmpl" to instantiate
1369         the button controller for IgnorantPolicy and PreferencesPolicy.
1370
1371 2002-01-16  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1372
1373         * forms/form_tabular.fd: text_info field was too small. Enlarge it.
1374
1375 2002-01-15  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1376
1377         * xforms_helpers.C: modify getLengthFromWidgets to ignore the unit
1378         choice if the input field contains a LyXGlueLength.
1379
1380         * FormParagraph.C: Allow to insert and display gluelengths in VSpace
1381
1382         * FormParagraph.C
1383         * FormDocument.C
1384         * FormTabular.C: Change input filter to allow inserting
1385         gluelengths/lyxlength or numbers with unit choices.
1386
1387         * FormMinipage.C: Use getLengthFromWidgets instead of the code there,
1388         which was more or less duplicated.
1389
1390         * FormGraphics.C: set default units, dependent on US/other paper.
1391
1392 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
1393
1394         * Dialogs.C: no longer need to #include the Controller classes, as this
1395         is how done in GUI.h.
1396
1397         * xformsBC.C: #include ButtonController.tmpl, containing the
1398         instatiation of the button controller.
1399
1400 2002-01-15  John Levon  <moz@compsoc.man.ac.uk>
1401
1402         * FormThesaurus.C: fix a crash
1403
1404 2002-1-15  Martin Vermeer <martin.vermeer@hut.fi>
1405
1406         * FormMathsDelim.C:
1407         * form_maths_delim_C:
1408         * form_maths_delim.h:
1409         * form_maths_delin.fd:
1410         Put three radio buttons on the delimiters pop-up. It works as follows:
1411
1412                                 left mouse     middle mouse        right mouse
1413         ----------------------------------------------------------------------
1414         Left radio button   |       (               ()                   )
1415         Middle radio button |       ()              ()                   )
1416         Right radio button  |        )               )                   )
1417         ----------------------------------------------------------------------
1418
1419         Where
1420
1421         (       left-side delimiter selected
1422         )       right-side delimiter selected
1423         ()      "symmnetric pair" selected, of which the clicked delimiter is
1424                 the left one.
1425                 So, if the middle radio button is activated ("()\nBoth")
1426                 and you click on "[" with the default (left) mouse button, you
1427                 get the delimiter pair "[]".
1428                 A shortcut for this (if the leftmost radio button is on) is
1429                 simply clicking the middle mouse button.
1430
1431         To create equal pairs, either have the middle radio button on and use
1432         Mouse-left, or have the left radio button on and use Mouse-middle.
1433
1434         To create unequal pairs, you should have either the left or middle radio
1435         button on, and do: "Mouse-left ( Mouse-right >" to create "(>".
1436
1437 2002-01-15  Angus Leeming  <a.leeming@ic.ac.uk>
1438
1439         * FormSpellchecker.[Ch]: a bit of a clean up, leaving the functionality
1440         unchanged:
1441         Remove the clickline_ member variable and hide() method;
1442         Use fl_set_browser_dblclick_callback;
1443         Constify a few temporary variables;
1444         Use xforms_helpers' wrappers functions returning string rather than
1445         the raw xforms functions returning char const *.
1446
1447 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1448
1449         * DropDown.C: include <cctype> for isprint()
1450
1451 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
1452
1453         * FormMinipage.C (apply, update): MinipageParams::width renamed
1454         as MinipageParams::pageWidth.
1455
1456 2002-01-14      Martin Vermeer <martin.vermeer@hut.fi>
1457
1458         * FormMathsBitmap.C:
1459           FormMathsPanel.C:
1460           MathsSymbols.C: Blackboard Bold and Calligraphic std symbols
1461         added to math panel's 'misc' sub-panel.
1462
1463 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
1464
1465         * FormMathsMatrix.C (input): use lyx::count rather than std::count.
1466
1467 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
1468
1469         * FormPreferences.h: add a std:: to make_pair.
1470
1471 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
1472
1473         * DropDown.[Ch] (keypress, key_pressed): new signal and method,
1474         respectively.
1475
1476         * DropDown.C: place xforms callback functions in namespace anon.
1477         Set browser callback on single not double click.
1478         (select): return immediately of the vector is empty. Highlight the top
1479         line. Position the browser above the minibuffer, not below it.
1480         (peek): call key_pressed when a key press is detected.
1481         (key_pressed): clean-up and emit the keypress signal.
1482
1483         * xforms_helpers.[Ch} (getSelectedStringFromBrowser): new function.
1484         If nothing is selected, return string().
1485
1486 2002-01-14  John Levon  <moz@compsoc.man.ac.uk>
1487
1488         * FormSpellchecker.C: disable resizing due to xforms bug
1489
1490 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1491
1492         * FormFiledialog.C (Reread): skip broken symlinks
1493
1494 2002-01-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1495
1496         * FormMathsMatrix.C (AlignFilter): use std::count and add some
1497         comments.
1498
1499 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1500
1501         * MathsSymbols.C (get_pixmap_from_symbol): add a default statement
1502         in the switch.
1503
1504         * FormPreferences.C (Interface::input):
1505         (Language::input):
1506         (Paths::input): add shortcuts to file dialogs directory buttons
1507
1508         * FormPreference.h (browse): add default empty parameters for
1509         buttons descriptions.
1510
1511         * FormFiledialog.C (SetButton): allow for a shortcut in the name
1512         of the button.
1513
1514 2002-01-13  John Levon  <moz@compsoc.man.ac.uk>
1515
1516         * FormThesaurus.C:
1517         * FormThesaurus.h:
1518         * form_thesaurus.h:
1519         * form_thesaurus.C:
1520         * forms/form_thesaurus.fd: update to Aiksaurus 0.14
1521
1522 2002-01-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1523
1524         * Toolbar_pimpl.C (setPixmap): simplify a bit
1525
1526 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1527
1528         * Toolbar_pimpl.C (ToolbarCB):
1529         * Menubar_pimpl.C (MenuCallback): use verboseDispatch instead of
1530         dispatch.
1531
1532 2002-01-12  Allan Rae  <rae@lyx.org>
1533
1534         * FormTabular.C (FormTabular): Fix Purify UMR.
1535
1536         * FormPreferences.C (build): "Conversion" is a better name.
1537
1538 2002-01-10  Martin Vermeer  <martin.vermeer@hut.fi>
1539
1540         * FormMathsPanel.[Ch] (dispatchFunc): new method. Invokes
1541         LyXFunc::dispatch.
1542
1543         * FormMathsStyle.C (apply): use LFUNs to apply, not insertSymbol.
1544
1545 2002-01-10  Angus Leeming  <a.leeming@ic.ac.uk>
1546
1547         * FormPreferences.C:
1548         * forms/form_preferences.fd: change names and descriptions of popup
1549         font variables to reflect their actual use.
1550
1551         * Menubar_pimpl.C: return MENU_LABEL_STYLE to FL_NORMAL_STYLE.
1552
1553 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1554
1555         * FormPreferences.C (input): allow empty values for document_path
1556         and template_path.
1557
1558         * FormFiledialog.C (SetButton):
1559         (FileDlgCB): do not disable directory buttons if they have an
1560         empty path.
1561         (SetDirectory): if the argument is an empty string, change to
1562         cwd().
1563
1564 2002-01-09  Martin Vermeer <martin.vermeer@hut.fi>
1565
1566         * forms/form_maths_style.fd:
1567         * FormMathsStyle.[Ch]: New files, Implementing a mathed pop-up for math
1568         size "styles" and font types.
1569         * FormMathsPanel.[Ch]:
1570         * MathsSymbols.C:
1571         * forms/form_maths_panel.fd: Modified too.
1572
1573 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
1574
1575         * Menubar_pimpl.C (create_submenu):
1576         * Toolbar_pimpl.C (update): use FuncStatus.
1577
1578 2002-01-08  Angus Leeming  <a.leeming@ic.ac.uk>
1579
1580         * xform_helpers.[Ch] (getStringFromBrowser): a littel wrapper function
1581         for fl_get_browser_line that is guaranteed to return a valid string.
1582
1583 2002-01-08  John Levon  <moz@compsoc.man.ac.uk>
1584
1585         * FormSpellchecker.C: fix possible crash on clicking a suggestion
1586
1587 2002-01-08  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1588
1589         * forms/form_document.fd (bullets): fix small cosmetic problem after
1590         John's radio2button change.
1591
1592 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
1593
1594         * FormDocument.C:
1595         * forms/form_document.fd: change the labels and variable names of
1596         left_margin, right_margin to inner_margin, outer_margin, in line
1597         with bugzilla bug #157.
1598
1599         * FormFiledialog.C (Reread): used locally stored modtime variable
1600         rather than make repeated calls to fileInfo.getModificationTime().
1601
1602         * xforms_helpers.C (ReadableFile, WriteableFile): added a couple of
1603         isOK() checks to the use of the FileInfo instance and removed those
1604         FIXMEs.
1605
1606         * Menubar_pimpl.C: added a variable MENU_LABEL_STYLE and use it.
1607         Set it to FL_BOLD_STYLE, thereby fixing bugzilla bug #32.
1608
1609 2002-01-07  John Levon  <moz@compsoc.man.ac.uk>
1610
1611         * form_*:
1612         * forms/form_*: change radio buttons to round3dbutton
1613
1614 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
1615
1616         * FormFiledialog.C: add FIXME
1617
1618         * xforms_helpers.C: fix use of FileInfo
1619
1620 2002-01-07  John Levon  <moz@compsoc.man.ac.uk>
1621
1622         * FormTabular.h:
1623         * FormTabular.C:
1624         * form_tabular.h:
1625         * form_tabular.C:
1626         * forms/form_tabular.fd: ugly fix to get around
1627           some of the UI problems (bug #110).
1628
1629 2002-01-04  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1630
1631         * FormDocument.C: Recognize the default paper settings too
1632         when setting the default length values (cm or inch).
1633         * FormParagraph.C: do the same.
1634
1635 2001-12-11  Michael A. Koziarski <michael@koziarski.org>
1636
1637         * FormFloat.C: changes to prevent here definitely being used
1638         with wide figures.
1639
1640 2001-12-29  Dekel Tsur  <dekelts@tau.ac.il>
1641
1642         * FormMathsMatrix.C (AlignFilter): Allow entering the '|' char.
1643
1644 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1645
1646         * DropDown.C: always include <config.h> in sources.
1647
1648         * xforms_helpers.h:
1649         * FormFiledialog.h:
1650         * Timeout_pimpl.h:
1651         * DropDown.h: do not include <config.h> in headers
1652
1653 2001-12-20  Juergen Vigna  <jug@sad.it>
1654
1655         * FormTabular.C (update): final LT-h/f support modifications.
1656
1657 2001-12-19  Juergen Vigna  <jug@sad.it>
1658
1659         * FormTabular.C (update): change a bit the tabular layout and added
1660         better longtable options handling.
1661
1662 2001-12-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1663
1664         * FormToc.C: using std::endl
1665
1666 2001-12-14  John Levon  <moz@compsoc.man.ac.uk>
1667
1668         * FormToc.C: fix crash when no entries, and
1669           update types properly
1670
1671 2001-12-11  Ben Stanley <bds02@uow.edu.au>
1672
1673         * Menubar_pimpl.C: Fixed a crashing bug when document has more
1674         than 80 floats and using xforms 0.88
1675
1676 2001-12-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1677
1678         * xforms_helpers.C: include lyxlength.h here
1679         * xforms_helpers.h: ... but not here
1680
1681         * FormTabular.C: use LyXLength instead of string wherever
1682         necessary; whitespace changes.
1683
1684 2001-12-08  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1685
1686         * forms/form_preferences.fd: use the same name for font sizes
1687         than the character dialog.
1688
1689 2001-11-26  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1690
1691         * forms/form_search.fd: Added label text to search buttons
1692         (to make the shortcuts visible).
1693
1694 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
1695
1696         * FormParagraph.C: set combo box correctly for VSpace::LENGTH
1697
1698 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1699
1700         * FormFiledialog.C:
1701         * xforms_helpers.C: change "while(" to "while ("
1702
1703 2001-12-05  Allan Rae  <rae@lyx.org>
1704
1705         * FormParagraph.C (apply): One other LyXText fix.
1706
1707 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
1708
1709        * FormParagraph.C (getCurrentParagraph):
1710         (apply):  get the right LyXText !
1711
1712 2001-11-29  John Levon  <moz@compsoc.man.ac.uk>
1713
1714         * FormParagraph.C: disallow page breaks in insets
1715
1716 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
1717
1718         * FormParagraph.C: allow signed space above/below, actually
1719           use space below units
1720
1721 2001-11-04  John Levon  <moz@compsoc.man.ac.uk>
1722
1723         * FormToc.C: fixes to make floatlists work
1724
1725 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
1726
1727         * Makefile.am:
1728         * Alert_pimpl.C: Alert etc.
1729
1730         * xforms_helpers.h:
1731         * xforms_helpers.C:
1732         * forms/fdfix.sh: move idex etc. to here
1733
1734         * GUIRunTime.C: move getScreenDPI() to here
1735
1736 2001-11-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1737
1738        * forms/form_ref.fd, form_preferences.fd, form_citation.fd,
1739        form_graphics.fd, form_paragraph.fd: Enlarged the Restore button
1740        to 100p (now German translation fits in).
1741        * forms/form_external.fd, form_bibtex.fd, form_print.fd,
1742        form_preferences.fd, form_graphics.fd, form.include.fd,
1743        form-external.fd:
1744        Unified label "Browse..." and unified its width to 100p.
1745
1746 2001-11-13  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1747
1748        * forms/form_graphics.fd: fixed shortcut clash
1749        * forms/form-external.fd: added shortcut for "Apply"
1750
1751 2001-11-12  John Levon  <moz@compsoc.man.ac.uk>
1752
1753         * FormFiledialog.C: don't reset path if new dir
1754           doesn't exist.
1755
1756 2001-11-12  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1757
1758        * forms/form_document.fd: Renamed "Save as Class Defaults"
1759        to "Save as Document Defaults"
1760        * FormDocument.C:
1761        Removed the setEnabled-Definitions for the
1762        "save_default"-Button since it causes nothing but trouble.
1763        Changed the text of AskQuestion on saveParamsAsDefault.
1764
1765 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
1766
1767         * DropDown.C: fix crash, improve behaviour a bit
1768
1769 2001-11-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1770
1771         * FormDocument.C (class_apply):
1772         (paper_apply):
1773         (language_apply):
1774         (options_apply):
1775         (bullets_apply): add a version of these methods taking a
1776         BufferParams& parameters. The original versions are now wrappers
1777         around these.
1778         (saveParamsAsDefault): new function, moved from old
1779         LFUN_LAYOUT_SAVE_DEFAULT code.
1780
1781 2001-11-03  John Levon  <moz@compsoc.man.ac.uk>
1782
1783         * Makefile.am:
1784         * DropDown.h:
1785         * DropDown.C: drop-down completion
1786
1787 2001-11-04  John Levon  <moz@compsoc.man.ac.uk>
1788
1789         * forms/form_graphics.fd: change clashing shortcut
1790
1791 2001-10-24  Juergen Vigna  <jug@sad.it>
1792
1793         * FormTabular.C: changed calls for footer/headers of longtabulars.
1794
1795 2001-10-23  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1796
1797         * forms/form_tabular.fd: Add value choices
1798         * FormTabular.C: Handle that choices
1799
1800         * FormDocument.C: fix small bug.
1801
1802 2001-10-23  Angus Leeming  <a.leeming@ic.ac.uk>
1803
1804         * FormGraphics.[Ch]: move some parameters out of the heaader file and
1805         into namespace anon.
1806
1807         * FormPreferences.C:
1808         * forms/form_preferences.fd: replaced button_colorspace with two
1809         radio buttons, button_hsv and button_rgb.
1810
1811 2001-10-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1812
1813        * forms/form_document.fd:
1814          Class: add a value choice for Default Skip.
1815          Some rearrangements (minor tweaks).
1816        * FormDocument.C: Handle that choice, minor tweaks.
1817        * forms/form_paragraph.fd: Add value choices
1818        * FormParagraph.C: Handle that choices.
1819        * FormMinipage.C/FormGraphics.C: Small tweaks.
1820
1821 2001-10-15  Angus Leeming  <a.leeming@ic.ac.uk>
1822
1823         * FormDocument.C: fixed some bugs in the Paper tab.
1824
1825         * xforms_helpers.[Ch] (updateWidgetsFromLengthString): add argument
1826         specifying default unit for choice if input string is empty.
1827
1828 2001-10-12  Angus Leeming  <a.leeming@ic.ac.uk>
1829
1830         * FormDocument.C (input): one more tweak...
1831
1832 2001-10-10  Herbert Voss  <voss@perce.de>
1833
1834         * FormTexinfo.[Ch]: some changes to the code
1835
1836 2001-10-10  André Pönitz  <poenitz@htwm.de>
1837
1838         * FormsMathMatrix.C: add missing space between v- and h-alignment
1839         parameters
1840
1841 2001-10-09  Herbert Voss  <voss@perce.de>
1842
1843         * FormTexinfo.[Ch]:
1844         * forms/form_texinfo.fd: new files. Display information about the
1845         installed texfiles (cls,sty,bst).
1846
1847         * FormShowFile.[Ch]: new files. Display the contents of a file.
1848
1849         * Dialog.C:
1850         * Makefile.am: modified appropriately.
1851
1852 2001-10-09  Angus Leeming  <a.leeming@ic.ac.uk>
1853
1854         * xforms_helpers.[Ch] (getLengthFromWidgets): new function.
1855         Given input and choice widgets, create a string such as "1cm".
1856         (updateWidgetsFromLengthString): new function.
1857         Given a string such as "1cm", set the input and choice widgets.
1858
1859         * FormDocument.C:
1860         * forms/form_document.fd: improve the GUI of the paper tab using these
1861         new helper functions.
1862
1863 2001-10-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
1864
1865         * FormDocument.C (build): support latin4
1866
1867 2001-10-05  Adrien Rebollo  <adrien.rebollo@gmx.fr>
1868
1869         * FormDocument.C (build): support latin3
1870
1871 2001-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1872
1873         * forms/form_aboutlyx.fd: use flat boxes for tabs.
1874
1875 2001-10-03  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1876
1877         * forms/form_document.fd: rearrangement of the paper tab;
1878         rename "use geometry" to "custom margins/sizes".
1879
1880         * FormDocument.C: add code to avoid the input of senseless data
1881         in document -> paper.
1882
1883 2001-10-01  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1884
1885         * FormDocument.C: Disable choice "Special" if landscape
1886         is chosen to prevent senseless values.
1887
1888 2001-09-28  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1889
1890         * forms/form_preferences.fd: small tweaks.
1891
1892 2001-09-24  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1893
1894         * forms/form_document.fd: Removed "Auto Reset", renamed the "Reset"
1895         button to "Use Class Defaults" and moved it outside the tab.
1896         Some more minor tweaking.
1897
1898         * FormDocument.C: handled this changes.
1899
1900 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
1901
1902         * Dialogs.C: remove splash dialog code.
1903
1904         * FormSplash.[Ch]:
1905         * form_splash.[Ch]:
1906         * forms/form_splash.fd: removed.
1907
1908         * Makefile.am:
1909         * forms/makefile: remove splash dialog files.
1910
1911         * Menubar_pimpl.C (MenuCallback): no longer call
1912         Dialogs::destroySplash.
1913
1914 2001-09-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1915
1916         * forms/form_preferences.fd: fix typo
1917
1918 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
1919
1920         * FormRef.C:
1921         * forms/form_ref.fd: renamed the widgets in the standard style.
1922
1923         * xforms_helpers.[Ch] (getVectorFromChoice, getVectorFromBrowser): new
1924         helper functions. Build a vector<string> from the contents of
1925         an fl_choice and fl_browser respectively.
1926
1927         * FormCitation.C (fillChoice, updateBrowser):
1928         * FormRef.C: use these new functions to only update the choices and
1929         browsers when absolutely necessary.
1930
1931 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
1932
1933         * FormBase.C (InputCB):
1934         * FormBaseDeprecated.C (InputCB): generalised Dekel's fix to the
1935         "select choice < 1" problem.
1936
1937         * FormRef.C (input): undid Dekel's change in light of the above
1938         generalisation.
1939
1940 2001-09-21  Dekel Tsur  <dekelts@tau.ac.il>
1941
1942         * FormRef.C (input): Fix crash when using dialog with keyboard.
1943
1944 2001-09-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1945
1946         * forms/form_document.fd: small tweaks.
1947
1948 2001-09-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1949
1950         * forms/form_document.fd: Added checkbox "auto_reset", button
1951         "reset_defaults" and button "save_defaults".
1952
1953         * Form_Document.[Ch]: Removed AskQuestion when changing class.
1954         Implement the 2 buttons and the checkbox described above.
1955
1956         * forms/form_preferences.fd: Added checkbox "auto_reset" (to
1957         save the default value of that lyxrc)
1958
1959         * FormPreferences.C: Handle that button
1960
1961 2001-09-18  Angus Leeming  <a.leeming@ic.ac.uk>
1962
1963         * form_ref.fd: a little tweaking.
1964
1965         * FormSpellchecker.C (build): set the bounds to the slider, so it
1966         updates during a spellchecking session.
1967
1968 2001-09-14  Angus Leeming  <a.leeming@ic.ac.uk>
1969
1970         * forms/form_preferences.fd: rearrangement and addition of new
1971         Display Graphics radio buttons to Look & Feel->Misc
1972         (By Jürgen Spitzmüller).
1973
1974         * FormPreferences.C: modify new lyxrc variable "display_graphics"
1975         depending on the values of the Display Graphics radio buttons.
1976
1977         * FormGraphics.C: use this variable.
1978
1979 2001-09-13  Angus Leeming  <a.leeming@ic.ac.uk>
1980
1981         * FormMathsBitmap.[Ch]: add d-tor to finally fix a memory leak.
1982         Hoorah! Happy Birthday to me!
1983
1984 2001-09-07  Dekel Tsur  <dekelts@tau.ac.il>
1985
1986         * forms/form_ref.fd: Add buffer button.
1987
1988         * FormRef.C (update): Handle the buffer button.
1989         (input): Ditto
1990
1991 2001-09-13  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
1992
1993         * forms/form_graphics.fd: complete rewrite of the dialog
1994         (Most work was done by Angus, though).
1995
1996 2001-09-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
1997
1998         * combox.C (hide): execute the callback _after_ closing the
1999         combox.
2000
2001 2001-09-12  Angus Leeming  <a.leeming@ic.ac.uk>
2002
2003         * FormDocument.C (c-tor): initialise some variables.
2004
2005         * forms/form_citation.fd: remove spurious shortcut to a labelframe!
2006         (Thereby removing a warning message when the dialog is built.)
2007
2008         * FormFloat.C (input): return SMI_VALID.
2009
2010 2001-09-11  Angus Leeming  <a.leeming@ic.ac.uk>
2011
2012         * FormDocument.C (input, options_update): add code to enable the
2013         Author-Year/Numerical citation choice only if the natbib checkbox is
2014         active.
2015
2016         * FormFloat.[Ch]: added new method input() to control the behaviour of
2017         the buttons better.
2018         * forms/form_float.fd: renamed Here as button_here_definitely.
2019
2020         * FormGraphics.C:
2021         * forms/form_graphics.fd: add callbacks to a few widgets that didn't
2022         have them, so enabling the Ok, Apply buttons appropriately.
2023
2024 2001-09-08  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
2025
2026         * forms/form_paragraph.fd: cosmetics (renamed "Label Width" to "Longest
2027         Label", added a labelframe).
2028
2029 2001-09-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2030
2031         * Toolbar_pimpl.C (C_Toolbar_BubblePost): fix linking
2032         (C_Toolbar_BubbleTimerCB): fix linking
2033
2034         * FormMathsBitmap.C (form): use get() to get the raw pointer.
2035
2036         * FormMathsBitmap.h: use shared_c_ptr for form_ as well.
2037
2038 2001-09-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2039
2040         * combox.C (C_Combox_input_cb): make it static
2041         (C_Combox_combo_cb): make it static
2042         (C_Combox_peek_event): make it static
2043
2044         * Toolbar_pimpl.C (C_Toolbar_BubbleTimerCB): make it static
2045         (C_Toolbar_BubblePost): make it static
2046         (C_Toolbar_ToolbarCB): make it static
2047
2048         * Timeout_pimpl.C (C_intern_timeout_cb): make it static
2049
2050         * Menubar_pimpl.C (C_Menubar_Pimpl_MenuCallback): make it static
2051
2052         * Makefile.am (libxforms_la_LIBADD): add this and depend on the
2053         gui libs
2054
2055 2001-09-07  Angus Leeming  <a.leeming@ic.ac.uk>
2056
2057         * FormBaseDeprecated.[Ch]: use the same allow_resize methodology as has
2058         been used successfully in FormBase.
2059         (show): call bc().refresh() after building the dialog to activate the
2060         button controller.
2061
2062         * FormPreferences.C (build): remove hack to fix butoon controller as
2063         the correct fix is in FormBaseDeprecated.
2064
2065         * FormPreferences.[Ch] (connect, disconnect): removed (redundant).
2066
2067         * FormMaths*.C (c-tor): prohibit resizing of the dialog.
2068
2069 2001-09-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2070
2071         * Toolbar_pimpl.C (setLayout):
2072         (layoutSelected): make them work even when gettext has been
2073         translating the interface.
2074
2075 2001-09-07  Angus Leeming  <a.leeming@ic.ac.uk>
2076
2077         * FormMathsSpace.C: Fix bug: the "Maths spacing" dialog is broken
2078         ("Apply" does not work without former user change in the dialog).
2079
2080         * FormPreferences.C (build): Fix bug: if you start LyX and open the
2081         Preferences dialog, "Apply" is activated even though no change has been
2082         made so far.
2083
2084 2001-09-07  Rob Lahaye  <lahaye@users.sourceforge.net>
2085
2086         * FormBase.C (show): use controller_.IconifyWithMain() to control
2087         the dialog's show policy
2088
2089         * FormBaseDeprecated.C (show): ditto, but use lyxrc variable directly.
2090
2091         * FormPreferences.C:
2092         * forms/form_preferences.fd: add a check_dialogs_iconify_with_main
2093         check button to the Look & Feel->Misc tab and code to modify the lyxrc
2094         variable dialogs_iconify_with_main appropriately.
2095
2096 2001-09-07  Angus Leeming  <a.leeming@ic.ac.uk>
2097
2098         * FormBase.h: clean-up comments. Remove mutable status of minw_, minh_.
2099
2100 2001-09-06  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
2101
2102         * forms/form_character.fd: small cosmetics (aligned "Language:" right
2103         as suggested in Michael's Buglist).
2104
2105 2001-09-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2106
2107         * Toolbar_pimpl.C (updateLayoutList): do not display obsolete
2108         layouts
2109         (layoutSelected): remove the numeric argument and use the text of
2110         the combox entry instead.
2111
2112         * combox.C: lowercase a few remaining methods, rename select_text
2113         to select
2114         * several files: propagate these changes
2115
2116 2001-09-03  Angus Leeming  <a.leeming@ic.ac.uk>
2117
2118         * FormPreferences.C: add fl_set_input_return to input_paperoption.
2119
2120 2001-09-02  John Levon  <moz@compsoc.man.ac.uk>
2121
2122         * FormParagraph.C: fix default line spacing case
2123
2124 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
2125
2126         * FormParagraph.C: disable space inputs when != Length
2127
2128 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
2129
2130         * FormPreferences.C:
2131         * form_preferences.h:
2132         * form_preferences.C:
2133         * forms/form_preferences.fd: add view_dvi_paper_option
2134
2135 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
2136
2137         * FormMathsPanel.h: sub dialogs must be Ignorant.
2138
2139 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
2140
2141         * FormParagraph.C: fix to not allow 0 linespacing
2142
2143 2001-08-29  Angus Leeming  <a.leeming@ic.ac.uk>
2144
2145         * FormCitation.C (c-tor): prevent re-sizing of the dialog.
2146
2147         * FormParagraph.C (input): set fl_get_choice check for the linespacing
2148         to 5 not 4. xforms arrays start at 1.
2149
2150 2001-08-29  Angus Leeming  <a.leeming@ic.ac.uk>
2151
2152         * FormParagraph.[Ch]:
2153         * forms/form_paragraph.fd: clean up of dialog and of controlling
2154         code.
2155
2156 2001-08-29  Angus Leeming  <a.leeming@ic.ac.uk>
2157
2158         * FormBase.C (C_CutandPastePH): new function that can be used as a
2159         pre-handler to any xforms text input widget. Will trigger an event on
2160         pasting into the widget using the middle mouse button.
2161
2162         * FormPreamble.C (build): use this pre-handler for the input widget.
2163
2164 2001-08-26  Angus Leeming  <a.leeming@ic.ac.uk>
2165
2166         * FormCitation.C:
2167         * forms/form_citation.fd: a little tweaking to ensure that the
2168         style choice remains centred within the frame if its contents change.
2169
2170         * FormBase.h: added an allow_resize_ member variable. If false
2171         resizing the dialog is prohibitted.
2172
2173         * FormBase.[Ch]:
2174         * FormBrowser.[Ch]: modify c-tors to pass this new variable to FormBase.
2175
2176         * FormAboutlyx.C:
2177         * FormCharacter.C:
2178         * FormThesaurus.C:
2179         make use of this functionality to ensure that the dialog cannot be
2180         resized.
2181
2182 2001-08-27  John Levon  <moz@compsoc.man.ac.uk>
2183
2184         * GUIRunTime.C: initApplication() should take a int & argc
2185
2186 2001-08-24  John Levon  <moz@compsoc.man.ac.uk>
2187
2188         * FormCitation.h:
2189         * FormCitation.C: tidy code a little
2190
2191         * GUIRunTime.C: more informative error
2192
2193 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
2194
2195         * forms/form_preferences.fd: order the items "logically" so that
2196         tabbing through the dialog makes sense. Close bug #404569.
2197
2198 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
2199
2200         * FormPreferences.C: Tentative fix of John's "no point in spell
2201         command "None"" bug, #223255.
2202
2203 2001-08-23  Herbert Voss  <voss@perce.de>
2204
2205         * FormBibtex.C (input): normalize database list
2206
2207 2001-08-21  Angus Leeming  <a.leeming@ic.ac.uk>
2208
2209         * FormBibtex.C: make sure that any database is stored only once.
2210
2211 2001-08-22  Herbert Voss  <voss@perce.de>
2212
2213         * FormBibtex.C (input): fix for multiple databases
2214
2215 2001-08-21  Herbert Voss  <voss@perce.de>
2216
2217         * FormBibtex.C (input): extension handling for ".bst"
2218
2219 2001-08-21  Angus Leeming  <a.leeming@ic.ac.uk>
2220
2221         * forms/form_bibtex.fd: activate "Ok" when the "Add bibliography to TOC"
2222         check button is pressed.
2223
2224 2001-08-20  Dekel Tsur  <dekelts@tau.ac.il>
2225
2226         * FormParagraph.C (general_apply): Handle default spacing.
2227         (general_update): Ditto.
2228
2229 2001-08-20  Angus Leeming  <a.leeming@ic.ac.uk>
2230
2231         * FormBibtex.C:
2232         * forms/form_bibtex.fd: get the browse buttons working as they should.
2233
2234 2001-08-20  Herbert Voss  <voss@perce.de>
2235
2236         * FormBibtex.C:
2237         * forms/form_bibtex.fd: enhanced bibtex-data gui to browse for
2238         databases and styles. Added an option for "bibliography into toc"
2239
2240 2001-08-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2241
2242         * FormMathsBitmap.h: use the lyx::shared_c_ptr that uses free() to
2243         cleanup.
2244
2245 2001-08-15  John Levon  <moz@compsoc.man.ac.uk>
2246
2247         * combox.h: fix source doc
2248
2249         * form_math_matrix.C:
2250         * forms/form_math_matrix.fd: new layout
2251
2252 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
2253
2254         * form_paragraph.h:
2255         * form_paragraph.C:
2256         * forms/form_paragraph.fd:
2257         * FormParagraph.C: support per-para linespacing
2258
2259         * forms/form_float.fd:
2260         * form_float.C: fix shortcut typo
2261
2262 2001-08-15  Angus Leeming  <a.leeming@ic.ac.uk>
2263
2264         * forms/form_character.fd: small adjustment to the position of John's
2265         extra Language label.
2266
2267 2001-08-09  André Pönitz  <poenitz@htwm.de>
2268
2269         * FormMathsDelim.C: renamed some delimiter parameters.
2270
2271 2001-08-09  Angus Leeming  <a.leeming@ic.ac.uk>
2272
2273         * FormCitation.C (build):
2274         * FormDocument.C (build):
2275         * FormMinipage.C (build):
2276         * FormParagraph.C (build):
2277         * FormRef.C (build): added stuff to read-only list in the
2278         button controller.
2279
2280         * FormCitation.C (update): disable citation style stuff when not using
2281         Natbib.
2282
2283 2001-08-06  Juergen Vigna  <jug@sad.it>
2284
2285         * forms/form_ert.fd: new file.
2286
2287         * form_ert.[Ch]: new files.
2288
2289         * FormERT.[Ch]: new files. Implementation of ERT dialog.
2290
2291 2001-08-01  Angus Leeming  <a.leeming@ic.ac.uk>
2292
2293         * FormPreferences.C (Color c-tor): initialise modifiedXformsPrefs.
2294
2295 2001-07-30  Angus Leeming  <a.leeming@ic.ac.uk>
2296
2297         * GUIRunTime.C (processEvents, runTime): small code rearrangement.
2298
2299 2001-08-01  John Levon  <moz@compsoc.man.ac.uk>
2300
2301         * FormMathsPanel.C:
2302         * FormMathsPanel.h:
2303         * form_maths_panel.C:
2304         * form_maths_panel.h:
2305         * forms/form_maths_panel.fd: re-add dots bitmaps
2306
2307         * FormRef.C: "Goto" -> "Go to"
2308
2309 2001-07-29  John Levon  <moz@compsoc.man.ac.uk>
2310
2311         * FormMathsBitmap.C: initialise form_
2312
2313 2001-07-29  Baruch Even  <baruch@lyx.org>
2314
2315         * src/forms/form_graphics.fd:
2316         * src/FormGraphics.C: Added support for the new horizontal scale factor.
2317
2318 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2319
2320         * forms/makefile (SRCS): add form_float.fd
2321
2322         * forms/form_float.fd: new file
2323
2324         * form_float.[Ch]: new files
2325
2326         * Makefile.am (libxforms_la_SOURCES): add FormFloat.C,
2327         FormFloat.h, form_float.C and form_float.h
2328
2329         * FormFloat.[Ch]: new files
2330
2331         * Dialogs.C: init GUIFloat is well
2332
2333 2001-07-29  Asger Alstrup Nielsen  <alstrup@alstrup>
2334
2335         * FormToc.C (updateType): Fix problem with TOC that couldn't be
2336         updated because the type list was not updated.
2337
2338 2001-07-26  Angus Leeming  <a.leeming@ic.ac.uk>
2339
2340         * forms/form_aboutlyx.fd: made a bit bigger to get the Copyright &
2341         Version stuff in.
2342
2343         * input_validators.[Ch] (fl_int_filter, fl_float_filter): new methods.
2344
2345         * FormGraphics.C (build): uncommented the fl_set_input_return call for
2346         input_rotate_angle. Set input filter on rotate_angle to make it accept
2347         only floating point numbers.
2348         (input): Browse now activates the Ok button approriately.
2349
2350 2001-07-26  John Levon  <moz@compsoc.man.ac.uk>
2351
2352         * Dialogs.C:
2353         * Makefile.am:
2354         * FormThesaurus.h:
2355         * FormThesaurus.C:
2356         * form_thesaurus.h:
2357         * form_thesaurus.C:
2358         * forms/makefile:
2359         * forms/form_thesaurus.fd: add thesaurus
2360
2361 2001-07-26  Baruch Even  <baruch@lyx.org>
2362
2363         * FormGraphics.h:
2364         * FormGraphics.C: Removed hide method since it was interfering with the
2365         needed work, it cleared several vectors that were needed for proper
2366         functioning. Also changed rotateAngle to float.
2367
2368         * FormGraphics.C:
2369         * forms/form_graphics.fd: Removed inline option, all InsetGraphics figures
2370         are inlined.
2371
2372 2001-07-23  John Levon  <moz@compsoc.man.ac.uk>
2373
2374         * FormInclude.C: add load file facility back
2375
2376 2001-07-23  John Levon  <moz@compsoc.man.ac.uk>
2377
2378         * FormCharacter.C: disable resizing as it doesn't work
2379
2380         * FormPreamble.C: allow to copy-paste from RO preamble by
2381           enabling editing.
2382
2383 2001-07-20  Jürgen Spitzmüller  <juergen.sp@t-online.de>
2384
2385         * forms/form_citation.fd: resized form to fit on a 800x600 screen.
2386
2387 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
2388
2389         * FormCitation.[Ch]: changes associated with adding natbib support.
2390         New helper functions, string_width, fillChoice, updateStyle.
2391         (apply): set the citation command appropriately.
2392         (input): deal with the citation command choices.
2393         (update): parse the citation command and deal with it. Nuke the
2394         setSize stuff.
2395         (setSize): nuked!
2396
2397         * FormDocument.C (build): add options to use natbib.
2398
2399         * forms/form_citation.fd: add natbib support. Rearrange dialog to
2400         fit onto shorter screens.
2401
2402         * forms/form_document.fd: add natbib support.
2403
2404 2001-07-16  Juergen Vigna  <jug@sad.it>
2405
2406         * form_aboutlyx.C: set default for "Close" button to "ESC"-key.
2407
2408 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
2409
2410         Consistent use of Lsstream.h:
2411         * FormAboutlyx.C (build):
2412         * FormVCLog.C (update): std::ostringstream -> ostringstream.
2413
2414         * FormMathsDelim.C (apply):
2415         * FormMathsMatrix.C (apply): std::stringstream -> stringstream.
2416
2417 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
2418
2419         * implement 1 about lyx dialog instead of 3 separate ones
2420
2421         * FormCredits.[Ch]: removed
2422         * FormCopyright.[Ch]: removed
2423         * form_credits.[Ch]: removed
2424         * forms/form_credits.fd: removed
2425         * form_copyright.[Ch]: removed
2426         * forms/form_copyright.fd: removed
2427         * FormAboutlyx.[Ch]: added
2428         * form_aboutlyx.[Ch]: added
2429         * forms/form_aboutlyx.fd: added
2430         * Dialogs.C: add about lyx stuff
2431
2432 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
2433
2434         * add spellchecker
2435
2436         * FormPreferences.[Ch]: rename spellchecker to spelloptions
2437         * form_preferences.[Ch]: idem
2438         * forms/form_preferences.fd: idem
2439         * FormSpellchecker.[Ch]: added
2440         * form_spellchecker.[Ch]: added
2441         * forms/form_spellchecker.fd: added
2442         * Dialogs.C: add spellchecker
2443
2444 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2445
2446         * FormFiledialog.C: (*it). -> it->
2447         * Toolbar_pimpl.C: ditto
2448         * RadioButtonGroup.C: ditto
2449         * FormPreferences.C: ditto
2450
2451 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2452
2453         * GUIRunTime.C (x11Display):
2454         (x11Screen):
2455         (x11Colormap):
2456         (x11VisualDepth): new methods
2457
2458 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2459
2460         * FormDocument.C (class_apply): call CutAndPaste::'s staitc method
2461         directly.
2462
2463         * Toolbar_pimpl.h: make owner be a XFormsView, small changes
2464         because of this.
2465
2466         * GUIRunTime.C (createMainView): implement
2467
2468 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
2469
2470         * FormCharacter.C:
2471         * form_character.C:
2472         * forms/form_character.fd: hide the widget underneath language
2473           combox hack.
2474
2475 2001-06-27  John Levon  <moz@compsoc.man.ac.uk>
2476
2477         * FormPreferences.h:
2478         * FormPreferences.C: connect and operator
2479           showSpellcheckerPreferences signal
2480
2481         * FormPrint.C (input): modify to select radio_file
2482           when the user uses the filename input
2483
2484 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
2485
2486         * combox.C (remove): send debug output to Debug::GUI.
2487
2488 2001-06-26  The LyX Project  <lyx@rose.home.sad.it>
2489
2490         * Menubar_pimpl.C (create_submenu):
2491         * Toolbar_pimpl.C (update): update to use func_status
2492
2493 2001-06-25  The LyX Project  <lyx@tulip.home.sad.it>
2494
2495         * FormPreferences.C (Path::feedback): remove bogus description of
2496         lyxpipe.
2497
2498 2001-06-16  Angus Leeming  <a.leeming@ic.ac.uk>
2499
2500         * xformsBC.h: clean-up of included files.
2501
2502 2001-06-15  Angus Leeming  <a.leeming@ic.ac.uk>
2503
2504         * FormDocument.C:
2505         * FormParagraph.C (c-tor): cosmetic name change of signal.
2506
2507         * FormParagraph.[Ch]: added machinery to act on an updateParagraph
2508         signal. It's pretty crude at the moment! Mental note: would be more
2509         elegant if we passed a LyXParagraph & with both the signals rather than
2510         search through the Buffer.
2511
2512 2001-06-13  Angus Leeming  <a.leeming@ic.ac.uk>
2513
2514         * *.[h]: added // -*- C++ -*-
2515         * *.[C]: removed // -*- C++ -*-
2516
2517         * FormCharacter.C (update): now uses contents of font_, stored
2518         permanently by the controller to update() the dialog.
2519
2520 2001-06-12  Angus Leeming  <a.leeming@ic.ac.uk>
2521
2522         * FormInclude.C:
2523         * form_include.fd: (various places): Ok button is now activated when
2524         the filename is input from the keyboard.
2525
2526         * FormPreferences.C white-space change in various places.
2527         (Converters::GetTo): get the contents of "to" not "from"! Thus fix bug
2528         that disabled addition of new converters.
2529
2530         * FormCharacter.C (input, update): new methods. Activate the Apply
2531         button when any of the input fileds are not IGNORE.
2532
2533 2001-06-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2534
2535         * FormToc.C (input): change test slightly.
2536         (updateContents): clear list if empty and add no list msg.
2537
2538 2001-05-30  Angus Leeming  <a.leeming@ic.ac.uk>
2539
2540         * FormParagraph.C (update, general_update): enabling the align buttons
2541         is now dependent on the AlignPossible entry in the Layout.
2542
2543 2001-06-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2544
2545         * MathsSymbols.C:
2546         * FormMathsMatrix.C: bring C functions into global namespace if
2547         necessary.
2548
2549 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2550
2551         * MathsSymbols.C (pixmapFromBitmapData): add std::
2552
2553         * FormMathsMatrix.C (AlignFilter): add std::
2554
2555 2001-05-22  Adrien Rebollo <rebollo@iaf.cnrs-gif.fr>
2556
2557         * FormDocument.C (build): add iso8859-15 support.
2558
2559 2001-05-08  Baruch Even  <baruch@lyx.org>
2560
2561         * Menubar_pimpl.C: Fixed compilation problem.
2562
2563 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2564
2565         * Menubar_pimpl.C (add_toc): use name and not type with float.
2566         (create_submenu): correct call of new object
2567         (create_submenu): add FloatListInsert and FloatInsert to dummy clause.
2568
2569 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2570
2571         * FormParagraph.[Ch]: remove !NO_PEXTRA and !NEW_INSETS cruft
2572
2573 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
2574
2575         * Dialogs.C: included insetgraphicsParams.h
2576
2577         * FormMathsMatrix.C:
2578         * FormMathsBitmap.C: included LAssert.h
2579
2580 2001-04-24  Allan Rae  <rae@lyx.org>
2581
2582         * xforms_helpers.C (formatted): two consecutive spaces would kill it.
2583
2584 2001-04-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2585
2586         * xforms_helpers.C (formatted): do not use string::substr(1) on a
2587         string of length 1 !
2588
2589 2001-04-16  Allan Rae  <rae@lyx.org>
2590
2591         * xforms_helpers.C (formatted):
2592         * Menubar_pimpl.C (add_toc): #warning triggers an error on Sun CC 6.0
2593         as an unrecognised preprocessor directive.  So ensure they're wrapped.
2594
2595 2001-04-06  John Levon  <moz@compsoc.man.ac.uk>
2596
2597         * FormTabularCreate.C: pass a pair of uints to the controller
2598
2599         * FormVCLog.C: the log appears as a stringstream now
2600
2601         * forms/form_external.fd: make params update state (from Angus)
2602
2603 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2604
2605         * Menubar_pimpl.C: include gettext.h
2606
2607 2001-04-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2608
2609         * xforms_helpers.C (formatted): constify length
2610
2611         * FormTabular.C (update): small restructure, adjust for scoped_ptr
2612         (input): adjust for scoped_ptr
2613         (input): constify str
2614
2615 2001-04-03  John Levon  <moz@compsoc.man.ac.uk>
2616
2617         * Dialogs.C: s/popup/dialog/
2618
2619         * Form*.C:
2620         * FormBase.h:
2621         * FormBase.C: s/ControlButton/ControlButtons/
2622         move bc().refresh() into base show() method
2623
2624         * Form*.C:
2625         * FormBaseDeprecated.C:
2626         s/UndoAll/restore/
2627
2628 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
2629
2630         * FormMathsPanel.C (c-tor): set button controller cancel label to close.
2631
2632         * FormToc.[Ch]:
2633         * forms/form_toc.fd: implemented controller-view split.
2634
2635         * Dialogs.C: associated changes.
2636
2637 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
2638
2639         * FormCitation.C:
2640         * forms/form_citation.fd: Don't change the name of the button when
2641         toggling between regular expression and simple searches.
2642         Squashed bug when creating a new inset, the keys field contained
2643         one (empty) key. No more; thanks, Dekel.
2644
2645         * FormExternal.C:
2646         * forms/form_external.fd: added Apply button.
2647
2648 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
2649
2650         * FormBase.[Ch]:
2651         * FormBrowser.[Ch]: changes associated with renaming ControlBase as
2652         ControlButton.
2653
2654         * FormExternal.[Ch]:
2655         * forms/form_external.fd: implemented controller-view split.
2656
2657         * Dialogs.C: associated changes.
2658
2659         * FormGraphics.[Ch]:
2660         * FormInclude.[Ch]:
2661         * FormPrint.[Ch]:
2662         moved the browsing functionality into the controller.
2663
2664         * xforms_helpers.[Ch]: moved browseFile to
2665         ../controllers/helper_funcs.[Ch]
2666
2667         * FormCitation.C
2668         * forms/form_citation.fd: added case sensitive search button.
2669
2670 2001-03-29  Angus Leeming  <a.leeming@ic.ac.uk>
2671
2672         * xformsBC.[Ch]: Patched in a slight reworking of Baruch Even's patch.
2673         Code moved into the generic template base class. Replaced
2674         setCancelCloseButton() with setButtonLabel().
2675
2676 2001-03-29  Juergen Vigna  <jug@sad.it>
2677
2678         * FormMinipage.C: removed widthp_ and all it's functions and changed
2679         to use new %-lengths of LyXLength.
2680
2681 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
2682
2683         * FormGraphics.[Ch]:
2684         * forms/form_graphics.fd:
2685         * FormIndex.[Ch]:
2686         * forms/form_index.fd: implemented controller-view split.
2687
2688         * Dialogs.C: associated changes.
2689
2690         * FormCharacter.[Ch]: changes associated with ControlCharacter cleanup.
2691
2692         * FormCitation.C: changes associated with ControlCitation cleanup.
2693
2694         * FormMinipage.h: cleaned-up forward declarations.
2695
2696 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
2697
2698         * FormMinipage.[Ch]:
2699         * forms/form_minipage.fd:
2700         * FormPrint.[Ch]:
2701         * forms/form_print.fd:
2702         * FormSplash.[Ch]: implemented controller-view split.
2703
2704         * Dialogs.C: associated changes.
2705
2706 2001-03-26  Angus Leeming  <a.leeming@ic.ac.uk>
2707
2708         * FormPreamble.[Ch]:
2709         * forms/form_preamble.fd:
2710         * FormRef.[Ch]:
2711         * forms/form_ref.fd:
2712         * FormSearch.[Ch]:
2713         * forms/form_search.fd:
2714         * FormTabularCreate.[Ch]:
2715         * forms/form_tabular_create.fd: implemented controller-view split.
2716
2717         * Dialogs.C: associated changes.
2718
2719 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
2720
2721         * FormError.[Ch]:
2722         * form_error.fd:
2723         * FormInclude.[Ch]:
2724         * form_include.fd:
2725         * FormUrl.[Ch]:
2726         * form_url.fd: implemented controller-view split.
2727
2728         * Dialogs.C: associated changes.
2729
2730         * FormBibitem.h:
2731         * FormBibtex.h:
2732         * FormCitation.h: moved methods from protected to private.
2733
2734 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
2735
2736         * FormCredits.C (build): changes associated with
2737         ControlCredits::getCredits returning a stringstream not a vector<string>
2738
2739 2001-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
2740
2741         * FormCopyright.[Ch]:
2742         * forms/form_copyright.fd: implemented controller-view split.
2743
2744         * FormCredits.[Ch]:
2745         * forms/form_credits.fd: implemented controller-view split.
2746
2747         * Dialogs.C: associated changes.
2748
2749         * xforms_helpers.C (formatted): improved the function so that it now
2750         repects '\n' characters in the input string. Ie, the user can now
2751         specify line breaks explicitly.
2752
2753 2001-03-21  Angus Leeming  <a.leeming@ic.ac.uk>
2754
2755         * FormCharacter.[Ch]:
2756         * forms/form_character.fd: implemented controller-view split.
2757
2758         * Dialogs.C: associated changes.
2759
2760         * FormBase.C (input): changed return to SMI_VALID.
2761
2762         * FormCitation.C (updateBrowser): ensure that the keys are stripped of
2763         any surrounding whitespace.
2764
2765 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
2766
2767         * FormBase.[Ch] (input): no longer pure virtual. Has defualt state of
2768         SMI_NOOP.
2769         (FormBase2): split into two template classes, FormDB (DialogBase) and
2770         FormCB (ControllerBase) for greater flexibility.
2771
2772         * FormBibitem.[Ch]:
2773         * FormBibtex.[Ch]:
2774         * FormCitation.[Ch]: associated changes.
2775
2776         * FormBrowser.[Ch]:
2777         * FormLog.[Ch]:
2778         * FormVCLog.[Ch]:
2779         * forms/form_browser.fd: implemented controller-view split.
2780
2781         * Dialogs.C: associated changes.
2782
2783 2001-03-19  Angus Leeming  <a.leeming@ic.ac.uk>
2784
2785         * FormBibtex.[Ch]:
2786         * forms/form_bibtex.fd: implemented controller-view split.
2787
2788         * Dialogs.C: associated changes.
2789
2790 2001-03-19  Angus Leeming  <a.leeming@ic.ac.uk>
2791
2792         * FormBaseDeprecated.[Ch]: rename title as title_.
2793
2794         * FormBaseDeprecated.C: restore John's trick to give the dialog a border
2795         with limited functionality. It got lost in the MVC merge.
2796
2797         * FormBaseDeprecated.C:
2798         * FormBase.C (show): moved initialisation of minw_, minh_ here.
2799
2800         * FormBibitem.C (build):
2801         * FormBibtex.C (build):
2802         * FormBrowser.C (build):
2803         * FormCharacter.C (build):
2804         * FormCitation.C (build):
2805         * FormCopyright.C (build):
2806         * FormCredits.C (build):
2807         * FormDocument.C (build):
2808         * FormError.C (build):
2809         * FormExternal.C (build):
2810         * FormGraphics.C (build):
2811         * FormInclude.C (build):
2812         * FormIndex.C (build):
2813         * FormMinipage.C (build):
2814         * FormParagraph.C (build):
2815         * FormPreamble.C (build):
2816         * FormPreferences.C (build):
2817         * FormPrint.C (build):
2818         * FormRef.C (build):
2819         * FormSearch.C (build):
2820         * FormTabular.C (build):
2821         * FormTabularCreate.C (build):
2822         * FormToc.C (build):
2823         * FormUrl.C (build): removed initialisation of minw_, minh_.
2824
2825         * The Maths Panel stuff no longer causes a crash on exit from LyX.
2826
2827         * FormMaths.[Ch]:
2828         * forms/form_maths.fd: removed.
2829
2830         * forms/form_maths_delim.fd:
2831         * forms/form_maths_deco.fd:
2832         * forms/form_maths_matrix.fd:
2833         * forms/form_maths_space.fd:
2834         * forms/form_maths_panel.fd: new files.
2835         Split contents of form_maths.fd into 5 new files, one for each form.
2836
2837         * MathsSymbols.[Ch]: remove class BitmapMenu, renamed and reworked as
2838         class FormMathsBitmap in FormMathsBitmap.[Ch].
2839
2840         * FormMathsPanel.[Ch]:
2841         * FormMathsBitmap.[Ch]:
2842         * FormMathsDeco.[Ch]:
2843         * FormMathsDelim.[Ch]:
2844         * FormMathsMatrix.[Ch]:
2845         * FormMathsSpace.[Ch]: Split contents of FormMaths into new files,
2846         one for each popup. Rewrite so that all the new classes are derived from
2847         FormBaseBD. Clean up the logic in the process (I hope!).
2848
2849         * Makefile.am: added new fils, removed redundant ones.
2850
2851 2001-03-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2852
2853         * FormMinipage.C (FormMinipage): add SigC:: namespace specifier.
2854         (showInset): ditto
2855         (updateInset): ditto
2856
2857 2001-03-16  Juergen Vigna  <jug@sad.it>
2858
2859         * Dialogs.C (Dialogs): create minipage options dialog.
2860
2861         * forms/form_minipage.fd:
2862         * form_minipage.C:
2863         * form_minipage.h:
2864         * FormMinipage.C:
2865         * FormMinipage.h: new files for the minipage options dialog.
2866
2867 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
2868
2869         * FormMaths.[Ch]: make the FD_ structs private. Create appropriate
2870         callback methods.
2871
2872         * forms/form_maths.fd: change C_FormBaseCancelCB to
2873         FormBaseDeprecatedCancelCB and so fix crash on closing the panel.
2874
2875 2001-03-16  John Levon  <moz@compsoc.man.ac.uk>
2876
2877         * FormMaths.C: quash warnings
2878
2879 2001-03-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2880
2881         * FormMaths.C (C_FormMathsDelimCB): add usual .c_str() for lyxstring
2882         compatibility.
2883
2884 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
2885
2886         * Form_various.h: cleaned up #includes and forward declarations.
2887
2888         * Form_various.C: added "using SigC::slot" declaration.
2889
2890         * FormMaths.[Ch]: moved to boost::scoped_ptrs.
2891
2892         * FormDocument.C (CheckChoiceClass): removed string tct as the
2893         compiler warned that it was defined but never used.
2894         removed USE_CLASS_COMBO.
2895
2896 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
2897
2898         * Dialogs.C:
2899         * FormMaths.h:
2900         * FormMaths.C:
2901         * MathsSymbols.h:
2902         * MathsSymbols.C:
2903         * Makefile.am:
2904         * Toolbar_pimpl.C:
2905         * form_*.C:
2906         * forms/makefile:
2907         * forms/form_maths.fd:
2908         * forms/fdfixc.sed:
2909         * forms/fdfix.sh: add maths panel
2910
2911         * bmtable.h:
2912         * bmtable.c: moved from src/
2913
2914 2001-03-16  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
2915
2916         * FormParagraph.h: NO_PEXTRA
2917         * FormParagraph.C (input): NO_PEXTRA
2918
2919 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
2920
2921         * several files: remove CXX_WORKING_NAMESPACES
2922
2923 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
2924
2925         * Merging changes from BRANCH_MVC back into HEAD.
2926
2927 2001-03-12  Angus Leeming  <a.leeming@ic.ac.uk>
2928
2929         * Dialogs.C (c-tor): Changes associated with storing a vector of
2930         boost::shared_ptrs.
2931         Use MVC Bibitem popup.
2932
2933         * FormBase.h: add a new template class FormBase2, derived from FormBase
2934         to make life creating MVC popups even easier ;-)
2935
2936         * FormBibitem.[Ch]:
2937         * forms/form_bibitem.fd: moved over to the MVC way of doing things.
2938         Proof that a simple popup should be easy to implement!
2939
2940         * FormCitation.[Ch]: now derived from FormBase2.
2941
2942         * FormToc.C: added using std::vector directive.
2943
2944 2001-03-09  Dekel Tsur  <dekelts@tau.ac.il>
2945
2946         * FormSearch.C: Add missing #pragma
2947
2948 2001-03-09  Angus Leeming  <a.leeming@ic.ac.uk>
2949
2950         * FormCitation.C:
2951         * forms/form_citation.fd: added the ability to Search, both Simply and
2952         for Regular Expressions. Use the Search code in the controller() to do
2953         the actual searching.
2954
2955 2001-03-08  Angus Leeming  <a.leeming@ic.ac.uk>
2956
2957         * Makefile.am: added FormCredits.[Ch] and form_credits.[Ch]
2958         * forms/makefile: added form_credits.fd
2959
2960         * Dialogs.C: added FormCredits and removed ShowCredits.
2961
2962         * FormCredits.[Ch]:
2963         * forms/form_credits.fd:
2964         * forms/form_search.fd: ported to the MVC way.
2965
2966 2001-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
2967
2968         * xforms_helpers.h (formatted): now has default arguments for size and
2969         style.
2970
2971         * FormCitation.[Ch]: moved code out of this class and into
2972         ControlCitation and associated helper funcs.
2973
2974 2001-03-05  Angus Leeming  <a.leeming@ic.ac.uk>
2975
2976         * FormBase.[Ch]: (InputCB): use ButtonController::input() rather than
2977         ButtonController::valid() to check state of input. The buttons are
2978         now controlled correctly.
2979
2980         * Form*.[Ch]: use boost::scoped_ptr for the remaining few classes.
2981
2982 2001-03-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
2983
2984         * Form*.[Ch]: use boost::scoped_ptr for dialog_ et al.
2985
2986         * FormBase.[Ch]: rename title as title_.
2987
2988 2001-03-02  John Levon  <moz@compsoc.man.ac.uk>
2989
2990         * FormBase.C (c-tor): initialise variables in correct order.
2991
2992         * FormCitation.C: add #include <algorithm>
2993
2994 2001-03-02  Angus Leeming  <a.leeming@ic.ac.uk>
2995
2996         * xformsBC.[Ch]: Changes associated with the changes to
2997         controllers/ButtonController.[Ch]. Ie, the class is now derived from
2998         ButtonControllerBase and the ButtonPolicy is accessed through a method
2999         bp() rather than the instance bp_.
3000
3001         * FormBaseDeprecated.[Ch]: no longer store a ButtonController, but
3002         rather use a pure virtual method bc() to access the controller
3003         instantiated by the daughter classes.
3004
3005         * F*.[Ch]: changes associated with the above.
3006
3007 2001-02-27  Angus Leeming  <a.leeming@ic.ac.uk>
3008
3009         * FormBase.[Ch]: renamed as FormBaseDeprecated.[Ch]
3010
3011         * ViewXforms.[Ch]: renamed as FormBase.[Ch]
3012
3013 2001-02-23  Angus Leeming  <a.leeming@ic.ac.uk>
3014
3015         * ButtonController.[Ch]: deleted. The class is split into two
3016         (with identical functionality), the code being found in
3017         ../controllers/ButtonController.[Ch] and xformsBC.[Ch]
3018
3019         * xformsBC.[Ch]: new files. Xforms specific part of Allan's original
3020         ButtonController class.
3021
3022         * FormBase.[Ch]: changes associated with the above split.
3023
3024         * ViewXforms.[Ch]: Base class for xforms dialogs derived from ViewBase
3025         (../controllers/ViewBase.h). Ie, for Dialogs with GUI-I controllers
3026         controlling all interaction to/from the LyX kernel.
3027
3028         * FormCitation.[Ch]:
3029         * forms/form_citation.fd: An xforms-specific implementation of the
3030         Citation dialog, controlled by the GUI-I ControlCitation.
3031
3032         * Dialogs.C: Use the controlled Citation dialog.
3033
3034 2001-03-15  John Levon  <moz@compsoc.man.ac.uk>
3035
3036         * Makefile.am:
3037         * combox.h:
3038         * combox.C: moved from src/
3039
3040 2001-03-09  Angus Leeming  <a.leeming@ic.ac.uk>
3041
3042         * forms/fdfix.sh:
3043         * forms/form_filedialog.C.patch: I hate having to make these patches,
3044         but on reflection I think it's probably better than hacking fdfix.sh.
3045
3046 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
3047
3048         * forms/fdfix.sh: test whether bmtable.h is needed before #including it.
3049
3050 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
3051
3052         * FormGraphics.C: remove unnecessary hack
3053
3054 2001-03-13  Dekel Tsur  <dekelts@tau.ac.il>
3055
3056         * FormCitation.C (apply): Do not put space between multiple keys.
3057
3058 2001-03-12  Dekel Tsur  <dekelts@tau.ac.il>
3059
3060         * Menubar_pimpl.C (add_toc): Remove debug message.
3061
3062 2001-03-09  John Levon  <moz@compsoc.man.ac.uk>
3063
3064         * Makefile.am:
3065         * Dialogs.C:
3066         * FormExternal.C:
3067         * FormExternal.h:
3068         * form_external.C:
3069         * form_external.h:
3070         * xforms/forms/makefile:
3071         * forms/form_external.fd: add FormExternal
3072
3073 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
3074
3075         * Dialogs.C: add destroySplash()
3076
3077         * form_splash.h:
3078         * form_splash.C:
3079         * forms/form_splash.fd:
3080         * FormSplash.h:
3081         * FormSplash.C: make independent of FormBase, tidy
3082
3083         * Menubar_pimpl.C: destroy splash on interaction
3084
3085 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
3086
3087         * FormInclude.h:
3088         * FormInclude.C:
3089         * form_include.h:
3090         * form_include.C:
3091         * forms/form_include.fd: rework, clean up
3092
3093 2001-03-12  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
3094
3095         * FormToc.h: use Buffer::typedef
3096
3097         * Menubar_pimpl.C (add_toc): use the Buffer::typedefs
3098         * FormToc.C (build): ditto
3099         (updateToc): ditto
3100
3101 2001-03-11  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
3102
3103         * FormToc.C (build): implement for dynamic number of lists
3104         (updateToc): ditto
3105         * Menubar_pimpl.C (add_toc): ditto
3106
3107 2001-03-07  Edwin Leuven  <leuven@fee.uva.nl>
3108
3109         * added credits:
3110         * Dialogs.C:
3111         * Makefile.am:
3112         * FormCredits.[Ch]:
3113         * form_credits.[Ch]:
3114         * forms/form_credits.fd:
3115
3116 2001-03-07  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
3117
3118         * Menubar_pimpl.h: make Pipl::ItemInfo::item_ a boost::shared_ptr,
3119         make ButtonList contain boost::shared_ptr<ItemInfo>
3120
3121         * Menubar_pimpl.C (~Pimpl): remove destructor
3122
3123 2001-03-06  John Levon  <moz@compsoc.man.ac.uk>
3124
3125         * Makefile.am:
3126         * FileDialog.C:
3127         * FormFiledialog.C:
3128         * FormFiledialog.h:
3129         * form_filedialog.C:
3130         * form_filedialog.h:
3131         * FormGraphics.C:
3132         * FormInclude.C:
3133         * FormPreferences.C:
3134         * FormPrint.C:
3135         * xforms_helpers.C:
3136         * xforms_helpers.h:
3137         * forms/fdfix.sh:
3138         * forms/makefile:
3139         * form/form_filedialog.fd: add File Dialog
3140         * Toolbar_pimpl.h:
3141         * Toolbar_pimpl.C: move LayoutsCB to here
3142
3143 2001-03-06  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
3144
3145         * FormParagraph.C: changes because of ParagraphParameters.
3146
3147 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3148
3149         * FormSearch.C (Replace): remove default argument
3150         (Find): ditto
3151
3152 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
3153
3154         * added find/replace dialog:
3155         * FormSearch.*: added
3156         * form_search.*: added
3157         * forms/form_search.fd: added
3158
3159 2001-03-05  Angus Leeming  <a.leeming@ic.ac.uk>
3160
3161         * xform_helpers.[Ch]: renamed as xforms_helpers.[Ch].
3162
3163         * various: in a rush of delayed guilt, I've renamed all instances of
3164         xform as xforms. Jean-Marc sowed this seed a long, long time ago and it
3165         finally sprouted.
3166
3167         * xforms_helpers.[Ch] (setEnabled): a little wrapper function to
3168         activate/deactivate an FL_OBJECT.
3169
3170         * FormCitation.C:
3171         * FormDocument.C:
3172         * FormInclude.C:
3173         * FormParagraph.C:
3174         * FormPreamble.C:
3175         * FormPreferences.C:
3176         * FormRef.C:
3177         * FormTabular.C: used it.
3178
3179 2001-03-05  Angus Leeming  <a.leeming@ic.ac.uk>
3180
3181         * FormPreferences.C: removed three unused using directives.
3182
3183 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
3184
3185         * added find/replace dialog:
3186         * FormSearch.*: added
3187         * form_search.*: added
3188         * forms/form_search.fd: added
3189
3190 2001-02-27  Dekel Tsur  <dekelts@tau.ac.il>
3191
3192         * FormRef.C: Fixed the behaviour of Goto-Ref.
3193
3194 2001-02-27  Angus Leeming  <a.leeming@ic.ac.uk>
3195
3196         * forms/makefile: added character and preamble dialogs
3197
3198 2001-02-27  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
3199
3200         * FormCharacter.C (FormCharacter): change order of deletion,
3201         change combo_language2 to combo_language2_
3202
3203 2001-02-26  Dekel Tsur  <dekelts@tau.ac.il>
3204
3205         * FormRef.C (apply): Update bookmark #0 after inserting a reference.
3206
3207 2001-02-23  Edwin Leuven <leuven@fee.uva.nl>
3208
3209         * Dialogs.C: added layoutcharacter
3210         * FormCharacter.C: added
3211         * FormCharacter.h: added
3212         * form_character.C: added
3213         * form_character.h: added
3214         * forms/form_character.fd: added
3215
3216 2001-02-23  Dekel Tsur  <dekelts@tau.ac.il>
3217
3218         * FormPreferences.C: Handle lyxrc.language_use_babel and
3219         lyxrc.language_global_options.
3220
3221 2001-02-23  Angus Leeming  <a.leeming@ic.ac.uk>
3222
3223         * FormPreferences(GetFrom, GetTo): use size_type rather than int.
3224
3225 2001-02-23  John Levon  <moz@compsoc.man.ac.uk>
3226
3227         * FormBase.C: no longer transient dialogs, XMapWindow()
3228           in attempt to de-iconify
3229
3230         * FormDocument.C: remove DO_USE_DEFAULT_LANGUAGE
3231
3232 2001-02-21  Dekel Tsur  <dekelts@tau.ac.il>
3233
3234         * FormDocument.C (checkMarginValues): Activate "use geometry" button
3235         if using custom paper size/margin.
3236
3237 2001-02-21  Allan Rae  <rae@lyx.org>
3238
3239         * forms/form_preferences.fd: larger, bold font for outer tabfolder
3240
3241 2001-02-20  Edwin Leuven <leuven@fee.uva.nl>
3242
3243         * src/frontends/xforms/Dialogs.C: added preamble
3244         * src/frontends/xforms/FormPreamble.C: added
3245         * src/frontends/xforms/FormPreamble.h: added
3246         * src/frontends/xforms/Makefile.am: added
3247         * src/frontends/xforms/form_preamble.C: added
3248         * src/frontends/xforms/form_preamble.h: added
3249         * src/frontends/xforms/form_preamble.fd: added
3250
3251 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
3252
3253         * FormBase.h: moved noncopyable derivation to DialogBase.
3254
3255 2001-02-19  Juergen Vigna  <jug@sad.it>
3256
3257         * FormTabular.C (build): make all input field accepted only after
3258         a "RETURN".
3259
3260         * forms/form_tabular.fd: removed default "Return" on Close-Button.
3261
3262 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
3263
3264         * FormError.C:
3265         * FormGraphics.C:
3266         * FormInset.C (showInset): change associated with name change
3267         inset::hide to inset::hideDialog.
3268
3269 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
3270
3271         * FormCitation.C (build): altering "Text after" now activates the Ok,
3272         Apply buttons.
3273
3274 2001-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
3275
3276         * FormCitation.C: lots of white-space changes to make file consistent
3277         with LyX style.
3278         (input): use the FL_OBJECT * parameter to decide what to do, not the
3279         long parameter.
3280
3281         * FormCitation.h: removed most entries in enum.
3282
3283         * forms/form_citation.fd: change names of variables, consistent with
3284         Allan's naming scheme.
3285         Don't pass any particular arguments to the InputCB function.
3286         choice_style now triggers a callback and looks like other choices.
3287
3288 2001-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
3289
3290         * other: use compare instead of strcmp/strncmp
3291
3292 2001-02-15  Angus Leeming  <a.leeming@ic.ac.uk>
3293
3294         * ButtonController.[Ch]: changed trigger_change_ vector and associated
3295         methods to dont_trigger_change_ because FL_OBJECTs that trigger a
3296         callback to InputCB() but don't trigger a change in the state of the
3297         Ok, Apply buttons are much rarer than those that do.
3298
3299         * FormCitation.C (build): associated change.
3300
3301 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
3302
3303         * ButtonController.C: include algorithm
3304
3305 2001-02-14  Angus Leeming  <a.leeming@ic.ac.uk>
3306
3307         * ButtonController.[Ch] (addTriggerChange, eraseTriggerChange):
3308         new methods.
3309         (valid): method can now be passed an optional FL_OBJECT *. If it is, and
3310         the vector of FL_OBJECT *s that can trigger a change in the button state
3311         is not empty, then a change of state will occur only if the FL_OBJECT *
3312         is present in this vector.
3313
3314         * FormBase.C (RestoreCB): call bc.undoAll() before restore(). Allows
3315         the user to deactivate specific fields within restore().
3316         (InputCB): pass the FL_OBJECT * to bc_.valid().
3317
3318         * FormCitation.C (build): create a vector of FL_OBJECT *s that can
3319         trigger a change of state in the Ok,Apply buttons.
3320         (update): bc_.readOnly() to the start of the method. Similar reasoning
3321         to that for FormBase::RestoreCB, above.
3322
3323 2001-02-14  Angus Leeming  <a.leeming@ic.ac.uk>
3324
3325         * FormBrowser.C: used OkCancelPolicy for ButtonController rather than
3326         IgnorantPolicy.
3327
3328         * forms/form_browser.fd:
3329         * forms/form_copyright.fd:
3330         * forms/form_error.fd:
3331         * forms/form_tabular.fd:
3332         * forms/form_toc.fd:
3333         Consistent shortcuts for Close button: Esc and Return only.
3334
3335         * forms/form_citation.fd:
3336         * forms/form_document.fd:
3337         * forms/form_index.fd:
3338         * forms/form_paragraph.fd:
3339         * forms/form_preferences.fd:
3340         * forms/form_print.fd:
3341         * forms/form_ref.fd:
3342         * forms/form_tabular_create.fd:
3343         * forms/form_url.fd:
3344         Consistent shortcut for Cancel button: Esc only.
3345
3346 2001-02-12  John Levon  <moz@compsoc.man.ac.uk>
3347
3348         * Dialogs.C: new Splash. Include, Bibitem/tex
3349
3350         * FormBase.h: make show() virtual for Splash's benefit
3351
3352         * Makefile.am:
3353         * forms/makefile:
3354         * FormBibitem.C:
3355         * FormBibitem.h:
3356         * FormBibtex.C:
3357         * FormBibtex.h:
3358         * form_bibitem.C:
3359         * form_bibitem.h:
3360         * form_bibtex.C:
3361         * form_bibtex.h:
3362         * forms/form_bibitem.fd:
3363         * forms/form_bibtex.fd:
3364         * FormInclude.C:
3365         * FormInclude.h:
3366         * form_include.C:
3367         * form_include.h:
3368         * forms/form_include.fd:
3369         * FormSplash.C:
3370         * FormSplash.h:
3371         * form_splash.C:
3372         * form_splash.h:
3373         * forms/form_splash.fd: new forms
3374
3375 2001-02-09  John Levon  <moz@compsoc.man.ac.uk>
3376
3377         * FormLog.C: handle Literate build log nicely
3378
3379 2001-02-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3380
3381         * Menubar_pimpl.C: remove support for reference menuitem type.
3382
3383 2001-02-07  John Levon  <moz@compsoc.man.ac.uk>
3384
3385         * Makefile.am:
3386         * Timeout_pimpl.h:
3387         * Timeout_pimpl.C: add Timeout implementation
3388
3389 2001-02-06  John Levon  <moz@compsoc.man.ac.uk>
3390
3391         * form_browser.h:
3392         * form_browser.C:
3393         * forms/form_browser.fd:
3394         * forms/makefile:
3395         * FormBrowser.C:
3396         * FormBrowser.h: readonly browser form
3397
3398         * FormLog.C:
3399         * FormLog.h:
3400         * FormVCLog.C:
3401         * FormVCLog.h:
3402         * Dialogs.C: add Log and VCLog
3403
3404         * Makefile.am: add Log and VCLog, add updatesrc target
3405
3406 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
3407
3408         * Menubar_pimpl.C (add_toc2): Add shortcut to the TOC menu.
3409
3410 2001-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3411
3412         * FormPreferences.C (GetFrom): fix crash when there is no format
3413         defined.
3414         (GetTo): ditto.
3415
3416 2001-01-23  Angus Leeming  <a.leeming@ic.ac.uk>
3417
3418         * FormPreferences.C (LoadBrowserLyX): convert unsigned short to
3419         unsigned char correctly and so fix 2 bugs loading/changing colors.
3420
3421 2001-01-21  Dekel Tsur  <dekelts@tau.ac.il>
3422
3423         * FormRef.C (update): Do not update dialog_->{ref,name,type}
3424         if inset_ == 0.
3425         Deactivate the type button when buffer is LinuxDoc/Docbook
3426         (build): Uncomment calls to addReadOnly().
3427         (updateBrowser) Do not disable the update button when there are no
3428         keys.
3429         (build, getType, getName): Use InsetRef::types.
3430
3431 2001-01-18  Angus Leeming  <a.leeming@ic.ac.uk>
3432
3433         * FormPrint.[Ch] (browse): new method to browse for file to print to.
3434
3435         * forms/form_print.fd: give the form a Browse button.
3436
3437 2001-01-17  Dekel Tsur  <dekelts@tau.ac.il>
3438
3439         * FormRef.C (input): Fix the behavior of goto reference button.