]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormIndex.C
Nothing but a changed email address (trying to factor my tree in in small steps)
[lyx.git] / src / frontends / xforms / FormIndex.C
index 1be5ca769469b267860294bc0146f5e4448ea47a..4a0b62ed0a6fc684f6dfe0d9f1a44d0e9da5db8e 100644 (file)
@@ -1,99 +1,56 @@
-// -*- C++ -*-
-/* This file is part of
- * ====================================================== 
+/**
+ * \file xforms/FormIndex.C
+ * Copyright 2000-2001 The LyX Team.
+ * See the file COPYING.
  *
- *           LyX, The Document Processor
- *
- *           Copyright 2000 The LyX Team.
- *
- * ======================================================
+ * \author Angus Leeming <leeming@lyx.org>
  */
 
 #include <config.h>
 
-#include FORMS_H_LOCATION
-
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
-
-#include "Dialogs.h"
+#include "xformsBC.h"
+#include "ControlIndex.h"
 #include "FormIndex.h"
-#include "LyXView.h"
-#include "buffer.h"
-#include "form_index.h"
-#include "lyxfunc.h"
-
-FormIndex::FormIndex(LyXView * lv, Dialogs * d)
-       : FormCommand(lv, d, _("Index")), minh(0), minw(0), dialog_(0)
-{
-       // let the dialog be shown
-       // These are permanent connections so we won't bother
-       // storing a copy because we won't be disconnecting.
-       d->showIndex.connect(slot(this, &FormIndex::showInset));
-       d->createIndex.connect(slot(this, &FormIndex::createInset));
-}
+#include "forms/form_index.h"
+#include FORMS_H_LOCATION
 
+typedef FormCB<ControlIndex, FormDB<FD_index> > base_class;
 
-FormIndex::~FormIndex()
-{
-       delete dialog_;
-}
+FormIndex::FormIndex()
+       : base_class(_("Index"))
+{}
 
 
 void FormIndex::build()
 {
-       dialog_ = build_index();
+       dialog_.reset(build_index(this));
 
-       // XFORMS bug workaround
-       // Define the min/max dimensions. Actually applied in update()
-       minw = form()->w; minh = form()->h;
-}
+       fl_set_input_return(dialog_->input_key, FL_RETURN_CHANGED);
+       setPrehandler(dialog_->input_key);
 
+       // 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().setRestore(dialog_->button_restore);
+
+       bc().addReadOnly(dialog_->input_key);
 
-FL_FORM * const FormIndex::form() const
-{
-       if( dialog_ ) // no need to test for dialog_->form
-               return dialog_->form;
-       else
-               return 0;
 }
 
 
 void FormIndex::update()
 {
-       fl_set_form_minsize(form(), minw, minh);
-       fl_set_form_maxsize(form(), 2*minw, minh);
-
-       fl_set_input(dialog_->key, params.getContents().c_str());
-
-       if( lv_->buffer()->isReadonly() ) {
-               fl_deactivate_object( dialog_->key );
-               fl_deactivate_object( dialog_->ok );
-               fl_set_object_lcol( dialog_->ok, FL_INACTIVE );
-       } else {
-               fl_activate_object( dialog_->key );
-               fl_activate_object( dialog_->ok );
-               fl_set_object_lcol( dialog_->ok, FL_BLACK );
-       }
+       fl_set_input(dialog_->input_key,
+                    controller().params().getContents().c_str());
 }
 
 
 void FormIndex::apply()
 {
-       if(lv_->buffer()->isReadonly()) return;
-
-       params.setContents(fl_get_input(dialog_->key));
-
-       if (inset_ != 0) {
-               // Only update if contents have changed
-               if (params != inset_->params()) {
-                       inset_->setParams(params);
-                       lv_->view()->updateInset(inset_, true);
-               }
-       } else {
-               lv_->getLyXFunc()->Dispatch(LFUN_INDEX_INSERT,
-                                           params.getAsString());
-       }
+       controller().params().setContents(fl_get_input(dialog_->input_key));
 }