X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fxforms%2FChangeLog;h=97d04907f8e646ace1d9c6f7e59124d40452d53f;hb=4505b2f7b35d2d1e7f48128c41d3797dbd53fe97;hp=e3afa8c0e6dacfc6eea96218fc8bea2f6aeab7cb;hpb=5ee7cb857c922a3db5fbc5acea0587e63293602c;p=lyx.git diff --git a/src/frontends/xforms/ChangeLog b/src/frontends/xforms/ChangeLog index e3afa8c0e6..97d04907f8 100644 --- a/src/frontends/xforms/ChangeLog +++ b/src/frontends/xforms/ChangeLog @@ -1,3 +1,160 @@ +2001-03-05 Angus Leeming + + * xform_helpers.[Ch]: renamed as xforms_helpers.[Ch]. + + * various: in a rush of delayed guilt, I've renamed all instances of + xform as xforms. Jean-Marc sowed this seed a long, long time ago and it + finally sprouted. + + * xforms_helpers.[Ch] (setEnabled): a little wrapper function to + activate/deactivate an FL_OBJECT. + + * FormCitation.C: + * FormDocument.C: + * FormInclude.C: + * FormParagraph.C: + * FormPreamble.C: + * FormPreferences.C: + * FormRef.C: + * FormTabular.C: used it. + +2001-03-05 Angus Leeming + + * FormPreferences.C: removed three unused using directives. + +2001-02-27 Dekel Tsur + + * FormRef.C: Fixed the behaviour of Goto-Ref. + +2001-02-27 Angus Leeming + + * forms/makefile: added character and preamble dialogs + +2001-02-27 Lars Gullik Bjønnes + + * FormCharacter.C (FormCharacter): change order of deletion, + change combo_language2 to combo_language2_ + +2001-02-26 Dekel Tsur + + * FormRef.C (apply): Update bookmark #0 after inserting a reference. + +2001-02-23 Edwin Leuven + + * Dialogs.C: added layoutcharacter + * FormCharacter.C: added + * FormCharacter.h: added + * form_character.C: added + * form_character.h: added + * forms/form_character.fd: added + +2001-02-23 Dekel Tsur + + * FormPreferences.C: Handle lyxrc.language_use_babel and + lyxrc.language_global_options. + +2001-02-23 Angus Leeming + + * FormPreferences(GetFrom, GetTo): use size_type rather than int. + +2001-02-23 John Levon + + * FormBase.C: no longer transient dialogs, XMapWindow() + in attempt to de-iconify + + * FormDocument.C: remove DO_USE_DEFAULT_LANGUAGE + +2001-02-21 Dekel Tsur + + * FormDocument.C (checkMarginValues): Activate "use geometry" button + if using custom paper size/margin. + +2001-02-21 Allan Rae + + * forms/form_preferences.fd: larger, bold font for outer tabfolder + +2001-02-20 Edwin Leuven + + * src/frontends/xforms/Dialogs.C: added preamble + * src/frontends/xforms/FormPreamble.C: added + * src/frontends/xforms/FormPreamble.h: added + * src/frontends/xforms/Makefile.am: added + * src/frontends/xforms/form_preamble.C: added + * src/frontends/xforms/form_preamble.h: added + * src/frontends/xforms/form_preamble.fd: added + +2001-02-19 Angus Leeming + + * FormBase.h: moved noncopyable derivation to DialogBase. + +2001-02-19 Juergen Vigna + + * FormTabular.C (build): make all input field accepted only after + a "RETURN". + + * forms/form_tabular.fd: removed default "Return" on Close-Button. + +2001-02-19 Angus Leeming + + * FormError.C: + * FormGraphics.C: + * FormInset.C (showInset): change associated with name change + inset::hide to inset::hideDialog. + +2001-02-19 Angus Leeming + + * FormCitation.C (build): altering "Text after" now activates the Ok, + Apply buttons. + +2001-02-16 Angus Leeming + + * FormCitation.C: lots of white-space changes to make file consistent + with LyX style. + (input): use the FL_OBJECT * parameter to decide what to do, not the + long parameter. + + * FormCitation.h: removed most entries in enum. + + * forms/form_citation.fd: change names of variables, consistent with + Allan's naming scheme. + Don't pass any particular arguments to the InputCB function. + choice_style now triggers a callback and looks like other choices. + +2001-02-16 Lars Gullik Bjønnes + + * other: use compare instead of strcmp/strncmp + +2001-02-15 Angus Leeming + + * ButtonController.[Ch]: changed trigger_change_ vector and associated + methods to dont_trigger_change_ because FL_OBJECTs that trigger a + callback to InputCB() but don't trigger a change in the state of the + Ok, Apply buttons are much rarer than those that do. + + * FormCitation.C (build): associated change. + +2001-02-14 Lars Gullik Bjønnes + + * ButtonController.C: include algorithm + +2001-02-14 Angus Leeming + + * ButtonController.[Ch] (addTriggerChange, eraseTriggerChange): + new methods. + (valid): method can now be passed an optional FL_OBJECT *. If it is, and + the vector of FL_OBJECT *s that can trigger a change in the button state + is not empty, then a change of state will occur only if the FL_OBJECT * + is present in this vector. + + * FormBase.C (RestoreCB): call bc.undoAll() before restore(). Allows + the user to deactivate specific fields within restore(). + (InputCB): pass the FL_OBJECT * to bc_.valid(). + + * FormCitation.C (build): create a vector of FL_OBJECT *s that can + trigger a change of state in the Ok,Apply buttons. + (update): bc_.readOnly() to the start of the method. Similar reasoning + to that for FormBase::RestoreCB, above. + 2001-02-14 Angus Leeming * FormBrowser.C: used OkCancelPolicy for ButtonController rather than