]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/ChangeLog
76576ab36afcc7b24f4a1984b7d5d1b65f6601ff
[lyx.git] / src / frontends / xforms / ChangeLog
1 2002-11-29  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
2
3         * lyx_gui.C (start): make "unhandled X11 event" debug message
4         optional (on GUI)
5
6 2002-11-29  Angus Leeming  <leeming@lyx.org>
7
8         * Tooltips.C (init): allow tooltips to be reset.
9
10         * FormSpellchecker.C: having broken Rob's word count update, I guess
11         I should fix it too ;-)
12
13         * FormPreferences.C (apply): if controller().isClosing() (ie, if the
14         "save" button has been pressed), then save any modified gui colors.
15
16 2002-11-29  Angus Leeming  <leeming@lyx.org>
17
18         * forms_gettext.[Ch] (scex, idex): re-written to receive and return
19         string not char *. The old idex function was new-ing memory and nothing
20         that used it was ensuring that this memory didn't leak. Now safe.
21
22         * Alert_pimpl.C:
23         * FormFiledialog.C:
24         * FormPreferences.C:
25         * forms/fdfixc.sed: associated changes.
26
27 2002-11-28  Rob Lahaye  <lahaye@snu.ac.kr>
28
29         * forms/fdfixh.sed: bug fix.
30
31 2002-11-27  Dekel Tsur  <dekelts@tau.ac.il>
32
33         * xfont_loader.C (getFontinfo): Use lyxrc.*_font_foundry.
34
35         * FormPreferences.C: Handle lyxrc.*_font_foundry.
36
37 2002-11-27  Angus Leeming  <leeming@lyx.org>
38
39         * forms/fdfix.sh:
40         * forms/c_str.sed: replace that nasty global c_str declaration with
41         nice function-specific ones. Use a two-pass algorithm to do so.
42         It's possible to do it in one-pass, but the resulting sed script
43         must use the hold space in a convoluted manner.
44
45 2002-11-27  Lars Gullik Bjønnes  <larsbj@gullik.net>
46
47         * XMiniBuffer.C (peek_event): add l10n on a string missing it.
48
49 2002-11-26  Angus Leeming  <leeming@lyx.org>
50
51         * forms_gettext.[Ch] (scex, idex): ditch the #defines and rename the
52         functions in their place.
53
54         * FormBase.h (FormDB::form): Implement in 1 line not 2.
55
56         * fdesign_base.[Ch]: new files. All fdesign-generated structures will
57         derive from FD_base, to minimise code duplication.
58
59         * Makefile.am: add new files.
60
61         * forms/Makefile.am (SRCS): move form_wrap.fd to the end of the list.
62
63         * forms/fdfix.sh: add "c_str" to namespace anon in the generated .C
64         files if required.
65
66         * forms/fdfix[ch].sed: the structs now derive from FD_base, so they
67         don't need d-tors to clean up the form.
68         Beautify the sed to produce beautiful looking C++ code.
69
70 2002-11-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
71
72         * FileDialog.C (save): actually return the result from
73         FileDialog::open
74
75 2002-11-26  Jürgen Spitzmüller  <juergen.sp@t-online.de>
76
77         * FormTabular.C: correct lots of bugs in the setting/getting of
78         longtable options.
79
80 2002-11-25  Angus Leeming  <leeming@lyx.org>
81
82         * Dialogs_impl.h:
83         * Dialogs2.C: no need to include math sub dialog header files.
84         Use standard MCV implementation of main math panel dialog.
85
86         * FormBaseDeprecated.[Ch]:
87         * FeedbackController.[Ch]: removed.
88
89         * FormBase.[Ch]: Merge the contents of FeedbackController into here
90         also.
91         (FormCB): make the controller methods publicly accessible.
92
93         * forms/form_maths_deco.fd:
94         * forms/form_maths_delim.fd:
95         * forms/form_maths_matrix.fd:
96         * forms/form_maths_panel.fd:
97         * forms/form_maths_space.fd:
98         * forms/form_maths_style.fd: s/Deprecated//
99
100         * FormMathsBitmap.[Ch]:
101         * FormMathsDeco.[Ch]:
102         * FormMathsDelim.[Ch]:
103         * FormMathsMatrix.[Ch]:
104         * FormMathsPanel.[Ch]:
105         * FormMathsSpace.[Ch]:
106         * FormMathsStyle.[Ch]: implement a Controller-View split of the math
107         dialogs.
108
109 2002-11-22  Angus Leeming  <leeming@lyx.org>
110
111         The first step towards a math dialog controller...
112
113         * FormBaseDeprecated.h (hide): make public.
114
115         * FormMathsPanel.[Ch] (class FormMathsPanel):
116         (c-tor, build): no longer create the daughters in the c-tor. Wait
117         until build() is invoked to create and initialise them at the same time.
118         (dispatchFunc): now has an additional string argument, making it a
119         more general wrapper for LyXView::dispatch.
120         (mathDisplay, setActive): removed.
121         (daughters_): store the daughter dialogs in a map, using
122         the FL_OBJECT buttons to identify them.
123         (addDaughter, showDaughter): helper functions.
124
125         * FormMathsPanel.[Ch] (class FormMathsSub):
126         (connect, disconect): removed. No need for the daughters to tell the
127         parent that they're active; the parent knows already.
128         (isVisible): new method; wrapper for form()->visible.
129         no need to make FormMathsPanel a friend.
130
131         * FormMathsDelim.C (apply):
132         * FormMathsMatrix.C (apply):
133         use FormMathPanel::dispatchFunc() rather than LyXView::dispatch().
134
135 2002-11-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
136
137         * FormGraphics.C (build): use boost::format
138
139         * FeedbackController.C (postMessage): use boost::format
140
141         * ColorHandler.C (getGCForeground): use boost::format
142
143 2002-11-21  Angus Leeming  <leeming@lyx.org>
144
145         * FormDocument.[Ch]:
146         * forms/form_document.fd: controller-view split of doc dialog.
147
148         * Dialogs_impl.h:
149         * Dialogs2.C: changes due to controller-view split of doc dialog.
150
151 2002-11-21  Angus Leeming  <leeming@lyx.org>
152
153         * forms/fdfix.sh: Don't use "if [ $? -ne 0 ]; then..."
154
155         * FormSpellchecker.C (updateState): new method, replacing Black Magic.
156         Should also resolve Darren Freeman's redraw of the status bar problem.
157
158 2002-11-20  Angus Leeming  <leeming@lyx.org>
159
160         * forms/fdfix.sh:
161         * forms/fdfixh.sed: strengthen the sed in the sed script and further
162         beautify the contents of the resultant .h file.
163
164 2002-11-20  Angus Leeming  <leeming@lyx.org>
165
166         * MathsCallbacks.h: removed.
167         * Makefile.am: remove MathsCallbacks.h.
168
169         * FormMathsPanel.C (FormMathsPanel): use vector(begin, end) c-tor
170         rather than our home-grown loops.
171
172         * FormMathsPanel.h:
173         * forms/fdfix.sh: no longer #include "MathsCallbacks.h".
174
175         * FormMathsPanel.C (input):
176         * forms/form_maths_panel.fd: don't pass/use MM_XYZ data.
177
178 2002-11-19  Angus Leeming  <leeming@lyx.org>
179
180         * FormInset.[Ch]: removed; no longer used after John's port of the
181         tabular dialog to MCV.
182
183         * Makefile.am (libxforms_la_SOURCES): remove FormInset.[Ch].
184
185         * FormBase.h (show):
186         * FormExternal.h (apply, build, update, input):
187         * FormSpellchecker.h (apply, build, update, partialUpdate):
188         propogate the virtual keyword.
189
190 2002-11-17  John Levon  <levon@movementarian.org>
191
192         * FileDialog.C: open/save name change
193
194 2002-11-15  John Levon  <levon@movementarian.org>
195
196         * Dialogs2.C:
197         * Dialogs_impl.h:
198         * FormPreferences.h:
199         * FormPreferences.C:
200         * FormTabular.h:
201         * FormTabular.C:
202         * forms/form_preferences.fd:
203         * forms/form_tabular.fd: port tabular and prefs to MVC
204
205         * FormBase.h: make hide() virtual for prefs
206
207 2002-11-08  Angus Leeming  <leeming@lyx.org>
208
209         * xforms_resize.[Ch]: sigh. Hack the "get scaling" part of
210         fl_adjust_form_size out of the xforms source and put it in here as
211         get_scaling_factor. Resizing and then unresizing to get this info
212         produces really nasty results...
213
214         I've put a request into the xforms list.
215
216 2002-11-08  Angus Leeming  <leeming@lyx.org>
217
218         * xforms_resize.[Ch]: replace scale_to_fit_tabs and scale_form with
219         get_scale_to_fit and scale_form_horizontally, respectively. The
220         functions are a total re-write, making use of the xforms library's
221         fl_adjust_form_size routine. We therefore get enormously simplified
222         code and consideration of /all/ button objects, not just those
223         tabs in tabfolders.
224
225         * FormBase.C (prepare_to_show):
226         * FormBaseDeprecated.C (prepare_to_show): use the renamed resize
227         functions to scale the dialog so that labels fit within buttons.
228
229         * FormBase.C (prepare_to_show): remove bc().refresh() call, as this
230         is done by the controller.
231
232 2002-11-07  Angus Leeming  <leeming@lyx.org>
233
234         * forms/fdfixh.sed: generate the d-tors in a clean way.
235         * forms/fdfixc.sed: Go from "fdui->form_xxx" to "fdui->form" in
236         a clean way.
237
238 2002-10-31  Herbert Voss  <voss@perce.de>
239
240         * FormGraphics.C (build, apply): get the rotate-list from the
241         controller
242
243 2002-11-04  Angus Leeming  <leeming@lyx.org>
244
245         * FormGraphics.C (build): Use frnt::getBBUnits().
246
247 2002-11-04  Rob Lahaye  <lahaye@snu.ac.kr>
248
249         * FormSpellchecker.C (input): fix label of spellchecker progress bar.
250
251 2002-11-04  Lars Gullik Bjønnes  <larsbj@gullik.net>
252
253         * lyx_gui.C (hexname): STRCONV
254
255         * FormPreferences.C (X11hexname): STRCONV
256
257         * FormMathsMatrix.C (apply): STRCONV
258
259         * FormMathsDelim.C (apply): STRCONV
260
261         * lyx_gui.C (start): adjust signature
262         (start): exchange magic integers for defined values.
263
264 2002-10-31  Rob Lahaye  <lahaye@snu.ac.kr>
265
266         * xformsImage.C (clip): fix crash caused by uint -> int nastiness.
267
268         * FormGraphics.C: use lyx::float_equal.
269
270 2002-10-29  Rob Lahaye  <lahaye@snu.ac.kr>
271
272         * FormParagraph.[Ch]:
273         * forms/form_paragraph.fd: a large-scale reorganisation and clean-up
274         of the code to make it more transparent. Use RadioButtonGroup and
275         CheckedGlueLength for the same reason. Add tooltips.
276
277 2002-10-28  Angus Leeming  <leeming@lyx.org>
278
279         * FeedbackController.C (PrehandlerCB): show tooltips for browser
280         widgets, working-around an xforms bug.
281
282         * FormBibtex.C (build):
283         * FormCitation.C (build):
284         * FormForks.C (build):
285         * FormSpellchecker.C (build):
286         * FormTexinfo.C (build):
287         set the prehandler for the browser widgets so that we can have tooltips.
288
289 2002-10-28  Dekel Tsur  <dekelts@tau.ac.il>
290
291         * xfont_loader.C (getFontinfo): Cleanup.
292
293 2002-10-26  John Levon  <levon@movementarian.org>
294
295         * forms/form_preamble.fd: OK cannot be a RETURN_BUTTON ;)
296
297 2002-10-26  John Levon  <levon@movementarian.org>
298
299         * FormTexinfo.C: using vector
300
301 2002-10-25  Dekel Tsur  <dekelts@tau.ac.il>
302
303         * xfont_loader.C (getFontinfo): Add xfonts to the font path if
304         necessary.
305
306 2002-10-25  Angus Leeming  <leeming@lyx.org>
307
308         * FormSpellchecker.C (input): fix crash when progress == 0.
309
310 2002-10-24  Rob Lahaye  <lahaye@snu.ac.kr>
311
312         * forms/form_print.fd:
313         * FormPrint.[Ch]: clean-up, reflecting discussion on the list.
314
315         * forms/form_spellchecker.fd:
316         * FormSpellchecker.[Ch]: add tooltips; general clean-up.
317          add word count to dialog and improve progress status;
318          implement single Start/Stop button;
319
320         * FormTabular.C (build): rearrange lines tab by tab.
321         Use getString not fl_get_inout.
322
323         * FormTexinfo.C: replace View-button by catching double click in
324         browser; allow viewing of files, irrespective of full path.
325
326         * forms/form_wrap.fd: resized. Remove text_warning widget. Fix gravity.
327         * FormWrap.[Ch]: simplification through the use of RadioButtonGroup
328         and CheckedGlueLength. Add tooltips.
329
330 2002-10-24  Angus Leeming  <leeming@lyx.org>
331
332         * FormRef.C (updateBrowser): invoke updateHighlight
333         (updateHighlight): don't select a browser item if there is no
334         reference selected.
335         (apply, input): use getString not fl_get_input.
336
337 2002-10-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
338
339         * FormExternal.C (apply):
340         (input): fix an off-by-one index (causing a crash)
341
342 2002-10-24  Rob Lahaye  <lahaye@snu.ac.kr>
343
344         * FormGraphics.C: use checkedWidgets to ensure that the lengths and
345         glue lengths are valid. Improve code documentation and layout.
346         InsetGraphicsParams::scale is now a float; modify dialog to suit.
347
348         * FormLog.C (update): more descriptive title and warning messages.
349
350         * FormMathsPanel.C (c-tor): allow dialog to be resized.
351
352         * FormPreamble.C (build): rearrange.
353         (apply): use getString, not fl_get_input.
354
355         * FormSearch.C (build): add tooltips.
356         (input): use getString, not fl_get_input.
357
358         * FormShowFile.C: more descriptive title.
359
360         * forms/form_browser.fd:
361         * forms/form_preamble.fd: reshape.
362
363         * forms/form_graphics.fd: reshape. Remove text_warning widget.
364
365         * forms/form_maths_panel.fd:
366         * forms/form_ref.fd:
367         * forms/form_search.fd: reshape. Fix gravity.
368
369 2002-10-24  Rob Lahaye  <lahaye@snu.ac.kr>
370
371         * FormFloat.C (input): fix the radio buttongroup behaviour.
372
373         * RadioButtonGroup.C (init): Assert on ROUND3DBUTTON and RADIO_BUTTON
374         when adding object to the group.
375
376         * forms/form_float.fd: use RADIO_BUTTON for the buttons in the radio
377         group.
378
379         * FormDocument.C: remove redundant header files.
380
381 2002-10-24  Angus Leeming  <leeming@lyx.org>
382
383         * Dialogs_impl.h: set the policy of the BibtexDialog to
384         NoRepeatedApplyReadOnlyPolicy.
385
386 2002-10-23  Rob Lahaye  <lahaye@snu.ac.kr>
387
388         * forms/form_float.fd: prettify and implement gravity/resize policy
389         correctly.
390
391         * FormFloat.C: add tooltips, lots of comments and check the
392         input more carefully.
393
394 2002-10-23  Angus Leeming  <leeming@lyx.org>
395
396         * checkedwidgets.C (setWidget): Don't set icol2 to alert_col when
397         the input is invalid.
398
399 2002-10-23  Rob Lahaye  <lahaye@snu.ac.kr>
400
401         * FormBibtex.C: remove two redundant header files.
402
403         * FeedbackController (postMessage): s/FL_BLACK/FL_LCOL/
404
405         * FormDocument.C: disable resizing of the dialog.
406         Remove redundant counter's bounds/step/precision (is set in
407         form_document.fd).
408
409         * FormDocument.[Ch] (CheckDocumentInput): removed. Use the
410         button controller and the checkedGlueLength class to check the validity
411         of any LyXGlueLengths.
412
413         * forms/form_document.fd: prettify.
414
415 2002-10-23  Rob Lahaye  <lahaye@snu.ac.kr>
416
417         * forms/form_bibtex.fd:
418         * forms/form_citation.fd: less bulky with proper gravity/resize policy
419          and many other GUI layout improvements.
420
421         * FormBibtex.C: remove choose button, select directly instead;
422         add Restore/OK/Apply/Cancel buttons; modify tooltip-texts;
423
424         * FormCitation.C: (trivial) rearrange lines; remove redundant check
425         button settings (do that in form_citation.fd instead).
426
427 2002-10-22  Rob Lahaye  <lahaye@snu.ac.kr>
428
429         * FeedbackController.C: use the NORMAL rather than the SMALL sized font
430         to display messages in the message_widget.
431
432         * FormGraphics.h: remove un-needed #include.
433
434         * FormPrint.C (build): minimal change due to change in
435         RadioButtonGroup's semantics.
436
437         * RadioButtonGroup.[Ch]: something of a clean-up.
438         (explicit c-tor): removed.
439         (reset): removed.
440         (set): new method, accepting an FL_OBJECT *.
441
442         * xforms_helpers.[Ch] (setEnabled): change lcol setting from
443         FL_BLACK to FL_LCOL.
444         (getString) use line=0 instead of line=-1 as default case;
445
446 2002-10-22  Rob Lahaye  <lahaye@snu.ac.kr>
447
448         * forms/form_aboutlyx.fd: implement the text widgets as browsers
449
450         * FormAboutlyx.C (build): Rearrange tabs. Add Build-info. Prettify.
451
452 2002-10-22  Angus Leeming  <leeming@lyx.org>
453
454         * Makefile.am (libxforms_la_SOURCES): arrange list into alphabetical
455         order once again.
456         Add checkedwidgets.[Ch].
457
458         * checkedwidgets.[Ch]: new files, defining CheckedLyXLength and
459         CheckedGlueLength.
460
461         * xforms_helpers.[Ch] (isActive): new helper function.
462
463 2002-10-21  Lars Gullik Bjønnes  <larsbj@gullik.net>
464
465         * xfont_loader.C (doLoad): typo
466
467 2002-10-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
468
469         * FormVCLog.C (update): modify, use ostringstream
470
471         * FormPreamble.C (apply): modify
472
473         * FormLog.C (update): modify
474
475         * FormAboutlyx.C (build): use ostringstream, modify
476
477 2002-10-21  Angus Leeming  <leeming@lyx.org>
478
479         * xformsImage.C (rotate): pass ints to flimage_rotate, fixing compiler
480         warning.
481
482 2002-10-21  Garst Reese <reese@isn.net>
483
484         * xformsImage.C (getWidth): work-around xforms bug enabling the display
485         of the edges of an image.
486
487 2002-10-21  Rob Lahaye  <lahaye@snu.ac.kr>
488
489         * Tooltips.C (init): pass the /formatted/ string to xforms...
490
491 2002-10-20  Lars Gullik Bjønnes  <larsbj@gullik.net>
492
493         * XLyXKeySym.h: rename private var keysym to keysym_, add accessor
494         function keysym().
495
496         * FormDocument.C (class_apply): setMessage change
497         (apply): ditto
498
499 2002-10-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
500
501         * Menubar_pimpl.C (create_submenu): do not create a "More..."
502         submenu just for one entry
503
504 2002-10-15  Angus Leeming  <leeming@lyx.org>
505
506         * XWorkArea.C (work_area_handler): Pass the mouse button correctly to
507         dispatch on LFUN_MOUSE_MOTION.
508
509 2002-10-15  Angus Leeming  <leeming@lyx.org>
510
511         * FormCitation.C (updateBrowser): deselect the highlighted item when
512         updating the browser.
513
514 2002-10-14  Dekel Tsur  <dekelts@tau.ac.il>
515
516         * FontInfo.C (query): Ignore bogus matches of scalable fonts.
517
518 2002-10-08  Angus Leeming  <leeming@lyx.org>
519
520         * FeedbackController.C (PrehandlerCB):
521         * combox.C (show): use fl_get_winorigin in preference to
522         fl_get_wingeometry.
523
524 2002-10-14  Angus Leeming  <leeming@lyx.org>
525
526         * Tooltips.h (set) make it private:
527         * Tooltips.C (set): don't forget to initialise the FL_OBJECT!
528
529         * FormBase.C (show):
530         * FormBaseDeprecated.C (show): no longer invoke Tooltips::set().
531
532 2002-10-14  André Pönitz <poenitz@gmx.net>
533
534         * FormDocument.C: somebody else's fix for a hard lockup
535
536 2002-10-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
537
538         * xforms_helpers.C (formatted): fix small typo, spotted by Rob
539         Lahaye
540
541 2002-10-08  Dekel Tsur  <dekelts@tau.ac.il>
542
543         * FormRef.C (update): Always list the labels of the current buffer.
544
545 2002-10-07  Angus Leeming  <leeming@lyx.org>
546
547         * FormBase.C (hide):
548         * FormBaseDeprecated.C (hide): wrap that call to fl_hide_tooltip inside
549         #ifdef required xforms version.
550
551 2002-10-04  Angus Leeming  <leeming@lyx.org>
552
553         * form_graphics.fd: un-cripple dialog by reverting yesterday's change.
554
555         * FeedbackController.C (PrehandlerCB): reduce the necessary calcs to the
556         bare minimum.
557
558         * combox.[Ch]: the optional tabfolder args passed to the c-tor are
559         no longer necessary and are scrapped.
560         (show): use the same, minimal fix as in PrehandlerCB to ensure that
561         the form's x,y coords are up to date. In truth, this fix should be
562         redundant, but not all "enter" events are caught by the prehandler.
563
564         * FormDocument.C (build):
565         * FormPreferences.C (xyz::build): no longer pass the tabfolder to the
566         combox c-tor.
567
568 2002-10-03  Angus Leeming  <leeming@lyx.org>
569
570         * FeedbackController.C (PrehandlerCB): re-compute the folder->x,
571         folder->y coords of a tabfolder when the mouse enters the folder.
572         This works around an xforms bug that manifests itslf as tooltips
573         appearing in their original position after the dialog has been
574         moved aside.
575
576         * FormAboutlyx.C (build):
577         * FormDocument.C (build):
578         * FormGraphics.C (build):
579         * FormPreferences.C (build):
580         * FormTabular.C (build): set the prehandler for tabfolders.
581
582         * form_graphics.fd: move the edge of the tabfolder in by 5 pixels
583         to ensure that the tabfolder prehandler is called.
584
585 2002-10-03  Angus Leeming  <leeming@lyx.org>
586
587         * lyx_gui.C (start): ev.xany.type is of type 'int' so print it as a
588         decimal not a hexadecimal.
589
590         * FormBase.C (hide):
591         * FormBaseDeprecated.C (hide): ensure that tooltips are hidden along
592         with the dialog.
593
594 2002-09-30  Angus Leeming  <leeming@lyx.org>
595
596         * FormBase.[Ch]:
597         * FormBaseDeprecated.[Ch]:
598         (icon_pixmap_, icon_mask_) new member variables.
599         (prepare_to_show) new method, containing initialisation code invoked
600         the first time show() is called.
601         (d-tor) destroy icon_pixmap_, if it exists.
602         (show) ensure that the icon pixmap is generated only once.
603
604         * XFormsView.[Ch]:
605         (icon_pixmap_, icon_mask_) new member variables.
606         (d-tor) destroy icon_pixmap_, if it exists.
607         (create_form_form_main) assign the generated pixmap to the new
608         icon_pixmap_ member variable.
609
610 2002-09-26  Angus Leeming  <leeming@lyx.org>
611
612         * xscreen.h: don't #include "XWorkArea.h", forward-declare XWorkArea.
613
614 2002-09-25  Angus Leeming  <leeming@lyx.org>
615
616         * Dialogs2.C:
617         * Dialogs_impl.h:
618         * FormWrap.h:
619         * LyXKeySymFactory.C:
620         * LyXScreenFactory.C:
621         * Menubar_pimpl.[Ch]:
622         * Toolbar_pimpl.[Ch]:
623         * WorkAreaFactory.C:
624         * lyx_gui.C: doxygen fixes.
625
626 2002-09-25  Dekel Tsur  <dekelts@tau.ac.il>
627
628         * forms/form_wrap.fd: floatflt has no "Inner" placement option.
629         The possible placements are default/outer/left/right.
630
631 2002-09-24  Lars Gullik Bjønnes  <larsbj@gullik.net>
632
633         * Makefile.am (INCLUDES): loose SIGC_INCLUDES
634
635 2002-09-20  Martin Vermeer  <martin.vermeer@hut.fi>
636
637         * forms/form_maths_space.fd
638         * FormMathSpaces: remove access to internal macros \lyx*space
639
640 2002-09-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
641
642         * Toolbar_pimpl.C (layoutSelected): when selecting a layout in
643         combox, make sure the corresponding shortcut is shown in
644         minibuffer
645
646 2002-09-16  John Levon  <levon@movementarian.org>
647
648         * forms/form_character.fd: Escape to cancel
649
650 2002-09-13  Rob Lahaye  <lahaye@snu.ac.kr>
651
652         * forms/form_graphics.fd:
653         * forms/form_print.fd: minor polishing of layout
654
655 2002-09-12  Rob Lahaye  <lahaye@snu.ac.kr>
656
657         * FormGraphics.C: improve tooltips text
658
659         * forms/form_graphics.fd: cosmetic change in file tab
660
661 2002-09-12  Rob Lahaye  <lahaye@snu.ac.kr>
662
663         * FormTexinfo.C:
664         * forms/form_filedialog.fd:
665         * forms/form_texinfo.fd: less bulky xforms dialogs.
666
667 2002-09-12  Rob Lahaye  <lahaye@snu.ac.kr>
668
669         * FormPrint.[Ch]:
670         * forms/form_print.fd: new xforms print dialog layout
671
672 2002-09-10  Rob Lahaye  <lahaye@snu.ac.kr>
673
674         * FormGraphics.C: use "Default" as first item in Origin of rotation
675
676         * forms/form_graphics.fd: improved layout
677
678 2002-09-11  Angus Leeming  <leeming@lyx.org>
679
680         * FormInclude.C (update): remove lyxerr call.
681
682 2002-09-09  John Levon  <levon@movementarian.org>
683
684         * FormInclude.C:
685         * forms/form_include.fd: reorder, remove noload
686
687 2002-09-09  John Levon  <levon@movementarian.org>
688
689         * FormMathDeco.C: move latex_deco into ControlMath
690
691 2002-09-09  Rob Lahaye  <lahaye@snu.ac.kr>
692
693         * FormBase.C:
694         * FormBaseDeprecated.C: use "LyX: " prefix to dialog window title;
695         set minimized title (without "LyX: ") and its icon.
696
697         * FormSpellchecker.C:
698         * FormSearch.C:
699         * FormThesaurus.C: remove "LyX: " from dialog window title.
700
701         * FormRef.[Ch]: add proper switch for "Go to" button.
702
703         * FormBibitem.C:
704         * forms/form_bibitem.fd:
705         * FormCitation.C:
706         * forms/form_citation.fd:
707         * FormRef.C:
708         * forms/form_ref.fd:
709         * FormSpellchecker.[Ch]:
710         * forms/form_spellchecker.fd:
711         * forms/form_toc.fd:
712         * forms/form_url.fd: less bulky dialogs; use proper gravity and
713         resize policy; add few tooltips.
714
715 2002-09-06  Alain Castera  <castera@in2p3.fr>
716
717         * FormTabular.C: leave the horizontal alignment buttons alive
718           on fixed width columns
719
720 2002-09-05  Angus Leeming  <leeming@lyx.org>
721
722         * all files: modify the headers as discussed on the list.
723
724 2002-08-30  John Levon  <levon@movementarian.org>
725
726         * MathsCallbacks.h:
727         * forms/fdfix.sh: fix build from last change
728
729 2002-08-30  John Levon  <levon@movementarian.org>
730
731         * MathsSymbols.h:
732         * MathsSymbols.C:
733         * FormMathsPanel.h:
734         * FormMathsPanel.C: remove MathsSymbols to controllers/
735
736 2002-08-29  John Levon  <levon@movementarian.org>
737
738         * MathsSymbols.h:
739         * MathsSymbols.C:
740         * Toolbar_pimpl.C: use XPMs for toolbar instead of gook
741
742 2002-08-29  John Levon  <levon@movementarian.org>
743
744         * MathsSymbols.C: implement splitting for AMS. nrel
745           is broken
746
747 2002-08-29  John Levon  <levon@movementarian.org>
748
749         * MathsSymbols.C: fix two crash bugs
750
751 2002-08-28  Rob Lahaye  <lahaye@snu.ac.kr>
752
753         * forms/form_graphics.fd:
754         * FormGraphics.C: re-implement the use of text_warning box.
755
756         * forms/form_preferences.fd:
757         * FormPreferences.C: use displayTranslator, change display mode
758         from four radio buttons into one choice button.
759
760         * FormBibtex.C: fix SIGSEGV with [Choose] when no style is selected.
761
762 2002-08-24  John Levon  <levon@movementarian.org>
763
764         * xformsImage.C: fix build, add FIXME for Rob
765
766 2002-08-23  Rob Lahaye  <lahaye@snu.ac.kr>
767
768         * FormGraphics.[Ch]:
769         * forms/form_graphics.fd: Implement new graphics dialog
770
771         * FormPreferences.C: use display_graphics "monochrome|grayscale|none"
772         instead of "mono|gray|no".
773
774 2002-08-22  John Levon  <levon@movementarian.org>
775
776         * xfont_loader.C: show name of failed font load (from Mikhail Teterin)
777
778 2002-08-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
779
780         * FormMathsBitmap.h: include boost/shared_ptr.hpp, remove include
781         for support/smart_ptr.h, change use of smart ptr to boost version
782
783         * FormMathsBitmap.C (FormMathsBitmap): do not initialize form_ (it
784         is a smart_ptr)
785         (build): use nifty 3rd arg of smart_ptr
786         (addBitmap): ditto
787
788 2002-08-20  John Levon  <levon@movementarian.org>
789
790         * lyx_gui.C: estimate default DPI
791
792 2002-08-16  Angus Leeming  <leeming@lyx.org>
793
794         * Dialogs.C:
795         * Dialogs2.C:
796         * Dialogs_impl.h: use the qt2 scheme of vars not pointer to vars.
797
798         * Dialogs3.C: removed.
799
800 2002-08-16  Angus Leeming  <leeming@lyx.org>
801
802         * Tooltips.C (c-tor): don't forget the "#ifdef crap xforms" code next
803         time, old boy.
804
805 2002-08-16  Michael Schmitt <Michael.Schmitt@teststep.org>
806
807         * FormRef.C (update): Synchronise the buffer choice and the list of
808         labels if the dialog is re-opened.
809
810 2002-08-15  Angus Leeming  <leeming@lyx.org>
811
812         * Dialogs.C:
813         * Dialogs2.C:
814         * Dialogs3.C:
815         * Dialogs_impl.h: the brave new world of Dialog creation.
816
817         * FormBaseDeprecated.C:
818         * FormFiledialog.C:
819         * XFormsView.C: Dialogs::redrawGUI is now a method not a signal.
820
821         * guiapi.C: discard.
822
823         * Makefile.am: add new files Dialogs[23].C Dialogs_impl.h and
824         remove guiapi.C.
825
826 2002-08-15  Angus Leeming  <leeming@lyx.org>
827
828         * lots: changed my email address to leeming@lyx.org.
829
830         * FormBaseDeprecated.[Ch]: return it to private derivation from
831         boost::noncopyable.
832
833         * FormBaseDeprecated.[Ch]:
834         * FormDocument.[Ch]:
835         * FormInset.[Ch]:
836         * FormMaths*.[Ch]:
837         * FormPreferences.[Ch]:
838         * FormTabular.[Ch]:
839         pass and store references to LyXView and Dialogs, not pointers.
840
841         * FormInset.[Ch]: remove class FormCommand.
842
843 2002-08-14  Angus Leeming  <leeming@lyx.org>
844
845         * FormBaseDeprecated.h: public derivation from boost::noncopyable.
846
847         * forms/form_document.fd: remove declaration of file 'psnfss2.xpm'
848
849 2002-08-14  Angus Leeming  <leeming@lyx.org>
850
851         * FormBaseDeprecated.h: no longer derives from DialogBase, but instead
852         derives directly from boost::noncopyable.
853         (show): made public.
854
855         * FeedbackController.h: rearrange #includes.
856
857         * FormDocument.C:
858         * FormMathsDeco.C:
859         * FormMathsDelim.C:
860         * FormMathsMatrix.C:
861         * FormMathsPanel.C:
862         * FormTabular.C: remove #include "Dialogs.h"
863
864         * FormMathsBitmap.C: remove #include "Dialogs.h", "LyXView.h".
865
866         * FormPreferences.C: rearrange #includes.
867
868         * FormTabular.h (showInset, updateInset): make public.
869
870         * FormDocument.C (build): enable the bmtable to find the right file!
871
872         * guiapi.C (gui_ShowInfo): removed.
873
874 2002-08-13  André Poenitz  <poenitz@gmx.net>
875
876         * Toolbar_pimpl.C: small cleanup
877
878 2002-08-13  Angus Leeming  <leeming@lyx.org>
879
880         * FileDialog.C:
881         * FormMathsDelim.C:
882         * FormMathsMatrix.C:
883         * FormMathsPanel.C:
884         * FormPreferences.C:
885         * Menubar_pimpl.C:
886         * Toolbar_pimpl.C:
887         * XFormsView.C:
888         * lyx_gui.C:
889         changes due to the changed LyXView interface that now returns references
890         to member variables not pointers.
891
892 2002-08-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
893
894         * Menubar_pimpl.C (create_submenu): fix code to disable submenu
895         entries.
896
897 2002-08-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
898
899         * FormDocument.C (saveParamsAsDefault): use proper constructment
900
901 2002-08-12  Angus Leeming  <leeming@lyx.org>
902
903         * FormCitation.C:
904         * FromRef.C: change due to change of ControlConnections method name,
905         isReadonly() -> bufferIsReadonly().
906
907         * FormIndex.C:
908         * FormPrint.C: no longer #include "frontends/LyXView.h".
909
910 2002-08-12  Angus Leeming  <leeming@lyx.org>
911
912         * Dialogs.C (c-tor): connect the Tooltips::toggleEnabled method to
913         the Dialogs::toggleTooltips signal.
914
915         * FormAboutlyx.[Ch]:
916         * FormBibitem.[Ch]:
917         * FormBibtex.[Ch]:
918         * FormBrowser.[Ch]:
919         * FormCharacter.[Ch]:
920         * FormCitation.[Ch]:
921         * FormERT.[Ch]:
922         * FormError.[Ch]:
923         * FormExternal.[Ch]:
924         * FormFloat.[Ch]:
925         * FormForks.[Ch]:
926         * FormGraphics.[Ch]:
927         * FormInclude.[Ch]:
928         * FormIndex.[Ch]:
929         * FormLog.[Ch]:
930         * FormMinipage.[Ch]:
931         * FormParagraph.[Ch]:
932         * FormPreamble.[Ch]:
933         * FormPrint.[Ch]:
934         * FormRef.[Ch]:
935         * FormSearch.[Ch]:
936         * FormSendto.[Ch]:
937         * FormShowFile.[Ch]:
938         * FormSpellchecker.[Ch]:
939         * FormTabularCreate.[Ch]:
940         * FormTexinfo.[Ch]:
941         * FormThesaurus.[Ch]:
942         * FormToc.[Ch]:
943         * FormURL.[Ch]:
944         * FormVCLog.[Ch]:
945         No longer pass Controller or Dialogs to the c-tor.
946         No longer forward-declare Dialogs.
947
948         * FormBase.[Ch]: derives from ViewBase directly.
949         No longer passed ControlButtons & or Dialogs &.
950         (bc): new method, enabling the daughter classes to access the
951         ButtonController.
952         (C_FormBaseApplyCB):
953         (C_FormBaseOKCB):
954         (C_FormBaseCancelCB):
955         (C_FormBaseRestoreCB):
956         (C_WMHideCB): changes due to a change in the ViewBase class.
957
958         * Toolbar_pimpl.[Ch] (c-tor):
959         * Tooltips.[Ch] (c-tor): no longer passed a Dialogs &.
960
961         * Tooltips.h (toggleEnabled): made public for the Dialogs c-tor.
962
963         * XFormsView.[Ch] (c-tor, create_form_form_main): no longer pass
964         Dialogs & to the Toolbar.
965
966         * guiapi.C: access the controller methods by explicit invocation of the
967         controller.
968
969 2002-08-12  Lars Gullik Bjønnes  <larsbj@gullik.net>
970
971         * FormDocument.C (saveParamsAsDefault): ParagraphList changes
972         (class_apply): ditto
973
974 2002-08-08  John Levon  <levon@movementarian.org>
975
976         * Menubar_pimpl.C:
977         * Toolbar_pimpl.C: lyxaction cleanup
978
979 2002-08-08  John Levon  <levon@movementarian.org>
980
981         * forms/form_thesaurus.fd: allow Esc to close dialog
982
983 2002-08-02  Angus Leeming  <leeming@lyx.org>
984
985         * FormInclude.C:
986         * forms/form_include.fd: added a check_preview button and controlling
987         logic. The user can now choose to preview a \input-ed file.
988
989 2002-08-02  Angus Leeming  <leeming@lyx.org>
990
991         * FormTabular.C (input):
992         * XMiniBuffer.C (show_info): changes due to LyXView::view() now
993         returning a boost::shared_ptr.
994
995 2002-08-01  John Levon  <levon@movementarian.org>
996
997         * FormDocument.C: writeFile() change
998
999 2002-08-01  John Levon  <levon@movementarian.org>
1000
1001         * FormPreferences.h:
1002         * FormPreferences.C:
1003         * guiapi.C:
1004         * forms/form_spellchecker.fd: remove options from spellchecker
1005
1006 2002-07-30  John Levon  <levon@movementarian.org>
1007
1008         * lyx_gui.C: implement remove_read_callback()
1009
1010 2002-07-26  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1011
1012         * XWorkArea.C (work_area_handler): change type of
1013         scrollbar_value_old to double
1014
1015 2002-07-29  Lars Gullik Bjønnes  <larsbj@gullik.net>
1016
1017         * several files: strip,frontStrip -> trim,ltrim,rtrim
1018
1019 2002-07-25  John Levon  <levon@movementarian.org>
1020
1021         * lyx_gui.C:
1022         * XWorkArea.C: using dec
1023
1024 2002-07-25  Juergen Spitzmueller <j.spitzmueller@gmx.de>
1025
1026         * FormFloat.C: Fixed and better GUI-logic
1027
1028 2002-07-25  André Pönitz <poenitz@gmx.net>
1029
1030         * lyx_gui.C:
1031         * XWorkArea.C: add 'dec' to switch back to decimal output
1032
1033 2002-07-25  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1034
1035         * Menubar_pimpl.C: do not include "toc.h" and "FloatList.h".
1036         (create_submenu): add parameter ``all_disabled'' which will be
1037         false only if the menu contains at least one working item. Disable
1038         submenus who have all_disabled true. What I could not do, though
1039         is disable menubar items when all the menu is disabled (because I
1040         know about it only when I try to open this menu)
1041
1042 2002-07-25  Herbert Voss  <voss@perce.de>
1043
1044         * FormBibtex.C (update): clear browser first
1045
1046 2002-07-25  Juergen Vigna  <jug@sad.it>
1047
1048         * XWorkArea.C (work_area_handler): set y_old and x_old to some
1049         values in the MOUSE or DRAG even.
1050
1051 2002-07-25  John Levon  <levon@movementarian.org>
1052
1053         * forms/form_float.fd: "Span columns"
1054
1055 2002-07-25  Juergen Spitzmueller <j.spitzmueller@gmx.de>
1056
1057         * FormFloat.C:
1058         * forms/form_float.fd: Implement default placement checkbox;
1059         some minor tweaks
1060
1061 2002-07-25  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1062
1063         * Menubar_pimpl.C (create_submenu): add the code for splitting too
1064         long menus here. Remove call to add_toc.
1065
1066         * Menubar_pimpl.C (add_toc):
1067         (add_toc2): remove. This code is now in MenuBackend; now, all the
1068         frontend has to do is to support the item kinds Command, Submenu
1069         and Separator. The rest is done transparently.
1070
1071 2002-07-24  Juergen Spitzmueller <j.spitzmueller@gmx.de>
1072
1073         * FormFloat.C:
1074         * forms/form_float.fd: Implement Wide Float toggle and !-option;
1075         disable h and b with wide floats
1076
1077 2002-07-24  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1078
1079         * Menubar_pimpl.C (create_submenu): updates due to changes in
1080         menubackend.
1081
1082 2002-07-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1083
1084         * XMiniBuffer.h: add connection objects, and use them
1085         * XMiniBuffer.C (XMiniBuffer): here and
1086         (dd_init): here
1087
1088         * XFormsView.h: add connection objects, use them
1089         * XFormsView.C (XFormsView): here
1090
1091 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
1092
1093         * XFormsView.C: don't call toolbar_->set()
1094
1095         * Toolbar_pimpl.h:
1096         * Toolbar_pimpl.C: rationalise code, remove half-working
1097           update stuff into simple add()
1098
1099 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
1100
1101         * lyx_gui.C: add lyx_gui::exit()
1102
1103 2002-07-22  John Levon  <moz@compsoc.man.ac.uk>
1104
1105         * Toolbar_pimpl.h:
1106         * Toolbar_pimpl.C: remove ->push()
1107
1108 2002-07-22  Herbert Voss  <voss@lyx.org>
1109
1110         * FormGraphics.C: add tooltips, changesize_type to size_kind.
1111         some rearrangements to the code
1112
1113 2002-07-21  John Levon  <moz@compsoc.man.ac.uk>
1114
1115         * FormToc.C: std:: fix
1116
1117 2002-07-21  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1118
1119         * Menubar_pimpl.h: do not include "MenuBackend.h" and "commandtags.h"
1120
1121         * Toolbar_pimpl.h: do not include "combox.h", "ToolbarDefaults.h"
1122         and "commandtags.h"
1123
1124         * Toolbar_pimpl.C: use BufferParams::getLyXTextClass
1125
1126         * FormSendto.C:
1127         * FormParagraph.C:
1128         * FormMinipage.C:
1129         * FormGraphics.C:
1130         * FormForks.C:
1131         * FormCitation.C:
1132         * DropDown.C: update to use new getString and getVector
1133
1134         * xforms_helpers.[Ch]: replace getVectorFromChoice and
1135         getVectorFromBrowser by getVector; replace getStringFromInput,
1136         getStringFromBrowser and getSelectedStringFromBrowser with
1137         getString, which works with input, choice and browser objects
1138
1139         * Menubar_pimpl.C:
1140         * FormToc.C: update to use new toc.[Ch]
1141
1142 2002-07-21  John Levon  <moz@compsoc.man.ac.uk>
1143
1144         * XFormsView.C: move autosave timer to LyXView.C
1145
1146 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1147
1148         * Menubar_pimpl.[Ch]: remove support for multiple menubars
1149
1150 2002-07-20  John Levon  <moz@compsoc.man.ac.uk>
1151
1152         * XMiniBuffer.h:
1153         * XMiniBuffer.C: cleanup, make start/end history work as before
1154
1155 2002-07-20  John Levon  <moz@compsoc.man.ac.uk>
1156
1157         * FormMathsDelim.C:
1158         * FormMathsMatrix.C: fix dispatch calls nicely
1159
1160 2002-07-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1161
1162         * Menubar_pimpl.C (add_toc): avoid crash when there is no document
1163         open
1164
1165         * Menubar_pimpl.[Ch]: turn owner_ into a XFormsView, to avoid casting
1166
1167 2002-04-28  Herbert Voss  <voss@perce.de>
1168
1169         * FormGraphics.C:
1170         * forms/form_graphics.fd: add a new check button for LyXAspectRatio.
1171
1172 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
1173
1174         * DropDown.h:
1175         * DropDown.C: remove unneeded LyXView *
1176
1177         * XFormsView.h:
1178         * XFormsView.C: changes for minibuffer rework
1179
1180         * XMiniBuffer.h:
1181         * XMiniBuffer.C: use ControlCommandBuffer. Move relevant
1182           old code to here
1183
1184         * lyx_gui.C: add FIXME
1185
1186 2002-07-19  John Levon  <moz@compsoc.man.ac.uk>
1187
1188         * FormMathsDelim.C:
1189         * FormMathsMatrix.C: fix dispatch calls
1190
1191 2002-07-18  John Levon  <moz@compsoc.man.ac.uk>
1192
1193         * Menubar_pimpl.C:
1194         * Toolbar_pimpl.C:
1195         * lyx_gui.C:
1196         * XformsView.C: remove initMiniBuffer(), verboseDispatch()
1197
1198         * xfont_loader.C: remove call to messagePush(),Pop()
1199
1200 2002-07-17  Dekel Tsur  <dekelts@tau.ac.il>
1201
1202         * FormFiledialog.C: Add missing #include
1203
1204 2002-07-17  Angus Leeming  <leeming@lyx.org>
1205
1206         * xformsImage.C (init_graphics): disable direct loading of PostScript
1207         files. It's more effort than it's worth.
1208
1209 2002-07-17  André Pönitz <poenitz@gmx.net>
1210
1211         * FormPreferences.C: add help for $$s feature, lots of stupid "code
1212          beautifying"
1213
1214 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
1215
1216         * FormPreferences.C:
1217         * forms/form_preferences.fd: remove 2nd exit confirmation
1218
1219 2002-07-17  John Levon  <moz@compsoc.man.ac.uk>
1220
1221         * XFormsView.h:
1222         * XFormsView.C: hook up view_state_changed
1223
1224 2002-07-16  Angus Leeming  <leeming@lyx.org>
1225
1226         * XPainter.C: add some #ifdef ugliness to enable the home grown image
1227         loader to work too.
1228
1229 2002-07-16  André Pönitz <poenitz@gmx.net>
1230
1231         * FormFiledialog.[Ch]: rename member variables, rewrite some functions
1232
1233 2002-07-15  John Levon  <moz@compsoc.man.ac.uk>
1234
1235         * xformsImage.h:
1236         * xformsImage.C: add isDrawable()
1237
1238         * XPainter.C: use static cast to xformsImage
1239
1240 2002-07-14  Angus Leeming  <leeming@lyx.org>
1241
1242         * lyx_gui.C (C_read_callback): give it extern "C" linkage.
1243
1244 2002-07-14  John Levon  <moz@compsoc.man.ac.uk>
1245
1246         * lyx_gui.C: add set_read_callback()
1247
1248 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
1249
1250         * lyx_gui.C: move init_graphics() into setup
1251
1252 2002-07-12  Angus Leeming  <leeming@lyx.org>
1253
1254         * xformsImage.C (width): apply fudge irrespective of library version.
1255
1256 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
1257
1258         * Toolbar_pimpl.h:
1259         * Toolbar_pimpl.C: remove unused (de)activate()
1260
1261 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
1262
1263         * lyx_gui.C: implement update_fonts(), font_available()
1264
1265 2002-07-12  John Levon  <moz@compsoc.man.ac.uk>
1266
1267         * lyx_gui.C: add update_color()
1268
1269 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
1270
1271         * FormPreferences.C:
1272         * forms/form_preferences.fd: remove file->new asks for name
1273
1274 2002-07-11  John Levon  <moz@compsoc.man.ac.uk>
1275
1276         * XWorkArea.h:
1277         * XWorkArea.C: do a copy area on redraw when no geometry change
1278
1279 2002-07-11  Herbert Voss  <voss@perce.de>
1280
1281         * FormGraphics.C (input): test also the height for %-value, when
1282         importing the latex-value into the lyx-view
1283
1284 2002-07-10  Andrew Zabolotny  <zap@cobra.ru>
1285
1286         * XMiniBuffer.C (peek_event):
1287         * combox.C (peek_event):
1288         * DropDown.C (peek): support keypad keys
1289
1290 2002-07-09  John Levon  <moz@compsoc.man.ac.uk>
1291
1292         * xscreen.C: add const
1293
1294 2002-07-09  Angus Leeming  <leeming@lyx.org>
1295
1296         * xformsImage.C (scale): use boost::tie.
1297         (width): fudge to fix bug in image width for xforms <= 0.89.6.
1298
1299 2002-07-08  Angus Leeming  <leeming@lyx.org>
1300
1301         * forms/fdfix.sh: whitespace.
1302
1303 2002-07-05  Angus Leeming  <leeming@lyx.org>
1304
1305         * lyx_gui.C (hexname): new function.
1306
1307 2002-07-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1308
1309         * lyx_gui.C (init_graphics): boost::function assign, not
1310         boost::signal connect.
1311
1312         * combox.C (Combox): what remove does is now done implicitly from
1313         XFormsView destructor.
1314
1315         * XMiniBuffer.C (peek_event): comment last arg to avoid warning.
1316
1317         * XFormsView.h: form_ is now a raw pointer not a scoped_ptr.
1318
1319         * XFormsView.C (XFormsView): hide and free form_
1320         (getForm): raw pointer return
1321         (create_form_form_main): raw pointer set
1322
1323         * Toolbar_pimpl.C (toolbarItem): whet clean does is now done
1324         implicitly from XFormsView destructor.
1325
1326 2002-07-04  André Pönitz <poenitz@gmx.net>
1327
1328         * FormInset.[Ch]: reduce #include depencies
1329
1330         * guiapi.C: suppress compiler warning
1331
1332 2002-06-27  Juergen Spitzmueller <j.spitzmueller@gmx.de>
1333
1334         * FormInclude.C: Comment out unneeded and wrong update mechanism
1335         (related to bug #459)
1336         *forms/form_include.fd: define missing callbacks (bug #459)
1337
1338 2002-07-03  Vitaly Lipatov  <LAV@VL3143.spb.edu>
1339
1340         * FormDocument.C (build): add pt154 encoding
1341
1342 2002-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1343
1344         * Tooltips.C (Tooltips): add Dialogs to constructor arg.
1345
1346 2002-07-01  Angus Leeming  <leeming@lyx.org>
1347
1348         * forma/Makefile.am: keep "make clean" consistent with Kayvan's fix.
1349
1350 2002-07-01  Kayvan A. Sylvan  <kayvan@sylvan.com>
1351
1352         * forms/fdfix.sh: fix compilation failure on WinXP.
1353
1354 2002-06-28  Angus Leeming  <leeming@lyx.org>
1355
1356         * XPainter.[Ch]: changes associated with the name change
1357         grfx::GImage -> grfx::Image.
1358
1359         * xformsGImage.[Ch]: deleted.
1360         * xformsImage.[Ch]: new files, reflecting changed class name.
1361
1362         * Makefile.am:
1363         * lyx_gui.C: associated changes.
1364
1365 2002-06-27  Juergen Spitzmueller <j.spitzmueller@gmx.de>
1366
1367         * FormPreferences.C
1368         * forms/formPreferences.fd: Add a checkbox for Andrés new toy (preview)
1369
1370 2002-06-26  Angus Leeming  <leeming@lyx.org>
1371
1372         * xformsGImage.C (load, setPixmap): changes aassociated with moving
1373         grfx::DisplayType out of grfx::GParams.
1374
1375 2002-06-25  Angus Leeming  <leeming@lyx.org>
1376
1377         * FormPreferences.C (LnFmisc::apply): Comment out the call to
1378         grfx::GCache::changeDisplay. The method no longer exists now that the
1379         pixmap generation part of the graphics loader has been moved into
1380         InsetGraphics.
1381
1382 2002-06-24  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1383
1384         * Toolbar_pimpl.C: layout as layout
1385
1386 2002-06-21  Angus Leeming  <leeming@lyx.org>
1387
1388         * xscreen.C: add a using std::endl directive.
1389
1390 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
1391
1392         * FormPreferences.h:
1393         * FormPreferences.C:
1394         * forms/form_preferences.fd: remove show_banner, display_shortcuts
1395
1396 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
1397
1398         * XWorkArea.h:
1399         * XWorkArea.C: remove splash, should be handled in
1400           LyXScreen::greyOut()
1401
1402 2002-06-21  John Levon  <moz@compsoc.man.ac.uk>
1403
1404         * forms/form_texinfo.fd: "Update List" not "Rescan"
1405
1406 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
1407
1408         * guiapi.C: createIndex() changed
1409
1410 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
1411
1412         * FormBibtex.C: use new lyx::eliminate_duplicates
1413
1414 2002-06-20 Herbert Voss  <voss@perce.de>
1415
1416         * FormBibtex.C:
1417         * forms/form_bibtex.fd: give better support for choosing the
1418         bibstyle (new browserfield with the available bibstyles).
1419         move some code of ControlTexinfo into a helper
1420         file support/tex-helpers to use some of the functions
1421
1422 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
1423
1424         * XWorkArea.h:
1425         * XWorkArea.C: remove unused code, name change
1426
1427 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
1428
1429         * XLyXKeySym.h:
1430         * XLyXKeySym.C: whitespace
1431
1432 2002-06-20  John Levon  <moz@compsoc.man.ac.uk>
1433
1434         * XWorkArea.h: remove focus stuff, greyOut()
1435
1436 2002-06-19  John Levon  <moz@compsoc.man.ac.uk>
1437
1438         * XWorkArea.C: remove focus/unfocus events
1439
1440 2002-06-19  John Levon  <moz@compsoc.man.ac.uk>
1441
1442         * XWorkArea.h: remove unused methods
1443
1444 2002-06-15  Martin Vermeer  <martin.vermeer@hut.fi>
1445
1446         * FormMathsDelim.C: Redesign of Delimiters dialogue in mathed.
1447           Cleaner, smaller.
1448
1449 2002-06-19  John Levon  <moz@compsoc.man.ac.uk>
1450
1451         * XWorkArea.h: remove unused width()
1452
1453 2002-06-18  John Levon  <moz@compsoc.man.ac.uk>
1454
1455         * guiapi.C: fix compile with libAiksaurus
1456
1457 2002-06-17  Herbert Voss  <voss@perce.de>
1458
1459         * forms/.cvsignore: ignore the *.lo files
1460
1461 2002-06-18  John Levon  <moz@compsoc.man.ac.uk>
1462
1463         * FormSearch.h:
1464         * FormSearch.C: focus and select search string on open (bug #77)
1465
1466 2002-06-16  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1467
1468         * changes to let the function setup happen in frontends
1469
1470         * guiapi.C: new file
1471
1472 2002-06-16    <alstrup@diku.dk>
1473
1474         * xscreen.C (draw): After drawing, we wait for X with XSync..
1475
1476         * XWorkArea.[Ch]: Xforms implementation of GUII WorkArea.
1477
1478         * XPainter.[Ch]: Use XWorkArea instead of WorkArea.
1479
1480         * xscreen.[Ch]: Use XWorkArea instead of WorkArea.
1481
1482         * WorkAreaFactory.C: New file for GUII WorkArea.
1483
1484         * LyXScreenFactory.C: WorkArea GUIIized.
1485
1486 2002-06-15  Lyx Development team  <larsbj@birdstep.com>
1487
1488         * LyXKeySymFactory.C: Added XForms implementation.
1489
1490         * XLyXKeySym.[Ch]: Added XForms implementation of the LyXKeySym
1491         stuff.
1492
1493         * XWorkArea.[Ch]: Use LyXKeySym in signal interface for keypress.
1494
1495 2002-06-14  Lyx Development team  <lyx@electronia>
1496
1497         * LyXScreenFactory.C: Implementation for XForms.
1498
1499         * xscreen.[Ch]: Added implementation of LyXScreen for XForms,
1500         called XScreen (surprise!).
1501
1502 2002-06-14  Angus Leeming  <leeming@lyx.org>
1503
1504         * forms/Makefile.am: make the .Ch files dependent on the fdfix files.
1505
1506         * fdfix.sh: test whether "fdesign -convert file.fd" succeeds and
1507         if not, exit gracefully.
1508         Test whether the newly generated .h file is different from the existing
1509         one and if not discard it to prevent unnecessary recompilation in the
1510         xforms directory.
1511
1512 2002-06-14  Angus Leeming  <leeming@lyx.org>
1513
1514         * FormPreferences (XYZ::build): pass "&parent_" to build_xyz, not
1515         "this", ro we'll get a crash following FormBaseDeprecated's
1516         C_PrehandlerCB cast of ob->form->u_vdata to FormBaseDeprecated *.
1517
1518         This is the only form in which all the folders are not built in the
1519         parent class direct, so this is the only one that should suffer from
1520         this bug.
1521
1522 2002-06-12  Angus Leeming  <leeming@lyx.org>
1523
1524         * form_*.[Ch]: removed from the repository.
1525         * forms/Makefile.am:
1526         * forms/fdfix.sh: changes to generate form_*.[Ch] automatically.
1527
1528         * forms/form_*.fd: use a consistent naming convention for the fdesign
1529         generated FD_xyz structs. For example, form_aboutlyx.h now contains:
1530         struct FD_aboutlyx;
1531         struct FD_aboutlyx_version;
1532         struct FD_aboutlyx_credits;
1533         struct FD_aboutlyx_license;
1534
1535         * forms/fdfix[ch].sed: no longer write the build routines for the
1536         fdesign generated FD_xyz structs as member methods of the controlling
1537         FormXyz class. It's unnecessary and needs patch files in addition to
1538         the sed magic to work properly. Thus, the structs above are now
1539         generated by routines
1540         FD_aboutlyx * build_aboutlyx(void *);
1541         FD_aboutlyx_version * build_aboutlyx_version(void *);
1542         FD_aboutlyx_credits * build_aboutlyx_credits(void *);
1543         FD_aboutlyx_license * build_aboutlyx_license(void *);
1544
1545         * forms/README: document all the above.
1546
1547         * forms_fwd.h: new file to forward declare FL_OBJECT, FL_FORM.
1548
1549         * forms_gettext.[Ch]: new files containing only the scex, idex functions
1550         stored previously in xforms_helpers.[Ch].
1551
1552         * xforms_helpers.[Ch]: removed scex, idex functions.
1553
1554         * Most other files: minor changes associated with the above.
1555
1556 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
1557
1558         * XWorkArea.h:
1559         * XWorkArea.C: move scrolling logic into here
1560
1561         * ColorHandler.h:
1562         * ColorHandler.C:
1563         * XPainter.h:
1564         * XPainter.C: remove unused stuff, s/PainterBase/Painter/,
1565         s/Painter/XPainter/
1566
1567 2002-06-12  Angus Leeming  <leeming@lyx.org>
1568
1569         * lyx_gui.C (parse_init): exit isn't in namespace lyx_gui!
1570
1571 2002-06-12  Angus Leeming  <leeming@lyx.org>
1572
1573         * FormParagraph.C: include ParagraphParameters.h now that
1574         ParagraphParameters is forward declared in ControlParagraph.h.
1575
1576 2002-05-24  Martin Vermeer  <martin.vermeer@hut.fi>
1577
1578         * FormMathsDelim.C: fix delimiter pre-display rendering
1579           mess-up bug (354)
1580
1581 2002-06-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1582
1583         * xformsGImage.h: do not rely on FLIMAGE_H_LOCATION anymore
1584
1585 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
1586
1587         * XFormsView.h:
1588         * XFormsView.C: move init() back to LyXView
1589
1590 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
1591
1592         * GUIRunTime.C: remove in favour of ...
1593
1594         * Makefile.am:
1595         * lyx_gui.C: ... GUI startup namespace
1596
1597         * XFormsView.h:
1598         * XFormsView.C: change show() prototype
1599
1600         * XPainter.C:
1601         * xfont_loader.C: don't use GUIRunTime any more
1602
1603 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
1604
1605         * ColorHandler.C:
1606         * FontInfo.h:
1607         * FormBase.C:
1608         * FormBaseDeprecated.C:
1609         * MathsSymbols.C:
1610         * Menubar_pimpl.C: minor cleanups
1611
1612 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
1613
1614         * xformsGImage.C:
1615         * FontInfo.h:
1616         * FontInfo.C: some cleanup
1617
1618         * XWorkArea.C:
1619         * XFormsView.h:
1620         * XFormsView.C: some minor cleanup, use of
1621           scoped_ptr
1622
1623         * xfont_loader.h:
1624         * xfont_loader.C: rename
1625
1626 2002-06-12  John Levon  <moz@compsoc.man.ac.uk>
1627
1628         * XWorkArea.h:
1629         * XWorkArea.C: use workHeight(), remove enter/leaveView
1630
1631 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
1632
1633         * XWorkArea.h:
1634         * XWorkArea.C: remove belowMouse() and active()
1635
1636 2002-06-11  John Levon  <moz@compsoc.man.ac.uk>
1637
1638         * xfont_metrics.h:
1639         * xfont_metrics.C:
1640         * XPainter.C: X-specific metrics stuff moved into xforms/ only
1641
1642 2002-06-11  Edwin Leuven  <leuven@fee.uva.nl>
1643
1644         * FormParagraph.[Ch]: moved to mvc
1645         * form_paragraph.[Ch]: idem
1646         * forms/form_paragraph.fd: idem
1647         * Dialogs.C: idem
1648
1649 2002-06-06  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1650
1651         * GUIRunTime.C (initialiseGraphics): condition the choice of
1652         loader on USE_XFORMS_IMAGE_LOADER
1653
1654         * xformsGImage.C (init_graphics): do not initialize jpeg support
1655         if not available
1656
1657 2002-06-05  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1658
1659         * xformsGImage.h: use FLIMAGE_H_LOCATION to include flimage.h.
1660
1661 2002-06-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1662
1663         * FormMathsPanel.C: do not include ButtonController.tmpl
1664         * FormPreferences.C: ditto
1665         * xformsBC.C: ditto
1666
1667         * FormBase.h (controller): remove ViewBase:: prefix
1668
1669 2002-06-07  Angus Leeming  <leeming@lyx.org>
1670
1671         Fixes needed to compile with Compaq cxx 6.5.
1672         * ColorHandler.C:
1673         * DropDown.C:
1674         * FormThesaurus.C:
1675         all c-library variables have been moved into namespace std.
1676         Wrap using std::xyz declarations inside a #ifndef CXX_GLOBAL_CSTD block.
1677
1678         * XFormsView.C: add a using std::abs directive.
1679
1680         * FormBase.h (FormCB::controller): I have had to prefix base class
1681         methods with Base:: Wierd!
1682
1683 2002-06-04  John Levon  <moz@compsoc.man.ac.uk>
1684
1685         * xformsGImage.h: an xforms build fix
1686
1687 2002-06-02  Michael A. Koziarski  <michael@koziarski.com>
1688
1689         * Tooltips.C: fix some sigc++ -> boost errors.
1690
1691 2002-06-02  John Levon  <moz@compsoc.man.ac.uk>
1692
1693         * GUIRunTime.C:
1694         * XFormsView.C:
1695         * XWorkArea.C:
1696         * xforms_resize.C:
1697         * xformsGImage.h: fixes for xforms 1.0 version
1698           checking
1699
1700 2002-05-10  Herbert Voss  <voss@perce.de>
1701
1702         * FormInclude.C (input, update): disable load-button when
1703         "use verbatim" is enabled
1704
1705 2002-05-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1706
1707         * FileDialog.C (FileDialog): fix () bug when using new
1708         * xformsGImage.C (newImage): ditto
1709         * Toolbar_pimpl.C (Pimpl): ditto
1710         * xfont_loader.C (getFontinfo): ditto
1711
1712 2002-05-29  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1713
1714         * switch from SigC signals to boost::signals.
1715
1716         * Dialogs.C (Dialogs): simplify creation of dialog objects a bit.
1717
1718 2002-05-28  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
1719
1720         * FormDocument.C (input): set preamble too when saving default
1721         template.
1722
1723 2002-05-26  John Levon  <moz@compsoc.man.ac.uk>
1724
1725         * Makefile.am:
1726         * XWorkArea.h:
1727         * XWorkArea.C: moved here
1728
1729 2002-05-24  John Levon  <moz@compsoc.man.ac.uk>
1730
1731         * ColorHandler.h:
1732         * ColorHandler.C:
1733         * FontInfo.h:
1734         * FontInfo.C: moved here
1735
1736         * xfont_loader.h:
1737         * xfont_loader.C: moved here
1738
1739         * Makefile.am:
1740         * xfont_metrics.C: changes from above
1741
1742 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
1743
1744         * Makefile.am:
1745         * XPainter.C:
1746         * xfont_metrics.h:
1747         * xfont_metrics.C: moved font metrics code
1748
1749 2002-05-24  Juergen Vigna  <jug@sad.it>
1750
1751         * FormMathsBitmap.C: include local includes first (selfcontainment)
1752         * FormMathsBitmap.h: include LString.h first.
1753
1754 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
1755
1756         * XFormsView.C:
1757         * lyxlookup.h:
1758         * lyxlookup.C:
1759         * Makefile.am: move here
1760
1761 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
1762
1763         * DropDown.h:
1764         * FileDialog.C:
1765         * FormBaseDeprecated.C:
1766         * FormDocument.C:
1767         * FormIndex.C:
1768         * FormInset.C:
1769         * FormMathsBitmap.C:
1770         * FormMathsDelim.C:
1771         * FormMathsMatrix.C:
1772         * FormMathsPanel.C:
1773         * FormParagraph.C:
1774         * FormPreferences.C:
1775         * FormPrint.C:
1776         * FormTabular.C:
1777         * Makefile.am:
1778         * XFormsView.h:
1779         * XFormsView.C: LyXView is now in frontends/,
1780         XFormsView moved to here
1781
1782 2002-05-23  John Levon  <moz@compsoc.man.ac.uk>
1783
1784         * Makefile.am:
1785         * XPainter.h:
1786         * XPainter.C: move Painter here
1787
1788 2002-05-22  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1789
1790         * Menubar_pimpl.C: add scoped_ptr.hpp
1791
1792         * FormPrint.h: remove smart_ptr.hpp
1793
1794         * FormBase.h: use more specific smart_ptr header
1795         * FormCharacter.h: ditto
1796         * FormMathsStyle.h: ditto
1797         * FormAboutlyx.h: ditto
1798         * Menubar_pimpl.h: ditto
1799         * FormTabular.h: ditto
1800         * FormPreferences.h: ditto
1801         * FormParagraph.h: ditto
1802         * FormMathsSpace.h: ditto
1803         * FormMathsPanel.h: ditto
1804         * FormMathsMatrix.h: ditto
1805         * FormMathsDelim.h: ditto
1806         * FormMathsDeco.h: ditto
1807         * FormGraphics.h: ditto
1808         * FormDocument.h: ditto
1809
1810 2002-05-15  John Levon  <moz@compsoc.man.ac.uk>
1811
1812         * FormCharacter.C: avoid mis-treating Combox as FL_OBJECT
1813           (bug 406) (from Angus)
1814
1815 2002-05-10  Dekel Tsur  <dekelts@tau.ac.il>
1816
1817         * FormDocument.C (language_apply): Fix language changing.
1818
1819 2002-05-09  Angus Leeming  <a.leeming@ic.ac.uk>
1820
1821         * Tooltips.C: enable tooltips by default.
1822
1823 2002-05-09  Angus Leeming  <a.leeming@ic.ac.uk>
1824
1825         * xforms_resize.h: improve the doc++ comments.
1826
1827         * xforms_resize.C (get_tabfolder_numfolders): new helper function,
1828         wrapping fl_get_tabfolder_numfolders if it exists and otherwise
1829         providing this info "somehow".
1830         Constify a few variables.
1831         whitespace changes.
1832
1833 2002-05-06  Angus Leeming  <a.leeming@ic.ac.uk>
1834
1835         * FormBase.C (show):
1836         * FormBaseDeprecated.C (show): having built the dialog, ensure that it
1837         is widened sufficiently to display wholely the tabs of any
1838         tabbed-folders. This is more than just cosmetic as it will prevent
1839         crashes when selecting a partly displayed tab. (The problem occurs
1840         with a "long" locale like German and xforms < 0.9999.)
1841
1842         * xforms_resize.[Ch]: new files doing the grunt work of ascertaining
1843         by how much a dialog should be scaled to show its tabs fully (should
1844         it have a tabfolder).
1845
1846 2002-05-08  Garst Reese  <reese@isn.net>
1847
1848         * FormMathsDeco.C: fix offset to normal size decos.
1849
1850 2002-05-03  Angus Leeming  <a.leeming@ic.ac.uk>
1851
1852         * xformsGImage.C (rotate): work-around xforms bug when rotating by
1853         270 degs.
1854
1855 2002-05-02  Herbert Voss  <voss@perce.de>
1856
1857         * FormBibtex.C (apply): a change from a style to an empty one
1858         (which is valid) wasn't saved
1859
1860 2002-05-02  Herbert Voss  <voss@perce.de>
1861
1862         * FormGraphics.C (input): do not read bb new when it was changed
1863
1864 2002-04-30  Rob Lahaye <lahaye@users.sourceforge.net>
1865
1866         * FormDocument.C: "USletter" -> "US letter" etc., "Other" -> "Custom".
1867         * FormParagraph.C: "Other" -> "Custom"
1868         * FormPreferences.C: "USletter" -> "US letter" etc.
1869         * forms/form_document.fd: 'Papersize" -> "Paper size" style consistency
1870         * forms/form_preferences.fd: style consistency
1871
1872 2002-04-30  Angus Leeming  <a.leeming@ic.ac.uk>
1873
1874         * FormCharacter.C:
1875         * FormDocument.C:
1876         * FormPreferences.C (findPos): remove this template to xforms_helpers.h.
1877
1878         * xforms_helpers.h (findPos): new template.
1879
1880         * FormGraphics.h: store a vector<string> origins_ of the LaTeX names
1881         for the rotation origins.
1882
1883         * FormGraphics.C: internationalise the rotation origin strings in the
1884         choice using the same approach as used for the language names in the
1885         Character, Document, Preferences dialogs.
1886
1887 2002-04-30  Angus Leeming  <a.leeming@ic.ac.uk>
1888
1889         * FormCharacter.C:
1890         * FormDocument.C:
1891         * FormPreferences.C: use the bool flag to getLanguageData as
1892         appropriate. No longer translate the strings as this is done in
1893         getLanguageData.
1894
1895 2002-04-29  John Levon  <moz@compsoc.man.ac.uk>
1896
1897         * FormBibtex.C:
1898         * FormCitation.C: fix two typos
1899
1900 2002-04-29  Angus Leeming  <a.leeming@ic.ac.uk>
1901
1902         * FormCharacter.h:
1903         * FormDocument.h:
1904         * FormPreferences.h: store a vector<string> lang_ of language
1905         identifiers.
1906
1907         * FormCharacter.C: changes associated with frnt::getLanguageData
1908         returning a vector<LanguagePair> rather than a vector<string>.
1909
1910         * FormDocument.C:
1911         * FormPreferences.C: internationalise the languages on display, similar
1912         to the changes in FormCharacter.C.
1913
1914 2002-04-26  John Levon  <moz@compsoc.man.ac.uk>
1915
1916         * FormMathsPanel.C: translate Close
1917         * FormGraphics.C: a little more translation
1918
1919 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
1920
1921         * FormCitation.C (apply, input): ensure that the choice is always valid.
1922
1923         * forms/fdfixc.sed: use "_shortcut" rather than "shortcut" as an
1924         identifier when performing one of the substitutions. "shortcut" can
1925         reasonably appear in the label.
1926
1927 2002-04-25  Rob Lahaye <lahaye@users.sourceforge.net>
1928
1929         * Makefile.am: fix typo "shoul go to" -> "should go to".
1930
1931         * forms/form_preferences.fd: Modify naming for Converter flags
1932         ("Extra flags") and remove a couple of shortcut-clashes.
1933
1934         * FormPreferences.C: Modify 'tooltip' info for Converter flags.
1935
1936 2002-04-23  Juergen Spitzmueller <j.spitzmueller@gmx.de>
1937
1938         * FormBibtex.C: Do not use a blank after the comma for multiple
1939         bib-files (which is not read in correctly).
1940
1941 2002-04-22  Angus Leeming  <a.leeming@ic.ac.uk>
1942
1943         * FormCitation.C (fillChoice): If the getCiteStrings vec is empty,
1944         disable the choice.
1945
1946 2002-04-19  Juergen Vigna  <jug@sad.it>
1947
1948         * FormParagraph.C (changedParagraph): don't check for p == par_ as
1949         we don't set par_ on a changedParagraph call so we don't resete the
1950         buttons and message when we return to the original paragraph!
1951
1952 2002-04-17  Rob Lahaye <lahaye@users.sourceforge.net>
1953
1954         * forms/cvsignore: add Makefile.
1955
1956 2002-04-16  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1957
1958         * forms/Makefile.am: make it a dummy make file + extra dist
1959
1960 2002-04-14  Herbert Voss  <voss@perce.de>
1961
1962         * FormCharacter.C
1963         * FormExternal.C: adding #include "support/lstrings.h"
1964         for the getStringFromVector and vice versa
1965
1966 2002-04-12  Angus Leeming  <a.leeming@ic.ac.uk>
1967
1968         * FormParagraph.C (changedParagraph): ensure that the warning message
1969         is removed if the underlying paragraph will accept our changes.
1970
1971 2002-04-09  Herbert Voss  <voss@perce.de>
1972
1973         * FormGraphics.C: allow rotate-values like 270.1
1974         * xformsGImage.C (rotate): get the right rotate-angle from
1975         GraphicParams
1976
1977 2002-04-08  Angus Leeming  <a.leeming@ic.ac.uk>
1978
1979         * xformsGImage.C (clip): no need to check if the width, height are > 0
1980         because the BoundingBox would be empty() in this weren't the case.
1981
1982 2002-04-08  Juergen Spitzmueller <j.spitzmueller@gmx.de>
1983
1984         * FormDocument.[Ch]: Add a new method UpdateClassParams
1985         which is used in CheckChoiceClass to update the fontsizes
1986         and other necessary stuff (pagestyle) on class change
1987         (hopefully finally fix bug #306)
1988
1989 2002-04-08  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1990
1991         * forms/Makefile.am (SUFFIXES): instead of .SUFFIXES
1992         (updatesrc): delete wrong version
1993
1994 2002-04-06  Lars Gullik Bjønnes  <larsbj@birdstep.com>
1995
1996         * forms/.cvsignore: add Makefile.in
1997
1998         * forms/Makefile.am: make distcheck work, new file
1999
2000         * Makefile.am: make distcheck work
2001
2002 2002-04-05  Herbert Voss  <voss@perce.de>
2003
2004         * FormGraphics.C: use correct unit bp (big point - PostScript point)
2005         for the bounding box values
2006
2007 2002-04-05  Angus Leeming  <a.leeming@ic.ac.uk>
2008
2009         * FormGraphics.C (updateBB, input): Don't set the path of the file
2010         passed to readBB. Let the controller do that because it knows about
2011         the buffer (and therefore the path) whereas the view has no idea.
2012
2013 2002-04-04  Angus Leeming  <a.leeming@ic.ac.uk>
2014
2015         * xformsGImage.C (clip): ensure that the clipped image has sensible
2016         dimensions.
2017
2018 2002-04-04  Herbert Voss  <voss@lyx.org>
2019
2020         * FormGraphics.C (updateBB):  new method to read the BBox when reading
2021         a new file or changing an existing one.
2022
2023 2002-04-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2024
2025         * FormCharacter.C (findPos): add a missing typename
2026
2027 2002-04-02  Angus Leeming  <a.leeming@ic.ac.uk>
2028
2029         * FeedbackController.C:
2030         * FormBibtex.C:
2031         * FormCitation.C:
2032         * FormForks.C:
2033         * FormMathsBitmap.C:
2034         * FormPreferences.C:
2035         * FormSendto.C:
2036         * FormTexinfo.C:
2037         * Tooltips.C:
2038         * xforms_helpers.C: use _() correctly rather than N_().
2039
2040 2002-03-28  Juergen Spitzmueller <j.spitzmueller@gmx.de>
2041
2042         * FormDocument.C (CheckChoiceClass): update the necessary class
2043         settings on class change (fix bug #306)
2044
2045 2002-03-27  Herbert Voss  <voss@lyx.org>
2046
2047         * xforms_helpers.h:
2048         * FormGraphics.C:  change c%, l%, p% t% to col%, line%, page%
2049         and text%
2050
2051 2002-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
2052
2053         * MathsSymbols.[Ch]: remove #include "bmtable.h" & "FormMathsPanel.h".
2054         Move enum MathsCallbackValues from FormMathsPanel.h to MathsSymbols.h.
2055         The MathsSymbols are now xforms-independent.
2056
2057         * FormMathsPanel.h: #include MathsSymbols.h for the enum.
2058
2059 2002-03-26  Angus Leeming  <a.leeming@ic.ac.uk>
2060
2061         * FormPreferences.C (browse): don't use BrowseRelPath here you noodle!
2062
2063         * FormGraphics.C (input): don't disallow the input of a file that's
2064         not there.
2065
2066 2002-03-25  Angus Leeming  <a.leeming@ic.ac.uk>
2067
2068         * FormParagraph.C (changedParagraph): whitespace.
2069
2070         * xforms_helpers.C: rearrange #includes.
2071
2072         * RadioButtonGroup.[Ch]: rename some of the methods. Remove #if 0 code.
2073
2074         * FormPrint.C: changes associated with changes to RadioButtonGroup.
2075
2076         * FormGraphics.C:
2077         * forms/form_graphics.fd: rename some of the widgets.
2078
2079 2002-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
2080
2081         * FormGraphics.C (input): don't activate the Ok, Apply buttons if the
2082         file can't be found.
2083
2084         * FormParagraph.C (changedParagraph): activate the Ok, Apply buttons
2085         only if the underlying paragraph will accept changes.
2086
2087         * FormPreferences.C (browse): use Jean-Marc's browseRelFile.
2088
2089         * xforms_helper.C (updateWidgetsFromLength): fix crash when trying to
2090         set the choice to a unit that isn't present in the choice!
2091         Also remove #if 0 sections of code.
2092
2093 2002-03-21  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2094
2095         * several files: ws cleanup
2096
2097 2002-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
2098
2099         * lots: whitespace changes.
2100
2101 2002-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
2102
2103         * FormParagraph.C: a little more factorisation.
2104
2105 2002-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
2106
2107         * xforms_helpers.C (setCursorColor):
2108         * Tooltips.C (set): remove XC_question_arrow code.
2109
2110         * FeedbackController.[Ch] (clearMessage): new method.
2111
2112         * FeedbackController.C (postMessage): the warning message is now
2113         displayed in red!
2114
2115         * FormParagraph.C: define some helper functions to minimise the amount
2116         of repeated code.
2117
2118         * FormDocument.C:
2119         * FormGraphics.C:
2120         * FormMinipage.C:
2121         * FormTabular.C: use the FeedbackController to post the warning
2122         messages.
2123
2124 2002-03-19  André Pönitz <poenitz@gmx.net>
2125
2126         * FormParagraph.C: whitespace changes
2127
2128 2002-03-18  Angus Leeming  <a.leeming@ic.ac.uk>
2129
2130         * Tooltips.[Ch] (initTooltip): renamed init. In the 0.89 version, no
2131         longer call fl_set_object_helper as this routine respects line breaks
2132         only if the dialog is visible.
2133         (getTooltip): renamed as get.
2134         (toggleTooltips): renamed as set and made public.
2135
2136         * FormBase.C (show):
2137         * FormBaseDeprecated.C (show): move tooltip-inards into Tooltip.
2138
2139         * FormBibtex.C (build):
2140         * FormCitation.C (build):
2141         * FormForks.C (build):
2142         * FormSendto.C (build):
2143         * FormTexinfo.C (build):
2144         * Toolbar_pimpl.C (set): Tooltip::initTooltip -> Tooltip::init.
2145
2146         * xforms_helper.C (formatted): rewritten as a one-pass algorithm.
2147
2148 2002-03-18  Juergen Vigna  <jug@sad.it>
2149
2150         * FormTabular.C (update): deactivate left/right border settings for
2151         multicolumns if not an outer cell or no parent multicolumn cell.
2152
2153 2002-03-14  John Levon  <moz@compsoc.man.ac.uk>
2154
2155         * GUIRunTime.C: add spaces to error messages
2156
2157 2002-03-13  Angus Leeming  <a.leeming@ic.ac.uk>
2158
2159         * FormBase.C (show):
2160         * FormBaseDeprecated.C (show): set the initial state of the cursor.
2161
2162         * FormPreferences.C (Colors::apply()): use the helper function
2163         setCursorColor.
2164
2165         * Tooltips.C (toggleTooltips): proper fix for those Bad Window messages.
2166         Can only set the cursor if the dialog is visible.
2167
2168         * xforms_helpers.[Ch] (setCursorColor): new helper function to set the
2169         color of all cursors used by LyX.
2170         (XformsColor::read): use it.
2171
2172 2002-03-12  Angus Leeming  <a.leeming@ic.ac.uk>
2173
2174         * forms/*.fd (except form_filedialog.fd which is v. scary :-():
2175         housekeeping changes.
2176         1. Ensure that all radio buttons are wrapped up within a group.
2177         2. Rename all button_cancel as button_close.
2178         3. Ensure that all objects follow the naming scheme outlined in
2179            forms/README
2180
2181         class             | prefix
2182         ------------------+-------
2183         FL_BROWSER        | browser
2184         FL_BUTTON         | button
2185         FL_PIXMAPBUTTON   | button
2186         FL_CHECKBUTTON    | check
2187         FL_CHOICE         | choice
2188         FL_COUNTER        | counter
2189         FL_DIAL           | dial
2190         FL_INPUT          | input
2191         FL_FRAME          | frame
2192         FL_LABELFRAME     | frame
2193         FL_ROUND3DBUTTON,
2194         RADIO_BUTTON      | radio
2195         FL_SLIDER         | slider
2196         FL_VALSLIDER      | slider
2197         FL_TABFOLDER      | tabfolder
2198         FL_TEXT           | text
2199
2200         The only exceptions to this are objects that are to be converted
2201         in the sed scripts. At the moment this applies only to bmtable:
2202
2203         Convert an FL_BUTTON to a FL_BMTABLE by using prefix "bmtable".
2204
2205 2002-03-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2206
2207         * doxygen fixes.
2208
2209 2002-03-09  Angus Leeming  <a.leeming@ic.ac.uk>
2210
2211         * FeedbackController.C: improve a comment.
2212
2213         * FormFiledialog.C: whitespace change.
2214
2215         * FormBibitem.C (build):
2216         * FormBibtex.C (build):
2217         * FormCitation.C (build):
2218         * FormDocument.C (build):
2219         * FormExternal.C (build):
2220         * FormGraphics.C (build):
2221         * FormInclude.C (build):
2222         * FormIndex.C (build):
2223         * FormMathsMatrix.C (build):
2224         * FormMinipage.C (build):
2225         * FormParagraph.C (build):
2226         * FormPrint.C (build):
2227         * FormRef.C (build):
2228         * FormSendto.C (build):
2229         * FormSpellchecker.C (build):
2230         * FormTabular.C (build):
2231         * FormThesaurus.C (build):
2232         * FormUrl.C (build): invoke setPrehandler for all FL_INPUT objects.
2233         Means that pasting with the middle mouse button will activate the
2234         Ok, Apply buttons.
2235
2236         * FeedbackController.C (MessageCB): fix crash by removing
2237         Assert(message_widget_) and returning silently in this case.
2238         Can happen quite justifiably.
2239
2240         * Most files: consistent comments at the top of the file, usable by
2241         sourcedoc.
2242
2243 2002-03-09  Herbert Voss  <voss@lyx.org>
2244
2245         * FormGraphics.C: test if file exists, simplify an if command
2246
2247 2002-03-10  John Levon  <moz@compsoc.man.ac.uk>
2248
2249         * FormToc.C: make goto not reset the dialog
2250
2251 2002-03-08  Angus Leeming  <a.leeming@ic.ac.uk>
2252
2253         * FeedbackController.[Ch]: new files, providing a standard interface to
2254         the feedback and warning messages. Created by stripping code out of
2255         FormBase.
2256
2257         * FormBase.[Ch]: strip out all the feedback code and simplify yet
2258         further the tooltips code.
2259
2260         * FormBase.[Ch]:
2261         * FormBaseDeprecated.[Ch]: Add a Tooltips pointer.
2262         Derive both classes from FeedbackController so daughter classes each
2263         have a common interface for same.
2264
2265         * Toolbar_pimpl.[Ch]: strip out all the tooltip code and use the
2266         Tooltips wrapper class.
2267
2268         * Tooltips.[Ch]: work out how to update tooltips when using
2269         xforms 0.89's fl_set_object_helper. Can now toggle tooltips with both
2270         xforms 0.88 and 0.89. Change the cursor to a "?" when in query mode
2271         and when the dialog has some tooltips.
2272
2273         * FormPreferences.[Ch]: strip out all the feedback code and use
2274         the FeedbackController.
2275
2276         * xforms_helpers.C: save the color of the gui pointer.
2277
2278         * FormBibtex.[Ch]:
2279         * forms/form_bibtex.fd:
2280         * FormCitation.[Ch]:
2281         * forms/form_citation.fd:
2282         * FormForks.[Ch]:
2283         * forms/form_forks.fd:
2284         * FormSendto.[Ch]:
2285         * forms/form_sendto.fd:
2286         * FormTexinfo.[Ch]:
2287         * forms/form_texinfo.fd: remove "Help" button and rejig for much
2288         simplified tooltips code.
2289
2290         * Makefile.am: add FeedbackController.[Ch].
2291
2292 2002-03-08  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
2293
2294         * FormGraphics.C: Tiny stylistic correction.
2295
2296 2002-03-07  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
2297
2298         * FormGraphics.C:
2299                 - Make radiobuttons change too when using Latex size in
2300                   lyxview and vice versa.
2301                 - Fix a typo where the value for height (lyxview) was
2302                   taken from width (size).
2303                 - Remove *%-values from lyxview.
2304                 - Add an Alert when using "Get Latex size" and that contains
2305                   *%-values.
2306         * FormTabular.C: Remove obsolete comment.
2307
2308 2002-03-07  Martin Vermeer <martin.vermeer@hut.fi>
2309
2310         * FormMathsDeco.C: add leftrightarrows to the bitmap.
2311
2312         * forms/form_maths_style.fd: reflect the changes in the bitmaps.
2313
2314 2002-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
2315
2316         * xformsGImage.C (statusCB, errorCB): close the file streams once the
2317         image is loaded or if an error occurs.
2318         (init_graphics): FLIMAGE_SETUP setup must be static as xforms stores
2319         it permanently (and does not make a copy!).
2320
2321 2002-03-05  Angus Leeming  <a.leeming@ic.ac.uk>
2322
2323         * xformsGImage.[Ch]: new files. An image loader based on xforms library
2324         routines.
2325
2326         * GUIRunTime.C (initialiseGraphics): use the xforms image loader if
2327         your version of the xforms libraries is up to the task.
2328
2329         * Makefile.am: compile the xforms image loader if so configured.
2330
2331 2002-03-04   Angus Leeming  <a.leeming@ic.ac.uk>
2332
2333         * Dialogs.C (redrawGUI): removed to frontends/Dialogs.C
2334
2335         * Dialogs.C:
2336         * GUIRunTime.C (initialiseGraphics): moved to GUIRunTime.
2337
2338 2002-03-04   Angus Leeming  <a.leeming@ic.ac.uk>
2339
2340         * FormDocument.C (build): add a std:: qualifier to remove_if.
2341
2342 2002-03-02  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2343
2344         * Toolbar_pimpl.[Ch]: layout as string
2345
2346         * FormParagraph.C: layout as string
2347
2348         * FormDocument.C (build): use remove_if and contains_functor
2349         layout as string
2350
2351 2002-03-01  Martin Vermeer <martin.vermeer@hut.fi>
2352
2353         * FormMathsBitmap.[Ch]:
2354         * FormMathsPanel.C: Give window titles to bit map sub-panels.
2355
2356 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
2357
2358         * Dialogs.C (initialiseGraphics): a new static method.
2359         Remove Allan's venerable description as I think it's past its sell-by
2360         date.
2361
2362 2002-02-28  John Levon  <moz@compsoc.man.ac.uk>
2363
2364         * FormBase.C:
2365         * FormBaseDeprecated.C:
2366         * FormFiledialog.C: possible fix to the Bad Window problems that some
2367         people have been experiencing.
2368
2369 2002-02-28  Angus Leeming  <a.leeming@ic.ac.uk>
2370
2371         * FormForks.C (input_button_all): resolve comparison between signed
2372         and unsigned.
2373
2374 2002-02-26  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2375
2376         * Menubar_pimpl.C (makeMenubar): ignore entries which are not
2377         submenus in menubar.
2378
2379 2002-02-20  Angus Leeming  <a.leeming@ic.ac.uk>
2380
2381         * FormForks.[Ch]:
2382         * forms/form_forks.fd: new files. A view for the Forked Child
2383         processes dialog, enabling the user to see what forked processes
2384         are running, and, if he so desires, to kill them.
2385
2386         * Dialogs.C: add the class Forked Child dialog.
2387
2388         * Makefile.am: add FormForks.[Ch], form_forks.[Ch].
2389
2390         * forms/makefile: add form_forks.fd.
2391
2392         * FormPreferences.C (LnFmisc::apply): rather ugly: call
2393         grfx::GCache::changeDisplay if the lyxrc.display_graphics changes.
2394
2395 2002-02-24  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
2396
2397         * forms/form_graphics.fd: Enlarge Restore button.
2398         * FormGraphics.C: Set filter to bounding box input fields.
2399
2400 2002-02-20  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2401
2402         * Makefile.am: simpler obj. file compiling
2403
2404 2002-02-20  Juergen Vigna  <jug@sad.it>
2405
2406         * FormTabular.C (input): don't call the autoapply on exit input calls
2407         if we don't really have a change!
2408
2409 2002-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
2410
2411         * FormBase.h (FormCB): tiny bugfix.
2412
2413         * xforms_helpers.h: remove incorrect comment.
2414
2415 2002-02-18  Herbert Voss  <voss@lyx.org>
2416
2417         * FormGraphics.C: same units for LyX and Latex view, cosmetics
2418
2419 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
2420
2421         * Timeout_pimpl.[Ch] (running): new method.
2422
2423 2002-02-18  Angus Leeming  <a.leeming@ic.ac.uk>
2424
2425         * FormParagraph.C:
2426         * FormTabular.C: added a using std::remove_if directive.
2427
2428 2002-02-14  Herbert Voss  <voss@lyx.org>
2429
2430         * xforms_helpers.h: fix bug with "?%" units
2431
2432 2002-02-14  Rob Lahaye  <lahaye@users.sourceforge.net>
2433         * forms/form_graphics.fd:
2434         * form_graphics.C: minor layout changes, such as stretching all
2435         tab-windows to equal sizes and better keyboard-shortcuts.
2436
2437 2002-02-14  Rob Lahaye  <lahaye@users.sourceforge.net>
2438         * forms/form_graphics.fd:
2439         * form_graphics.C: minor layout changes, such as stretching all
2440         tab-windows to equal sizes and better keyboard-shortcuts.
2441
2442 2002-02-12  Herbert Voss  <voss@lyx.org>
2443
2444         * forms/form_graphics.fd:
2445         * form_graphics.[Ch]: small changes to the layout, mentioned
2446         by Rob
2447
2448         * FormGraphics.C: fix bug with use of updateWidget... when
2449         no unit is given.
2450
2451 2002-02-11  John Levon  <moz@compsoc.man.ac.uk>
2452
2453         * FormMinipage.C: return SMI_VALID on other form changes
2454
2455 2002-02-11  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
2456
2457         * FormParagraph.C (update): [VSpace:] Delete the special method
2458         for gluelengths...
2459         * xforms_helpers.C: ...and move it here.
2460         Activate JMarcs new (shorter) code for updateWidgetsFromLengthString
2461         and updateWidgetsFromLength.
2462
2463 2002-02-10  Rob Lahaye  <lahaye@users.sourceforge.net>
2464
2465         * forms/form_external.fd:
2466         * form_external.C: change color2 of a few buttons into the
2467         proper grey color.
2468
2469 2002-02-08  Herbert Voss  <voss@lyx.org>
2470
2471         * forms/form_graphics.fd:
2472         * FormGraphics.C:
2473         * form_graphics.[Ch]: Adding buttons for unzip-Option,
2474         getValues from LyX/LaTeXfolder
2475
2476 2002-02-08  Rob Lahaye  <lahaye@users.sourceforge.net>
2477
2478         * forms/form_graphics.fd:
2479         * FormGraphics.C:
2480         * form_graphics.[Ch]: simplify the bounding box folder
2481         of the Graphic GUI
2482
2483 2002-02-08  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2484
2485         * Menubar_pimpl.C (create_submenu): work around an xforms bug (?)
2486         where one could not have both toggleon and disabled.
2487
2488 2002-02-08  Herbert Voss  <voss@lyx.org>
2489
2490         * xforms_helpers.h: change unit "%" to t%
2491
2492         * FormGraphics.C: fiy bug when BB is read from file and the
2493         unit is always "pt"
2494
2495 2002-02-08  Martin Vermeer <martin.vermeer@hut.fi>
2496
2497         * FormMathsDeco.C: \underleftarrow and \underrightarrow
2498
2499 2002-02-06  Angus Leeming  <a.leeming@ic.ac.uk>
2500
2501         Stabilise the tooltip interface and get Jürgen's patch to work ;-)
2502
2503         * Tooltips.[Ch]: new files. A wrapper to the tooltip code with a nice
2504         clean interface. Means that FormBase, FormBaseDeprecated and
2505         Tollbar_pimpl can all use the same code to have tooltips. No bloat.
2506
2507         * FormBase.C: add a Tooltips instance and interface with it.
2508         (setTooltipLevel): removed. Replaced by fillTooltipChoice and
2509         setTooltipLevel(ob).
2510         (getVerboseTooltip, getMinimalTooltip) now passed a const FL_OBJECT.
2511
2512         * FormBibtex.[Ch]:
2513         * FormCitation.[Ch]:
2514         * FormTexinfo.[Ch]:
2515         * Makefile.am: altered appropriately.
2516
2517 2002-02-06  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
2518
2519         * forms/form_texinfo.fd:
2520         * forms/form_bibtex.fd:
2521         * forms/form_citation.fd: delete text_info field again, add help choice
2522
2523         * FormBibtex.[Ch]:
2524         * FormCitation.[Ch]:
2525         * FormTexinfo.[Ch]: Implement new Tooltip behaviour.
2526
2527 2002-02-06  Angus Leeming  <a.leeming@ic.ac.uk>
2528
2529         * FormBase.[Ch]: can now chose the verbosity of the tooltip through
2530         a new method setTooltipLevel(). In turn this determines which of the
2531         new virtual methods, getVerboseTooltip() or getMinimalTooltip() gets
2532         called from getTooltip.
2533         No need for a "message" widget at the bottom of every dialog, therefore.
2534         If retained, this "message" widget can be used to display "warnings",
2535         pure and simple.
2536
2537         * FormBibtex.[Ch]:
2538         * FormCitation.[Ch]:
2539         * FormTexinfo.[Ch]: altered appropriately. Still need to be reshaped,
2540         to lose the "message" widget and to gain a "tooltip level" choice.
2541
2542 2002-02-05  Angus Leeming  <a.leeming@ic.ac.uk>
2543
2544         * forms/form_graphics.fd: Tiny tweek to make the Restore, Ok, Apply,
2545         Cancel buttons' positions consistent with the other dialogs.
2546
2547 2002-02-05  Herbert Voss  <voss@lyx.org>
2548
2549         * forms/form_graphics.fd: Noew the same view of the
2550         buttons as in preferences (LyXView). Make some things clear
2551         with better names.
2552         * FormGraphic.C: cosmetic changes to the layout. Delete
2553         the help button
2554
2555 2002-02-05  Juergen Spitzmueller  <j.spitzmueller@gmx.de>
2556
2557         * forms/form.texinfo.fd: delete help button, add text_info
2558         * forms/form.citation.fd,form.bibtex.fd: add text_info
2559         * FormTexinfo.[Ch]: Delete Help mechanism, add tooltips and help messages.
2560         * FormCitation.[Ch],FormBibtex.[Ch]: add tooltips and help messages (actually
2561         no tooltips in Bibtex).
2562
2563 2002-02-05  Angus Leeming  <a.leeming@ic.ac.uk>
2564
2565         * FormBase.[Ch]: You want tooltips too? You got 'em. Verified as
2566         working with both xforms 0.88 and 0.89. Use by invoking
2567         setTooltipHandler(ob) and by providing a method getTooltip(ob) in this
2568         derived class to provide the required string.
2569
2570 2002-02-05  Angus Leeming  <a.leeming@ic.ac.uk>
2571
2572         * FormBase.[Ch]: make it really easy to set up and use a prehandler
2573         for feedback messages and to invoke an input event on paste from
2574         the middle mouse button. The derived class needs invoke only
2575         setPrehandler(ob) and for the feedback to override the virtual methods
2576         feedback(ob) and clear_feedback(). If the message posted is a warning
2577         rather than mere feedback, first setWarningPosted(true) to ensure
2578         that the message remains visible.
2579
2580         * FormBaseDeprecated.C: a physical rearrangement of the file,
2581         nothing more.
2582
2583         * FormPreamble.C: use setPrehandler to invoke an input event on paste.
2584
2585 2002-02-04  Herbert Voss  <voss@lyx.org>
2586
2587         * forms/form_graphics.fd: small changes to the layout
2588         * FormGraphic.C: Apply-button, keepaspectratio enabling
2589         depends to case of LaTeXView. Other small changes and
2590         fixes. Add LyXView scale.
2591
2592 2002-02-01  Angus Leeming  <a.leeming@ic.ac.uk>
2593
2594         * FormGraphics.C (c-tor): prevent resizing of the dialog.
2595
2596 2002-02-03  Herbert Voss  <voss@lyx.org>
2597
2598         * xforms_helpers.C: fix bug with unit "%" in
2599         updateWidgetsFromLengthString(...)
2600
2601 2002-02-02  Herbert Voss  <voss@lyx.org>
2602
2603         * FormGraphic.C: fix bug with filename, rearrange the code,
2604         delete choice "referencePoint" which is only possible for
2605         rotatebox
2606         * forms/form_graphics.fd: position options in a logical way,
2607         add folder and scale for LyXView
2608
2609 2002-02-01  Angus Leeming  <a.leeming@ic.ac.uk>
2610
2611         * FormGraphics.C (apply, update): respect the new DEFAULT state of
2612         InsetGraphicsParams::DisplayType.
2613
2614 2002-01-31  Martin Vermeer <martin.vermeer@hut.fi>
2615
2616         * forms/form_graphics.fd: tweeks.
2617
2618 2002-01-30  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
2619
2620         * FormGraphics.C: Fix MAXDIGIT values for height and width.
2621
2622 2002-01-30  Angus Leeming  <a.leeming@ic.ac.uk>
2623
2624         * forms/form_citation: a few tweaks of my own.
2625
2626 2002-01-30  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
2627
2628         * forms/form_citation: De-Monsterization (make it smaller).
2629
2630 2002-01-30  Angus Leeming  <a.leeming@ic.ac.uk>
2631
2632         * forms/form_graphics.fd:
2633         * FormGraphics.C: a few tweaks of my own.
2634
2635 2002-01-30  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
2636
2637         * forms/form_graphics.fd: Very small tweaks.
2638
2639 2002-01-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
2640
2641         * forms/form_graphics.fd: Change the dialog to look similar as
2642         the nice QT2-Version (added tabfolder "Bounding Box", rearrangements);
2643         added text_warning field..
2644
2645         * FormGraphics.[Ch]: Handle the Rearrangements.
2646         Add input filters and warnings concerning invalid inputs.
2647         Recognize the lyxrc-settings of display_graphics.
2648
2649 2002-01-29  Angus Leeming  <a.leeming@ic.ac.uk>
2650
2651         * FormMathsSpace.h (space_):
2652         * FormMathsStyle.h (style_): change from a short to an int to fix
2653         type conversion warnings.
2654
2655 2002-01-28  Martin Vermeer <martin.vermeer@hut.fi>
2656
2657         * FormMathsSpace.[Ch]:
2658         * forms/form_maths_space.fd:
2659         Changed the "Space" subpanel of the math panel into one of
2660         ordinary buttons rather than radio buttons. They are now
2661         self-applying so OK and Apply could go.
2662
2663 2002-01-28  Martin Vermeer <martin.vermeer@hut.fi>
2664
2665         * FormMathsStyle.[Ch]:
2666         * forms/form_maths_style.fd:
2667         Patched to use button arrays. Buttons are self-applying, saving
2668         one keystroke and the OK and Apply buttons.
2669
2670 2002-01-27  Herbert Voss  <voss@lyx.org>
2671
2672         * FormGraphic.[Ch]:
2673         * form_graphic.[Ch]:
2674         * forms/form_graphic.fd: rewritten to support graphicx with
2675         all options and to be sure that the old figinsets are correct
2676         converted.
2677         * xforms-helpers.h: added two choice const for the LyXLength
2678         one with all and one only with length which have a unit.
2679
2680 2002-01-29  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
2681
2682         * forms/form_minipage.fd: add text_warning field.
2683
2684         * FormMinipage.[Ch]: added input filters and warnings
2685         (ButtonPolicy::SMInput FormMinipage::input)
2686
2687 2002-01-28  Angus Leeming  <a.leeming@ic.ac.uk>
2688
2689         * FormAboutlyx.[Ch]: Removed redundant form() method and
2690         dialog_ variable. They replicate that in the parent FormDB.
2691
2692 2002-01-28  Martin Vermeer <martin.vermeer@hut.fi>
2693
2694         * FormMathsDeco[hC]:
2695         * forms/form_maths_deco.fd: added math accents as a separate bitmap to
2696         the Decorations sub-panel of mathed. See Lamport Table 3.11.
2697
2698         * FormMathsPanel.C:
2699         * MathsSymbols.C: reorganization of the two AMS panels "relations" and
2700         "negated relations". Lower and broader.
2701
2702 2002-01-25  Angus Leeming  <a.leeming@ic.ac.uk>
2703
2704         * FormTabular.C (update): Remove redundant code.
2705
2706 2002-01-24  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
2707
2708         * forms/form_tabular.fd: checkbox2radiobutton changes.
2709
2710 2002-01-20  Herbert Voss  <voss@perce.de>
2711
2712         * FormInclude.[C]: better control of unexistings files
2713         when entered without the browser
2714
2715 2002-01-20  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2716
2717         * Toolbar_pimpl.C (update): disable layout combox when LFUN_LAYOUT
2718         is disabled
2719
2720         * combox.C (activate):
2721         (deactivate): change color of labels to reflect the state of the
2722         combox
2723
2724 2002-01-16  Herbert Voss  <voss@lyx.org>
2725
2726         * FormExternal.C (build): activate  apply/ok-button when something
2727         is entered in the filename-field
2728
2729 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
2730
2731         * FormMathsBitmap.C (apply): fix bug caused by using 'unsigned int'
2732         rather than 'string::size_type'
2733
2734 2002-01-17 Martin Vermeer <martin.vermeer@hut.fi>
2735
2736         * FormMathPanel.[hC]:
2737         * MathsSymbols.[hC]:
2738         * form_math_panel.[hC]:
2739         * form_math_panel.fd: Modified. Added five symbol sub-panels
2740         to the math panel containing AMS math symbols: arrows, relations,
2741         negated relation, operators and miscellaneous (also containing some
2742         hebrew and corner symbols).
2743
2744 2002-01-17  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2745
2746         * FormMinipage.C (apply): change because MinipageParams::pageWidth
2747         is now a real LyXLength
2748
2749 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
2750
2751         * FormDocument.C: enable line spacing input properly
2752
2753 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
2754
2755         * forms/form_preferences.fd:
2756         * form_preferences.h:
2757         * form_preferences.C:
2758         * FormPreferences.h:
2759         * FormPreferences.C: use better variable name
2760
2761 2002-01-17  John Levon  <moz@compsoc.man.ac.uk>
2762
2763         * forms/form_preferences.fd: change "Use Scalable Fonts"
2764           to "Rescale bitmap fonts"
2765
2766 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
2767
2768         * FormMathsPanel.C:
2769         * FormPreferences.C: #include "ButtonController.tmpl" to instantiate
2770         the button controller for IgnorantPolicy and PreferencesPolicy.
2771
2772 2002-01-16  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
2773
2774         * forms/form_tabular.fd: text_info field was too small. Enlarge it.
2775
2776 2002-01-15  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
2777
2778         * xforms_helpers.C: modify getLengthFromWidgets to ignore the unit
2779         choice if the input field contains a LyXGlueLength.
2780
2781         * FormParagraph.C: Allow to insert and display gluelengths in VSpace
2782
2783         * FormParagraph.C
2784         * FormDocument.C
2785         * FormTabular.C: Change input filter to allow inserting
2786         gluelengths/lyxlength or numbers with unit choices.
2787
2788         * FormMinipage.C: Use getLengthFromWidgets instead of the code there,
2789         which was more or less duplicated.
2790
2791         * FormGraphics.C: set default units, dependent on US/other paper.
2792
2793 2002-01-16  Angus Leeming  <a.leeming@ic.ac.uk>
2794
2795         * Dialogs.C: no longer need to #include the Controller classes, as this
2796         is how done in GUI.h.
2797
2798         * xformsBC.C: #include ButtonController.tmpl, containing the
2799         instatiation of the button controller.
2800
2801 2002-01-15  John Levon  <moz@compsoc.man.ac.uk>
2802
2803         * FormThesaurus.C: fix a crash
2804
2805 2002-1-15  Martin Vermeer <martin.vermeer@hut.fi>
2806
2807         * FormMathsDelim.C:
2808         * form_maths_delim_C:
2809         * form_maths_delim.h:
2810         * form_maths_delin.fd:
2811         Put three radio buttons on the delimiters pop-up. It works as follows:
2812
2813                                 left mouse     middle mouse        right mouse
2814         ----------------------------------------------------------------------
2815         Left radio button   |       (               ()                   )
2816         Middle radio button |       ()              ()                   )
2817         Right radio button  |        )               )                   )
2818         ----------------------------------------------------------------------
2819
2820         Where
2821
2822         (       left-side delimiter selected
2823         )       right-side delimiter selected
2824         ()      "symmnetric pair" selected, of which the clicked delimiter is
2825                 the left one.
2826                 So, if the middle radio button is activated ("()\nBoth")
2827                 and you click on "[" with the default (left) mouse button, you
2828                 get the delimiter pair "[]".
2829                 A shortcut for this (if the leftmost radio button is on) is
2830                 simply clicking the middle mouse button.
2831
2832         To create equal pairs, either have the middle radio button on and use
2833         Mouse-left, or have the left radio button on and use Mouse-middle.
2834
2835         To create unequal pairs, you should have either the left or middle radio
2836         button on, and do: "Mouse-left ( Mouse-right >" to create "(>".
2837
2838 2002-01-15  Angus Leeming  <a.leeming@ic.ac.uk>
2839
2840         * FormSpellchecker.[Ch]: a bit of a clean up, leaving the functionality
2841         unchanged:
2842         Remove the clickline_ member variable and hide() method;
2843         Use fl_set_browser_dblclick_callback;
2844         Constify a few temporary variables;
2845         Use xforms_helpers' wrappers functions returning string rather than
2846         the raw xforms functions returning char const *.
2847
2848 2002-01-14  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2849
2850         * DropDown.C: include <cctype> for isprint()
2851
2852 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
2853
2854         * FormMinipage.C (apply, update): MinipageParams::width renamed
2855         as MinipageParams::pageWidth.
2856
2857 2002-01-14      Martin Vermeer <martin.vermeer@hut.fi>
2858
2859         * FormMathsBitmap.C:
2860           FormMathsPanel.C:
2861           MathsSymbols.C: Blackboard Bold and Calligraphic std symbols
2862         added to math panel's 'misc' sub-panel.
2863
2864 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
2865
2866         * FormMathsMatrix.C (input): use lyx::count rather than std::count.
2867
2868 2002-01-14  Angus Leeming  <a.leeming@ic.ac.uk>
2869
2870         * FormPreferences.h: add a std:: to make_pair.
2871
2872 2002-01-11  Angus Leeming  <a.leeming@ic.ac.uk>
2873
2874         * DropDown.[Ch] (keypress, key_pressed): new signal and method,
2875         respectively.
2876
2877         * DropDown.C: place xforms callback functions in namespace anon.
2878         Set browser callback on single not double click.
2879         (select): return immediately of the vector is empty. Highlight the top
2880         line. Position the browser above the minibuffer, not below it.
2881         (peek): call key_pressed when a key press is detected.
2882         (key_pressed): clean-up and emit the keypress signal.
2883
2884         * xforms_helpers.[Ch} (getSelectedStringFromBrowser): new function.
2885         If nothing is selected, return string().
2886
2887 2002-01-14  John Levon  <moz@compsoc.man.ac.uk>
2888
2889         * FormSpellchecker.C: disable resizing due to xforms bug
2890
2891 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2892
2893         * FormFiledialog.C (Reread): skip broken symlinks
2894
2895 2002-01-13  Lars Gullik Bjønnes  <larsbj@birdstep.com>
2896
2897         * FormMathsMatrix.C (AlignFilter): use std::count and add some
2898         comments.
2899
2900 2002-01-13  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2901
2902         * MathsSymbols.C (get_pixmap_from_symbol): add a default statement
2903         in the switch.
2904
2905         * FormPreferences.C (Interface::input):
2906         (Language::input):
2907         (Paths::input): add shortcuts to file dialogs directory buttons
2908
2909         * FormPreference.h (browse): add default empty parameters for
2910         buttons descriptions.
2911
2912         * FormFiledialog.C (SetButton): allow for a shortcut in the name
2913         of the button.
2914
2915 2002-01-13  John Levon  <moz@compsoc.man.ac.uk>
2916
2917         * FormThesaurus.C:
2918         * FormThesaurus.h:
2919         * form_thesaurus.h:
2920         * form_thesaurus.C:
2921         * forms/form_thesaurus.fd: update to Aiksaurus 0.14
2922
2923 2002-01-12  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2924
2925         * Toolbar_pimpl.C (setPixmap): simplify a bit
2926
2927 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2928
2929         * Toolbar_pimpl.C (ToolbarCB):
2930         * Menubar_pimpl.C (MenuCallback): use verboseDispatch instead of
2931         dispatch.
2932
2933 2002-01-12  Allan Rae  <rae@lyx.org>
2934
2935         * FormTabular.C (FormTabular): Fix Purify UMR.
2936
2937         * FormPreferences.C (build): "Conversion" is a better name.
2938
2939 2002-01-10  Martin Vermeer  <martin.vermeer@hut.fi>
2940
2941         * FormMathsPanel.[Ch] (dispatchFunc): new method. Invokes
2942         LyXFunc::dispatch.
2943
2944         * FormMathsStyle.C (apply): use LFUNs to apply, not insertSymbol.
2945
2946 2002-01-10  Angus Leeming  <a.leeming@ic.ac.uk>
2947
2948         * FormPreferences.C:
2949         * forms/form_preferences.fd: change names and descriptions of popup
2950         font variables to reflect their actual use.
2951
2952         * Menubar_pimpl.C: return MENU_LABEL_STYLE to FL_NORMAL_STYLE.
2953
2954 2002-01-10  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
2955
2956         * FormPreferences.C (input): allow empty values for document_path
2957         and template_path.
2958
2959         * FormFiledialog.C (SetButton):
2960         (FileDlgCB): do not disable directory buttons if they have an
2961         empty path.
2962         (SetDirectory): if the argument is an empty string, change to
2963         cwd().
2964
2965 2002-01-09  Martin Vermeer <martin.vermeer@hut.fi>
2966
2967         * forms/form_maths_style.fd:
2968         * FormMathsStyle.[Ch]: New files, Implementing a mathed pop-up for math
2969         size "styles" and font types.
2970         * FormMathsPanel.[Ch]:
2971         * MathsSymbols.C:
2972         * forms/form_maths_panel.fd: Modified too.
2973
2974 2002-01-08  Martin Vermeer  <martin.vermeer@hut.fi>
2975
2976         * Menubar_pimpl.C (create_submenu):
2977         * Toolbar_pimpl.C (update): use FuncStatus.
2978
2979 2002-01-08  Angus Leeming  <a.leeming@ic.ac.uk>
2980
2981         * xform_helpers.[Ch] (getStringFromBrowser): a littel wrapper function
2982         for fl_get_browser_line that is guaranteed to return a valid string.
2983
2984 2002-01-08  John Levon  <moz@compsoc.man.ac.uk>
2985
2986         * FormSpellchecker.C: fix possible crash on clicking a suggestion
2987
2988 2002-01-08  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
2989
2990         * forms/form_document.fd (bullets): fix small cosmetic problem after
2991         John's radio2button change.
2992
2993 2002-01-07  Angus Leeming  <a.leeming@ic.ac.uk>
2994
2995         * FormDocument.C:
2996         * forms/form_document.fd: change the labels and variable names of
2997         left_margin, right_margin to inner_margin, outer_margin, in line
2998         with bugzilla bug #157.
2999
3000         * FormFiledialog.C (Reread): used locally stored modtime variable
3001         rather than make repeated calls to fileInfo.getModificationTime().
3002
3003         * xforms_helpers.C (ReadableFile, WriteableFile): added a couple of
3004         isOK() checks to the use of the FileInfo instance and removed those
3005         FIXMEs.
3006
3007         * Menubar_pimpl.C: added a variable MENU_LABEL_STYLE and use it.
3008         Set it to FL_BOLD_STYLE, thereby fixing bugzilla bug #32.
3009
3010 2002-01-07  John Levon  <moz@compsoc.man.ac.uk>
3011
3012         * form_*:
3013         * forms/form_*: change radio buttons to round3dbutton
3014
3015 2002-01-05  John Levon  <moz@compsoc.man.ac.uk>
3016
3017         * FormFiledialog.C: add FIXME
3018
3019         * xforms_helpers.C: fix use of FileInfo
3020
3021 2002-01-07  John Levon  <moz@compsoc.man.ac.uk>
3022
3023         * FormTabular.h:
3024         * FormTabular.C:
3025         * form_tabular.h:
3026         * form_tabular.C:
3027         * forms/form_tabular.fd: ugly fix to get around
3028           some of the UI problems (bug #110).
3029
3030 2002-01-04  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
3031
3032         * FormDocument.C: Recognize the default paper settings too
3033         when setting the default length values (cm or inch).
3034         * FormParagraph.C: do the same.
3035
3036 2001-12-11  Michael A. Koziarski <michael@koziarski.org>
3037
3038         * FormFloat.C: changes to prevent here definitely being used
3039         with wide figures.
3040
3041 2001-12-29  Dekel Tsur  <dekelts@tau.ac.il>
3042
3043         * FormMathsMatrix.C (AlignFilter): Allow entering the '|' char.
3044
3045 2001-12-19  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3046
3047         * DropDown.C: always include <config.h> in sources.
3048
3049         * xforms_helpers.h:
3050         * FormFiledialog.h:
3051         * Timeout_pimpl.h:
3052         * DropDown.h: do not include <config.h> in headers
3053
3054 2001-12-20  Juergen Vigna  <jug@sad.it>
3055
3056         * FormTabular.C (update): final LT-h/f support modifications.
3057
3058 2001-12-19  Juergen Vigna  <jug@sad.it>
3059
3060         * FormTabular.C (update): change a bit the tabular layout and added
3061         better longtable options handling.
3062
3063 2001-12-15  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3064
3065         * FormToc.C: using std::endl
3066
3067 2001-12-14  John Levon  <moz@compsoc.man.ac.uk>
3068
3069         * FormToc.C: fix crash when no entries, and
3070           update types properly
3071
3072 2001-12-11  Ben Stanley <bds02@uow.edu.au>
3073
3074         * Menubar_pimpl.C: Fixed a crashing bug when document has more
3075         than 80 floats and using xforms 0.88
3076
3077 2001-12-11  Jean-Marc Lasgouttes  <lasgouttes@freesurf.fr>
3078
3079         * xforms_helpers.C: include lyxlength.h here
3080         * xforms_helpers.h: ... but not here
3081
3082         * FormTabular.C: use LyXLength instead of string wherever
3083         necessary; whitespace changes.
3084
3085 2001-12-08  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
3086
3087         * forms/form_preferences.fd: use the same name for font sizes
3088         than the character dialog.
3089
3090 2001-11-26  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
3091
3092         * forms/form_search.fd: Added label text to search buttons
3093         (to make the shortcuts visible).
3094
3095 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
3096
3097         * FormParagraph.C: set combo box correctly for VSpace::LENGTH
3098
3099 2001-12-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3100
3101         * FormFiledialog.C:
3102         * xforms_helpers.C: change "while(" to "while ("
3103
3104 2001-12-05  Allan Rae  <rae@lyx.org>
3105
3106         * FormParagraph.C (apply): One other LyXText fix.
3107
3108 2001-12-05  John Levon  <moz@compsoc.man.ac.uk>
3109
3110        * FormParagraph.C (getCurrentParagraph):
3111         (apply):  get the right LyXText !
3112
3113 2001-11-29  John Levon  <moz@compsoc.man.ac.uk>
3114
3115         * FormParagraph.C: disallow page breaks in insets
3116
3117 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
3118
3119         * FormParagraph.C: allow signed space above/below, actually
3120           use space below units
3121
3122 2001-11-04  John Levon  <moz@compsoc.man.ac.uk>
3123
3124         * FormToc.C: fixes to make floatlists work
3125
3126 2001-11-23  John Levon  <moz@compsoc.man.ac.uk>
3127
3128         * Makefile.am:
3129         * Alert_pimpl.C: Alert etc.
3130
3131         * xforms_helpers.h:
3132         * xforms_helpers.C:
3133         * forms/fdfix.sh: move idex etc. to here
3134
3135         * GUIRunTime.C: move getScreenDPI() to here
3136
3137 2001-11-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
3138
3139        * forms/form_ref.fd, form_preferences.fd, form_citation.fd,
3140        form_graphics.fd, form_paragraph.fd: Enlarged the Restore button
3141        to 100p (now German translation fits in).
3142        * forms/form_external.fd, form_bibtex.fd, form_print.fd,
3143        form_preferences.fd, form_graphics.fd, form.include.fd,
3144        form-external.fd:
3145        Unified label "Browse..." and unified its width to 100p.
3146
3147 2001-11-13  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
3148
3149        * forms/form_graphics.fd: fixed shortcut clash
3150        * forms/form-external.fd: added shortcut for "Apply"
3151
3152 2001-11-12  John Levon  <moz@compsoc.man.ac.uk>
3153
3154         * FormFiledialog.C: don't reset path if new dir
3155           doesn't exist.
3156
3157 2001-11-12  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
3158
3159        * forms/form_document.fd: Renamed "Save as Class Defaults"
3160        to "Save as Document Defaults"
3161        * FormDocument.C:
3162        Removed the setEnabled-Definitions for the
3163        "save_default"-Button since it causes nothing but trouble.
3164        Changed the text of AskQuestion on saveParamsAsDefault.
3165
3166 2001-11-07  John Levon  <moz@compsoc.man.ac.uk>
3167
3168         * DropDown.C: fix crash, improve behaviour a bit
3169
3170 2001-11-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3171
3172         * FormDocument.C (class_apply):
3173         (paper_apply):
3174         (language_apply):
3175         (options_apply):
3176         (bullets_apply): add a version of these methods taking a
3177         BufferParams& parameters. The original versions are now wrappers
3178         around these.
3179         (saveParamsAsDefault): new function, moved from old
3180         LFUN_LAYOUT_SAVE_DEFAULT code.
3181
3182 2001-11-03  John Levon  <moz@compsoc.man.ac.uk>
3183
3184         * Makefile.am:
3185         * DropDown.h:
3186         * DropDown.C: drop-down completion
3187
3188 2001-11-04  John Levon  <moz@compsoc.man.ac.uk>
3189
3190         * forms/form_graphics.fd: change clashing shortcut
3191
3192 2001-10-24  Juergen Vigna  <jug@sad.it>
3193
3194         * FormTabular.C: changed calls for footer/headers of longtabulars.
3195
3196 2001-10-23  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
3197
3198         * forms/form_tabular.fd: Add value choices
3199         * FormTabular.C: Handle that choices
3200
3201         * FormDocument.C: fix small bug.
3202
3203 2001-10-23  Angus Leeming  <a.leeming@ic.ac.uk>
3204
3205         * FormGraphics.[Ch]: move some parameters out of the heaader file and
3206         into namespace anon.
3207
3208         * FormPreferences.C:
3209         * forms/form_preferences.fd: replaced button_colorspace with two
3210         radio buttons, button_hsv and button_rgb.
3211
3212 2001-10-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
3213
3214        * forms/form_document.fd:
3215          Class: add a value choice for Default Skip.
3216          Some rearrangements (minor tweaks).
3217        * FormDocument.C: Handle that choice, minor tweaks.
3218        * forms/form_paragraph.fd: Add value choices
3219        * FormParagraph.C: Handle that choices.
3220        * FormMinipage.C/FormGraphics.C: Small tweaks.
3221
3222 2001-10-15  Angus Leeming  <a.leeming@ic.ac.uk>
3223
3224         * FormDocument.C: fixed some bugs in the Paper tab.
3225
3226         * xforms_helpers.[Ch] (updateWidgetsFromLengthString): add argument
3227         specifying default unit for choice if input string is empty.
3228
3229 2001-10-12  Angus Leeming  <a.leeming@ic.ac.uk>
3230
3231         * FormDocument.C (input): one more tweak...
3232
3233 2001-10-10  Herbert Voss  <voss@perce.de>
3234
3235         * FormTexinfo.[Ch]: some changes to the code
3236
3237 2001-10-10  André Pönitz  <poenitz@htwm.de>
3238
3239         * FormsMathMatrix.C: add missing space between v- and h-alignment
3240         parameters
3241
3242 2001-10-09  Herbert Voss  <voss@perce.de>
3243
3244         * FormTexinfo.[Ch]:
3245         * forms/form_texinfo.fd: new files. Display information about the
3246         installed texfiles (cls,sty,bst).
3247
3248         * FormShowFile.[Ch]: new files. Display the contents of a file.
3249
3250         * Dialog.C:
3251         * Makefile.am: modified appropriately.
3252
3253 2001-10-09  Angus Leeming  <a.leeming@ic.ac.uk>
3254
3255         * xforms_helpers.[Ch] (getLengthFromWidgets): new function.
3256         Given input and choice widgets, create a string such as "1cm".
3257         (updateWidgetsFromLengthString): new function.
3258         Given a string such as "1cm", set the input and choice widgets.
3259
3260         * FormDocument.C:
3261         * forms/form_document.fd: improve the GUI of the paper tab using these
3262         new helper functions.
3263
3264 2001-10-07  Adrien Rebollo  <adrien.rebollo@gmx.fr>
3265
3266         * FormDocument.C (build): support latin4
3267
3268 2001-10-05  Adrien Rebollo  <adrien.rebollo@gmx.fr>
3269
3270         * FormDocument.C (build): support latin3
3271
3272 2001-10-04  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3273
3274         * forms/form_aboutlyx.fd: use flat boxes for tabs.
3275
3276 2001-10-03  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
3277
3278         * forms/form_document.fd: rearrangement of the paper tab;
3279         rename "use geometry" to "custom margins/sizes".
3280
3281         * FormDocument.C: add code to avoid the input of senseless data
3282         in document -> paper.
3283
3284 2001-10-01  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
3285
3286         * FormDocument.C: Disable choice "Special" if landscape
3287         is chosen to prevent senseless values.
3288
3289 2001-09-28  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
3290
3291         * forms/form_preferences.fd: small tweaks.
3292
3293 2001-09-24  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
3294
3295         * forms/form_document.fd: Removed "Auto Reset", renamed the "Reset"
3296         button to "Use Class Defaults" and moved it outside the tab.
3297         Some more minor tweaking.
3298
3299         * FormDocument.C: handled this changes.
3300
3301 2001-09-27  Angus Leeming  <a.leeming@ic.ac.uk>
3302
3303         * Dialogs.C: remove splash dialog code.
3304
3305         * FormSplash.[Ch]:
3306         * form_splash.[Ch]:
3307         * forms/form_splash.fd: removed.
3308
3309         * Makefile.am:
3310         * forms/makefile: remove splash dialog files.
3311
3312         * Menubar_pimpl.C (MenuCallback): no longer call
3313         Dialogs::destroySplash.
3314
3315 2001-09-27  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3316
3317         * forms/form_preferences.fd: fix typo
3318
3319 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
3320
3321         * FormRef.C:
3322         * forms/form_ref.fd: renamed the widgets in the standard style.
3323
3324         * xforms_helpers.[Ch] (getVectorFromChoice, getVectorFromBrowser): new
3325         helper functions. Build a vector<string> from the contents of
3326         an fl_choice and fl_browser respectively.
3327
3328         * FormCitation.C (fillChoice, updateBrowser):
3329         * FormRef.C: use these new functions to only update the choices and
3330         browsers when absolutely necessary.
3331
3332 2001-09-24  Angus Leeming  <a.leeming@ic.ac.uk>
3333
3334         * FormBase.C (InputCB):
3335         * FormBaseDeprecated.C (InputCB): generalised Dekel's fix to the
3336         "select choice < 1" problem.
3337
3338         * FormRef.C (input): undid Dekel's change in light of the above
3339         generalisation.
3340
3341 2001-09-21  Dekel Tsur  <dekelts@tau.ac.il>
3342
3343         * FormRef.C (input): Fix crash when using dialog with keyboard.
3344
3345 2001-09-20  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
3346
3347         * forms/form_document.fd: small tweaks.
3348
3349 2001-09-19  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
3350
3351         * forms/form_document.fd: Added checkbox "auto_reset", button
3352         "reset_defaults" and button "save_defaults".
3353
3354         * Form_Document.[Ch]: Removed AskQuestion when changing class.
3355         Implement the 2 buttons and the checkbox described above.
3356
3357         * forms/form_preferences.fd: Added checkbox "auto_reset" (to
3358         save the default value of that lyxrc)
3359
3360         * FormPreferences.C: Handle that button
3361
3362 2001-09-18  Angus Leeming  <a.leeming@ic.ac.uk>
3363
3364         * form_ref.fd: a little tweaking.
3365
3366         * FormSpellchecker.C (build): set the bounds to the slider, so it
3367         updates during a spellchecking session.
3368
3369 2001-09-14  Angus Leeming  <a.leeming@ic.ac.uk>
3370
3371         * forms/form_preferences.fd: rearrangement and addition of new
3372         Display Graphics radio buttons to Look & Feel->Misc
3373         (By Jürgen Spitzmüller).
3374
3375         * FormPreferences.C: modify new lyxrc variable "display_graphics"
3376         depending on the values of the Display Graphics radio buttons.
3377
3378         * FormGraphics.C: use this variable.
3379
3380 2001-09-13  Angus Leeming  <a.leeming@ic.ac.uk>
3381
3382         * FormMathsBitmap.[Ch]: add d-tor to finally fix a memory leak.
3383         Hoorah! Happy Birthday to me!
3384
3385 2001-09-07  Dekel Tsur  <dekelts@tau.ac.il>
3386
3387         * forms/form_ref.fd: Add buffer button.
3388
3389         * FormRef.C (update): Handle the buffer button.
3390         (input): Ditto
3391
3392 2001-09-13  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
3393
3394         * forms/form_graphics.fd: complete rewrite of the dialog
3395         (Most work was done by Angus, though).
3396
3397 2001-09-12  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3398
3399         * combox.C (hide): execute the callback _after_ closing the
3400         combox.
3401
3402 2001-09-12  Angus Leeming  <a.leeming@ic.ac.uk>
3403
3404         * FormDocument.C (c-tor): initialise some variables.
3405
3406         * forms/form_citation.fd: remove spurious shortcut to a labelframe!
3407         (Thereby removing a warning message when the dialog is built.)
3408
3409         * FormFloat.C (input): return SMI_VALID.
3410
3411 2001-09-11  Angus Leeming  <a.leeming@ic.ac.uk>
3412
3413         * FormDocument.C (input, options_update): add code to enable the
3414         Author-Year/Numerical citation choice only if the natbib checkbox is
3415         active.
3416
3417         * FormFloat.[Ch]: added new method input() to control the behaviour of
3418         the buttons better.
3419         * forms/form_float.fd: renamed Here as button_here_definitely.
3420
3421         * FormGraphics.C:
3422         * forms/form_graphics.fd: add callbacks to a few widgets that didn't
3423         have them, so enabling the Ok, Apply buttons appropriately.
3424
3425 2001-09-08  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
3426
3427         * forms/form_paragraph.fd: cosmetics (renamed "Label Width" to "Longest
3428         Label", added a labelframe).
3429
3430 2001-09-10  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3431
3432         * Toolbar_pimpl.C (C_Toolbar_BubblePost): fix linking
3433         (C_Toolbar_BubbleTimerCB): fix linking
3434
3435         * FormMathsBitmap.C (form): use get() to get the raw pointer.
3436
3437         * FormMathsBitmap.h: use shared_c_ptr for form_ as well.
3438
3439 2001-09-09  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3440
3441         * combox.C (C_Combox_input_cb): make it static
3442         (C_Combox_combo_cb): make it static
3443         (C_Combox_peek_event): make it static
3444
3445         * Toolbar_pimpl.C (C_Toolbar_BubbleTimerCB): make it static
3446         (C_Toolbar_BubblePost): make it static
3447         (C_Toolbar_ToolbarCB): make it static
3448
3449         * Timeout_pimpl.C (C_intern_timeout_cb): make it static
3450
3451         * Menubar_pimpl.C (C_Menubar_Pimpl_MenuCallback): make it static
3452
3453         * Makefile.am (libxforms_la_LIBADD): add this and depend on the
3454         gui libs
3455
3456 2001-09-07  Angus Leeming  <a.leeming@ic.ac.uk>
3457
3458         * FormBaseDeprecated.[Ch]: use the same allow_resize methodology as has
3459         been used successfully in FormBase.
3460         (show): call bc().refresh() after building the dialog to activate the
3461         button controller.
3462
3463         * FormPreferences.C (build): remove hack to fix butoon controller as
3464         the correct fix is in FormBaseDeprecated.
3465
3466         * FormPreferences.[Ch] (connect, disconnect): removed (redundant).
3467
3468         * FormMaths*.C (c-tor): prohibit resizing of the dialog.
3469
3470 2001-09-07  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3471
3472         * Toolbar_pimpl.C (setLayout):
3473         (layoutSelected): make them work even when gettext has been
3474         translating the interface.
3475
3476 2001-09-07  Angus Leeming  <a.leeming@ic.ac.uk>
3477
3478         * FormMathsSpace.C: Fix bug: the "Maths spacing" dialog is broken
3479         ("Apply" does not work without former user change in the dialog).
3480
3481         * FormPreferences.C (build): Fix bug: if you start LyX and open the
3482         Preferences dialog, "Apply" is activated even though no change has been
3483         made so far.
3484
3485 2001-09-07  Rob Lahaye  <lahaye@users.sourceforge.net>
3486
3487         * FormBase.C (show): use controller_.IconifyWithMain() to control
3488         the dialog's show policy
3489
3490         * FormBaseDeprecated.C (show): ditto, but use lyxrc variable directly.
3491
3492         * FormPreferences.C:
3493         * forms/form_preferences.fd: add a check_dialogs_iconify_with_main
3494         check button to the Look & Feel->Misc tab and code to modify the lyxrc
3495         variable dialogs_iconify_with_main appropriately.
3496
3497 2001-09-07  Angus Leeming  <a.leeming@ic.ac.uk>
3498
3499         * FormBase.h: clean-up comments. Remove mutable status of minw_, minh_.
3500
3501 2001-09-06  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
3502
3503         * forms/form_character.fd: small cosmetics (aligned "Language:" right
3504         as suggested in Michael's Buglist).
3505
3506 2001-09-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3507
3508         * Toolbar_pimpl.C (updateLayoutList): do not display obsolete
3509         layouts
3510         (layoutSelected): remove the numeric argument and use the text of
3511         the combox entry instead.
3512
3513         * combox.C: lowercase a few remaining methods, rename select_text
3514         to select
3515         * several files: propagate these changes
3516
3517 2001-09-03  Angus Leeming  <a.leeming@ic.ac.uk>
3518
3519         * FormPreferences.C: add fl_set_input_return to input_paperoption.
3520
3521 2001-09-02  John Levon  <moz@compsoc.man.ac.uk>
3522
3523         * FormParagraph.C: fix default line spacing case
3524
3525 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
3526
3527         * FormParagraph.C: disable space inputs when != Length
3528
3529 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
3530
3531         * FormPreferences.C:
3532         * form_preferences.h:
3533         * form_preferences.C:
3534         * forms/form_preferences.fd: add view_dvi_paper_option
3535
3536 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
3537
3538         * FormMathsPanel.h: sub dialogs must be Ignorant.
3539
3540 2001-08-31  John Levon  <moz@compsoc.man.ac.uk>
3541
3542         * FormParagraph.C: fix to not allow 0 linespacing
3543
3544 2001-08-29  Angus Leeming  <a.leeming@ic.ac.uk>
3545
3546         * FormCitation.C (c-tor): prevent re-sizing of the dialog.
3547
3548         * FormParagraph.C (input): set fl_get_choice check for the linespacing
3549         to 5 not 4. xforms arrays start at 1.
3550
3551 2001-08-29  Angus Leeming  <a.leeming@ic.ac.uk>
3552
3553         * FormParagraph.[Ch]:
3554         * forms/form_paragraph.fd: clean up of dialog and of controlling
3555         code.
3556
3557 2001-08-29  Angus Leeming  <a.leeming@ic.ac.uk>
3558
3559         * FormBase.C (C_CutandPastePH): new function that can be used as a
3560         pre-handler to any xforms text input widget. Will trigger an event on
3561         pasting into the widget using the middle mouse button.
3562
3563         * FormPreamble.C (build): use this pre-handler for the input widget.
3564
3565 2001-08-26  Angus Leeming  <a.leeming@ic.ac.uk>
3566
3567         * FormCitation.C:
3568         * forms/form_citation.fd: a little tweaking to ensure that the
3569         style choice remains centred within the frame if its contents change.
3570
3571         * FormBase.h: added an allow_resize_ member variable. If false
3572         resizing the dialog is prohibitted.
3573
3574         * FormBase.[Ch]:
3575         * FormBrowser.[Ch]: modify c-tors to pass this new variable to FormBase.
3576
3577         * FormAboutlyx.C:
3578         * FormCharacter.C:
3579         * FormThesaurus.C:
3580         make use of this functionality to ensure that the dialog cannot be
3581         resized.
3582
3583 2001-08-27  John Levon  <moz@compsoc.man.ac.uk>
3584
3585         * GUIRunTime.C: initApplication() should take a int & argc
3586
3587 2001-08-24  John Levon  <moz@compsoc.man.ac.uk>
3588
3589         * FormCitation.h:
3590         * FormCitation.C: tidy code a little
3591
3592         * GUIRunTime.C: more informative error
3593
3594 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
3595
3596         * forms/form_preferences.fd: order the items "logically" so that
3597         tabbing through the dialog makes sense. Close bug #404569.
3598
3599 2001-08-23  Angus Leeming  <a.leeming@ic.ac.uk>
3600
3601         * FormPreferences.C: Tentative fix of John's "no point in spell
3602         command "None"" bug, #223255.
3603
3604 2001-08-23  Herbert Voss  <voss@perce.de>
3605
3606         * FormBibtex.C (input): normalize database list
3607
3608 2001-08-21  Angus Leeming  <a.leeming@ic.ac.uk>
3609
3610         * FormBibtex.C: make sure that any database is stored only once.
3611
3612 2001-08-22  Herbert Voss  <voss@perce.de>
3613
3614         * FormBibtex.C (input): fix for multiple databases
3615
3616 2001-08-21  Herbert Voss  <voss@perce.de>
3617
3618         * FormBibtex.C (input): extension handling for ".bst"
3619
3620 2001-08-21  Angus Leeming  <a.leeming@ic.ac.uk>
3621
3622         * forms/form_bibtex.fd: activate "Ok" when the "Add bibliography to TOC"
3623         check button is pressed.
3624
3625 2001-08-20  Dekel Tsur  <dekelts@tau.ac.il>
3626
3627         * FormParagraph.C (general_apply): Handle default spacing.
3628         (general_update): Ditto.
3629
3630 2001-08-20  Angus Leeming  <a.leeming@ic.ac.uk>
3631
3632         * FormBibtex.C:
3633         * forms/form_bibtex.fd: get the browse buttons working as they should.
3634
3635 2001-08-20  Herbert Voss  <voss@perce.de>
3636
3637         * FormBibtex.C:
3638         * forms/form_bibtex.fd: enhanced bibtex-data gui to browse for
3639         databases and styles. Added an option for "bibliography into toc"
3640
3641 2001-08-18  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3642
3643         * FormMathsBitmap.h: use the lyx::shared_c_ptr that uses free() to
3644         cleanup.
3645
3646 2001-08-15  John Levon  <moz@compsoc.man.ac.uk>
3647
3648         * combox.h: fix source doc
3649
3650         * form_math_matrix.C:
3651         * forms/form_math_matrix.fd: new layout
3652
3653 2001-08-16  John Levon  <moz@compsoc.man.ac.uk>
3654
3655         * form_paragraph.h:
3656         * form_paragraph.C:
3657         * forms/form_paragraph.fd:
3658         * FormParagraph.C: support per-para linespacing
3659
3660         * forms/form_float.fd:
3661         * form_float.C: fix shortcut typo
3662
3663 2001-08-15  Angus Leeming  <a.leeming@ic.ac.uk>
3664
3665         * forms/form_character.fd: small adjustment to the position of John's
3666         extra Language label.
3667
3668 2001-08-09  André Pönitz  <poenitz@htwm.de>
3669
3670         * FormMathsDelim.C: renamed some delimiter parameters.
3671
3672 2001-08-09  Angus Leeming  <a.leeming@ic.ac.uk>
3673
3674         * FormCitation.C (build):
3675         * FormDocument.C (build):
3676         * FormMinipage.C (build):
3677         * FormParagraph.C (build):
3678         * FormRef.C (build): added stuff to read-only list in the
3679         button controller.
3680
3681         * FormCitation.C (update): disable citation style stuff when not using
3682         Natbib.
3683
3684 2001-08-06  Juergen Vigna  <jug@sad.it>
3685
3686         * forms/form_ert.fd: new file.
3687
3688         * form_ert.[Ch]: new files.
3689
3690         * FormERT.[Ch]: new files. Implementation of ERT dialog.
3691
3692 2001-08-01  Angus Leeming  <a.leeming@ic.ac.uk>
3693
3694         * FormPreferences.C (Color c-tor): initialise modifiedXformsPrefs.
3695
3696 2001-07-30  Angus Leeming  <a.leeming@ic.ac.uk>
3697
3698         * GUIRunTime.C (processEvents, runTime): small code rearrangement.
3699
3700 2001-08-01  John Levon  <moz@compsoc.man.ac.uk>
3701
3702         * FormMathsPanel.C:
3703         * FormMathsPanel.h:
3704         * form_maths_panel.C:
3705         * form_maths_panel.h:
3706         * forms/form_maths_panel.fd: re-add dots bitmaps
3707
3708         * FormRef.C: "Goto" -> "Go to"
3709
3710 2001-07-29  John Levon  <moz@compsoc.man.ac.uk>
3711
3712         * FormMathsBitmap.C: initialise form_
3713
3714 2001-07-29  Baruch Even  <baruch@lyx.org>
3715
3716         * src/forms/form_graphics.fd:
3717         * src/FormGraphics.C: Added support for the new horizontal scale factor.
3718
3719 2001-07-30  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3720
3721         * forms/makefile (SRCS): add form_float.fd
3722
3723         * forms/form_float.fd: new file
3724
3725         * form_float.[Ch]: new files
3726
3727         * Makefile.am (libxforms_la_SOURCES): add FormFloat.C,
3728         FormFloat.h, form_float.C and form_float.h
3729
3730         * FormFloat.[Ch]: new files
3731
3732         * Dialogs.C: init GUIFloat is well
3733
3734 2001-07-29  Asger Alstrup Nielsen  <alstrup@alstrup>
3735
3736         * FormToc.C (updateType): Fix problem with TOC that couldn't be
3737         updated because the type list was not updated.
3738
3739 2001-07-26  Angus Leeming  <a.leeming@ic.ac.uk>
3740
3741         * forms/form_aboutlyx.fd: made a bit bigger to get the Copyright &
3742         Version stuff in.
3743
3744         * input_validators.[Ch] (fl_int_filter, fl_float_filter): new methods.
3745
3746         * FormGraphics.C (build): uncommented the fl_set_input_return call for
3747         input_rotate_angle. Set input filter on rotate_angle to make it accept
3748         only floating point numbers.
3749         (input): Browse now activates the Ok button approriately.
3750
3751 2001-07-26  John Levon  <moz@compsoc.man.ac.uk>
3752
3753         * Dialogs.C:
3754         * Makefile.am:
3755         * FormThesaurus.h:
3756         * FormThesaurus.C:
3757         * form_thesaurus.h:
3758         * form_thesaurus.C:
3759         * forms/makefile:
3760         * forms/form_thesaurus.fd: add thesaurus
3761
3762 2001-07-26  Baruch Even  <baruch@lyx.org>
3763
3764         * FormGraphics.h:
3765         * FormGraphics.C: Removed hide method since it was interfering with the
3766         needed work, it cleared several vectors that were needed for proper
3767         functioning. Also changed rotateAngle to float.
3768
3769         * FormGraphics.C:
3770         * forms/form_graphics.fd: Removed inline option, all InsetGraphics figures
3771         are inlined.
3772
3773 2001-07-23  John Levon  <moz@compsoc.man.ac.uk>
3774
3775         * FormInclude.C: add load file facility back
3776
3777 2001-07-23  John Levon  <moz@compsoc.man.ac.uk>
3778
3779         * FormCharacter.C: disable resizing as it doesn't work
3780
3781         * FormPreamble.C: allow to copy-paste from RO preamble by
3782           enabling editing.
3783
3784 2001-07-20  Jürgen Spitzmüller  <juergen.sp@t-online.de>
3785
3786         * forms/form_citation.fd: resized form to fit on a 800x600 screen.
3787
3788 2001-07-19  Angus Leeming  <a.leeming@ic.ac.uk>
3789
3790         * FormCitation.[Ch]: changes associated with adding natbib support.
3791         New helper functions, string_width, fillChoice, updateStyle.
3792         (apply): set the citation command appropriately.
3793         (input): deal with the citation command choices.
3794         (update): parse the citation command and deal with it. Nuke the
3795         setSize stuff.
3796         (setSize): nuked!
3797
3798         * FormDocument.C (build): add options to use natbib.
3799
3800         * forms/form_citation.fd: add natbib support. Rearrange dialog to
3801         fit onto shorter screens.
3802
3803         * forms/form_document.fd: add natbib support.
3804
3805 2001-07-16  Juergen Vigna  <jug@sad.it>
3806
3807         * form_aboutlyx.C: set default for "Close" button to "ESC"-key.
3808
3809 2001-07-13  Angus Leeming  <a.leeming@ic.ac.uk>
3810
3811         Consistent use of Lsstream.h:
3812         * FormAboutlyx.C (build):
3813         * FormVCLog.C (update): std::ostringstream -> ostringstream.
3814
3815         * FormMathsDelim.C (apply):
3816         * FormMathsMatrix.C (apply): std::stringstream -> stringstream.
3817
3818 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
3819
3820         * implement 1 about lyx dialog instead of 3 separate ones
3821
3822         * FormCredits.[Ch]: removed
3823         * FormCopyright.[Ch]: removed
3824         * form_credits.[Ch]: removed
3825         * forms/form_credits.fd: removed
3826         * form_copyright.[Ch]: removed
3827         * forms/form_copyright.fd: removed
3828         * FormAboutlyx.[Ch]: added
3829         * form_aboutlyx.[Ch]: added
3830         * forms/form_aboutlyx.fd: added
3831         * Dialogs.C: add about lyx stuff
3832
3833 2001-07-13  Edwin Leuven  <leuven@fee.uva.nl>
3834
3835         * add spellchecker
3836
3837         * FormPreferences.[Ch]: rename spellchecker to spelloptions
3838         * form_preferences.[Ch]: idem
3839         * forms/form_preferences.fd: idem
3840         * FormSpellchecker.[Ch]: added
3841         * form_spellchecker.[Ch]: added
3842         * forms/form_spellchecker.fd: added
3843         * Dialogs.C: add spellchecker
3844
3845 2001-07-12  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3846
3847         * FormFiledialog.C: (*it). -> it->
3848         * Toolbar_pimpl.C: ditto
3849         * RadioButtonGroup.C: ditto
3850         * FormPreferences.C: ditto
3851
3852 2001-07-03  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3853
3854         * GUIRunTime.C (x11Display):
3855         (x11Screen):
3856         (x11Colormap):
3857         (x11VisualDepth): new methods
3858
3859 2001-07-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3860
3861         * FormDocument.C (class_apply): call CutAndPaste::'s staitc method
3862         directly.
3863
3864         * Toolbar_pimpl.h: make owner be a XFormsView, small changes
3865         because of this.
3866
3867         * GUIRunTime.C (createMainView): implement
3868
3869 2001-06-22  John Levon  <moz@compsoc.man.ac.uk>
3870
3871         * FormCharacter.C:
3872         * form_character.C:
3873         * forms/form_character.fd: hide the widget underneath language
3874           combox hack.
3875
3876 2001-06-27  John Levon  <moz@compsoc.man.ac.uk>
3877
3878         * FormPreferences.h:
3879         * FormPreferences.C: connect and operator
3880           showSpellcheckerPreferences signal
3881
3882         * FormPrint.C (input): modify to select radio_file
3883           when the user uses the filename input
3884
3885 2001-06-26  The LyX Project  <lyx@violet.home.sad.it>
3886
3887         * combox.C (remove): send debug output to Debug::GUI.
3888
3889 2001-06-26  The LyX Project  <lyx@rose.home.sad.it>
3890
3891         * Menubar_pimpl.C (create_submenu):
3892         * Toolbar_pimpl.C (update): update to use func_status
3893
3894 2001-06-25  The LyX Project  <lyx@tulip.home.sad.it>
3895
3896         * FormPreferences.C (Path::feedback): remove bogus description of
3897         lyxpipe.
3898
3899 2001-06-16  Angus Leeming  <a.leeming@ic.ac.uk>
3900
3901         * xformsBC.h: clean-up of included files.
3902
3903 2001-06-15  Angus Leeming  <a.leeming@ic.ac.uk>
3904
3905         * FormDocument.C:
3906         * FormParagraph.C (c-tor): cosmetic name change of signal.
3907
3908         * FormParagraph.[Ch]: added machinery to act on an updateParagraph
3909         signal. It's pretty crude at the moment! Mental note: would be more
3910         elegant if we passed a LyXParagraph & with both the signals rather than
3911         search through the Buffer.
3912
3913 2001-06-13  Angus Leeming  <a.leeming@ic.ac.uk>
3914
3915         * *.[h]: added // -*- C++ -*-
3916         * *.[C]: removed // -*- C++ -*-
3917
3918         * FormCharacter.C (update): now uses contents of font_, stored
3919         permanently by the controller to update() the dialog.
3920
3921 2001-06-12  Angus Leeming  <a.leeming@ic.ac.uk>
3922
3923         * FormInclude.C:
3924         * form_include.fd: (various places): Ok button is now activated when
3925         the filename is input from the keyboard.
3926
3927         * FormPreferences.C white-space change in various places.
3928         (Converters::GetTo): get the contents of "to" not "from"! Thus fix bug
3929         that disabled addition of new converters.
3930
3931         * FormCharacter.C (input, update): new methods. Activate the Apply
3932         button when any of the input fileds are not IGNORE.
3933
3934 2001-06-11  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3935
3936         * FormToc.C (input): change test slightly.
3937         (updateContents): clear list if empty and add no list msg.
3938
3939 2001-05-30  Angus Leeming  <a.leeming@ic.ac.uk>
3940
3941         * FormParagraph.C (update, general_update): enabling the align buttons
3942         is now dependent on the AlignPossible entry in the Layout.
3943
3944 2001-06-01  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3945
3946         * MathsSymbols.C:
3947         * FormMathsMatrix.C: bring C functions into global namespace if
3948         necessary.
3949
3950 2001-05-31  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3951
3952         * MathsSymbols.C (pixmapFromBitmapData): add std::
3953
3954         * FormMathsMatrix.C (AlignFilter): add std::
3955
3956 2001-05-22  Adrien Rebollo <rebollo@iaf.cnrs-gif.fr>
3957
3958         * FormDocument.C (build): add iso8859-15 support.
3959
3960 2001-05-08  Baruch Even  <baruch@lyx.org>
3961
3962         * Menubar_pimpl.C: Fixed compilation problem.
3963
3964 2001-05-04  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3965
3966         * Menubar_pimpl.C (add_toc): use name and not type with float.
3967         (create_submenu): correct call of new object
3968         (create_submenu): add FloatListInsert and FloatInsert to dummy clause.
3969
3970 2001-05-03  Lars Gullik Bjønnes  <larsbj@birdstep.com>
3971
3972         * FormParagraph.[Ch]: remove !NO_PEXTRA and !NEW_INSETS cruft
3973
3974 2001-04-26  Angus Leeming  <a.leeming@ic.ac.uk>
3975
3976         * Dialogs.C: included insetgraphicsParams.h
3977
3978         * FormMathsMatrix.C:
3979         * FormMathsBitmap.C: included LAssert.h
3980
3981 2001-04-24  Allan Rae  <rae@lyx.org>
3982
3983         * xforms_helpers.C (formatted): two consecutive spaces would kill it.
3984
3985 2001-04-20  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
3986
3987         * xforms_helpers.C (formatted): do not use string::substr(1) on a
3988         string of length 1 !
3989
3990 2001-04-16  Allan Rae  <rae@lyx.org>
3991
3992         * xforms_helpers.C (formatted):
3993         * Menubar_pimpl.C (add_toc): #warning triggers an error on Sun CC 6.0
3994         as an unrecognised preprocessor directive.  So ensure they're wrapped.
3995
3996 2001-04-06  John Levon  <moz@compsoc.man.ac.uk>
3997
3998         * FormTabularCreate.C: pass a pair of uints to the controller
3999
4000         * FormVCLog.C: the log appears as a stringstream now
4001
4002         * forms/form_external.fd: make params update state (from Angus)
4003
4004 2001-04-05  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4005
4006         * Menubar_pimpl.C: include gettext.h
4007
4008 2001-04-05  Lars Gullik Bjønnes  <larsbj@birdstep.com>
4009
4010         * xforms_helpers.C (formatted): constify length
4011
4012         * FormTabular.C (update): small restructure, adjust for scoped_ptr
4013         (input): adjust for scoped_ptr
4014         (input): constify str
4015
4016 2001-04-03  John Levon  <moz@compsoc.man.ac.uk>
4017
4018         * Dialogs.C: s/popup/dialog/
4019
4020         * Form*.C:
4021         * FormBase.h:
4022         * FormBase.C: s/ControlButton/ControlButtons/
4023         move bc().refresh() into base show() method
4024
4025         * Form*.C:
4026         * FormBaseDeprecated.C:
4027         s/UndoAll/restore/
4028
4029 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
4030
4031         * FormMathsPanel.C (c-tor): set button controller cancel label to close.
4032
4033         * FormToc.[Ch]:
4034         * forms/form_toc.fd: implemented controller-view split.
4035
4036         * Dialogs.C: associated changes.
4037
4038 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
4039
4040         * FormCitation.C:
4041         * forms/form_citation.fd: Don't change the name of the button when
4042         toggling between regular expression and simple searches.
4043         Squashed bug when creating a new inset, the keys field contained
4044         one (empty) key. No more; thanks, Dekel.
4045
4046         * FormExternal.C:
4047         * forms/form_external.fd: added Apply button.
4048
4049 2001-03-30  Angus Leeming  <a.leeming@ic.ac.uk>
4050
4051         * FormBase.[Ch]:
4052         * FormBrowser.[Ch]: changes associated with renaming ControlBase as
4053         ControlButton.
4054
4055         * FormExternal.[Ch]:
4056         * forms/form_external.fd: implemented controller-view split.
4057
4058         * Dialogs.C: associated changes.
4059
4060         * FormGraphics.[Ch]:
4061         * FormInclude.[Ch]:
4062         * FormPrint.[Ch]:
4063         moved the browsing functionality into the controller.
4064
4065         * xforms_helpers.[Ch]: moved browseFile to
4066         ../controllers/helper_funcs.[Ch]
4067
4068         * FormCitation.C
4069         * forms/form_citation.fd: added case sensitive search button.
4070
4071 2001-03-29  Angus Leeming  <a.leeming@ic.ac.uk>
4072
4073         * xformsBC.[Ch]: Patched in a slight reworking of Baruch Even's patch.
4074         Code moved into the generic template base class. Replaced
4075         setCancelCloseButton() with setButtonLabel().
4076
4077 2001-03-29  Juergen Vigna  <jug@sad.it>
4078
4079         * FormMinipage.C: removed widthp_ and all it's functions and changed
4080         to use new %-lengths of LyXLength.
4081
4082 2001-03-28  Angus Leeming  <a.leeming@ic.ac.uk>
4083
4084         * FormGraphics.[Ch]:
4085         * forms/form_graphics.fd:
4086         * FormIndex.[Ch]:
4087         * forms/form_index.fd: implemented controller-view split.
4088
4089         * Dialogs.C: associated changes.
4090
4091         * FormCharacter.[Ch]: changes associated with ControlCharacter cleanup.
4092
4093         * FormCitation.C: changes associated with ControlCitation cleanup.
4094
4095         * FormMinipage.h: cleaned-up forward declarations.
4096
4097 2001-03-27  Angus Leeming  <a.leeming@ic.ac.uk>
4098
4099         * FormMinipage.[Ch]:
4100         * forms/form_minipage.fd:
4101         * FormPrint.[Ch]:
4102         * forms/form_print.fd:
4103         * FormSplash.[Ch]: implemented controller-view split.
4104
4105         * Dialogs.C: associated changes.
4106
4107 2001-03-26  Angus Leeming  <a.leeming@ic.ac.uk>
4108
4109         * FormPreamble.[Ch]:
4110         * forms/form_preamble.fd:
4111         * FormRef.[Ch]:
4112         * forms/form_ref.fd:
4113         * FormSearch.[Ch]:
4114         * forms/form_search.fd:
4115         * FormTabularCreate.[Ch]:
4116         * forms/form_tabular_create.fd: implemented controller-view split.
4117
4118         * Dialogs.C: associated changes.
4119
4120 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
4121
4122         * FormError.[Ch]:
4123         * form_error.fd:
4124         * FormInclude.[Ch]:
4125         * form_include.fd:
4126         * FormUrl.[Ch]:
4127         * form_url.fd: implemented controller-view split.
4128
4129         * Dialogs.C: associated changes.
4130
4131         * FormBibitem.h:
4132         * FormBibtex.h:
4133         * FormCitation.h: moved methods from protected to private.
4134
4135 2001-03-23  Angus Leeming  <a.leeming@ic.ac.uk>
4136
4137         * FormCredits.C (build): changes associated with
4138         ControlCredits::getCredits returning a stringstream not a vector<string>
4139
4140 2001-03-22  Angus Leeming  <a.leeming@ic.ac.uk>
4141
4142         * FormCopyright.[Ch]:
4143         * forms/form_copyright.fd: implemented controller-view split.
4144
4145         * FormCredits.[Ch]:
4146         * forms/form_credits.fd: implemented controller-view split.
4147
4148         * Dialogs.C: associated changes.
4149
4150         * xforms_helpers.C (formatted): improved the function so that it now
4151         repects '\n' characters in the input string. Ie, the user can now
4152         specify line breaks explicitly.
4153
4154 2001-03-21  Angus Leeming  <a.leeming@ic.ac.uk>
4155
4156         * FormCharacter.[Ch]:
4157         * forms/form_character.fd: implemented controller-view split.
4158
4159         * Dialogs.C: associated changes.
4160
4161         * FormBase.C (input): changed return to SMI_VALID.
4162
4163         * FormCitation.C (updateBrowser): ensure that the keys are stripped of
4164         any surrounding whitespace.
4165
4166 2001-03-20  Angus Leeming  <a.leeming@ic.ac.uk>
4167
4168         * FormBase.[Ch] (input): no longer pure virtual. Has defualt state of
4169         SMI_NOOP.
4170         (FormBase2): split into two template classes, FormDB (DialogBase) and
4171         FormCB (ControllerBase) for greater flexibility.
4172
4173         * FormBibitem.[Ch]:
4174         * FormBibtex.[Ch]:
4175         * FormCitation.[Ch]: associated changes.
4176
4177         * FormBrowser.[Ch]:
4178         * FormLog.[Ch]:
4179         * FormVCLog.[Ch]:
4180         * forms/form_browser.fd: implemented controller-view split.
4181
4182         * Dialogs.C: associated changes.
4183
4184 2001-03-19  Angus Leeming  <a.leeming@ic.ac.uk>
4185
4186         * FormBibtex.[Ch]:
4187         * forms/form_bibtex.fd: implemented controller-view split.
4188
4189         * Dialogs.C: associated changes.
4190
4191 2001-03-19  Angus Leeming  <a.leeming@ic.ac.uk>
4192
4193         * FormBaseDeprecated.[Ch]: rename title as title_.
4194
4195         * FormBaseDeprecated.C: restore John's trick to give the dialog a border
4196         with limited functionality. It got lost in the MVC merge.
4197
4198         * FormBaseDeprecated.C:
4199         * FormBase.C (show): moved initialisation of minw_, minh_ here.
4200
4201         * FormBibitem.C (build):
4202         * FormBibtex.C (build):
4203         * FormBrowser.C (build):
4204         * FormCharacter.C (build):
4205         * FormCitation.C (build):
4206         * FormCopyright.C (build):
4207         * FormCredits.C (build):
4208         * FormDocument.C (build):
4209         * FormError.C (build):
4210         * FormExternal.C (build):
4211         * FormGraphics.C (build):
4212         * FormInclude.C (build):
4213         * FormIndex.C (build):
4214         * FormMinipage.C (build):
4215         * FormParagraph.C (build):
4216         * FormPreamble.C (build):
4217         * FormPreferences.C (build):
4218         * FormPrint.C (build):
4219         * FormRef.C (build):
4220         * FormSearch.C (build):
4221         * FormTabular.C (build):
4222         * FormTabularCreate.C (build):
4223         * FormToc.C (build):
4224         * FormUrl.C (build): removed initialisation of minw_, minh_.
4225
4226         * The Maths Panel stuff no longer causes a crash on exit from LyX.
4227
4228         * FormMaths.[Ch]:
4229         * forms/form_maths.fd: removed.
4230
4231         * forms/form_maths_delim.fd:
4232         * forms/form_maths_deco.fd:
4233         * forms/form_maths_matrix.fd:
4234         * forms/form_maths_space.fd:
4235         * forms/form_maths_panel.fd: new files.
4236         Split contents of form_maths.fd into 5 new files, one for each form.
4237
4238         * MathsSymbols.[Ch]: remove class BitmapMenu, renamed and reworked as
4239         class FormMathsBitmap in FormMathsBitmap.[Ch].
4240
4241         * FormMathsPanel.[Ch]:
4242         * FormMathsBitmap.[Ch]:
4243         * FormMathsDeco.[Ch]:
4244         * FormMathsDelim.[Ch]:
4245         * FormMathsMatrix.[Ch]:
4246         * FormMathsSpace.[Ch]: Split contents of FormMaths into new files,
4247         one for each popup. Rewrite so that all the new classes are derived from
4248         FormBaseBD. Clean up the logic in the process (I hope!).
4249
4250         * Makefile.am: added new fils, removed redundant ones.
4251
4252 2001-03-19  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4253
4254         * FormMinipage.C (FormMinipage): add SigC:: namespace specifier.
4255         (showInset): ditto
4256         (updateInset): ditto
4257
4258 2001-03-16  Juergen Vigna  <jug@sad.it>
4259
4260         * Dialogs.C (Dialogs): create minipage options dialog.
4261
4262         * forms/form_minipage.fd:
4263         * form_minipage.C:
4264         * form_minipage.h:
4265         * FormMinipage.C:
4266         * FormMinipage.h: new files for the minipage options dialog.
4267
4268 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
4269
4270         * FormMaths.[Ch]: make the FD_ structs private. Create appropriate
4271         callback methods.
4272
4273         * forms/form_maths.fd: change C_FormBaseCancelCB to
4274         FormBaseDeprecatedCancelCB and so fix crash on closing the panel.
4275
4276 2001-03-16  John Levon  <moz@compsoc.man.ac.uk>
4277
4278         * FormMaths.C: quash warnings
4279
4280 2001-03-16  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4281
4282         * FormMaths.C (C_FormMathsDelimCB): add usual .c_str() for lyxstring
4283         compatibility.
4284
4285 2001-03-16  Angus Leeming  <a.leeming@ic.ac.uk>
4286
4287         * Form_various.h: cleaned up #includes and forward declarations.
4288
4289         * Form_various.C: added "using SigC::slot" declaration.
4290
4291         * FormMaths.[Ch]: moved to boost::scoped_ptrs.
4292
4293         * FormDocument.C (CheckChoiceClass): removed string tct as the
4294         compiler warned that it was defined but never used.
4295         removed USE_CLASS_COMBO.
4296
4297 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
4298
4299         * Dialogs.C:
4300         * FormMaths.h:
4301         * FormMaths.C:
4302         * MathsSymbols.h:
4303         * MathsSymbols.C:
4304         * Makefile.am:
4305         * Toolbar_pimpl.C:
4306         * form_*.C:
4307         * forms/makefile:
4308         * forms/form_maths.fd:
4309         * forms/fdfixc.sed:
4310         * forms/fdfix.sh: add maths panel
4311
4312         * bmtable.h:
4313         * bmtable.c: moved from src/
4314
4315 2001-03-16  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
4316
4317         * FormParagraph.h: NO_PEXTRA
4318         * FormParagraph.C (input): NO_PEXTRA
4319
4320 2001-03-15  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
4321
4322         * several files: remove CXX_WORKING_NAMESPACES
4323
4324 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
4325
4326         * Merging changes from BRANCH_MVC back into HEAD.
4327
4328 2001-03-12  Angus Leeming  <a.leeming@ic.ac.uk>
4329
4330         * Dialogs.C (c-tor): Changes associated with storing a vector of
4331         boost::shared_ptrs.
4332         Use MVC Bibitem popup.
4333
4334         * FormBase.h: add a new template class FormBase2, derived from FormBase
4335         to make life creating MVC popups even easier ;-)
4336
4337         * FormBibitem.[Ch]:
4338         * forms/form_bibitem.fd: moved over to the MVC way of doing things.
4339         Proof that a simple popup should be easy to implement!
4340
4341         * FormCitation.[Ch]: now derived from FormBase2.
4342
4343         * FormToc.C: added using std::vector directive.
4344
4345 2001-03-09  Dekel Tsur  <dekelts@tau.ac.il>
4346
4347         * FormSearch.C: Add missing #pragma
4348
4349 2001-03-09  Angus Leeming  <a.leeming@ic.ac.uk>
4350
4351         * FormCitation.C:
4352         * forms/form_citation.fd: added the ability to Search, both Simply and
4353         for Regular Expressions. Use the Search code in the controller() to do
4354         the actual searching.
4355
4356 2001-03-08  Angus Leeming  <a.leeming@ic.ac.uk>
4357
4358         * Makefile.am: added FormCredits.[Ch] and form_credits.[Ch]
4359         * forms/makefile: added form_credits.fd
4360
4361         * Dialogs.C: added FormCredits and removed ShowCredits.
4362
4363         * FormCredits.[Ch]:
4364         * forms/form_credits.fd:
4365         * forms/form_search.fd: ported to the MVC way.
4366
4367 2001-03-07  Angus Leeming  <a.leeming@ic.ac.uk>
4368
4369         * xforms_helpers.h (formatted): now has default arguments for size and
4370         style.
4371
4372         * FormCitation.[Ch]: moved code out of this class and into
4373         ControlCitation and associated helper funcs.
4374
4375 2001-03-05  Angus Leeming  <a.leeming@ic.ac.uk>
4376
4377         * FormBase.[Ch]: (InputCB): use ButtonController::input() rather than
4378         ButtonController::valid() to check state of input. The buttons are
4379         now controlled correctly.
4380
4381         * Form*.[Ch]: use boost::scoped_ptr for the remaining few classes.
4382
4383 2001-03-05  Lars Gullik Bjønnes  <larsbj@lyx.org>
4384
4385         * Form*.[Ch]: use boost::scoped_ptr for dialog_ et al.
4386
4387         * FormBase.[Ch]: rename title as title_.
4388
4389 2001-03-02  John Levon  <moz@compsoc.man.ac.uk>
4390
4391         * FormBase.C (c-tor): initialise variables in correct order.
4392
4393         * FormCitation.C: add #include <algorithm>
4394
4395 2001-03-02  Angus Leeming  <a.leeming@ic.ac.uk>
4396
4397         * xformsBC.[Ch]: Changes associated with the changes to
4398         controllers/ButtonController.[Ch]. Ie, the class is now derived from
4399         ButtonControllerBase and the ButtonPolicy is accessed through a method
4400         bp() rather than the instance bp_.
4401
4402         * FormBaseDeprecated.[Ch]: no longer store a ButtonController, but
4403         rather use a pure virtual method bc() to access the controller
4404         instantiated by the daughter classes.
4405
4406         * F*.[Ch]: changes associated with the above.
4407
4408 2001-02-27  Angus Leeming  <a.leeming@ic.ac.uk>
4409
4410         * FormBase.[Ch]: renamed as FormBaseDeprecated.[Ch]
4411
4412         * ViewXforms.[Ch]: renamed as FormBase.[Ch]
4413
4414 2001-02-23  Angus Leeming  <a.leeming@ic.ac.uk>
4415
4416         * ButtonController.[Ch]: deleted. The class is split into two
4417         (with identical functionality), the code being found in
4418         ../controllers/ButtonController.[Ch] and xformsBC.[Ch]
4419
4420         * xformsBC.[Ch]: new files. Xforms specific part of Allan's original
4421         ButtonController class.
4422
4423         * FormBase.[Ch]: changes associated with the above split.
4424
4425         * ViewXforms.[Ch]: Base class for xforms dialogs derived from ViewBase
4426         (../controllers/ViewBase.h). Ie, for Dialogs with GUI-I controllers
4427         controlling all interaction to/from the LyX kernel.
4428
4429         * FormCitation.[Ch]:
4430         * forms/form_citation.fd: An xforms-specific implementation of the
4431         Citation dialog, controlled by the GUI-I ControlCitation.
4432
4433         * Dialogs.C: Use the controlled Citation dialog.
4434
4435 2001-03-15  John Levon  <moz@compsoc.man.ac.uk>
4436
4437         * Makefile.am:
4438         * combox.h:
4439         * combox.C: moved from src/
4440
4441 2001-03-09  Angus Leeming  <a.leeming@ic.ac.uk>
4442
4443         * forms/fdfix.sh:
4444         * forms/form_filedialog.C.patch: I hate having to make these patches,
4445         but on reflection I think it's probably better than hacking fdfix.sh.
4446
4447 2001-03-14  Angus Leeming  <a.leeming@ic.ac.uk>
4448
4449         * forms/fdfix.sh: test whether bmtable.h is needed before #including it.
4450
4451 2001-03-13  John Levon  <moz@compsoc.man.ac.uk>
4452
4453         * FormGraphics.C: remove unnecessary hack
4454
4455 2001-03-13  Dekel Tsur  <dekelts@tau.ac.il>
4456
4457         * FormCitation.C (apply): Do not put space between multiple keys.
4458
4459 2001-03-12  Dekel Tsur  <dekelts@tau.ac.il>
4460
4461         * Menubar_pimpl.C (add_toc): Remove debug message.
4462
4463 2001-03-09  John Levon  <moz@compsoc.man.ac.uk>
4464
4465         * Makefile.am:
4466         * Dialogs.C:
4467         * FormExternal.C:
4468         * FormExternal.h:
4469         * form_external.C:
4470         * form_external.h:
4471         * xforms/forms/makefile:
4472         * forms/form_external.fd: add FormExternal
4473
4474 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
4475
4476         * Dialogs.C: add destroySplash()
4477
4478         * form_splash.h:
4479         * form_splash.C:
4480         * forms/form_splash.fd:
4481         * FormSplash.h:
4482         * FormSplash.C: make independent of FormBase, tidy
4483
4484         * Menubar_pimpl.C: destroy splash on interaction
4485
4486 2001-03-12  John Levon  <moz@compsoc.man.ac.uk>
4487
4488         * FormInclude.h:
4489         * FormInclude.C:
4490         * form_include.h:
4491         * form_include.C:
4492         * forms/form_include.fd: rework, clean up
4493
4494 2001-03-12  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
4495
4496         * FormToc.h: use Buffer::typedef
4497
4498         * Menubar_pimpl.C (add_toc): use the Buffer::typedefs
4499         * FormToc.C (build): ditto
4500         (updateToc): ditto
4501
4502 2001-03-11  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
4503
4504         * FormToc.C (build): implement for dynamic number of lists
4505         (updateToc): ditto
4506         * Menubar_pimpl.C (add_toc): ditto
4507
4508 2001-03-07  Edwin Leuven  <leuven@fee.uva.nl>
4509
4510         * added credits:
4511         * Dialogs.C:
4512         * Makefile.am:
4513         * FormCredits.[Ch]:
4514         * form_credits.[Ch]:
4515         * forms/form_credits.fd:
4516
4517 2001-03-07  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
4518
4519         * Menubar_pimpl.h: make Pipl::ItemInfo::item_ a boost::shared_ptr,
4520         make ButtonList contain boost::shared_ptr<ItemInfo>
4521
4522         * Menubar_pimpl.C (~Pimpl): remove destructor
4523
4524 2001-03-06  John Levon  <moz@compsoc.man.ac.uk>
4525
4526         * Makefile.am:
4527         * FileDialog.C:
4528         * FormFiledialog.C:
4529         * FormFiledialog.h:
4530         * form_filedialog.C:
4531         * form_filedialog.h:
4532         * FormGraphics.C:
4533         * FormInclude.C:
4534         * FormPreferences.C:
4535         * FormPrint.C:
4536         * xforms_helpers.C:
4537         * xforms_helpers.h:
4538         * forms/fdfix.sh:
4539         * forms/makefile:
4540         * form/form_filedialog.fd: add File Dialog
4541         * Toolbar_pimpl.h:
4542         * Toolbar_pimpl.C: move LayoutsCB to here
4543
4544 2001-03-06  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
4545
4546         * FormParagraph.C: changes because of ParagraphParameters.
4547
4548 2001-03-06  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4549
4550         * FormSearch.C (Replace): remove default argument
4551         (Find): ditto
4552
4553 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
4554
4555         * added find/replace dialog:
4556         * FormSearch.*: added
4557         * form_search.*: added
4558         * forms/form_search.fd: added
4559
4560 2001-03-05  Angus Leeming  <a.leeming@ic.ac.uk>
4561
4562         * xform_helpers.[Ch]: renamed as xforms_helpers.[Ch].
4563
4564         * various: in a rush of delayed guilt, I've renamed all instances of
4565         xform as xforms. Jean-Marc sowed this seed a long, long time ago and it
4566         finally sprouted.
4567
4568         * xforms_helpers.[Ch] (setEnabled): a little wrapper function to
4569         activate/deactivate an FL_OBJECT.
4570
4571         * FormCitation.C:
4572         * FormDocument.C:
4573         * FormInclude.C:
4574         * FormParagraph.C:
4575         * FormPreamble.C:
4576         * FormPreferences.C:
4577         * FormRef.C:
4578         * FormTabular.C: used it.
4579
4580 2001-03-05  Angus Leeming  <a.leeming@ic.ac.uk>
4581
4582         * FormPreferences.C: removed three unused using directives.
4583
4584 2001-03-05  Edwin Leuven  <leuven@fee.uva.nl>
4585
4586         * added find/replace dialog:
4587         * FormSearch.*: added
4588         * form_search.*: added
4589         * forms/form_search.fd: added
4590
4591 2001-02-27  Dekel Tsur  <dekelts@tau.ac.il>
4592
4593         * FormRef.C: Fixed the behaviour of Goto-Ref.
4594
4595 2001-02-27  Angus Leeming  <a.leeming@ic.ac.uk>
4596
4597         * forms/makefile: added character and preamble dialogs
4598
4599 2001-02-27  Lars Gullik Bjønnes  <larsbj@trylle.birdstep.com>
4600
4601         * FormCharacter.C (FormCharacter): change order of deletion,
4602         change combo_language2 to combo_language2_
4603
4604 2001-02-26  Dekel Tsur  <dekelts@tau.ac.il>
4605
4606         * FormRef.C (apply): Update bookmark #0 after inserting a reference.
4607
4608 2001-02-23  Edwin Leuven <leuven@fee.uva.nl>
4609
4610         * Dialogs.C: added layoutcharacter
4611         * FormCharacter.C: added
4612         * FormCharacter.h: added
4613         * form_character.C: added
4614         * form_character.h: added
4615         * forms/form_character.fd: added
4616
4617 2001-02-23  Dekel Tsur  <dekelts@tau.ac.il>
4618
4619         * FormPreferences.C: Handle lyxrc.language_use_babel and
4620         lyxrc.language_global_options.
4621
4622 2001-02-23  Angus Leeming  <a.leeming@ic.ac.uk>
4623
4624         * FormPreferences(GetFrom, GetTo): use size_type rather than int.
4625
4626 2001-02-23  John Levon  <moz@compsoc.man.ac.uk>
4627
4628         * FormBase.C: no longer transient dialogs, XMapWindow()
4629           in attempt to de-iconify
4630
4631         * FormDocument.C: remove DO_USE_DEFAULT_LANGUAGE
4632
4633 2001-02-21  Dekel Tsur  <dekelts@tau.ac.il>
4634
4635         * FormDocument.C (checkMarginValues): Activate "use geometry" button
4636         if using custom paper size/margin.
4637
4638 2001-02-21  Allan Rae  <rae@lyx.org>
4639
4640         * forms/form_preferences.fd: larger, bold font for outer tabfolder
4641
4642 2001-02-20  Edwin Leuven <leuven@fee.uva.nl>
4643
4644         * src/frontends/xforms/Dialogs.C: added preamble
4645         * src/frontends/xforms/FormPreamble.C: added
4646         * src/frontends/xforms/FormPreamble.h: added
4647         * src/frontends/xforms/Makefile.am: added
4648         * src/frontends/xforms/form_preamble.C: added
4649         * src/frontends/xforms/form_preamble.h: added
4650         * src/frontends/xforms/form_preamble.fd: added
4651
4652 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
4653
4654         * FormBase.h: moved noncopyable derivation to DialogBase.
4655
4656 2001-02-19  Juergen Vigna  <jug@sad.it>
4657
4658         * FormTabular.C (build): make all input field accepted only after
4659         a "RETURN".
4660
4661         * forms/form_tabular.fd: removed default "Return" on Close-Button.
4662
4663 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
4664
4665         * FormError.C:
4666         * FormGraphics.C:
4667         * FormInset.C (showInset): change associated with name change
4668         inset::hide to inset::hideDialog.
4669
4670 2001-02-19  Angus Leeming  <a.leeming@ic.ac.uk>
4671
4672         * FormCitation.C (build): altering "Text after" now activates the Ok,
4673         Apply buttons.
4674
4675 2001-02-16  Angus Leeming  <a.leeming@ic.ac.uk>
4676
4677         * FormCitation.C: lots of white-space changes to make file consistent
4678         with LyX style.
4679         (input): use the FL_OBJECT * parameter to decide what to do, not the
4680         long parameter.
4681
4682         * FormCitation.h: removed most entries in enum.
4683
4684         * forms/form_citation.fd: change names of variables, consistent with
4685         Allan's naming scheme.
4686         Don't pass any particular arguments to the InputCB function.
4687         choice_style now triggers a callback and looks like other choices.
4688
4689 2001-02-16  Lars Gullik Bjønnes  <larsbj@lyx.org>
4690
4691         * other: use compare instead of strcmp/strncmp
4692
4693 2001-02-15  Angus Leeming  <a.leeming@ic.ac.uk>
4694
4695         * ButtonController.[Ch]: changed trigger_change_ vector and associated
4696         methods to dont_trigger_change_ because FL_OBJECTs that trigger a
4697         callback to InputCB() but don't trigger a change in the state of the
4698         Ok, Apply buttons are much rarer than those that do.
4699
4700         * FormCitation.C (build): associated change.
4701
4702 2001-02-14  Lars Gullik Bjønnes  <larsbj@lyx.org>
4703
4704         * ButtonController.C: include algorithm
4705
4706 2001-02-14  Angus Leeming  <a.leeming@ic.ac.uk>
4707
4708         * ButtonController.[Ch] (addTriggerChange, eraseTriggerChange):
4709         new methods.
4710         (valid): method can now be passed an optional FL_OBJECT *. If it is, and
4711         the vector of FL_OBJECT *s that can trigger a change in the button state
4712         is not empty, then a change of state will occur only if the FL_OBJECT *
4713         is present in this vector.
4714
4715         * FormBase.C (RestoreCB): call bc.undoAll() before restore(). Allows
4716         the user to deactivate specific fields within restore().
4717         (InputCB): pass the FL_OBJECT * to bc_.valid().
4718
4719         * FormCitation.C (build): create a vector of FL_OBJECT *s that can
4720         trigger a change of state in the Ok,Apply buttons.
4721         (update): bc_.readOnly() to the start of the method. Similar reasoning
4722         to that for FormBase::RestoreCB, above.
4723
4724 2001-02-14  Angus Leeming  <a.leeming@ic.ac.uk>
4725
4726         * FormBrowser.C: used OkCancelPolicy for ButtonController rather than
4727         IgnorantPolicy.
4728
4729         * forms/form_browser.fd:
4730         * forms/form_copyright.fd:
4731         * forms/form_error.fd:
4732         * forms/form_tabular.fd:
4733         * forms/form_toc.fd:
4734         Consistent shortcuts for Close button: Esc and Return only.
4735
4736         * forms/form_citation.fd:
4737         * forms/form_document.fd:
4738         * forms/form_index.fd:
4739         * forms/form_paragraph.fd:
4740         * forms/form_preferences.fd:
4741         * forms/form_print.fd:
4742         * forms/form_ref.fd:
4743         * forms/form_tabular_create.fd:
4744         * forms/form_url.fd:
4745         Consistent shortcut for Cancel button: Esc only.
4746
4747 2001-02-12  John Levon  <moz@compsoc.man.ac.uk>
4748
4749         * Dialogs.C: new Splash. Include, Bibitem/tex
4750
4751         * FormBase.h: make show() virtual for Splash's benefit
4752
4753         * Makefile.am:
4754         * forms/makefile:
4755         * FormBibitem.C:
4756         * FormBibitem.h:
4757         * FormBibtex.C:
4758         * FormBibtex.h:
4759         * form_bibitem.C:
4760         * form_bibitem.h:
4761         * form_bibtex.C:
4762         * form_bibtex.h:
4763         * forms/form_bibitem.fd:
4764         * forms/form_bibtex.fd:
4765         * FormInclude.C:
4766         * FormInclude.h:
4767         * form_include.C:
4768         * form_include.h:
4769         * forms/form_include.fd:
4770         * FormSplash.C:
4771         * FormSplash.h:
4772         * form_splash.C:
4773         * form_splash.h:
4774         * forms/form_splash.fd: new forms
4775
4776 2001-02-09  John Levon  <moz@compsoc.man.ac.uk>
4777
4778         * FormLog.C: handle Literate build log nicely
4779
4780 2001-02-09  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4781
4782         * Menubar_pimpl.C: remove support for reference menuitem type.
4783
4784 2001-02-07  John Levon  <moz@compsoc.man.ac.uk>
4785
4786         * Makefile.am:
4787         * Timeout_pimpl.h:
4788         * Timeout_pimpl.C: add Timeout implementation
4789
4790 2001-02-06  John Levon  <moz@compsoc.man.ac.uk>
4791
4792         * form_browser.h:
4793         * form_browser.C:
4794         * forms/form_browser.fd:
4795         * forms/makefile:
4796         * FormBrowser.C:
4797         * FormBrowser.h: readonly browser form
4798
4799         * FormLog.C:
4800         * FormLog.h:
4801         * FormVCLog.C:
4802         * FormVCLog.h:
4803         * Dialogs.C: add Log and VCLog
4804
4805         * Makefile.am: add Log and VCLog, add updatesrc target
4806
4807 2001-01-31  Dekel Tsur  <dekelts@tau.ac.il>
4808
4809         * Menubar_pimpl.C (add_toc2): Add shortcut to the TOC menu.
4810
4811 2001-01-25  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
4812
4813         * FormPreferences.C (GetFrom): fix crash when there is no format
4814         defined.
4815         (GetTo): ditto.
4816
4817 2001-01-23  Angus Leeming  <a.leeming@ic.ac.uk>
4818
4819         * FormPreferences.C (LoadBrowserLyX): convert unsigned short to
4820         unsigned char correctly and so fix 2 bugs loading/changing colors.
4821
4822 2001-01-21  Dekel Tsur  <dekelts@tau.ac.il>
4823
4824         * FormRef.C (update): Do not update dialog_->{ref,name,type}
4825         if inset_ == 0.
4826         Deactivate the type button when buffer is LinuxDoc/Docbook
4827         (build): Uncomment calls to addReadOnly().
4828         (updateBrowser) Do not disable the update button when there are no
4829         keys.
4830         (build, getType, getName): Use InsetRef::types.
4831
4832 2001-01-18  Angus Leeming  <a.leeming@ic.ac.uk>
4833
4834         * FormPrint.[Ch] (browse): new method to browse for file to print to.
4835
4836         * forms/form_print.fd: give the form a Browse button.
4837
4838 2001-01-17  Dekel Tsur  <dekelts@tau.ac.il>
4839
4840         * FormRef.C (input): Fix the behavior of goto reference button.