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