]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormIndex.C
Yet more dialog tweaking from Rob.
[lyx.git] / src / frontends / xforms / FormIndex.C
index c2057a5a990c4937471c61071fb8d1d7c4716997..ebed9c370e9e938d651a43c9e6a5b33d248248a1 100644 (file)
@@ -1,14 +1,11 @@
-/* This file is part of
- * ====================================================== 
+/**
+ * \file xforms/FormIndex.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author Angus Leeming 
  *
- *           Copyright 2000-2001 The LyX Team.
- *
- * ======================================================
- *
- * \file FormIndex.C
- * \author Angus Leeming, a.leeming@ic.ac.uk
+ * Full author contact details are available in file CREDITS
  */
 
 #include <config.h>
 #include "xformsBC.h"
 #include "ControlIndex.h"
 #include "FormIndex.h"
-#include "LyXView.h"
-#include "form_index.h"
+#include "forms/form_index.h"
+#include FORMS_H_LOCATION
 
-typedef FormCB<ControlIndex, FormDB<FD_form_index> > base_class;
+typedef FormCB<ControlIndex, FormDB<FD_index> > base_class;
 
-FormIndex::FormIndex(ControlIndex & c)
-       : base_class(c, _("Index"))
+FormIndex::FormIndex()
+       : base_class(_("Index"))
 {}
 
 
 void FormIndex::build()
 {
-       dialog_.reset(build_index());
+       dialog_.reset(build_index(this));
 
        fl_set_input_return(dialog_->input_key, FL_RETURN_CHANGED);
+       setPrehandler(dialog_->input_key);
 
-        // Manage the ok, apply, restore and cancel/close buttons
+       // Manage the ok, apply, restore and cancel/close buttons
        bc().setOK(dialog_->button_ok);
        bc().setApply(dialog_->button_apply);
-       bc().setCancel(dialog_->button_cancel);
+       bc().setCancel(dialog_->button_close);
        bc().setRestore(dialog_->button_restore);
 
        bc().addReadOnly(dialog_->input_key);