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