]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormBibitem.C
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / FormBibitem.C
index 03f3def46f1681bce4f75d66822fcf86ebfd572d..51bc8ffa8356d12d3e9355ffea53856fdd8123db 100644 (file)
@@ -1,29 +1,29 @@
 /**
  * \file FormBibitem.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 John Levon, moz@compsoc.man.ac.uk
+ * \author Angus Leeming
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS
  */
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include <config.h>
 #include "xformsBC.h"
-#include "ControlBibitem.h"
+#include "ControlCommand.h"
 #include "FormBibitem.h"
+#include "Tooltips.h"
 #include "forms/form_bibitem.h"
 #include FORMS_H_LOCATION
 #include "gettext.h"
 #include "support/lstrings.h" // compare
 
-typedef FormCB<ControlBibitem, FormDB<FD_bibitem> > base_class;
+typedef FormController<ControlCommand, FormView<FD_bibitem> > base_class;
 
-FormBibitem::FormBibitem()
-       : base_class(_("Bibliography Entry"))
+FormBibitem::FormBibitem(Dialog & parent)
+       : base_class(parent, _("Bibliography Entry"))
 {}
 
 
@@ -38,11 +38,17 @@ void FormBibitem::build()
        setPrehandler(dialog_->input_label);
 
        // Manage the ok, apply, restore and cancel/close buttons
-       bc().setOK(dialog_->button_ok);
-       bc().setCancel(dialog_->button_close);
+       bcview().setOK(dialog_->button_ok);
+       bcview().setCancel(dialog_->button_close);
+
+       bcview().addReadOnly(dialog_->input_key);
+       bcview().addReadOnly(dialog_->input_label);
 
-       bc().addReadOnly(dialog_->input_key);
-       bc().addReadOnly(dialog_->input_label);
+       // set up the tooltips
+       string str = _("Key used within LyX document.");
+       tooltips().init(dialog_->input_key, str);
+       str = _("Label used for final output.");
+       tooltips().init(dialog_->input_label, str);
 }