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