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