]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormForks.C
Tiny clean-ups.
[lyx.git] / src / frontends / xforms / FormForks.C
index bb1bbe342b4ed443e2bdd3b16e0fc88f74b8b63e..b0a23bf87f972e046936a0caf29870b555661c24 100644 (file)
@@ -1,37 +1,44 @@
 /**
  * \file FormForks.C
- * Copyright 2001 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Angus Leeming <leeming@lyx.org>
+ * \author Angus Leeming
+ *
+ * Full author contact details are available in file CREDITS.
  * \date 2001-10-22
  */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
-#include "xformsBC.h"
 #include "FormForks.h"
 #include "ControlForks.h"
 #include "forms/form_forks.h"
+
 #include "Tooltips.h"
-#include "helper_funcs.h"
 #include "xforms_helpers.h"
-#include "gettext.h"
+#include "xformsBC.h"
+
+#include "controllers/ButtonController.h"
+
 #include "support/lstrings.h"
-#include FORMS_H_LOCATION
+#include "support/tostr.h"
+
+#include "lyx_forms.h"
+
+using lyx::support::split;
+using lyx::support::strToInt;
 
-using std::vector;
 using std::find;
 using std::find_if;
+using std::string;
+using std::vector;
+
 
 typedef FormCB<ControlForks, FormDB<FD_forks> > base_class;
 
 FormForks::FormForks()
-       : base_class(_("Child processes"))
+       : base_class(_("Child Processes"))
 {}
 
 
@@ -46,17 +53,25 @@ void FormForks::build() {
        fl_clear_browser(dialog_->browser_kill);
 
        // Manage the ok, apply, restore and cancel/close buttons
-       bc().setOK(dialog_->button_ok);
-       bc().setApply(dialog_->button_apply);
-       bc().setCancel(dialog_->button_close);
-       bc().invalid();
+       bcview().setOK(dialog_->button_ok);
+       bcview().setApply(dialog_->button_apply);
+       bcview().setCancel(dialog_->button_close);
+       bc().valid(false);
 
        // Set up the tooltip mechanism
        string str = _("All currently running child processes forked by LyX.");
        tooltips().init(dialog_->browser_children, str);
+#if FL_VERSION == 0 || (FL_REVISION == 0 && FL_FIXLEVEL == 0)
+       // Work-around xforms' bug; enable tooltips for browser widgets.
+       setPrehandler(dialog_->browser_children);
+#endif
 
        str = _("A list of all child processes to kill.");
        tooltips().init(dialog_->browser_kill, str);
+#if FL_VERSION == 0 || (FL_REVISION == 0 && FL_FIXLEVEL == 0)
+       // Work-around xforms' bug; enable tooltips for browser widgets.
+       setPrehandler(dialog_->browser_kill);
+#endif
 
        str = _("Add all processes to the list of processes to kill.");
        tooltips().init(dialog_->button_all, str);